blob: c7f1c3fd782d215a4ec4ef69db1120cc8bbd6aec [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * AMD SVM support
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02007 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08008 *
9 * Authors:
10 * Yaniv Kamay <yaniv@qumranet.com>
11 * Avi Kivity <avi@qumranet.com>
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
16 */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050017
18#define pr_fmt(fmt) "SVM: " fmt
19
Avi Kivityedf88412007-12-16 11:02:48 +020020#include <linux/kvm_host.h>
21
Eddie Dong85f455f2007-07-06 12:20:49 +030022#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080023#include "mmu.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030024#include "kvm_cache_regs.h"
Gleb Natapovfe4c7b12009-03-23 11:23:18 +020025#include "x86.h"
Julian Stecklina66f7b722012-12-05 15:26:19 +010026#include "cpuid.h"
Wei Huang25462f72015-06-19 15:45:05 +020027#include "pmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040028
Avi Kivity6aa8b732006-12-10 02:21:36 -080029#include <linux/module.h>
Josh Triplettae759542012-03-28 11:32:28 -070030#include <linux/mod_devicetable.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020031#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <linux/vmalloc.h>
33#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040034#include <linux/sched.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040035#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -050037#include <linux/amd-iommu.h>
38#include <linux/hashtable.h>
Josh Poimboeufc207aee2017-06-28 10:11:06 -050039#include <linux/frame.h>
Brijesh Singhe9df0942017-12-04 10:57:33 -060040#include <linux/psp-sev.h>
Brijesh Singh1654efc2017-12-04 10:57:34 -060041#include <linux/file.h>
Brijesh Singh89c50582017-12-04 10:57:35 -060042#include <linux/pagemap.h>
43#include <linux/swap.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080044
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -050045#include <asm/apic.h>
Joerg Roedel1018faa2012-02-29 14:57:32 +010046#include <asm/perf_event.h>
Joerg Roedel67ec6602010-05-17 14:43:35 +020047#include <asm/tlbflush.h>
Avi Kivitye4956062007-06-28 14:15:57 -040048#include <asm/desc.h>
Paolo Bonzinifacb0132014-02-21 10:32:27 +010049#include <asm/debugreg.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020050#include <asm/kvm_para.h>
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -050051#include <asm/irq_remapping.h>
Thomas Gleixner28a27752018-04-29 15:01:37 +020052#include <asm/spec-ctrl.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080053
Eduardo Habkost63d11422008-11-17 19:03:20 -020054#include <asm/virtext.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030055#include "trace.h"
Eduardo Habkost63d11422008-11-17 19:03:20 -020056
Avi Kivity4ecac3f2008-05-13 13:23:38 +030057#define __ex(x) __kvm_handle_fault_on_reboot(x)
58
Avi Kivity6aa8b732006-12-10 02:21:36 -080059MODULE_AUTHOR("Qumranet");
60MODULE_LICENSE("GPL");
61
Josh Triplettae759542012-03-28 11:32:28 -070062static const struct x86_cpu_id svm_cpu_id[] = {
63 X86_FEATURE_MATCH(X86_FEATURE_SVM),
64 {}
65};
66MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
67
Avi Kivity6aa8b732006-12-10 02:21:36 -080068#define IOPM_ALLOC_ORDER 2
69#define MSRPM_ALLOC_ORDER 1
70
Avi Kivity6aa8b732006-12-10 02:21:36 -080071#define SEG_TYPE_LDT 2
72#define SEG_TYPE_BUSY_TSS16 3
73
Andre Przywara6bc31bd2010-04-11 23:07:28 +020074#define SVM_FEATURE_NPT (1 << 0)
75#define SVM_FEATURE_LBRV (1 << 1)
76#define SVM_FEATURE_SVML (1 << 2)
77#define SVM_FEATURE_NRIP (1 << 3)
Andre Przywaraddce97a2010-12-21 11:12:03 +010078#define SVM_FEATURE_TSC_RATE (1 << 4)
79#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
80#define SVM_FEATURE_FLUSH_ASID (1 << 6)
81#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020082#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030083
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -050084#define SVM_AVIC_DOORBELL 0xc001011b
85
Joerg Roedel410e4d52009-08-07 11:49:44 +020086#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
87#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
88#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
89
Joerg Roedel24e09cb2008-02-13 18:58:47 +010090#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
91
Joerg Roedelfbc0db72011-03-25 09:44:46 +010092#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010093#define TSC_RATIO_MIN 0x0000000000000001ULL
94#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010095
Dan Carpenter5446a972016-05-23 13:20:10 +030096#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050097
98/*
99 * 0xff is broadcast, so the max index allowed for physical APIC ID
100 * table is 0xfe. APIC IDs above 0xff are reserved.
101 */
102#define AVIC_MAX_PHYSICAL_ID_COUNT 255
103
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500104#define AVIC_UNACCEL_ACCESS_WRITE_MASK 1
105#define AVIC_UNACCEL_ACCESS_OFFSET_MASK 0xFF0
106#define AVIC_UNACCEL_ACCESS_VECTOR_MASK 0xFFFFFFFF
107
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500108/* AVIC GATAG is encoded using VM and VCPU IDs */
109#define AVIC_VCPU_ID_BITS 8
110#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1)
111
112#define AVIC_VM_ID_BITS 24
113#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS)
114#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1)
115
116#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \
117 (y & AVIC_VCPU_ID_MASK))
118#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK)
119#define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK)
120
Joerg Roedel67ec6602010-05-17 14:43:35 +0200121static bool erratum_383_found __read_mostly;
122
Avi Kivity6c8166a2009-05-31 18:15:37 +0300123static const u32 host_save_user_msrs[] = {
124#ifdef CONFIG_X86_64
125 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
126 MSR_FS_BASE,
127#endif
128 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Paolo Bonzini46896c72015-11-12 14:49:16 +0100129 MSR_TSC_AUX,
Avi Kivity6c8166a2009-05-31 18:15:37 +0300130};
131
132#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
133
Sean Christopherson81811c12018-03-20 12:17:21 -0700134struct kvm_sev_info {
135 bool active; /* SEV enabled guest */
136 unsigned int asid; /* ASID used for this guest */
137 unsigned int handle; /* SEV firmware handle */
138 int fd; /* SEV device fd */
139 unsigned long pages_locked; /* Number of pages locked */
140 struct list_head regions_list; /* List of registered regions */
141};
142
143struct kvm_svm {
144 struct kvm kvm;
145
146 /* Struct members for AVIC */
147 u32 avic_vm_id;
148 u32 ldr_mode;
149 struct page *avic_logical_id_table_page;
150 struct page *avic_physical_id_table_page;
151 struct hlist_node hnode;
152
153 struct kvm_sev_info sev_info;
154};
155
Avi Kivity6c8166a2009-05-31 18:15:37 +0300156struct kvm_vcpu;
157
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200158struct nested_state {
159 struct vmcb *hsave;
160 u64 hsave_msr;
Joerg Roedel4a810182010-02-24 18:59:15 +0100161 u64 vm_cr_msr;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200162 u64 vmcb;
163
164 /* These are the merged vectors */
165 u32 *msrpm;
166
167 /* gpa pointers to the real vectors */
168 u64 vmcb_msrpm;
Joerg Roedelce2ac082010-03-01 15:34:39 +0100169 u64 vmcb_iopm;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200170
Joerg Roedelcd3ff652009-10-09 16:08:26 +0200171 /* A VMEXIT is required but not yet emulated */
172 bool exit_required;
173
Joerg Roedelaad42c62009-08-07 11:49:34 +0200174 /* cache for intercepts of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100175 u32 intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100176 u32 intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200177 u32 intercept_exceptions;
178 u64 intercept;
179
Joerg Roedel5bd2edc2010-09-10 17:31:02 +0200180 /* Nested Paging related state */
181 u64 nested_cr3;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200182};
183
Joerg Roedel323c3d82010-03-01 15:34:37 +0100184#define MSRPM_OFFSETS 16
185static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
186
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500187/*
188 * Set osvw_len to higher value when updated Revision Guides
189 * are published and we know what the new status bits are
190 */
191static uint64_t osvw_len = 4, osvw_status;
192
Avi Kivity6c8166a2009-05-31 18:15:37 +0300193struct vcpu_svm {
194 struct kvm_vcpu vcpu;
195 struct vmcb *vmcb;
196 unsigned long vmcb_pa;
197 struct svm_cpu_data *svm_data;
198 uint64_t asid_generation;
199 uint64_t sysenter_esp;
200 uint64_t sysenter_eip;
Paolo Bonzini46896c72015-11-12 14:49:16 +0100201 uint64_t tsc_aux;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300202
Tom Lendackyd1d93fa2018-02-24 00:18:20 +0100203 u64 msr_decfg;
204
Avi Kivity6c8166a2009-05-31 18:15:37 +0300205 u64 next_rip;
206
207 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
Avi Kivityafe9e662010-10-21 12:20:32 +0200208 struct {
Avi Kivitydacccfd2010-10-21 12:20:33 +0200209 u16 fs;
210 u16 gs;
211 u16 ldt;
Avi Kivityafe9e662010-10-21 12:20:32 +0200212 u64 gs_base;
213 } host;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300214
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100215 u64 spec_ctrl;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +0200216 /*
217 * Contains guest-controlled bits of VIRT_SPEC_CTRL, which will be
218 * translated into the appropriate L2_CFG bits on the host to
219 * perform speculative control.
220 */
221 u64 virt_spec_ctrl;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100222
Avi Kivity6c8166a2009-05-31 18:15:37 +0300223 u32 *msrpm;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300224
Avi Kivitybd3d1ec2011-02-03 15:29:52 +0200225 ulong nmi_iret_rip;
226
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200227 struct nested_state nested;
Jan Kiszka6be7d302009-10-18 13:24:54 +0200228
229 bool nmi_singlestep;
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200230 u64 nmi_singlestep_guest_rflags;
Jan Kiszka66b71382010-02-23 17:47:56 +0100231
232 unsigned int3_injected;
233 unsigned long int3_rip;
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100234
Joerg Roedel6092d3d2015-10-14 15:10:54 +0200235 /* cached guest cpuid flags for faster access */
236 bool nrips_enabled : 1;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500237
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500238 u32 ldr_reg;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500239 struct page *avic_backing_page;
240 u64 *avic_physical_id_cache;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -0500241 bool avic_is_running;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500242
243 /*
244 * Per-vcpu list of struct amd_svm_iommu_ir:
245 * This is used mainly to store interrupt remapping information used
246 * when update the vcpu affinity. This avoids the need to scan for
247 * IRTE and try to match ga_tag in the IOMMU driver.
248 */
249 struct list_head ir_list;
250 spinlock_t ir_list_lock;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600251
252 /* which host CPU was used for running this vcpu */
253 unsigned int last_cpu;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500254};
255
256/*
257 * This is a wrapper of struct amd_iommu_ir_data.
258 */
259struct amd_svm_iommu_ir {
260 struct list_head node; /* Used by SVM for per-vcpu ir_list */
261 void *data; /* Storing pointer to struct amd_ir_data */
Avi Kivity6c8166a2009-05-31 18:15:37 +0300262};
263
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500264#define AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK (0xFF)
265#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
266
267#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
268#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
269#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
270#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
271
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100272static DEFINE_PER_CPU(u64, current_tsc_ratio);
273#define TSC_RATIO_DEFAULT 0x0100000000ULL
274
Joerg Roedel455716f2010-03-01 15:34:35 +0100275#define MSR_INVALID 0xffffffffU
276
Mathias Krause09941fb2012-08-30 01:30:20 +0200277static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100278 u32 index; /* Index of the MSR */
279 bool always; /* True if intercept is always on */
280} direct_access_msrs[] = {
Brian Gerst8c065852010-07-17 09:03:26 -0400281 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100282 { .index = MSR_IA32_SYSENTER_CS, .always = true },
283#ifdef CONFIG_X86_64
284 { .index = MSR_GS_BASE, .always = true },
285 { .index = MSR_FS_BASE, .always = true },
286 { .index = MSR_KERNEL_GS_BASE, .always = true },
287 { .index = MSR_LSTAR, .always = true },
288 { .index = MSR_CSTAR, .always = true },
289 { .index = MSR_SYSCALL_MASK, .always = true },
290#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100291 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100292 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100293 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
294 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
295 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
296 { .index = MSR_IA32_LASTINTTOIP, .always = false },
297 { .index = MSR_INVALID, .always = false },
Avi Kivity6aa8b732006-12-10 02:21:36 -0800298};
299
300/* enable NPT for AMD64 and X86 with PAE */
301#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
302static bool npt_enabled = true;
303#else
Joerg Roedele0231712010-02-24 18:59:10 +0100304static bool npt_enabled;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800305#endif
306
Babu Moger8566ac82018-03-16 16:37:26 -0400307/*
308 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
309 * pause_filter_count: On processors that support Pause filtering(indicated
310 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
311 * count value. On VMRUN this value is loaded into an internal counter.
312 * Each time a pause instruction is executed, this counter is decremented
313 * until it reaches zero at which time a #VMEXIT is generated if pause
314 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
315 * Intercept Filtering for more details.
316 * This also indicate if ple logic enabled.
317 *
318 * pause_filter_thresh: In addition, some processor families support advanced
319 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
320 * the amount of time a guest is allowed to execute in a pause loop.
321 * In this mode, a 16-bit pause filter threshold field is added in the
322 * VMCB. The threshold value is a cycle count that is used to reset the
323 * pause counter. As with simple pause filtering, VMRUN loads the pause
324 * count value from VMCB into an internal counter. Then, on each pause
325 * instruction the hardware checks the elapsed number of cycles since
326 * the most recent pause instruction against the pause filter threshold.
327 * If the elapsed cycle count is greater than the pause filter threshold,
328 * then the internal pause count is reloaded from the VMCB and execution
329 * continues. If the elapsed cycle count is less than the pause filter
330 * threshold, then the internal pause count is decremented. If the count
331 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
332 * triggered. If advanced pause filtering is supported and pause filter
333 * threshold field is set to zero, the filter will operate in the simpler,
334 * count only mode.
335 */
336
337static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
338module_param(pause_filter_thresh, ushort, 0444);
339
340static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
341module_param(pause_filter_count, ushort, 0444);
342
343/* Default doubles per-vcpu window every exit. */
344static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
345module_param(pause_filter_count_grow, ushort, 0444);
346
347/* Default resets per-vcpu window every exit to pause_filter_count. */
348static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
349module_param(pause_filter_count_shrink, ushort, 0444);
350
351/* Default is to compute the maximum so we can never overflow. */
352static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
353module_param(pause_filter_count_max, ushort, 0444);
354
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100355/* allow nested paging (virtualized MMU) for all guests */
356static int npt = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800357module_param(npt, int, S_IRUGO);
358
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100359/* allow nested virtualization in KVM/SVM */
360static int nested = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800361module_param(nested, int, S_IRUGO);
362
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500363/* enable / disable AVIC */
364static int avic;
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500365#ifdef CONFIG_X86_LOCAL_APIC
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500366module_param(avic, int, S_IRUGO);
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500367#endif
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500368
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500369/* enable/disable Virtual VMLOAD VMSAVE */
370static int vls = true;
371module_param(vls, int, 0444);
372
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500373/* enable/disable Virtual GIF */
374static int vgif = true;
375module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500376
Brijesh Singhe9df0942017-12-04 10:57:33 -0600377/* enable/disable SEV support */
378static int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
379module_param(sev, int, 0444);
380
Brijesh Singh7607b712018-02-19 10:14:44 -0600381static u8 rsm_ins_bytes[] = "\x0f\xaa";
382
Paolo Bonzini79a80592015-09-21 07:46:55 +0200383static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -0800384static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa);
Joerg Roedela5c38322009-08-07 11:49:32 +0200385static void svm_complete_interrupts(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800386
Joerg Roedel410e4d52009-08-07 11:49:44 +0200387static int nested_svm_exit_handled(struct vcpu_svm *svm);
Joerg Roedelb8e88bc2010-02-19 16:23:02 +0100388static int nested_svm_intercept(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800389static int nested_svm_vmexit(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800390static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
391 bool has_error_code, u32 error_code);
392
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100393enum {
Joerg Roedel116a0a22010-12-03 11:45:49 +0100394 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
395 pause filter count */
Joerg Roedelf56838e2010-12-03 11:45:50 +0100396 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
Joerg Roedeld48086d2010-12-03 11:45:51 +0100397 VMCB_ASID, /* ASID */
Joerg Roedeldecdbf62010-12-03 11:45:52 +0100398 VMCB_INTR, /* int_ctl, int_vector */
Joerg Roedelb2747162010-12-03 11:45:53 +0100399 VMCB_NPT, /* npt_en, nCR3, gPAT */
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100400 VMCB_CR, /* CR0, CR3, CR4, EFER */
Joerg Roedel72214b92010-12-03 11:45:55 +0100401 VMCB_DR, /* DR6, DR7 */
Joerg Roedel17a703c2010-12-03 11:45:56 +0100402 VMCB_DT, /* GDT, IDT */
Joerg Roedel060d0c92010-12-03 11:45:57 +0100403 VMCB_SEG, /* CS, DS, SS, ES, CPL */
Joerg Roedel0574dec2010-12-03 11:45:58 +0100404 VMCB_CR2, /* CR2 only */
Joerg Roedelb53ba3f2010-12-03 11:45:59 +0100405 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500406 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
407 * AVIC PHYSICAL_TABLE pointer,
408 * AVIC LOGICAL_TABLE pointer
409 */
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100410 VMCB_DIRTY_MAX,
411};
412
Joerg Roedel0574dec2010-12-03 11:45:58 +0100413/* TPR and CR2 are always written before VMRUN */
414#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100415
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500416#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
417
Brijesh Singhed3cd232017-12-04 10:57:32 -0600418static unsigned int max_sev_asid;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600419static unsigned int min_sev_asid;
420static unsigned long *sev_asid_bitmap;
Brijesh Singh89c50582017-12-04 10:57:35 -0600421#define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
Brijesh Singh1654efc2017-12-04 10:57:34 -0600422
Brijesh Singh1e80fdc2017-12-04 10:57:38 -0600423struct enc_region {
424 struct list_head list;
425 unsigned long npages;
426 struct page **pages;
427 unsigned long uaddr;
428 unsigned long size;
429};
430
Sean Christopherson81811c12018-03-20 12:17:21 -0700431
432static inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
433{
434 return container_of(kvm, struct kvm_svm, kvm);
435}
436
Brijesh Singh1654efc2017-12-04 10:57:34 -0600437static inline bool svm_sev_enabled(void)
438{
439 return max_sev_asid;
440}
441
442static inline bool sev_guest(struct kvm *kvm)
443{
Sean Christopherson81811c12018-03-20 12:17:21 -0700444 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600445
446 return sev->active;
447}
Brijesh Singhed3cd232017-12-04 10:57:32 -0600448
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600449static inline int sev_get_asid(struct kvm *kvm)
450{
Sean Christopherson81811c12018-03-20 12:17:21 -0700451 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600452
453 return sev->asid;
454}
455
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100456static inline void mark_all_dirty(struct vmcb *vmcb)
457{
458 vmcb->control.clean = 0;
459}
460
461static inline void mark_all_clean(struct vmcb *vmcb)
462{
463 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
464 & ~VMCB_ALWAYS_DIRTY_MASK;
465}
466
467static inline void mark_dirty(struct vmcb *vmcb, int bit)
468{
469 vmcb->control.clean &= ~(1 << bit);
470}
471
Avi Kivity6aa8b732006-12-10 02:21:36 -0800472static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
473{
474 return container_of(vcpu, struct vcpu_svm, vcpu);
475}
476
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500477static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
478{
479 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
480 mark_dirty(svm->vmcb, VMCB_AVIC);
481}
482
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -0500483static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
484{
485 struct vcpu_svm *svm = to_svm(vcpu);
486 u64 *entry = svm->avic_physical_id_cache;
487
488 if (!entry)
489 return false;
490
491 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
492}
493
Joerg Roedel384c6362010-11-30 18:03:56 +0100494static void recalc_intercepts(struct vcpu_svm *svm)
495{
496 struct vmcb_control_area *c, *h;
497 struct nested_state *g;
498
Joerg Roedel116a0a22010-12-03 11:45:49 +0100499 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
500
Joerg Roedel384c6362010-11-30 18:03:56 +0100501 if (!is_guest_mode(&svm->vcpu))
502 return;
503
504 c = &svm->vmcb->control;
505 h = &svm->nested.hsave->control;
506 g = &svm->nested;
507
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100508 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100509 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Paolo Bonzinibd895252018-01-11 16:55:24 +0100510 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100511 c->intercept = h->intercept | g->intercept;
512}
513
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100514static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
515{
516 if (is_guest_mode(&svm->vcpu))
517 return svm->nested.hsave;
518 else
519 return svm->vmcb;
520}
521
522static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
523{
524 struct vmcb *vmcb = get_host_vmcb(svm);
525
526 vmcb->control.intercept_cr |= (1U << bit);
527
528 recalc_intercepts(svm);
529}
530
531static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
532{
533 struct vmcb *vmcb = get_host_vmcb(svm);
534
535 vmcb->control.intercept_cr &= ~(1U << bit);
536
537 recalc_intercepts(svm);
538}
539
540static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
541{
542 struct vmcb *vmcb = get_host_vmcb(svm);
543
544 return vmcb->control.intercept_cr & (1U << bit);
545}
546
Paolo Bonzini5315c712014-03-03 13:08:29 +0100547static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100548{
549 struct vmcb *vmcb = get_host_vmcb(svm);
550
Paolo Bonzini5315c712014-03-03 13:08:29 +0100551 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
552 | (1 << INTERCEPT_DR1_READ)
553 | (1 << INTERCEPT_DR2_READ)
554 | (1 << INTERCEPT_DR3_READ)
555 | (1 << INTERCEPT_DR4_READ)
556 | (1 << INTERCEPT_DR5_READ)
557 | (1 << INTERCEPT_DR6_READ)
558 | (1 << INTERCEPT_DR7_READ)
559 | (1 << INTERCEPT_DR0_WRITE)
560 | (1 << INTERCEPT_DR1_WRITE)
561 | (1 << INTERCEPT_DR2_WRITE)
562 | (1 << INTERCEPT_DR3_WRITE)
563 | (1 << INTERCEPT_DR4_WRITE)
564 | (1 << INTERCEPT_DR5_WRITE)
565 | (1 << INTERCEPT_DR6_WRITE)
566 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100567
568 recalc_intercepts(svm);
569}
570
Paolo Bonzini5315c712014-03-03 13:08:29 +0100571static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100572{
573 struct vmcb *vmcb = get_host_vmcb(svm);
574
Paolo Bonzini5315c712014-03-03 13:08:29 +0100575 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100576
577 recalc_intercepts(svm);
578}
579
Joerg Roedel18c918c2010-11-30 18:03:59 +0100580static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
581{
582 struct vmcb *vmcb = get_host_vmcb(svm);
583
584 vmcb->control.intercept_exceptions |= (1U << bit);
585
586 recalc_intercepts(svm);
587}
588
589static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
590{
591 struct vmcb *vmcb = get_host_vmcb(svm);
592
593 vmcb->control.intercept_exceptions &= ~(1U << bit);
594
595 recalc_intercepts(svm);
596}
597
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100598static inline void set_intercept(struct vcpu_svm *svm, int bit)
599{
600 struct vmcb *vmcb = get_host_vmcb(svm);
601
602 vmcb->control.intercept |= (1ULL << bit);
603
604 recalc_intercepts(svm);
605}
606
607static inline void clr_intercept(struct vcpu_svm *svm, int bit)
608{
609 struct vmcb *vmcb = get_host_vmcb(svm);
610
611 vmcb->control.intercept &= ~(1ULL << bit);
612
613 recalc_intercepts(svm);
614}
615
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500616static inline bool vgif_enabled(struct vcpu_svm *svm)
617{
618 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
619}
620
Joerg Roedel2af91942009-08-07 11:49:28 +0200621static inline void enable_gif(struct vcpu_svm *svm)
622{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500623 if (vgif_enabled(svm))
624 svm->vmcb->control.int_ctl |= V_GIF_MASK;
625 else
626 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200627}
628
629static inline void disable_gif(struct vcpu_svm *svm)
630{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500631 if (vgif_enabled(svm))
632 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
633 else
634 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200635}
636
637static inline bool gif_set(struct vcpu_svm *svm)
638{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500639 if (vgif_enabled(svm))
640 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
641 else
642 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200643}
644
Avi Kivity6aa8b732006-12-10 02:21:36 -0800645static unsigned long iopm_base;
646
647struct kvm_ldttss_desc {
648 u16 limit0;
649 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100650 unsigned base1:8, type:5, dpl:2, p:1;
651 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800652 u32 base3;
653 u32 zero1;
654} __attribute__((packed));
655
656struct svm_cpu_data {
657 int cpu;
658
Avi Kivity5008fdf2007-04-02 13:05:50 +0300659 u64 asid_generation;
660 u32 max_asid;
661 u32 next_asid;
Brijesh Singh4faefff2017-12-04 10:57:25 -0600662 u32 min_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800663 struct kvm_ldttss_desc *tss_desc;
664
665 struct page *save_area;
Ashok Raj15d45072018-02-01 22:59:43 +0100666 struct vmcb *current_vmcb;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600667
668 /* index = sev_asid, value = vmcb pointer */
669 struct vmcb **sev_vmcbs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800670};
671
672static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
673
674struct svm_init_data {
675 int cpu;
676 int r;
677};
678
Mathias Krause09941fb2012-08-30 01:30:20 +0200679static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800680
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200681#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800682#define MSRS_RANGE_SIZE 2048
683#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
684
Joerg Roedel455716f2010-03-01 15:34:35 +0100685static u32 svm_msrpm_offset(u32 msr)
686{
687 u32 offset;
688 int i;
689
690 for (i = 0; i < NUM_MSR_MAPS; i++) {
691 if (msr < msrpm_ranges[i] ||
692 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
693 continue;
694
695 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
696 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
697
698 /* Now we have the u8 offset - but need the u32 offset */
699 return offset / 4;
700 }
701
702 /* MSR not in any range */
703 return MSR_INVALID;
704}
705
Avi Kivity6aa8b732006-12-10 02:21:36 -0800706#define MAX_INST_SIZE 15
707
Avi Kivity6aa8b732006-12-10 02:21:36 -0800708static inline void clgi(void)
709{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300710 asm volatile (__ex(SVM_CLGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800711}
712
713static inline void stgi(void)
714{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300715 asm volatile (__ex(SVM_STGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800716}
717
718static inline void invlpga(unsigned long addr, u32 asid)
719{
Joerg Roedele0231712010-02-24 18:59:10 +0100720 asm volatile (__ex(SVM_INVLPGA) : : "a"(addr), "c"(asid));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800721}
722
Yu Zhang855feb62017-08-24 20:27:55 +0800723static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200724{
725#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800726 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200727#else
728 return PT32E_ROOT_LEVEL;
729#endif
730}
731
Avi Kivity6aa8b732006-12-10 02:21:36 -0800732static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
733{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000734 vcpu->arch.efer = efer;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100735 if (!npt_enabled && !(efer & EFER_LMA))
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -0600736 efer &= ~EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800737
Alexander Graf9962d032008-11-25 20:17:02 +0100738 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100739 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800740}
741
Avi Kivity6aa8b732006-12-10 02:21:36 -0800742static int is_external_interrupt(u32 info)
743{
744 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
745 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
746}
747
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200748static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400749{
750 struct vcpu_svm *svm = to_svm(vcpu);
751 u32 ret = 0;
752
753 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200754 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
755 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400756}
757
758static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
759{
760 struct vcpu_svm *svm = to_svm(vcpu);
761
762 if (mask == 0)
763 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
764 else
765 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
766
767}
768
Avi Kivity6aa8b732006-12-10 02:21:36 -0800769static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
770{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400771 struct vcpu_svm *svm = to_svm(vcpu);
772
Bandan Dasf1047652015-06-11 02:05:33 -0400773 if (svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200774 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200775 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400776 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200777
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400778 if (!svm->next_rip) {
Sean Christopherson0ce97a22018-08-23 13:56:52 -0700779 if (kvm_emulate_instruction(vcpu, EMULTYPE_SKIP) !=
Gleb Natapovf629cf82009-05-11 13:35:49 +0300780 EMULATE_DONE)
781 printk(KERN_DEBUG "%s: NOP\n", __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800782 return;
783 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300784 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
785 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
786 __func__, kvm_rip_read(vcpu), svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800787
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300788 kvm_rip_write(vcpu, svm->next_rip);
Glauber Costa2809f5d2009-05-12 16:21:05 -0400789 svm_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800790}
791
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700792static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100793{
794 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700795 unsigned nr = vcpu->arch.exception.nr;
796 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700797 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700798 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100799
Joerg Roedele0231712010-02-24 18:59:10 +0100800 /*
801 * If we are within a nested VM we'd better #VMEXIT and let the guest
802 * handle the exception
803 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200804 if (!reinject &&
805 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100806 return;
807
Avi Kivity2a6b20b2010-11-09 16:15:42 +0200808 if (nr == BP_VECTOR && !static_cpu_has(X86_FEATURE_NRIPS)) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100809 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
810
811 /*
812 * For guest debugging where we have to reinject #BP if some
813 * INT3 is guest-owned:
814 * Emulate nRIP by moving RIP forward. Will fail if injection
815 * raises a fault that is not intercepted. Still better than
816 * failing in all cases.
817 */
818 skip_emulated_instruction(&svm->vcpu);
819 rip = kvm_rip_read(&svm->vcpu);
820 svm->int3_rip = rip + svm->vmcb->save.cs.base;
821 svm->int3_injected = rip - old_rip;
822 }
823
Jan Kiszka116a4752010-02-23 17:47:54 +0100824 svm->vmcb->control.event_inj = nr
825 | SVM_EVTINJ_VALID
826 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
827 | SVM_EVTINJ_TYPE_EXEPT;
828 svm->vmcb->control.event_inj_err = error_code;
829}
830
Joerg Roedel67ec6602010-05-17 14:43:35 +0200831static void svm_init_erratum_383(void)
832{
833 u32 low, high;
834 int err;
835 u64 val;
836
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100837 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200838 return;
839
840 /* Use _safe variants to not break nested virtualization */
841 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
842 if (err)
843 return;
844
845 val |= (1ULL << 47);
846
847 low = lower_32_bits(val);
848 high = upper_32_bits(val);
849
850 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
851
852 erratum_383_found = true;
853}
854
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500855static void svm_init_osvw(struct kvm_vcpu *vcpu)
856{
857 /*
858 * Guests should see errata 400 and 415 as fixed (assuming that
859 * HLT and IO instructions are intercepted).
860 */
861 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
862 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
863
864 /*
865 * By increasing VCPU's osvw.length to 3 we are telling the guest that
866 * all osvw.status bits inside that length, including bit 0 (which is
867 * reserved for erratum 298), are valid. However, if host processor's
868 * osvw_len is 0 then osvw_status[0] carries no information. We need to
869 * be conservative here and therefore we tell the guest that erratum 298
870 * is present (because we really don't know).
871 */
872 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
873 vcpu->arch.osvw.status |= 1;
874}
875
Avi Kivity6aa8b732006-12-10 02:21:36 -0800876static int has_svm(void)
877{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200878 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800879
Eduardo Habkost63d11422008-11-17 19:03:20 -0200880 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800881 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800882 return 0;
883 }
884
Avi Kivity6aa8b732006-12-10 02:21:36 -0800885 return 1;
886}
887
Radim Krčmář13a34e02014-08-28 15:13:03 +0200888static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800889{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100890 /* Make sure we clean up behind us */
891 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
892 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
893
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200894 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100895
896 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800897}
898
Radim Krčmář13a34e02014-08-28 15:13:03 +0200899static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800900{
901
Tejun Heo0fe1e002009-10-29 22:34:14 +0900902 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800903 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800904 struct desc_struct *gdt;
905 int me = raw_smp_processor_id();
906
Alexander Graf10474ae2009-09-15 11:37:46 +0200907 rdmsrl(MSR_EFER, efer);
908 if (efer & EFER_SVME)
909 return -EBUSY;
910
Avi Kivity6aa8b732006-12-10 02:21:36 -0800911 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200912 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200913 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900915 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900916 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200917 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200918 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919 }
920
Tejun Heo0fe1e002009-10-29 22:34:14 +0900921 sd->asid_generation = 1;
922 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
923 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600924 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800925
Thomas Garnier45fc8752017-03-14 10:05:08 -0700926 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900927 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800928
Alexander Graf9962d032008-11-25 20:17:02 +0100929 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800930
Linus Torvaldsd0316552009-12-14 09:58:24 -0800931 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200932
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100933 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
934 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500935 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100936 }
937
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500938
939 /*
940 * Get OSVW bits.
941 *
942 * Note that it is possible to have a system with mixed processor
943 * revisions and therefore different OSVW bits. If bits are not the same
944 * on different processors then choose the worst case (i.e. if erratum
945 * is present on one processor and not on another then assume that the
946 * erratum is present everywhere).
947 */
948 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
949 uint64_t len, status = 0;
950 int err;
951
952 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
953 if (!err)
954 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
955 &err);
956
957 if (err)
958 osvw_status = osvw_len = 0;
959 else {
960 if (len < osvw_len)
961 osvw_len = len;
962 osvw_status |= status;
963 osvw_status &= (1ULL << osvw_len) - 1;
964 }
965 } else
966 osvw_status = osvw_len = 0;
967
Joerg Roedel67ec6602010-05-17 14:43:35 +0200968 svm_init_erratum_383();
969
Joerg Roedel1018faa2012-02-29 14:57:32 +0100970 amd_pmu_enable_virt();
971
Alexander Graf10474ae2009-09-15 11:37:46 +0200972 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800973}
974
Joerg Roedel0da1db752008-07-02 16:02:11 +0200975static void svm_cpu_uninit(int cpu)
976{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900977 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200978
Tejun Heo0fe1e002009-10-29 22:34:14 +0900979 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200980 return;
981
982 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600983 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900984 __free_page(sd->save_area);
985 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200986}
987
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988static int svm_cpu_init(int cpu)
989{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900990 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991 int r;
992
Tejun Heo0fe1e002009-10-29 22:34:14 +0900993 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
994 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800995 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900996 sd->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997 r = -ENOMEM;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600998 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900999 if (!sd->save_area)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001000 goto err_1;
1001
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001002 if (svm_sev_enabled()) {
1003 r = -ENOMEM;
Kees Cook6da2ec52018-06-12 13:55:00 -07001004 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
1005 sizeof(void *),
1006 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001007 if (!sd->sev_vmcbs)
1008 goto err_1;
1009 }
1010
Tejun Heo0fe1e002009-10-29 22:34:14 +09001011 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001012
1013 return 0;
1014
1015err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +09001016 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001017 return r;
1018
1019}
1020
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001021static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001022{
1023 int i;
1024
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001025 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1026 if (direct_access_msrs[i].index == index)
1027 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001028
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001029 return false;
1030}
1031
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001032static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1033{
1034 u8 bit_write;
1035 unsigned long tmp;
1036 u32 offset;
1037 u32 *msrpm;
1038
1039 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1040 to_svm(vcpu)->msrpm;
1041
1042 offset = svm_msrpm_offset(msr);
1043 bit_write = 2 * (msr & 0x0f) + 1;
1044 tmp = msrpm[offset];
1045
1046 BUG_ON(offset == MSR_INVALID);
1047
1048 return !!test_bit(bit_write, &tmp);
1049}
1050
Avi Kivity6aa8b732006-12-10 02:21:36 -08001051static void set_msr_interception(u32 *msrpm, unsigned msr,
1052 int read, int write)
1053{
Joerg Roedel455716f2010-03-01 15:34:35 +01001054 u8 bit_read, bit_write;
1055 unsigned long tmp;
1056 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001057
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001058 /*
1059 * If this warning triggers extend the direct_access_msrs list at the
1060 * beginning of the file
1061 */
1062 WARN_ON(!valid_msr_intercept(msr));
1063
Joerg Roedel455716f2010-03-01 15:34:35 +01001064 offset = svm_msrpm_offset(msr);
1065 bit_read = 2 * (msr & 0x0f);
1066 bit_write = 2 * (msr & 0x0f) + 1;
1067 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001068
Joerg Roedel455716f2010-03-01 15:34:35 +01001069 BUG_ON(offset == MSR_INVALID);
1070
1071 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1072 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1073
1074 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001075}
1076
Joerg Roedelf65c2292008-02-13 18:58:46 +01001077static void svm_vcpu_init_msrpm(u32 *msrpm)
1078{
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001079 int i;
1080
Joerg Roedelf65c2292008-02-13 18:58:46 +01001081 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1082
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001083 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1084 if (!direct_access_msrs[i].always)
1085 continue;
1086
1087 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1088 }
Joerg Roedelf65c2292008-02-13 18:58:46 +01001089}
1090
Joerg Roedel323c3d82010-03-01 15:34:37 +01001091static void add_msr_offset(u32 offset)
1092{
1093 int i;
1094
1095 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1096
1097 /* Offset already in list? */
1098 if (msrpm_offsets[i] == offset)
1099 return;
1100
1101 /* Slot used by another offset? */
1102 if (msrpm_offsets[i] != MSR_INVALID)
1103 continue;
1104
1105 /* Add offset to list */
1106 msrpm_offsets[i] = offset;
1107
1108 return;
1109 }
1110
1111 /*
1112 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1113 * increase MSRPM_OFFSETS in this case.
1114 */
1115 BUG();
1116}
1117
1118static void init_msrpm_offsets(void)
1119{
1120 int i;
1121
1122 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1123
1124 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1125 u32 offset;
1126
1127 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1128 BUG_ON(offset == MSR_INVALID);
1129
1130 add_msr_offset(offset);
1131 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001132}
1133
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001134static void svm_enable_lbrv(struct vcpu_svm *svm)
1135{
1136 u32 *msrpm = svm->msrpm;
1137
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001138 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001139 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1140 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1141 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1142 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1143}
1144
1145static void svm_disable_lbrv(struct vcpu_svm *svm)
1146{
1147 u32 *msrpm = svm->msrpm;
1148
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001149 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001150 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
1151 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1152 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1153 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1154}
1155
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001156static void disable_nmi_singlestep(struct vcpu_svm *svm)
1157{
1158 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001159
Ladi Prosekab2f4d732017-06-21 09:06:58 +02001160 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1161 /* Clear our flags if they were not set by the guest */
1162 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1163 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1164 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1165 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1166 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001167}
1168
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001169/* Note:
Sean Christopherson81811c12018-03-20 12:17:21 -07001170 * This hash table is used to map VM_ID to a struct kvm_svm,
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001171 * when handling AMD IOMMU GALOG notification to schedule in
1172 * a particular vCPU.
1173 */
1174#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001175static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001176static u32 next_vm_id = 0;
1177static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001178static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001179
1180/* Note:
1181 * This function is called from IOMMU driver to notify
1182 * SVM to schedule in a particular vCPU of a particular VM.
1183 */
1184static int avic_ga_log_notifier(u32 ga_tag)
1185{
1186 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001187 struct kvm_svm *kvm_svm;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001188 struct kvm_vcpu *vcpu = NULL;
1189 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1190 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1191
1192 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1193
1194 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001195 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1196 if (kvm_svm->avic_vm_id != vm_id)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001197 continue;
Sean Christopherson81811c12018-03-20 12:17:21 -07001198 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001199 break;
1200 }
1201 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1202
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001203 /* Note:
1204 * At this point, the IOMMU should have already set the pending
1205 * bit in the vAPIC backing page. So, we just need to schedule
1206 * in the vcpu.
1207 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001208 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001209 kvm_vcpu_wake_up(vcpu);
1210
1211 return 0;
1212}
1213
Brijesh Singhe9df0942017-12-04 10:57:33 -06001214static __init int sev_hardware_setup(void)
1215{
1216 struct sev_user_data_status *status;
1217 int rc;
1218
1219 /* Maximum number of encrypted guests supported simultaneously */
1220 max_sev_asid = cpuid_ecx(0x8000001F);
1221
1222 if (!max_sev_asid)
1223 return 1;
1224
Brijesh Singh1654efc2017-12-04 10:57:34 -06001225 /* Minimum ASID value that should be used for SEV guest */
1226 min_sev_asid = cpuid_edx(0x8000001F);
1227
1228 /* Initialize SEV ASID bitmap */
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001229 sev_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001230 if (!sev_asid_bitmap)
1231 return 1;
1232
Brijesh Singhe9df0942017-12-04 10:57:33 -06001233 status = kmalloc(sizeof(*status), GFP_KERNEL);
1234 if (!status)
1235 return 1;
1236
1237 /*
1238 * Check SEV platform status.
1239 *
1240 * PLATFORM_STATUS can be called in any state, if we failed to query
1241 * the PLATFORM status then either PSP firmware does not support SEV
1242 * feature or SEV firmware is dead.
1243 */
1244 rc = sev_platform_status(status, NULL);
1245 if (rc)
1246 goto err;
1247
1248 pr_info("SEV supported\n");
1249
1250err:
1251 kfree(status);
1252 return rc;
1253}
1254
Babu Moger8566ac82018-03-16 16:37:26 -04001255static void grow_ple_window(struct kvm_vcpu *vcpu)
1256{
1257 struct vcpu_svm *svm = to_svm(vcpu);
1258 struct vmcb_control_area *control = &svm->vmcb->control;
1259 int old = control->pause_filter_count;
1260
1261 control->pause_filter_count = __grow_ple_window(old,
1262 pause_filter_count,
1263 pause_filter_count_grow,
1264 pause_filter_count_max);
1265
1266 if (control->pause_filter_count != old)
1267 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1268
1269 trace_kvm_ple_window_grow(vcpu->vcpu_id,
1270 control->pause_filter_count, old);
1271}
1272
1273static void shrink_ple_window(struct kvm_vcpu *vcpu)
1274{
1275 struct vcpu_svm *svm = to_svm(vcpu);
1276 struct vmcb_control_area *control = &svm->vmcb->control;
1277 int old = control->pause_filter_count;
1278
1279 control->pause_filter_count =
1280 __shrink_ple_window(old,
1281 pause_filter_count,
1282 pause_filter_count_shrink,
1283 pause_filter_count);
1284 if (control->pause_filter_count != old)
1285 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1286
1287 trace_kvm_ple_window_shrink(vcpu->vcpu_id,
1288 control->pause_filter_count, old);
1289}
1290
Avi Kivity6aa8b732006-12-10 02:21:36 -08001291static __init int svm_hardware_setup(void)
1292{
1293 int cpu;
1294 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001295 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001296 int r;
1297
Avi Kivity6aa8b732006-12-10 02:21:36 -08001298 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1299
1300 if (!iopm_pages)
1301 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001302
1303 iopm_va = page_address(iopm_pages);
1304 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001305 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1306
Joerg Roedel323c3d82010-03-01 15:34:37 +01001307 init_msrpm_offsets();
1308
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001309 if (boot_cpu_has(X86_FEATURE_NX))
1310 kvm_enable_efer_bits(EFER_NX);
1311
Alexander Graf1b2fd702009-02-02 16:23:51 +01001312 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1313 kvm_enable_efer_bits(EFER_FFXSR);
1314
Joerg Roedel92a1f122011-03-25 09:44:51 +01001315 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001316 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001317 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1318 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001319 }
1320
Babu Moger8566ac82018-03-16 16:37:26 -04001321 /* Check for pause filtering support */
1322 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1323 pause_filter_count = 0;
1324 pause_filter_thresh = 0;
1325 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1326 pause_filter_thresh = 0;
1327 }
1328
Alexander Graf236de052008-11-25 20:17:10 +01001329 if (nested) {
1330 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001331 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001332 }
1333
Brijesh Singhe9df0942017-12-04 10:57:33 -06001334 if (sev) {
1335 if (boot_cpu_has(X86_FEATURE_SEV) &&
1336 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1337 r = sev_hardware_setup();
1338 if (r)
1339 sev = false;
1340 } else {
1341 sev = false;
1342 }
1343 }
1344
Zachary Amsden3230bb42009-09-29 11:38:37 -10001345 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001346 r = svm_cpu_init(cpu);
1347 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001348 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001349 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001350
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001351 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001352 npt_enabled = false;
1353
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001354 if (npt_enabled && !npt) {
1355 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1356 npt_enabled = false;
1357 }
1358
Joerg Roedel18552672008-02-07 13:47:41 +01001359 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001360 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001361 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001362 } else
1363 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001364
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001365 if (avic) {
1366 if (!npt_enabled ||
1367 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001368 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001369 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001370 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001371 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001372
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001373 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1374 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001375 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001376
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001377 if (vls) {
1378 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001379 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001380 !IS_ENABLED(CONFIG_X86_64)) {
1381 vls = false;
1382 } else {
1383 pr_info("Virtual VMLOAD VMSAVE supported\n");
1384 }
1385 }
1386
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001387 if (vgif) {
1388 if (!boot_cpu_has(X86_FEATURE_VGIF))
1389 vgif = false;
1390 else
1391 pr_info("Virtual GIF supported\n");
1392 }
1393
Avi Kivity6aa8b732006-12-10 02:21:36 -08001394 return 0;
1395
Joerg Roedelf65c2292008-02-13 18:58:46 +01001396err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001397 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1398 iopm_base = 0;
1399 return r;
1400}
1401
1402static __exit void svm_hardware_unsetup(void)
1403{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001404 int cpu;
1405
Brijesh Singh1654efc2017-12-04 10:57:34 -06001406 if (svm_sev_enabled())
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001407 bitmap_free(sev_asid_bitmap);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001408
Zachary Amsden3230bb42009-09-29 11:38:37 -10001409 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001410 svm_cpu_uninit(cpu);
1411
Avi Kivity6aa8b732006-12-10 02:21:36 -08001412 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001413 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001414}
1415
1416static void init_seg(struct vmcb_seg *seg)
1417{
1418 seg->selector = 0;
1419 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001420 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001421 seg->limit = 0xffff;
1422 seg->base = 0;
1423}
1424
1425static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1426{
1427 seg->selector = 0;
1428 seg->attrib = SVM_SELECTOR_P_MASK | type;
1429 seg->limit = 0xffff;
1430 seg->base = 0;
1431}
1432
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001433static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1434{
1435 struct vcpu_svm *svm = to_svm(vcpu);
1436
1437 if (is_guest_mode(vcpu))
1438 return svm->nested.hsave->control.tsc_offset;
1439
1440 return vcpu->arch.tsc_offset;
1441}
1442
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001443static void svm_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1444{
1445 struct vcpu_svm *svm = to_svm(vcpu);
1446 u64 g_tsc_offset = 0;
1447
Joerg Roedel20307532010-11-29 17:51:48 +01001448 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001449 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001450 g_tsc_offset = svm->vmcb->control.tsc_offset -
1451 svm->nested.hsave->control.tsc_offset;
1452 svm->nested.hsave->control.tsc_offset = offset;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09001453 } else
1454 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1455 svm->vmcb->control.tsc_offset,
1456 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001457
1458 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001459
1460 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001461}
1462
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001463static void avic_init_vmcb(struct vcpu_svm *svm)
1464{
1465 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001466 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001467 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001468 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1469 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001470
1471 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1472 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1473 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1474 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1475 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001476}
1477
Paolo Bonzini56908912015-10-19 11:30:19 +02001478static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001479{
Joerg Roedele6101a92008-02-13 18:58:45 +01001480 struct vmcb_control_area *control = &svm->vmcb->control;
1481 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001482
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001483 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001484
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001485 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1486 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1487 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1488 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1489 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1490 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001491 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1492 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001493
Paolo Bonzini5315c712014-03-03 13:08:29 +01001494 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001495
Joerg Roedel18c918c2010-11-30 18:03:59 +01001496 set_exception_intercept(svm, PF_VECTOR);
1497 set_exception_intercept(svm, UD_VECTOR);
1498 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001499 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001500 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001501 /*
1502 * Guest access to VMware backdoor ports could legitimately
1503 * trigger #GP because of TSS I/O permission bitmap.
1504 * We intercept those #GP and allow access to them anyway
1505 * as VMware does.
1506 */
1507 if (enable_vmware_backdoor)
1508 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001509
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001510 set_intercept(svm, INTERCEPT_INTR);
1511 set_intercept(svm, INTERCEPT_NMI);
1512 set_intercept(svm, INTERCEPT_SMI);
1513 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001514 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001515 set_intercept(svm, INTERCEPT_CPUID);
1516 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001517 set_intercept(svm, INTERCEPT_INVLPG);
1518 set_intercept(svm, INTERCEPT_INVLPGA);
1519 set_intercept(svm, INTERCEPT_IOIO_PROT);
1520 set_intercept(svm, INTERCEPT_MSR_PROT);
1521 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1522 set_intercept(svm, INTERCEPT_SHUTDOWN);
1523 set_intercept(svm, INTERCEPT_VMRUN);
1524 set_intercept(svm, INTERCEPT_VMMCALL);
1525 set_intercept(svm, INTERCEPT_VMLOAD);
1526 set_intercept(svm, INTERCEPT_VMSAVE);
1527 set_intercept(svm, INTERCEPT_STGI);
1528 set_intercept(svm, INTERCEPT_CLGI);
1529 set_intercept(svm, INTERCEPT_SKINIT);
1530 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001531 set_intercept(svm, INTERCEPT_XSETBV);
Brijesh Singh7607b712018-02-19 10:14:44 -06001532 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001533
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001534 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001535 set_intercept(svm, INTERCEPT_MONITOR);
1536 set_intercept(svm, INTERCEPT_MWAIT);
1537 }
1538
Wanpeng Licaa057a2018-03-12 04:53:03 -07001539 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1540 set_intercept(svm, INTERCEPT_HLT);
1541
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001542 control->iopm_base_pa = __sme_set(iopm_base);
1543 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001544 control->int_ctl = V_INTR_MASKING_MASK;
1545
1546 init_seg(&save->es);
1547 init_seg(&save->ss);
1548 init_seg(&save->ds);
1549 init_seg(&save->fs);
1550 init_seg(&save->gs);
1551
1552 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001553 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001554 /* Executable/Readable Code Segment */
1555 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1556 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1557 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001558
1559 save->gdtr.limit = 0xffff;
1560 save->idtr.limit = 0xffff;
1561
1562 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1563 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1564
Paolo Bonzini56908912015-10-19 11:30:19 +02001565 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001566 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001567 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001568 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001569 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570
Joerg Roedele0231712010-02-24 18:59:10 +01001571 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001572 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001573 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001574 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001575 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001576 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001577
Rusty Russell66aee912007-07-17 23:34:16 +10001578 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001579 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001580
1581 if (npt_enabled) {
1582 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001583 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001584 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001585 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001586 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1587 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001588 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001589 save->cr3 = 0;
1590 save->cr4 = 0;
1591 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001592 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001593
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001594 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001595 svm->vcpu.arch.hflags = 0;
1596
Babu Moger8566ac82018-03-16 16:37:26 -04001597 if (pause_filter_count) {
1598 control->pause_filter_count = pause_filter_count;
1599 if (pause_filter_thresh)
1600 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001601 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001602 } else {
1603 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001604 }
1605
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001606 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001607 avic_init_vmcb(svm);
1608
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001609 /*
1610 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1611 * in VMCB and clear intercepts to avoid #VMEXIT.
1612 */
1613 if (vls) {
1614 clr_intercept(svm, INTERCEPT_VMLOAD);
1615 clr_intercept(svm, INTERCEPT_VMSAVE);
1616 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1617 }
1618
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001619 if (vgif) {
1620 clr_intercept(svm, INTERCEPT_STGI);
1621 clr_intercept(svm, INTERCEPT_CLGI);
1622 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1623 }
1624
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001625 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001626 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001627 clr_exception_intercept(svm, UD_VECTOR);
1628 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001629
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001630 mark_all_dirty(svm->vmcb);
1631
Joerg Roedel2af91942009-08-07 11:49:28 +02001632 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001633
1634}
1635
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001636static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1637 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001638{
1639 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001640 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001641
1642 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1643 return NULL;
1644
Sean Christopherson81811c12018-03-20 12:17:21 -07001645 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001646
1647 return &avic_physical_id_table[index];
1648}
1649
1650/**
1651 * Note:
1652 * AVIC hardware walks the nested page table to check permissions,
1653 * but does not use the SPA address specified in the leaf page
1654 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1655 * field of the VMCB. Therefore, we set up the
1656 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1657 */
1658static int avic_init_access_page(struct kvm_vcpu *vcpu)
1659{
1660 struct kvm *kvm = vcpu->kvm;
1661 int ret;
1662
1663 if (kvm->arch.apic_access_page_done)
1664 return 0;
1665
1666 ret = x86_set_memory_region(kvm,
1667 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1668 APIC_DEFAULT_PHYS_BASE,
1669 PAGE_SIZE);
1670 if (ret)
1671 return ret;
1672
1673 kvm->arch.apic_access_page_done = true;
1674 return 0;
1675}
1676
1677static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1678{
1679 int ret;
1680 u64 *entry, new_entry;
1681 int id = vcpu->vcpu_id;
1682 struct vcpu_svm *svm = to_svm(vcpu);
1683
1684 ret = avic_init_access_page(vcpu);
1685 if (ret)
1686 return ret;
1687
1688 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1689 return -EINVAL;
1690
1691 if (!svm->vcpu.arch.apic->regs)
1692 return -EINVAL;
1693
1694 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1695
1696 /* Setting AVIC backing page address in the phy APIC ID table */
1697 entry = avic_get_physical_id_entry(vcpu, id);
1698 if (!entry)
1699 return -EINVAL;
1700
1701 new_entry = READ_ONCE(*entry);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001702 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1703 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1704 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001705 WRITE_ONCE(*entry, new_entry);
1706
1707 svm->avic_physical_id_cache = entry;
1708
1709 return 0;
1710}
1711
Brijesh Singh1654efc2017-12-04 10:57:34 -06001712static void __sev_asid_free(int asid)
1713{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001714 struct svm_cpu_data *sd;
1715 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001716
1717 pos = asid - 1;
1718 clear_bit(pos, sev_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001719
1720 for_each_possible_cpu(cpu) {
1721 sd = per_cpu(svm_data, cpu);
1722 sd->sev_vmcbs[pos] = NULL;
1723 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001724}
1725
1726static void sev_asid_free(struct kvm *kvm)
1727{
Sean Christopherson81811c12018-03-20 12:17:21 -07001728 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001729
1730 __sev_asid_free(sev->asid);
1731}
1732
Brijesh Singh59414c92017-12-04 10:57:35 -06001733static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1734{
1735 struct sev_data_decommission *decommission;
1736 struct sev_data_deactivate *data;
1737
1738 if (!handle)
1739 return;
1740
1741 data = kzalloc(sizeof(*data), GFP_KERNEL);
1742 if (!data)
1743 return;
1744
1745 /* deactivate handle */
1746 data->handle = handle;
1747 sev_guest_deactivate(data, NULL);
1748
1749 wbinvd_on_all_cpus();
1750 sev_guest_df_flush(NULL);
1751 kfree(data);
1752
1753 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1754 if (!decommission)
1755 return;
1756
1757 /* decommission handle */
1758 decommission->handle = handle;
1759 sev_guest_decommission(decommission, NULL);
1760
1761 kfree(decommission);
1762}
1763
Brijesh Singh89c50582017-12-04 10:57:35 -06001764static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1765 unsigned long ulen, unsigned long *n,
1766 int write)
1767{
Sean Christopherson81811c12018-03-20 12:17:21 -07001768 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001769 unsigned long npages, npinned, size;
1770 unsigned long locked, lock_limit;
1771 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001772 unsigned long first, last;
1773
1774 if (ulen == 0 || uaddr + ulen < uaddr)
1775 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001776
1777 /* Calculate number of pages. */
1778 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1779 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1780 npages = (last - first + 1);
1781
1782 locked = sev->pages_locked + npages;
1783 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1784 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1785 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1786 return NULL;
1787 }
1788
1789 /* Avoid using vmalloc for smaller buffers. */
1790 size = npages * sizeof(struct page *);
1791 if (size > PAGE_SIZE)
1792 pages = vmalloc(size);
1793 else
1794 pages = kmalloc(size, GFP_KERNEL);
1795
1796 if (!pages)
1797 return NULL;
1798
1799 /* Pin the user virtual address. */
1800 npinned = get_user_pages_fast(uaddr, npages, write ? FOLL_WRITE : 0, pages);
1801 if (npinned != npages) {
1802 pr_err("SEV: Failure locking %lu pages.\n", npages);
1803 goto err;
1804 }
1805
1806 *n = npages;
1807 sev->pages_locked = locked;
1808
1809 return pages;
1810
1811err:
1812 if (npinned > 0)
1813 release_pages(pages, npinned);
1814
1815 kvfree(pages);
1816 return NULL;
1817}
1818
1819static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1820 unsigned long npages)
1821{
Sean Christopherson81811c12018-03-20 12:17:21 -07001822 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001823
1824 release_pages(pages, npages);
1825 kvfree(pages);
1826 sev->pages_locked -= npages;
1827}
1828
1829static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1830{
1831 uint8_t *page_virtual;
1832 unsigned long i;
1833
1834 if (npages == 0 || pages == NULL)
1835 return;
1836
1837 for (i = 0; i < npages; i++) {
1838 page_virtual = kmap_atomic(pages[i]);
1839 clflush_cache_range(page_virtual, PAGE_SIZE);
1840 kunmap_atomic(page_virtual);
1841 }
1842}
1843
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001844static void __unregister_enc_region_locked(struct kvm *kvm,
1845 struct enc_region *region)
1846{
1847 /*
1848 * The guest may change the memory encryption attribute from C=0 -> C=1
1849 * or vice versa for this memory range. Lets make sure caches are
1850 * flushed to ensure that guest data gets written into memory with
1851 * correct C-bit.
1852 */
1853 sev_clflush_pages(region->pages, region->npages);
1854
1855 sev_unpin_memory(kvm, region->pages, region->npages);
1856 list_del(&region->list);
1857 kfree(region);
1858}
1859
Sean Christopherson434a1e92018-03-20 12:17:18 -07001860static struct kvm *svm_vm_alloc(void)
1861{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001862 struct kvm_svm *kvm_svm = vzalloc(sizeof(struct kvm_svm));
Sean Christopherson81811c12018-03-20 12:17:21 -07001863 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001864}
1865
1866static void svm_vm_free(struct kvm *kvm)
1867{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001868 vfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001869}
1870
Brijesh Singh1654efc2017-12-04 10:57:34 -06001871static void sev_vm_destroy(struct kvm *kvm)
1872{
Sean Christopherson81811c12018-03-20 12:17:21 -07001873 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001874 struct list_head *head = &sev->regions_list;
1875 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001876
Brijesh Singh1654efc2017-12-04 10:57:34 -06001877 if (!sev_guest(kvm))
1878 return;
1879
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001880 mutex_lock(&kvm->lock);
1881
1882 /*
1883 * if userspace was terminated before unregistering the memory regions
1884 * then lets unpin all the registered memory.
1885 */
1886 if (!list_empty(head)) {
1887 list_for_each_safe(pos, q, head) {
1888 __unregister_enc_region_locked(kvm,
1889 list_entry(pos, struct enc_region, list));
1890 }
1891 }
1892
1893 mutex_unlock(&kvm->lock);
1894
Brijesh Singh59414c92017-12-04 10:57:35 -06001895 sev_unbind_asid(kvm, sev->handle);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001896 sev_asid_free(kvm);
1897}
1898
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001899static void avic_vm_destroy(struct kvm *kvm)
1900{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001901 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001902 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001903
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001904 if (!avic)
1905 return;
1906
Sean Christopherson81811c12018-03-20 12:17:21 -07001907 if (kvm_svm->avic_logical_id_table_page)
1908 __free_page(kvm_svm->avic_logical_id_table_page);
1909 if (kvm_svm->avic_physical_id_table_page)
1910 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001911
1912 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001913 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001914 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001915}
1916
Brijesh Singh1654efc2017-12-04 10:57:34 -06001917static void svm_vm_destroy(struct kvm *kvm)
1918{
1919 avic_vm_destroy(kvm);
1920 sev_vm_destroy(kvm);
1921}
1922
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001923static int avic_vm_init(struct kvm *kvm)
1924{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001925 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001926 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07001927 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
1928 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001929 struct page *p_page;
1930 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001931 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001932
1933 if (!avic)
1934 return 0;
1935
1936 /* Allocating physical APIC ID table (4KB) */
1937 p_page = alloc_page(GFP_KERNEL);
1938 if (!p_page)
1939 goto free_avic;
1940
Sean Christopherson81811c12018-03-20 12:17:21 -07001941 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001942 clear_page(page_address(p_page));
1943
1944 /* Allocating logical APIC ID table (4KB) */
1945 l_page = alloc_page(GFP_KERNEL);
1946 if (!l_page)
1947 goto free_avic;
1948
Sean Christopherson81811c12018-03-20 12:17:21 -07001949 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001950 clear_page(page_address(l_page));
1951
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001952 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001953 again:
1954 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1955 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1956 next_vm_id_wrapped = 1;
1957 goto again;
1958 }
1959 /* Is it still in use? Only possible if wrapped at least once */
1960 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07001961 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
1962 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001963 goto again;
1964 }
1965 }
Sean Christopherson81811c12018-03-20 12:17:21 -07001966 kvm_svm->avic_vm_id = vm_id;
1967 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001968 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1969
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001970 return 0;
1971
1972free_avic:
1973 avic_vm_destroy(kvm);
1974 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001975}
1976
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001977static inline int
1978avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001979{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001980 int ret = 0;
1981 unsigned long flags;
1982 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001983 struct vcpu_svm *svm = to_svm(vcpu);
1984
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001985 if (!kvm_arch_has_assigned_device(vcpu->kvm))
1986 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001987
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001988 /*
1989 * Here, we go through the per-vcpu ir_list to update all existing
1990 * interrupt remapping table entry targeting this vcpu.
1991 */
1992 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001993
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001994 if (list_empty(&svm->ir_list))
1995 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001996
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001997 list_for_each_entry(ir, &svm->ir_list, node) {
1998 ret = amd_iommu_update_ga(cpu, r, ir->data);
1999 if (ret)
2000 break;
2001 }
2002out:
2003 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2004 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002005}
2006
2007static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2008{
2009 u64 entry;
2010 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002011 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002012 struct vcpu_svm *svm = to_svm(vcpu);
2013
2014 if (!kvm_vcpu_apicv_active(vcpu))
2015 return;
2016
2017 if (WARN_ON(h_physical_id >= AVIC_MAX_PHYSICAL_ID_COUNT))
2018 return;
2019
2020 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2021 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2022
2023 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2024 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2025
2026 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2027 if (svm->avic_is_running)
2028 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2029
2030 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002031 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2032 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002033}
2034
2035static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2036{
2037 u64 entry;
2038 struct vcpu_svm *svm = to_svm(vcpu);
2039
2040 if (!kvm_vcpu_apicv_active(vcpu))
2041 return;
2042
2043 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002044 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2045 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2046
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002047 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2048 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002049}
2050
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002051/**
2052 * This function is called during VCPU halt/unhalt.
2053 */
2054static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2055{
2056 struct vcpu_svm *svm = to_svm(vcpu);
2057
2058 svm->avic_is_running = is_run;
2059 if (is_run)
2060 avic_vcpu_load(vcpu, vcpu->cpu);
2061 else
2062 avic_vcpu_put(vcpu);
2063}
2064
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002065static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002066{
2067 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002068 u32 dummy;
2069 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002070
Wanpeng Li518e7b92018-02-28 14:03:31 +08002071 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002072 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002073 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002074
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002075 if (!init_event) {
2076 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2077 MSR_IA32_APICBASE_ENABLE;
2078 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2079 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2080 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002081 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002082
Yu Zhange911eb32017-08-24 20:27:52 +08002083 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002084 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002085
2086 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2087 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002088}
2089
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002090static int avic_init_vcpu(struct vcpu_svm *svm)
2091{
2092 int ret;
2093
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002094 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002095 return 0;
2096
2097 ret = avic_init_backing_page(&svm->vcpu);
2098 if (ret)
2099 return ret;
2100
2101 INIT_LIST_HEAD(&svm->ir_list);
2102 spin_lock_init(&svm->ir_list_lock);
2103
2104 return ret;
2105}
2106
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002107static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002108{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002109 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002110 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002111 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002112 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002113 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002114 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002115
Rusty Russellc16f8622007-07-30 21:12:19 +10002116 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002117 if (!svm) {
2118 err = -ENOMEM;
2119 goto out;
2120 }
2121
2122 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
2123 if (err)
2124 goto free_svm;
2125
Joerg Roedelf65c2292008-02-13 18:58:46 +01002126 err = -ENOMEM;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002127 page = alloc_page(GFP_KERNEL);
2128 if (!page)
2129 goto uninit;
2130
Joerg Roedelf65c2292008-02-13 18:58:46 +01002131 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2132 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002133 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002134
2135 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2136 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002137 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002138
Alexander Grafb286d5d2008-11-25 20:17:05 +01002139 hsave_page = alloc_page(GFP_KERNEL);
2140 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002141 goto free_page3;
2142
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002143 err = avic_init_vcpu(svm);
2144 if (err)
2145 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002146
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002147 /* We initialize this flag to true to make sure that the is_running
2148 * bit would be set the first time the vcpu is loaded.
2149 */
2150 svm->avic_is_running = true;
2151
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002152 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002153
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002154 svm->msrpm = page_address(msrpm_pages);
2155 svm_vcpu_init_msrpm(svm->msrpm);
2156
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002157 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002158 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002159
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002160 svm->vmcb = page_address(page);
2161 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002162 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002163 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002164 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002165
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002166 svm_init_osvw(&svm->vcpu);
2167
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002168 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08002169
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002170free_page4:
2171 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002172free_page3:
2173 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2174free_page2:
2175 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2176free_page1:
2177 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002178uninit:
2179 kvm_vcpu_uninit(&svm->vcpu);
2180free_svm:
Rusty Russella4770342007-08-01 14:46:11 +10002181 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002182out:
2183 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002184}
2185
2186static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2187{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002188 struct vcpu_svm *svm = to_svm(vcpu);
2189
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002190 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002191 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002192 __free_page(virt_to_page(svm->nested.hsave));
2193 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002194 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10002195 kmem_cache_free(kvm_vcpu_cache, svm);
Ashok Raj15d45072018-02-01 22:59:43 +01002196 /*
2197 * The vmcb page can be recycled, causing a false negative in
2198 * svm_vcpu_load(). So do a full IBPB now.
2199 */
2200 indirect_branch_prediction_barrier();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002201}
2202
Avi Kivity15ad7142007-07-11 18:17:21 +03002203static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002204{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002205 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002206 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002207 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002208
Avi Kivity0cc50642007-03-25 12:07:27 +02002209 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002210 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002211 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002212 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002213
Avi Kivity82ca2d12010-10-21 12:20:34 +02002214#ifdef CONFIG_X86_64
2215 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2216#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002217 savesegment(fs, svm->host.fs);
2218 savesegment(gs, svm->host.gs);
2219 svm->host.ldt = kvm_read_ldt();
2220
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002221 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002222 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002223
Haozhong Zhangad7218832015-10-20 15:39:02 +08002224 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2225 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2226 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2227 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2228 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2229 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002230 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002231 /* This assumes that the kernel never uses MSR_TSC_AUX */
2232 if (static_cpu_has(X86_FEATURE_RDTSCP))
2233 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002234
Ashok Raj15d45072018-02-01 22:59:43 +01002235 if (sd->current_vmcb != svm->vmcb) {
2236 sd->current_vmcb = svm->vmcb;
2237 indirect_branch_prediction_barrier();
2238 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002239 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002240}
2241
2242static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2243{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002244 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002245 int i;
2246
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002247 avic_vcpu_put(vcpu);
2248
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002249 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002250 kvm_load_ldt(svm->host.ldt);
2251#ifdef CONFIG_X86_64
2252 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002253 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002254 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002255#else
Avi Kivity831ca602011-03-08 16:09:51 +02002256#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002257 loadsegment(gs, svm->host.gs);
2258#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002259#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002260 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002261 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002262}
2263
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002264static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2265{
2266 avic_set_running(vcpu, false);
2267}
2268
2269static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2270{
2271 avic_set_running(vcpu, true);
2272}
2273
Avi Kivity6aa8b732006-12-10 02:21:36 -08002274static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2275{
Ladi Prosek9b611742017-06-21 09:06:59 +02002276 struct vcpu_svm *svm = to_svm(vcpu);
2277 unsigned long rflags = svm->vmcb->save.rflags;
2278
2279 if (svm->nmi_singlestep) {
2280 /* Hide our flags if they were not set by the guest */
2281 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2282 rflags &= ~X86_EFLAGS_TF;
2283 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2284 rflags &= ~X86_EFLAGS_RF;
2285 }
2286 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002287}
2288
2289static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2290{
Ladi Prosek9b611742017-06-21 09:06:59 +02002291 if (to_svm(vcpu)->nmi_singlestep)
2292 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2293
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002294 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002295 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002296 * (caused by either a task switch or an inter-privilege IRET),
2297 * so we do not need to update the CPL here.
2298 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002299 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002300}
2301
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002302static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2303{
2304 switch (reg) {
2305 case VCPU_EXREG_PDPTR:
2306 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002307 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002308 break;
2309 default:
2310 BUG();
2311 }
2312}
2313
Alexander Graff0b85052008-11-25 20:17:01 +01002314static void svm_set_vintr(struct vcpu_svm *svm)
2315{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002316 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002317}
2318
2319static void svm_clear_vintr(struct vcpu_svm *svm)
2320{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002321 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002322}
2323
Avi Kivity6aa8b732006-12-10 02:21:36 -08002324static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2325{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002326 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002327
2328 switch (seg) {
2329 case VCPU_SREG_CS: return &save->cs;
2330 case VCPU_SREG_DS: return &save->ds;
2331 case VCPU_SREG_ES: return &save->es;
2332 case VCPU_SREG_FS: return &save->fs;
2333 case VCPU_SREG_GS: return &save->gs;
2334 case VCPU_SREG_SS: return &save->ss;
2335 case VCPU_SREG_TR: return &save->tr;
2336 case VCPU_SREG_LDTR: return &save->ldtr;
2337 }
2338 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002339 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002340}
2341
2342static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2343{
2344 struct vmcb_seg *s = svm_seg(vcpu, seg);
2345
2346 return s->base;
2347}
2348
2349static void svm_get_segment(struct kvm_vcpu *vcpu,
2350 struct kvm_segment *var, int seg)
2351{
2352 struct vmcb_seg *s = svm_seg(vcpu, seg);
2353
2354 var->base = s->base;
2355 var->limit = s->limit;
2356 var->selector = s->selector;
2357 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2358 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2359 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2360 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2361 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2362 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2363 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302364
2365 /*
2366 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2367 * However, the SVM spec states that the G bit is not observed by the
2368 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2369 * So let's synthesize a legal G bit for all segments, this helps
2370 * running KVM nested. It also helps cross-vendor migration, because
2371 * Intel's vmentry has a check on the 'G' bit.
2372 */
2373 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002374
Joerg Roedele0231712010-02-24 18:59:10 +01002375 /*
2376 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002377 * for cross vendor migration purposes by "not present"
2378 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002379 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002380
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002381 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002382 case VCPU_SREG_TR:
2383 /*
2384 * Work around a bug where the busy flag in the tr selector
2385 * isn't exposed
2386 */
Amit Shahc0d09822008-10-27 09:04:18 +00002387 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002388 break;
2389 case VCPU_SREG_DS:
2390 case VCPU_SREG_ES:
2391 case VCPU_SREG_FS:
2392 case VCPU_SREG_GS:
2393 /*
2394 * The accessed bit must always be set in the segment
2395 * descriptor cache, although it can be cleared in the
2396 * descriptor, the cached bit always remains at 1. Since
2397 * Intel has a check on this, set it here to support
2398 * cross-vendor migration.
2399 */
2400 if (!var->unusable)
2401 var->type |= 0x1;
2402 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002403 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002404 /*
2405 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002406 * descriptor is left as 1, although the whole segment has
2407 * been made unusable. Clear it here to pass an Intel VMX
2408 * entry check when cross vendor migrating.
2409 */
2410 if (var->unusable)
2411 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002412 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002413 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002414 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002415 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002416}
2417
Izik Eidus2e4d2652008-03-24 19:38:34 +02002418static int svm_get_cpl(struct kvm_vcpu *vcpu)
2419{
2420 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2421
2422 return save->cpl;
2423}
2424
Gleb Natapov89a27f42010-02-16 10:51:48 +02002425static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002426{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002427 struct vcpu_svm *svm = to_svm(vcpu);
2428
Gleb Natapov89a27f42010-02-16 10:51:48 +02002429 dt->size = svm->vmcb->save.idtr.limit;
2430 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002431}
2432
Gleb Natapov89a27f42010-02-16 10:51:48 +02002433static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002434{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002435 struct vcpu_svm *svm = to_svm(vcpu);
2436
Gleb Natapov89a27f42010-02-16 10:51:48 +02002437 svm->vmcb->save.idtr.limit = dt->size;
2438 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002439 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002440}
2441
Gleb Natapov89a27f42010-02-16 10:51:48 +02002442static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002443{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002444 struct vcpu_svm *svm = to_svm(vcpu);
2445
Gleb Natapov89a27f42010-02-16 10:51:48 +02002446 dt->size = svm->vmcb->save.gdtr.limit;
2447 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002448}
2449
Gleb Natapov89a27f42010-02-16 10:51:48 +02002450static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002451{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002452 struct vcpu_svm *svm = to_svm(vcpu);
2453
Gleb Natapov89a27f42010-02-16 10:51:48 +02002454 svm->vmcb->save.gdtr.limit = dt->size;
2455 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002456 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002457}
2458
Avi Kivitye8467fd2009-12-29 18:43:06 +02002459static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2460{
2461}
2462
Avi Kivityaff48ba2010-12-05 18:56:11 +02002463static void svm_decache_cr3(struct kvm_vcpu *vcpu)
2464{
2465}
2466
Anthony Liguori25c4c272007-04-27 09:29:21 +03002467static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002468{
2469}
2470
Avi Kivityd2251572010-01-06 10:55:27 +02002471static void update_cr0_intercept(struct vcpu_svm *svm)
2472{
2473 ulong gcr0 = svm->vcpu.arch.cr0;
2474 u64 *hcr0 = &svm->vmcb->save.cr0;
2475
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002476 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2477 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002478
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002479 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002480
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002481 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002482 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2483 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002484 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002485 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2486 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002487 }
2488}
2489
Avi Kivity6aa8b732006-12-10 02:21:36 -08002490static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2491{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002492 struct vcpu_svm *svm = to_svm(vcpu);
2493
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002494#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002495 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002496 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002497 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002498 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002499 }
2500
Mike Dayd77c26f2007-10-08 09:02:08 -04002501 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002502 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002503 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002504 }
2505 }
2506#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002507 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002508
2509 if (!npt_enabled)
2510 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002511
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002512 /*
2513 * re-enable caching here because the QEMU bios
2514 * does not do it - this results in some delay at
2515 * reboot
2516 */
2517 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2518 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002519 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002520 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002521 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002522}
2523
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002524static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002525{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002526 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002527 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2528
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002529 if (cr4 & X86_CR4_VMXE)
2530 return 1;
2531
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002532 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002533 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002534
Joerg Roedelec077262008-04-09 14:15:28 +02002535 vcpu->arch.cr4 = cr4;
2536 if (!npt_enabled)
2537 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002538 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002539 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002540 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002541 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002542}
2543
2544static void svm_set_segment(struct kvm_vcpu *vcpu,
2545 struct kvm_segment *var, int seg)
2546{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002547 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002548 struct vmcb_seg *s = svm_seg(vcpu, seg);
2549
2550 s->base = var->base;
2551 s->limit = var->limit;
2552 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002553 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2554 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2555 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2556 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2557 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2558 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2559 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2560 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002561
2562 /*
2563 * This is always accurate, except if SYSRET returned to a segment
2564 * with SS.DPL != 3. Intel does not have this quirk, and always
2565 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2566 * would entail passing the CPL to userspace and back.
2567 */
2568 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002569 /* This is symmetric with svm_get_segment() */
2570 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002571
Joerg Roedel060d0c92010-12-03 11:45:57 +01002572 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002573}
2574
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002575static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002576{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002577 struct vcpu_svm *svm = to_svm(vcpu);
2578
Joerg Roedel18c918c2010-11-30 18:03:59 +01002579 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002580
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002581 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002582 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002583 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002584 } else
2585 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002586}
2587
Tejun Heo0fe1e002009-10-29 22:34:14 +09002588static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002589{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002590 if (sd->next_asid > sd->max_asid) {
2591 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002592 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002593 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002594 }
2595
Tejun Heo0fe1e002009-10-29 22:34:14 +09002596 svm->asid_generation = sd->asid_generation;
2597 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002598
2599 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002600}
2601
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002602static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2603{
2604 return to_svm(vcpu)->vmcb->save.dr6;
2605}
2606
2607static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2608{
2609 struct vcpu_svm *svm = to_svm(vcpu);
2610
2611 svm->vmcb->save.dr6 = value;
2612 mark_dirty(svm->vmcb, VMCB_DR);
2613}
2614
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002615static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2616{
2617 struct vcpu_svm *svm = to_svm(vcpu);
2618
2619 get_debugreg(vcpu->arch.db[0], 0);
2620 get_debugreg(vcpu->arch.db[1], 1);
2621 get_debugreg(vcpu->arch.db[2], 2);
2622 get_debugreg(vcpu->arch.db[3], 3);
2623 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2624 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2625
2626 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2627 set_dr_intercepts(svm);
2628}
2629
Gleb Natapov020df072010-04-13 10:05:23 +03002630static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002631{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002632 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002633
Gleb Natapov020df072010-04-13 10:05:23 +03002634 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002635 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002636}
2637
Avi Kivity851ba692009-08-24 11:10:17 +03002638static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002639{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002640 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002641 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002642
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002643 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002644 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2645 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002646 svm->vmcb->control.insn_len);
2647}
2648
2649static int npf_interception(struct vcpu_svm *svm)
2650{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002651 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002652 u64 error_code = svm->vmcb->control.exit_info_1;
2653
2654 trace_kvm_page_fault(fault_address, error_code);
2655 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002656 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2657 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002658 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002659}
2660
Avi Kivity851ba692009-08-24 11:10:17 +03002661static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002662{
Avi Kivity851ba692009-08-24 11:10:17 +03002663 struct kvm_run *kvm_run = svm->vcpu.run;
2664
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002665 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002666 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002667 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002668 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2669 return 1;
2670 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002671
Jan Kiszka6be7d302009-10-18 13:24:54 +02002672 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002673 disable_nmi_singlestep(svm);
Gleb Natapov44c11432009-05-11 13:35:52 +03002674 }
2675
2676 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002677 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002678 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2679 kvm_run->debug.arch.pc =
2680 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2681 kvm_run->debug.arch.exception = DB_VECTOR;
2682 return 0;
2683 }
2684
2685 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002686}
2687
Avi Kivity851ba692009-08-24 11:10:17 +03002688static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002689{
Avi Kivity851ba692009-08-24 11:10:17 +03002690 struct kvm_run *kvm_run = svm->vcpu.run;
2691
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002692 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2693 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2694 kvm_run->debug.arch.exception = BP_VECTOR;
2695 return 0;
2696}
2697
Avi Kivity851ba692009-08-24 11:10:17 +03002698static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002699{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002700 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002701}
2702
Eric Northup54a20552015-11-03 18:03:53 +01002703static int ac_interception(struct vcpu_svm *svm)
2704{
2705 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2706 return 1;
2707}
2708
Liran Alon97184202018-03-12 13:12:52 +02002709static int gp_interception(struct vcpu_svm *svm)
2710{
2711 struct kvm_vcpu *vcpu = &svm->vcpu;
2712 u32 error_code = svm->vmcb->control.exit_info_1;
2713 int er;
2714
2715 WARN_ON_ONCE(!enable_vmware_backdoor);
2716
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002717 er = kvm_emulate_instruction(vcpu,
Liran Alon97184202018-03-12 13:12:52 +02002718 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
2719 if (er == EMULATE_USER_EXIT)
2720 return 0;
2721 else if (er != EMULATE_DONE)
2722 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2723 return 1;
2724}
2725
Joerg Roedel67ec6602010-05-17 14:43:35 +02002726static bool is_erratum_383(void)
2727{
2728 int err, i;
2729 u64 value;
2730
2731 if (!erratum_383_found)
2732 return false;
2733
2734 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2735 if (err)
2736 return false;
2737
2738 /* Bit 62 may or may not be set for this mce */
2739 value &= ~(1ULL << 62);
2740
2741 if (value != 0xb600000000010015ULL)
2742 return false;
2743
2744 /* Clear MCi_STATUS registers */
2745 for (i = 0; i < 6; ++i)
2746 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2747
2748 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2749 if (!err) {
2750 u32 low, high;
2751
2752 value &= ~(1ULL << 2);
2753 low = lower_32_bits(value);
2754 high = upper_32_bits(value);
2755
2756 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2757 }
2758
2759 /* Flush tlb to evict multi-match entries */
2760 __flush_tlb_all();
2761
2762 return true;
2763}
2764
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002765static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002766{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002767 if (is_erratum_383()) {
2768 /*
2769 * Erratum 383 triggered. Guest state is corrupt so kill the
2770 * guest.
2771 */
2772 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2773
Avi Kivitya8eeb042010-05-10 12:34:53 +03002774 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002775
2776 return;
2777 }
2778
Joerg Roedel53371b52008-04-09 14:15:30 +02002779 /*
2780 * On an #MC intercept the MCE handler is not called automatically in
2781 * the host. So do it by hand here.
2782 */
2783 asm volatile (
2784 "int $0x12\n");
2785 /* not sure if we ever come back to this point */
2786
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002787 return;
2788}
2789
2790static int mc_interception(struct vcpu_svm *svm)
2791{
Joerg Roedel53371b52008-04-09 14:15:30 +02002792 return 1;
2793}
2794
Avi Kivity851ba692009-08-24 11:10:17 +03002795static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002796{
Avi Kivity851ba692009-08-24 11:10:17 +03002797 struct kvm_run *kvm_run = svm->vcpu.run;
2798
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002799 /*
2800 * VMCB is undefined after a SHUTDOWN intercept
2801 * so reinitialize it.
2802 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002803 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002804 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002805
2806 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2807 return 0;
2808}
2809
Avi Kivity851ba692009-08-24 11:10:17 +03002810static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002811{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002812 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002813 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002814 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002815 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002816
Rusty Russelle756fc62007-07-30 20:07:08 +10002817 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002818 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002819 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002820 if (string)
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002821 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002822
Avi Kivity039576c2007-03-20 12:46:50 +02002823 port = io_info >> 16;
2824 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002825 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002826
Sean Christophersondca7f122018-03-08 08:57:27 -08002827 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002828}
2829
Avi Kivity851ba692009-08-24 11:10:17 +03002830static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002831{
2832 return 1;
2833}
2834
Avi Kivity851ba692009-08-24 11:10:17 +03002835static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002836{
2837 ++svm->vcpu.stat.irq_exits;
2838 return 1;
2839}
2840
Avi Kivity851ba692009-08-24 11:10:17 +03002841static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002842{
2843 return 1;
2844}
2845
Avi Kivity851ba692009-08-24 11:10:17 +03002846static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002847{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002848 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002849 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002850}
2851
Avi Kivity851ba692009-08-24 11:10:17 +03002852static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002853{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002854 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002855 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002856}
2857
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002858static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2859{
2860 struct vcpu_svm *svm = to_svm(vcpu);
2861
2862 return svm->nested.nested_cr3;
2863}
2864
Avi Kivitye4e517b2011-07-28 11:36:17 +03002865static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2866{
2867 struct vcpu_svm *svm = to_svm(vcpu);
2868 u64 cr3 = svm->nested.nested_cr3;
2869 u64 pdpte;
2870 int ret;
2871
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002872 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002873 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002874 if (ret)
2875 return 0;
2876 return pdpte;
2877}
2878
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002879static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2880 unsigned long root)
2881{
2882 struct vcpu_svm *svm = to_svm(vcpu);
2883
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002884 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002885 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002886}
2887
Avi Kivity6389ee92010-11-29 16:12:30 +02002888static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2889 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002890{
2891 struct vcpu_svm *svm = to_svm(vcpu);
2892
Paolo Bonzini5e352512014-09-02 13:18:37 +02002893 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2894 /*
2895 * TODO: track the cause of the nested page fault, and
2896 * correctly fill in the high bits of exit_info_1.
2897 */
2898 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2899 svm->vmcb->control.exit_code_hi = 0;
2900 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2901 svm->vmcb->control.exit_info_2 = fault->address;
2902 }
2903
2904 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2905 svm->vmcb->control.exit_info_1 |= fault->error_code;
2906
2907 /*
2908 * The present bit is always zero for page structure faults on real
2909 * hardware.
2910 */
2911 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2912 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002913
2914 nested_svm_vmexit(svm);
2915}
2916
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002917static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002918{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002919 WARN_ON(mmu_is_nested(vcpu));
2920 kvm_init_shadow_mmu(vcpu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002921 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2922 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03002923 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
Joerg Roedel4b161842010-09-10 17:31:03 +02002924 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
Yu Zhang855feb62017-08-24 20:27:55 +08002925 vcpu->arch.mmu.shadow_root_level = get_npt_level(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08002926 reset_shadow_zero_bits_mask(vcpu, &vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002927 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002928}
2929
2930static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2931{
2932 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
2933}
2934
Alexander Grafc0725422008-11-25 20:17:03 +01002935static int nested_svm_check_permissions(struct vcpu_svm *svm)
2936{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002937 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2938 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01002939 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2940 return 1;
2941 }
2942
2943 if (svm->vmcb->save.cpl) {
2944 kvm_inject_gp(&svm->vcpu, 0);
2945 return 1;
2946 }
2947
Dan Carpentere9196ce2017-05-18 10:39:53 +03002948 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01002949}
2950
Alexander Grafcf74a782008-11-25 20:17:08 +01002951static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2952 bool has_error_code, u32 error_code)
2953{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002954 int vmexit;
2955
Joerg Roedel20307532010-11-29 17:51:48 +01002956 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02002957 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01002958
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002959 vmexit = nested_svm_intercept(svm);
2960 if (vmexit != NESTED_EXIT_DONE)
2961 return 0;
2962
Joerg Roedel0295ad72009-08-07 11:49:37 +02002963 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2964 svm->vmcb->control.exit_code_hi = 0;
2965 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002966
2967 /*
2968 * FIXME: we should not write CR2 when L1 intercepts an L2 #PF exception.
2969 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2970 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6 can be
2971 * written only when inject_pending_event runs (DR6 would written here
2972 * too). This should be conditional on a new capability---if the
2973 * capability is disabled, kvm_multiple_exception would write the
2974 * ancillary information to CR2 or DR6, for backwards ABI-compatibility.
2975 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002976 if (svm->vcpu.arch.exception.nested_apf)
2977 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
2978 else
2979 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02002980
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002981 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002982 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01002983}
2984
Joerg Roedel8fe54652010-02-19 16:23:01 +01002985/* This function returns true if it is save to enable the irq window */
2986static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002987{
Joerg Roedel20307532010-11-29 17:51:48 +01002988 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002989 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002990
Joerg Roedel26666952009-08-07 11:49:46 +02002991 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002992 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002993
Joerg Roedel26666952009-08-07 11:49:46 +02002994 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002995 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01002996
Gleb Natapova0a07cd2010-09-20 10:15:32 +02002997 /*
2998 * if vmexit was already requested (by intercepted exception
2999 * for instance) do not overwrite it with "external interrupt"
3000 * vmexit.
3001 */
3002 if (svm->nested.exit_required)
3003 return false;
3004
Joerg Roedel197717d2010-02-24 18:59:19 +01003005 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3006 svm->vmcb->control.exit_info_1 = 0;
3007 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003008
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003009 if (svm->nested.intercept & 1ULL) {
3010 /*
3011 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003012 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003013 * #vmexit emulation might sleep. Only signal request for
3014 * the #vmexit here.
3015 */
3016 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003017 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003018 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003019 }
3020
Joerg Roedel8fe54652010-02-19 16:23:01 +01003021 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003022}
3023
Joerg Roedel887f5002010-02-24 18:59:12 +01003024/* This function returns true if it is save to enable the nmi window */
3025static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3026{
Joerg Roedel20307532010-11-29 17:51:48 +01003027 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003028 return true;
3029
3030 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3031 return true;
3032
3033 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3034 svm->nested.exit_required = true;
3035
3036 return false;
3037}
3038
Joerg Roedel7597f122010-02-19 16:23:00 +01003039static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003040{
3041 struct page *page;
3042
Joerg Roedel6c3bd3d2010-02-19 16:23:04 +01003043 might_sleep();
3044
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003045 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003046 if (is_error_page(page))
3047 goto error;
3048
Joerg Roedel7597f122010-02-19 16:23:00 +01003049 *_page = page;
3050
3051 return kmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003052
3053error:
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003054 kvm_inject_gp(&svm->vcpu, 0);
3055
3056 return NULL;
3057}
3058
Joerg Roedel7597f122010-02-19 16:23:00 +01003059static void nested_svm_unmap(struct page *page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003060{
Joerg Roedel7597f122010-02-19 16:23:00 +01003061 kunmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003062 kvm_release_page_dirty(page);
3063}
3064
Joerg Roedelce2ac082010-03-01 15:34:39 +01003065static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003066{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003067 unsigned port, size, iopm_len;
3068 u16 val, mask;
3069 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003070 u64 gpa;
3071
3072 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3073 return NESTED_EXIT_HOST;
3074
3075 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003076 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3077 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003078 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003079 start_bit = port % 8;
3080 iopm_len = (start_bit + size > 8) ? 2 : 1;
3081 mask = (0xf >> (4 - size)) << start_bit;
3082 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003083
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003084 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003085 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003086
Jan Kiszka9bf41832014-06-30 10:54:17 +02003087 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003088}
3089
Joerg Roedeld2477822010-03-01 15:34:34 +01003090static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003091{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003092 u32 offset, msr, value;
3093 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003094
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003095 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003096 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003097
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003098 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3099 offset = svm_msrpm_offset(msr);
3100 write = svm->vmcb->control.exit_info_1 & 1;
3101 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003102
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003103 if (offset == MSR_INVALID)
3104 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003105
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003106 /* Offset is in 32 bit units but need in 8 bit units */
3107 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003108
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003109 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003110 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003111
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003112 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003113}
3114
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003115/* DB exceptions for our internal use must not cause vmexit */
3116static int nested_svm_intercept_db(struct vcpu_svm *svm)
3117{
3118 unsigned long dr6;
3119
3120 /* if we're not singlestepping, it's not ours */
3121 if (!svm->nmi_singlestep)
3122 return NESTED_EXIT_DONE;
3123
3124 /* if it's not a singlestep exception, it's not ours */
3125 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3126 return NESTED_EXIT_DONE;
3127 if (!(dr6 & DR6_BS))
3128 return NESTED_EXIT_DONE;
3129
3130 /* if the guest is singlestepping, it should get the vmexit */
3131 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3132 disable_nmi_singlestep(svm);
3133 return NESTED_EXIT_DONE;
3134 }
3135
3136 /* it's ours, the nested hypervisor must not see this one */
3137 return NESTED_EXIT_HOST;
3138}
3139
Joerg Roedel410e4d52009-08-07 11:49:44 +02003140static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003141{
Alexander Grafcf74a782008-11-25 20:17:08 +01003142 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003143
Joerg Roedel410e4d52009-08-07 11:49:44 +02003144 switch (exit_code) {
3145 case SVM_EXIT_INTR:
3146 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003147 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003148 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003149 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003150 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003151 if (npt_enabled)
3152 return NESTED_EXIT_HOST;
3153 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003154 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003155 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003156 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003157 return NESTED_EXIT_HOST;
3158 break;
3159 default:
3160 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003161 }
3162
Joerg Roedel410e4d52009-08-07 11:49:44 +02003163 return NESTED_EXIT_CONTINUE;
3164}
3165
3166/*
3167 * If this function returns true, this #vmexit was already handled
3168 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003169static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003170{
3171 u32 exit_code = svm->vmcb->control.exit_code;
3172 int vmexit = NESTED_EXIT_HOST;
3173
Alexander Grafcf74a782008-11-25 20:17:08 +01003174 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003175 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003176 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003177 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003178 case SVM_EXIT_IOIO:
3179 vmexit = nested_svm_intercept_ioio(svm);
3180 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003181 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3182 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3183 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003184 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003185 break;
3186 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003187 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3188 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3189 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003190 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003191 break;
3192 }
3193 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3194 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003195 if (svm->nested.intercept_exceptions & excp_bits) {
3196 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3197 vmexit = nested_svm_intercept_db(svm);
3198 else
3199 vmexit = NESTED_EXIT_DONE;
3200 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003201 /* async page fault always cause vmexit */
3202 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003203 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003204 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003205 break;
3206 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003207 case SVM_EXIT_ERR: {
3208 vmexit = NESTED_EXIT_DONE;
3209 break;
3210 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003211 default: {
3212 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003213 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003214 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003215 }
3216 }
3217
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003218 return vmexit;
3219}
3220
3221static int nested_svm_exit_handled(struct vcpu_svm *svm)
3222{
3223 int vmexit;
3224
3225 vmexit = nested_svm_intercept(svm);
3226
3227 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003228 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003229
3230 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003231}
3232
Joerg Roedel0460a972009-08-07 11:49:31 +02003233static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3234{
3235 struct vmcb_control_area *dst = &dst_vmcb->control;
3236 struct vmcb_control_area *from = &from_vmcb->control;
3237
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003238 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003239 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003240 dst->intercept_exceptions = from->intercept_exceptions;
3241 dst->intercept = from->intercept;
3242 dst->iopm_base_pa = from->iopm_base_pa;
3243 dst->msrpm_base_pa = from->msrpm_base_pa;
3244 dst->tsc_offset = from->tsc_offset;
3245 dst->asid = from->asid;
3246 dst->tlb_ctl = from->tlb_ctl;
3247 dst->int_ctl = from->int_ctl;
3248 dst->int_vector = from->int_vector;
3249 dst->int_state = from->int_state;
3250 dst->exit_code = from->exit_code;
3251 dst->exit_code_hi = from->exit_code_hi;
3252 dst->exit_info_1 = from->exit_info_1;
3253 dst->exit_info_2 = from->exit_info_2;
3254 dst->exit_int_info = from->exit_int_info;
3255 dst->exit_int_info_err = from->exit_int_info_err;
3256 dst->nested_ctl = from->nested_ctl;
3257 dst->event_inj = from->event_inj;
3258 dst->event_inj_err = from->event_inj_err;
3259 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003260 dst->virt_ext = from->virt_ext;
Joerg Roedel0460a972009-08-07 11:49:31 +02003261}
3262
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003263static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003264{
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003265 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003266 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003267 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003268 struct page *page;
Alexander Grafcf74a782008-11-25 20:17:08 +01003269
Joerg Roedel17897f32009-10-09 16:08:29 +02003270 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3271 vmcb->control.exit_info_1,
3272 vmcb->control.exit_info_2,
3273 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003274 vmcb->control.exit_int_info_err,
3275 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003276
Joerg Roedel7597f122010-02-19 16:23:00 +01003277 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003278 if (!nested_vmcb)
3279 return 1;
3280
Joerg Roedel20307532010-11-29 17:51:48 +01003281 /* Exit Guest-Mode */
3282 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003283 svm->nested.vmcb = 0;
3284
Alexander Grafcf74a782008-11-25 20:17:08 +01003285 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003286 disable_gif(svm);
3287
3288 nested_vmcb->save.es = vmcb->save.es;
3289 nested_vmcb->save.cs = vmcb->save.cs;
3290 nested_vmcb->save.ss = vmcb->save.ss;
3291 nested_vmcb->save.ds = vmcb->save.ds;
3292 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3293 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003294 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003295 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003296 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003297 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003298 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003299 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003300 nested_vmcb->save.rip = vmcb->save.rip;
3301 nested_vmcb->save.rsp = vmcb->save.rsp;
3302 nested_vmcb->save.rax = vmcb->save.rax;
3303 nested_vmcb->save.dr7 = vmcb->save.dr7;
3304 nested_vmcb->save.dr6 = vmcb->save.dr6;
3305 nested_vmcb->save.cpl = vmcb->save.cpl;
3306
3307 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3308 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3309 nested_vmcb->control.int_state = vmcb->control.int_state;
3310 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3311 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3312 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3313 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3314 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3315 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003316
3317 if (svm->nrips_enabled)
3318 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003319
3320 /*
3321 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3322 * to make sure that we do not lose injected events. So check event_inj
3323 * here and copy it to exit_int_info if it is valid.
3324 * Exit_int_info and event_inj can't be both valid because the case
3325 * below only happens on a VMRUN instruction intercept which has
3326 * no valid exit_int_info set.
3327 */
3328 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3329 struct vmcb_control_area *nc = &nested_vmcb->control;
3330
3331 nc->exit_int_info = vmcb->control.event_inj;
3332 nc->exit_int_info_err = vmcb->control.event_inj_err;
3333 }
3334
Joerg Roedel33740e42009-08-07 11:49:29 +02003335 nested_vmcb->control.tlb_ctl = 0;
3336 nested_vmcb->control.event_inj = 0;
3337 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003338
3339 /* We always set V_INTR_MASKING and remember the old value in hflags */
3340 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3341 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3342
Alexander Grafcf74a782008-11-25 20:17:08 +01003343 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003344 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003345
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003346 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003347 kvm_clear_exception_queue(&svm->vcpu);
3348 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003349
Joerg Roedel4b161842010-09-10 17:31:03 +02003350 svm->nested.nested_cr3 = 0;
3351
Alexander Grafcf74a782008-11-25 20:17:08 +01003352 /* Restore selected save entries */
3353 svm->vmcb->save.es = hsave->save.es;
3354 svm->vmcb->save.cs = hsave->save.cs;
3355 svm->vmcb->save.ss = hsave->save.ss;
3356 svm->vmcb->save.ds = hsave->save.ds;
3357 svm->vmcb->save.gdtr = hsave->save.gdtr;
3358 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003359 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003360 svm_set_efer(&svm->vcpu, hsave->save.efer);
3361 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3362 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3363 if (npt_enabled) {
3364 svm->vmcb->save.cr3 = hsave->save.cr3;
3365 svm->vcpu.arch.cr3 = hsave->save.cr3;
3366 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003367 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003368 }
3369 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
3370 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
3371 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
3372 svm->vmcb->save.dr7 = 0;
3373 svm->vmcb->save.cpl = 0;
3374 svm->vmcb->control.exit_int_info = 0;
3375
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003376 mark_all_dirty(svm->vmcb);
3377
Joerg Roedel7597f122010-02-19 16:23:00 +01003378 nested_svm_unmap(page);
Alexander Grafcf74a782008-11-25 20:17:08 +01003379
Joerg Roedel4b161842010-09-10 17:31:03 +02003380 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003381 kvm_mmu_reset_context(&svm->vcpu);
3382 kvm_mmu_load(&svm->vcpu);
3383
3384 return 0;
3385}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003386
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003387static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003388{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003389 /*
3390 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003391 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003392 * the kvm msr permission bitmap may contain zero bits
3393 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003394 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003395
Joerg Roedel323c3d82010-03-01 15:34:37 +01003396 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3397 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003398
Joerg Roedel323c3d82010-03-01 15:34:37 +01003399 for (i = 0; i < MSRPM_OFFSETS; i++) {
3400 u32 value, p;
3401 u64 offset;
3402
3403 if (msrpm_offsets[i] == 0xffffffff)
3404 break;
3405
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003406 p = msrpm_offsets[i];
3407 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003408
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003409 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003410 return false;
3411
3412 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3413 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003414
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003415 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003416
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003417 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003418}
3419
Joerg Roedel52c65a302010-08-02 16:46:44 +02003420static bool nested_vmcb_checks(struct vmcb *vmcb)
3421{
3422 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3423 return false;
3424
Joerg Roedeldbe77582010-08-02 16:46:45 +02003425 if (vmcb->control.asid == 0)
3426 return false;
3427
Tom Lendackycea3a192017-12-04 10:57:24 -06003428 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3429 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003430 return false;
3431
Joerg Roedel52c65a302010-08-02 16:46:44 +02003432 return true;
3433}
3434
Ladi Prosekc2634062017-10-11 16:54:44 +02003435static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
3436 struct vmcb *nested_vmcb, struct page *page)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003437{
Avi Kivityf6e78472010-08-02 15:30:20 +03003438 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003439 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3440 else
3441 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3442
Tom Lendackycea3a192017-12-04 10:57:24 -06003443 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003444 kvm_mmu_unload(&svm->vcpu);
3445 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3446 nested_svm_init_mmu_context(&svm->vcpu);
3447 }
3448
Alexander Graf3d6368e2008-11-25 20:17:07 +01003449 /* Load the nested guest state */
3450 svm->vmcb->save.es = nested_vmcb->save.es;
3451 svm->vmcb->save.cs = nested_vmcb->save.cs;
3452 svm->vmcb->save.ss = nested_vmcb->save.ss;
3453 svm->vmcb->save.ds = nested_vmcb->save.ds;
3454 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3455 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003456 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003457 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3458 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3459 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3460 if (npt_enabled) {
3461 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3462 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003463 } else
Avi Kivity23902182010-06-10 17:02:16 +03003464 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003465
3466 /* Guest paging mode is active - reset mmu */
3467 kvm_mmu_reset_context(&svm->vcpu);
3468
Joerg Roedeldefbba52009-08-07 11:49:30 +02003469 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003470 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
3471 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
3472 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003473
Alexander Graf3d6368e2008-11-25 20:17:07 +01003474 /* In case we don't even reach vcpu_run, the fields are not updated */
3475 svm->vmcb->save.rax = nested_vmcb->save.rax;
3476 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3477 svm->vmcb->save.rip = nested_vmcb->save.rip;
3478 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3479 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3480 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3481
Joerg Roedelf7138532010-03-01 15:34:40 +01003482 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003483 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003484
Joerg Roedelaad42c62009-08-07 11:49:34 +02003485 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003486 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003487 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003488 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3489 svm->nested.intercept = nested_vmcb->control.intercept;
3490
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003491 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003492 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003493 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3494 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3495 else
3496 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3497
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003498 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3499 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003500 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3501 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003502 }
3503
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003504 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003505 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003506
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003507 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3508 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3509
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003510 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003511 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3512 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003513 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3514 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3515
Joerg Roedel7597f122010-02-19 16:23:00 +01003516 nested_svm_unmap(page);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003517
Joerg Roedel20307532010-11-29 17:51:48 +01003518 /* Enter Guest-Mode */
3519 enter_guest_mode(&svm->vcpu);
3520
Joerg Roedel384c6362010-11-30 18:03:56 +01003521 /*
3522 * Merge guest and host intercepts - must be called with vcpu in
3523 * guest-mode to take affect here
3524 */
3525 recalc_intercepts(svm);
3526
Joerg Roedel06fc77722010-02-19 16:23:07 +01003527 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003528
Joerg Roedel2af91942009-08-07 11:49:28 +02003529 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003530
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003531 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003532}
3533
3534static bool nested_svm_vmrun(struct vcpu_svm *svm)
3535{
3536 struct vmcb *nested_vmcb;
3537 struct vmcb *hsave = svm->nested.hsave;
3538 struct vmcb *vmcb = svm->vmcb;
3539 struct page *page;
3540 u64 vmcb_gpa;
3541
3542 vmcb_gpa = svm->vmcb->save.rax;
3543
3544 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
3545 if (!nested_vmcb)
3546 return false;
3547
3548 if (!nested_vmcb_checks(nested_vmcb)) {
3549 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3550 nested_vmcb->control.exit_code_hi = 0;
3551 nested_vmcb->control.exit_info_1 = 0;
3552 nested_vmcb->control.exit_info_2 = 0;
3553
3554 nested_svm_unmap(page);
3555
3556 return false;
3557 }
3558
3559 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3560 nested_vmcb->save.rip,
3561 nested_vmcb->control.int_ctl,
3562 nested_vmcb->control.event_inj,
3563 nested_vmcb->control.nested_ctl);
3564
3565 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3566 nested_vmcb->control.intercept_cr >> 16,
3567 nested_vmcb->control.intercept_exceptions,
3568 nested_vmcb->control.intercept);
3569
3570 /* Clear internal status */
3571 kvm_clear_exception_queue(&svm->vcpu);
3572 kvm_clear_interrupt_queue(&svm->vcpu);
3573
3574 /*
3575 * Save the old vmcb, so we don't need to pick what we save, but can
3576 * restore everything when a VMEXIT occurs
3577 */
3578 hsave->save.es = vmcb->save.es;
3579 hsave->save.cs = vmcb->save.cs;
3580 hsave->save.ss = vmcb->save.ss;
3581 hsave->save.ds = vmcb->save.ds;
3582 hsave->save.gdtr = vmcb->save.gdtr;
3583 hsave->save.idtr = vmcb->save.idtr;
3584 hsave->save.efer = svm->vcpu.arch.efer;
3585 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3586 hsave->save.cr4 = svm->vcpu.arch.cr4;
3587 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3588 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3589 hsave->save.rsp = vmcb->save.rsp;
3590 hsave->save.rax = vmcb->save.rax;
3591 if (npt_enabled)
3592 hsave->save.cr3 = vmcb->save.cr3;
3593 else
3594 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3595
3596 copy_vmcb_control_area(hsave, vmcb);
3597
3598 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, page);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003599
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003600 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003601}
3602
Joerg Roedel9966bf62009-08-07 11:49:40 +02003603static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003604{
3605 to_vmcb->save.fs = from_vmcb->save.fs;
3606 to_vmcb->save.gs = from_vmcb->save.gs;
3607 to_vmcb->save.tr = from_vmcb->save.tr;
3608 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3609 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3610 to_vmcb->save.star = from_vmcb->save.star;
3611 to_vmcb->save.lstar = from_vmcb->save.lstar;
3612 to_vmcb->save.cstar = from_vmcb->save.cstar;
3613 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3614 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3615 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3616 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003617}
3618
Avi Kivity851ba692009-08-24 11:10:17 +03003619static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003620{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003621 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003622 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003623 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003624
Alexander Graf55426752008-11-25 20:17:06 +01003625 if (nested_svm_check_permissions(svm))
3626 return 1;
3627
Joerg Roedel7597f122010-02-19 16:23:00 +01003628 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003629 if (!nested_vmcb)
3630 return 1;
3631
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003632 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003633 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003634
Joerg Roedel9966bf62009-08-07 11:49:40 +02003635 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003636 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003637
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003638 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003639}
3640
Avi Kivity851ba692009-08-24 11:10:17 +03003641static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003642{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003643 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003644 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003645 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003646
Alexander Graf55426752008-11-25 20:17:06 +01003647 if (nested_svm_check_permissions(svm))
3648 return 1;
3649
Joerg Roedel7597f122010-02-19 16:23:00 +01003650 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003651 if (!nested_vmcb)
3652 return 1;
3653
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003654 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003655 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003656
Joerg Roedel9966bf62009-08-07 11:49:40 +02003657 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003658 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003659
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003660 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003661}
3662
Avi Kivity851ba692009-08-24 11:10:17 +03003663static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003664{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003665 if (nested_svm_check_permissions(svm))
3666 return 1;
3667
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003668 /* Save rip after vmrun instruction */
3669 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003670
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003671 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003672 return 1;
3673
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003674 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003675 goto failed;
3676
3677 return 1;
3678
3679failed:
3680
3681 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3682 svm->vmcb->control.exit_code_hi = 0;
3683 svm->vmcb->control.exit_info_1 = 0;
3684 svm->vmcb->control.exit_info_2 = 0;
3685
3686 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003687
3688 return 1;
3689}
3690
Avi Kivity851ba692009-08-24 11:10:17 +03003691static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003692{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003693 int ret;
3694
Alexander Graf1371d902008-11-25 20:17:04 +01003695 if (nested_svm_check_permissions(svm))
3696 return 1;
3697
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003698 /*
3699 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003700 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003701 */
3702 if (vgif_enabled(svm))
3703 clr_intercept(svm, INTERCEPT_STGI);
3704
Alexander Graf1371d902008-11-25 20:17:04 +01003705 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003706 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003707 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003708
Joerg Roedel2af91942009-08-07 11:49:28 +02003709 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003710
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003711 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003712}
3713
Avi Kivity851ba692009-08-24 11:10:17 +03003714static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003715{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003716 int ret;
3717
Alexander Graf1371d902008-11-25 20:17:04 +01003718 if (nested_svm_check_permissions(svm))
3719 return 1;
3720
3721 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003722 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003723
Joerg Roedel2af91942009-08-07 11:49:28 +02003724 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003725
3726 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003727 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3728 svm_clear_vintr(svm);
3729 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3730 mark_dirty(svm->vmcb, VMCB_INTR);
3731 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003732
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003733 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003734}
3735
Avi Kivity851ba692009-08-24 11:10:17 +03003736static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003737{
3738 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003739
David Kaplan668f1982015-02-20 16:02:10 -06003740 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3741 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003742
Alexander Grafff092382009-06-15 15:21:24 +02003743 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
David Kaplan668f1982015-02-20 16:02:10 -06003744 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Alexander Grafff092382009-06-15 15:21:24 +02003745
3746 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003747 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003748}
3749
Joerg Roedel532a46b2009-10-09 16:08:32 +02003750static int skinit_interception(struct vcpu_svm *svm)
3751{
David Kaplan668f1982015-02-20 16:02:10 -06003752 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003753
3754 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3755 return 1;
3756}
3757
David Kaplandab429a2015-03-02 13:43:37 -06003758static int wbinvd_interception(struct vcpu_svm *svm)
3759{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003760 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003761}
3762
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003763static int xsetbv_interception(struct vcpu_svm *svm)
3764{
3765 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3766 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3767
3768 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3769 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003770 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003771 }
3772
3773 return 1;
3774}
3775
Avi Kivity851ba692009-08-24 11:10:17 +03003776static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003777{
Izik Eidus37817f22008-03-24 23:14:53 +02003778 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003779 int reason;
3780 int int_type = svm->vmcb->control.exit_int_info &
3781 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003782 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003783 uint32_t type =
3784 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3785 uint32_t idt_v =
3786 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003787 bool has_error_code = false;
3788 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003789
3790 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003791
Izik Eidus37817f22008-03-24 23:14:53 +02003792 if (svm->vmcb->control.exit_info_2 &
3793 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003794 reason = TASK_SWITCH_IRET;
3795 else if (svm->vmcb->control.exit_info_2 &
3796 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3797 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003798 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003799 reason = TASK_SWITCH_GATE;
3800 else
3801 reason = TASK_SWITCH_CALL;
3802
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003803 if (reason == TASK_SWITCH_GATE) {
3804 switch (type) {
3805 case SVM_EXITINTINFO_TYPE_NMI:
3806 svm->vcpu.arch.nmi_injected = false;
3807 break;
3808 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003809 if (svm->vmcb->control.exit_info_2 &
3810 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3811 has_error_code = true;
3812 error_code =
3813 (u32)svm->vmcb->control.exit_info_2;
3814 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003815 kvm_clear_exception_queue(&svm->vcpu);
3816 break;
3817 case SVM_EXITINTINFO_TYPE_INTR:
3818 kvm_clear_interrupt_queue(&svm->vcpu);
3819 break;
3820 default:
3821 break;
3822 }
3823 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003824
Gleb Natapov8317c292009-04-12 13:37:02 +03003825 if (reason != TASK_SWITCH_GATE ||
3826 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3827 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003828 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3829 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003830
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003831 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3832 int_vec = -1;
3833
3834 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003835 has_error_code, error_code) == EMULATE_FAIL) {
3836 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3837 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3838 svm->vcpu.run->internal.ndata = 0;
3839 return 0;
3840 }
3841 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003842}
3843
Avi Kivity851ba692009-08-24 11:10:17 +03003844static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003845{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003846 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003847 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003848}
3849
Avi Kivity851ba692009-08-24 11:10:17 +03003850static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003851{
3852 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003853 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003854 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003855 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003856 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003857 return 1;
3858}
3859
Avi Kivity851ba692009-08-24 11:10:17 +03003860static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003861{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003862 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003863 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Andre Przywaradf4f31082010-12-21 11:12:06 +01003864
3865 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003866 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003867}
3868
Avi Kivity851ba692009-08-24 11:10:17 +03003869static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003870{
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003871 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003872}
3873
Brijesh Singh7607b712018-02-19 10:14:44 -06003874static int rsm_interception(struct vcpu_svm *svm)
3875{
Sean Christopherson35be0ad2018-08-23 13:56:47 -07003876 return kvm_emulate_instruction_from_buffer(&svm->vcpu,
3877 rsm_ins_bytes, 2) == EMULATE_DONE;
Brijesh Singh7607b712018-02-19 10:14:44 -06003878}
3879
Avi Kivity332b56e2011-11-10 14:57:24 +02003880static int rdpmc_interception(struct vcpu_svm *svm)
3881{
3882 int err;
3883
3884 if (!static_cpu_has(X86_FEATURE_NRIPS))
3885 return emulate_on_interception(svm);
3886
3887 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003888 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003889}
3890
Xiubo Li52eb5a62015-03-13 17:39:45 +08003891static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3892 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003893{
3894 unsigned long cr0 = svm->vcpu.arch.cr0;
3895 bool ret = false;
3896 u64 intercept;
3897
3898 intercept = svm->nested.intercept;
3899
3900 if (!is_guest_mode(&svm->vcpu) ||
3901 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3902 return false;
3903
3904 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3905 val &= ~SVM_CR0_SELECTIVE_MASK;
3906
3907 if (cr0 ^ val) {
3908 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3909 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3910 }
3911
3912 return ret;
3913}
3914
Andre Przywara7ff76d52010-12-21 11:12:04 +01003915#define CR_VALID (1ULL << 63)
3916
3917static int cr_interception(struct vcpu_svm *svm)
3918{
3919 int reg, cr;
3920 unsigned long val;
3921 int err;
3922
3923 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3924 return emulate_on_interception(svm);
3925
3926 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3927 return emulate_on_interception(svm);
3928
3929 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06003930 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3931 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3932 else
3933 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01003934
3935 err = 0;
3936 if (cr >= 16) { /* mov to cr */
3937 cr -= 16;
3938 val = kvm_register_read(&svm->vcpu, reg);
3939 switch (cr) {
3940 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02003941 if (!check_selective_cr0_intercepted(svm, val))
3942 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02003943 else
3944 return 1;
3945
Andre Przywara7ff76d52010-12-21 11:12:04 +01003946 break;
3947 case 3:
3948 err = kvm_set_cr3(&svm->vcpu, val);
3949 break;
3950 case 4:
3951 err = kvm_set_cr4(&svm->vcpu, val);
3952 break;
3953 case 8:
3954 err = kvm_set_cr8(&svm->vcpu, val);
3955 break;
3956 default:
3957 WARN(1, "unhandled write to CR%d", cr);
3958 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3959 return 1;
3960 }
3961 } else { /* mov from cr */
3962 switch (cr) {
3963 case 0:
3964 val = kvm_read_cr0(&svm->vcpu);
3965 break;
3966 case 2:
3967 val = svm->vcpu.arch.cr2;
3968 break;
3969 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02003970 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003971 break;
3972 case 4:
3973 val = kvm_read_cr4(&svm->vcpu);
3974 break;
3975 case 8:
3976 val = kvm_get_cr8(&svm->vcpu);
3977 break;
3978 default:
3979 WARN(1, "unhandled read from CR%d", cr);
3980 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3981 return 1;
3982 }
3983 kvm_register_write(&svm->vcpu, reg, val);
3984 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08003985 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003986}
3987
Andre Przywaracae37972010-12-21 11:12:05 +01003988static int dr_interception(struct vcpu_svm *svm)
3989{
3990 int reg, dr;
3991 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01003992
Paolo Bonzinifacb0132014-02-21 10:32:27 +01003993 if (svm->vcpu.guest_debug == 0) {
3994 /*
3995 * No more DR vmexits; force a reload of the debug registers
3996 * and reenter on this instruction. The next vmexit will
3997 * retrieve the full state of the debug registers.
3998 */
3999 clr_dr_intercepts(svm);
4000 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4001 return 1;
4002 }
4003
Andre Przywaracae37972010-12-21 11:12:05 +01004004 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4005 return emulate_on_interception(svm);
4006
4007 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4008 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4009
4010 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004011 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4012 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004013 val = kvm_register_read(&svm->vcpu, reg);
4014 kvm_set_dr(&svm->vcpu, dr - 16, val);
4015 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004016 if (!kvm_require_dr(&svm->vcpu, dr))
4017 return 1;
4018 kvm_get_dr(&svm->vcpu, dr, &val);
4019 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004020 }
4021
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004022 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004023}
4024
Avi Kivity851ba692009-08-24 11:10:17 +03004025static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004026{
Avi Kivity851ba692009-08-24 11:10:17 +03004027 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004028 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004029
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004030 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4031 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004032 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004033 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004034 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004035 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004036 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004037 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4038 return 0;
4039}
4040
Tom Lendacky801e4592018-02-21 13:39:51 -06004041static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4042{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004043 msr->data = 0;
4044
4045 switch (msr->index) {
4046 case MSR_F10H_DECFG:
4047 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4048 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4049 break;
4050 default:
4051 return 1;
4052 }
4053
4054 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004055}
4056
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004057static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004058{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004059 struct vcpu_svm *svm = to_svm(vcpu);
4060
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004061 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004062 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004063 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004064 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004065#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004066 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004067 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004068 break;
4069 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004070 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004071 break;
4072 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004073 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004074 break;
4075 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004076 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004077 break;
4078#endif
4079 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004080 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004081 break;
4082 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004083 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004084 break;
4085 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004086 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004087 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004088 case MSR_TSC_AUX:
4089 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4090 return 1;
4091 msr_info->data = svm->tsc_aux;
4092 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004093 /*
4094 * Nobody will change the following 5 values in the VMCB so we can
4095 * safely return them on rdmsr. They will always be 0 until LBRV is
4096 * implemented.
4097 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004098 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004099 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004100 break;
4101 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004102 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004103 break;
4104 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004105 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004106 break;
4107 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004108 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004109 break;
4110 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004111 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004112 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004113 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004114 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004115 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004116 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004117 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004118 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004119 case MSR_IA32_SPEC_CTRL:
4120 if (!msr_info->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004121 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4122 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004123 return 1;
4124
4125 msr_info->data = svm->spec_ctrl;
4126 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004127 case MSR_AMD64_VIRT_SPEC_CTRL:
4128 if (!msr_info->host_initiated &&
4129 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4130 return 1;
4131
4132 msr_info->data = svm->virt_spec_ctrl;
4133 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004134 case MSR_F15H_IC_CFG: {
4135
4136 int family, model;
4137
4138 family = guest_cpuid_family(vcpu);
4139 model = guest_cpuid_model(vcpu);
4140
4141 if (family < 0 || model < 0)
4142 return kvm_get_msr_common(vcpu, msr_info);
4143
4144 msr_info->data = 0;
4145
4146 if (family == 0x15 &&
4147 (model >= 0x2 && model < 0x20))
4148 msr_info->data = 0x1E;
4149 }
4150 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004151 case MSR_F10H_DECFG:
4152 msr_info->data = svm->msr_decfg;
4153 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004154 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004155 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004156 }
4157 return 0;
4158}
4159
Avi Kivity851ba692009-08-24 11:10:17 +03004160static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004161{
David Kaplan668f1982015-02-20 16:02:10 -06004162 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004163 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004164
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004165 msr_info.index = ecx;
4166 msr_info.host_initiated = false;
4167 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004168 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004169 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004170 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004171 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004172 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004173
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004174 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
4175 msr_info.data & 0xffffffff);
4176 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
4177 msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004178 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004179 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004180 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004181}
4182
Joerg Roedel4a810182010-02-24 18:59:15 +01004183static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4184{
4185 struct vcpu_svm *svm = to_svm(vcpu);
4186 int svm_dis, chg_mask;
4187
4188 if (data & ~SVM_VM_CR_VALID_MASK)
4189 return 1;
4190
4191 chg_mask = SVM_VM_CR_VALID_MASK;
4192
4193 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4194 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4195
4196 svm->nested.vm_cr_msr &= ~chg_mask;
4197 svm->nested.vm_cr_msr |= (data & chg_mask);
4198
4199 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4200
4201 /* check for svm_disable while efer.svme is set */
4202 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4203 return 1;
4204
4205 return 0;
4206}
4207
Will Auld8fe8ab42012-11-29 12:42:12 -08004208static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004209{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004210 struct vcpu_svm *svm = to_svm(vcpu);
4211
Will Auld8fe8ab42012-11-29 12:42:12 -08004212 u32 ecx = msr->index;
4213 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004214 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004215 case MSR_IA32_CR_PAT:
4216 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4217 return 1;
4218 vcpu->arch.pat = data;
4219 svm->vmcb->save.g_pat = data;
4220 mark_dirty(svm->vmcb, VMCB_NPT);
4221 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004222 case MSR_IA32_SPEC_CTRL:
4223 if (!msr->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004224 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4225 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004226 return 1;
4227
4228 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004229 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004230 return 1;
4231
4232 svm->spec_ctrl = data;
4233
4234 if (!data)
4235 break;
4236
4237 /*
4238 * For non-nested:
4239 * When it's written (to non-zero) for the first time, pass
4240 * it through.
4241 *
4242 * For nested:
4243 * The handling of the MSR bitmap for L2 guests is done in
4244 * nested_svm_vmrun_msrpm.
4245 * We update the L1 MSR bit as well since it will end up
4246 * touching the MSR anyway now.
4247 */
4248 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4249 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004250 case MSR_IA32_PRED_CMD:
4251 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004252 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004253 return 1;
4254
4255 if (data & ~PRED_CMD_IBPB)
4256 return 1;
4257
4258 if (!data)
4259 break;
4260
4261 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4262 if (is_guest_mode(vcpu))
4263 break;
4264 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4265 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004266 case MSR_AMD64_VIRT_SPEC_CTRL:
4267 if (!msr->host_initiated &&
4268 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4269 return 1;
4270
4271 if (data & ~SPEC_CTRL_SSBD)
4272 return 1;
4273
4274 svm->virt_spec_ctrl = data;
4275 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004276 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004277 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004278 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004279#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004280 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004281 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004282 break;
4283 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004284 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004285 break;
4286 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004287 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004288 break;
4289 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004290 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004291 break;
4292#endif
4293 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004294 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004295 break;
4296 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004297 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004298 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004299 break;
4300 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004301 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004302 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004303 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004304 case MSR_TSC_AUX:
4305 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4306 return 1;
4307
4308 /*
4309 * This is rare, so we update the MSR here instead of using
4310 * direct_access_msrs. Doing that would require a rdmsr in
4311 * svm_vcpu_put.
4312 */
4313 svm->tsc_aux = data;
4314 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4315 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004316 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004317 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004318 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4319 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004320 break;
4321 }
4322 if (data & DEBUGCTL_RESERVED_BITS)
4323 return 1;
4324
4325 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004326 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004327 if (data & (1ULL<<0))
4328 svm_enable_lbrv(svm);
4329 else
4330 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004331 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004332 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004333 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004334 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004335 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004336 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004337 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004338 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004339 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004340 case MSR_F10H_DECFG: {
4341 struct kvm_msr_entry msr_entry;
4342
4343 msr_entry.index = msr->index;
4344 if (svm_get_msr_feature(&msr_entry))
4345 return 1;
4346
4347 /* Check the supported bits */
4348 if (data & ~msr_entry.data)
4349 return 1;
4350
4351 /* Don't allow the guest to change a bit, #GP */
4352 if (!msr->host_initiated && (data ^ msr_entry.data))
4353 return 1;
4354
4355 svm->msr_decfg = data;
4356 break;
4357 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004358 case MSR_IA32_APICBASE:
4359 if (kvm_vcpu_apicv_active(vcpu))
4360 avic_update_vapic_bar(to_svm(vcpu), data);
4361 /* Follow through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004362 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004363 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004364 }
4365 return 0;
4366}
4367
Avi Kivity851ba692009-08-24 11:10:17 +03004368static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004369{
Will Auld8fe8ab42012-11-29 12:42:12 -08004370 struct msr_data msr;
David Kaplan668f1982015-02-20 16:02:10 -06004371 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
4372 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004373
Will Auld8fe8ab42012-11-29 12:42:12 -08004374 msr.data = data;
4375 msr.index = ecx;
4376 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004377
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004378 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004379 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02004380 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004381 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004382 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004383 } else {
4384 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004385 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02004386 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004387}
4388
Avi Kivity851ba692009-08-24 11:10:17 +03004389static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004390{
Rusty Russelle756fc62007-07-30 20:07:08 +10004391 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004392 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004393 else
Avi Kivity851ba692009-08-24 11:10:17 +03004394 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004395}
4396
Avi Kivity851ba692009-08-24 11:10:17 +03004397static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004398{
Avi Kivity3842d132010-07-27 12:30:24 +03004399 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004400 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004401 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004402 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004403 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004404 return 1;
4405}
4406
Mark Langsdorf565d0992009-10-06 14:25:02 -05004407static int pause_interception(struct vcpu_svm *svm)
4408{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004409 struct kvm_vcpu *vcpu = &svm->vcpu;
4410 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4411
Babu Moger8566ac82018-03-16 16:37:26 -04004412 if (pause_filter_thresh)
4413 grow_ple_window(vcpu);
4414
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004415 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004416 return 1;
4417}
4418
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004419static int nop_interception(struct vcpu_svm *svm)
4420{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004421 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004422}
4423
4424static int monitor_interception(struct vcpu_svm *svm)
4425{
4426 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4427 return nop_interception(svm);
4428}
4429
4430static int mwait_interception(struct vcpu_svm *svm)
4431{
4432 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4433 return nop_interception(svm);
4434}
4435
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004436enum avic_ipi_failure_cause {
4437 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4438 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4439 AVIC_IPI_FAILURE_INVALID_TARGET,
4440 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4441};
4442
4443static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4444{
4445 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4446 u32 icrl = svm->vmcb->control.exit_info_1;
4447 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004448 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004449 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4450
4451 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4452
4453 switch (id) {
4454 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4455 /*
4456 * AVIC hardware handles the generation of
4457 * IPIs when the specified Message Type is Fixed
4458 * (also known as fixed delivery mode) and
4459 * the Trigger Mode is edge-triggered. The hardware
4460 * also supports self and broadcast delivery modes
4461 * specified via the Destination Shorthand(DSH)
4462 * field of the ICRL. Logical and physical APIC ID
4463 * formats are supported. All other IPI types cause
4464 * a #VMEXIT, which needs to emulated.
4465 */
4466 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4467 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4468 break;
4469 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
4470 int i;
4471 struct kvm_vcpu *vcpu;
4472 struct kvm *kvm = svm->vcpu.kvm;
4473 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4474
4475 /*
4476 * At this point, we expect that the AVIC HW has already
4477 * set the appropriate IRR bits on the valid target
4478 * vcpus. So, we just need to kick the appropriate vcpu.
4479 */
4480 kvm_for_each_vcpu(i, vcpu, kvm) {
4481 bool m = kvm_apic_match_dest(vcpu, apic,
4482 icrl & KVM_APIC_SHORT_MASK,
4483 GET_APIC_DEST_FIELD(icrh),
4484 icrl & KVM_APIC_DEST_MASK);
4485
4486 if (m && !avic_vcpu_is_running(vcpu))
4487 kvm_vcpu_wake_up(vcpu);
4488 }
4489 break;
4490 }
4491 case AVIC_IPI_FAILURE_INVALID_TARGET:
4492 break;
4493 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4494 WARN_ONCE(1, "Invalid backing page\n");
4495 break;
4496 default:
4497 pr_err("Unknown IPI interception\n");
4498 }
4499
4500 return 1;
4501}
4502
4503static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4504{
Sean Christopherson81811c12018-03-20 12:17:21 -07004505 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004506 int index;
4507 u32 *logical_apic_id_table;
4508 int dlid = GET_APIC_LOGICAL_ID(ldr);
4509
4510 if (!dlid)
4511 return NULL;
4512
4513 if (flat) { /* flat */
4514 index = ffs(dlid) - 1;
4515 if (index > 7)
4516 return NULL;
4517 } else { /* cluster */
4518 int cluster = (dlid & 0xf0) >> 4;
4519 int apic = ffs(dlid & 0x0f) - 1;
4520
4521 if ((apic < 0) || (apic > 7) ||
4522 (cluster >= 0xf))
4523 return NULL;
4524 index = (cluster << 2) + apic;
4525 }
4526
Sean Christopherson81811c12018-03-20 12:17:21 -07004527 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004528
4529 return &logical_apic_id_table[index];
4530}
4531
4532static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
4533 bool valid)
4534{
4535 bool flat;
4536 u32 *entry, new_entry;
4537
4538 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4539 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4540 if (!entry)
4541 return -EINVAL;
4542
4543 new_entry = READ_ONCE(*entry);
4544 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4545 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
4546 if (valid)
4547 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4548 else
4549 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4550 WRITE_ONCE(*entry, new_entry);
4551
4552 return 0;
4553}
4554
4555static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4556{
4557 int ret;
4558 struct vcpu_svm *svm = to_svm(vcpu);
4559 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
4560
4561 if (!ldr)
4562 return 1;
4563
4564 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
4565 if (ret && svm->ldr_reg) {
4566 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
4567 svm->ldr_reg = 0;
4568 } else {
4569 svm->ldr_reg = ldr;
4570 }
4571 return ret;
4572}
4573
4574static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4575{
4576 u64 *old, *new;
4577 struct vcpu_svm *svm = to_svm(vcpu);
4578 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
4579 u32 id = (apic_id_reg >> 24) & 0xff;
4580
4581 if (vcpu->vcpu_id == id)
4582 return 0;
4583
4584 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4585 new = avic_get_physical_id_entry(vcpu, id);
4586 if (!new || !old)
4587 return 1;
4588
4589 /* We need to move physical_id_entry to new offset */
4590 *new = *old;
4591 *old = 0ULL;
4592 to_svm(vcpu)->avic_physical_id_cache = new;
4593
4594 /*
4595 * Also update the guest physical APIC ID in the logical
4596 * APIC ID table entry if already setup the LDR.
4597 */
4598 if (svm->ldr_reg)
4599 avic_handle_ldr_update(vcpu);
4600
4601 return 0;
4602}
4603
4604static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
4605{
4606 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson81811c12018-03-20 12:17:21 -07004607 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004608 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
4609 u32 mod = (dfr >> 28) & 0xf;
4610
4611 /*
4612 * We assume that all local APICs are using the same type.
4613 * If this changes, we need to flush the AVIC logical
4614 * APID id table.
4615 */
Sean Christopherson81811c12018-03-20 12:17:21 -07004616 if (kvm_svm->ldr_mode == mod)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004617 return 0;
4618
Sean Christopherson81811c12018-03-20 12:17:21 -07004619 clear_page(page_address(kvm_svm->avic_logical_id_table_page));
4620 kvm_svm->ldr_mode = mod;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004621
4622 if (svm->ldr_reg)
4623 avic_handle_ldr_update(vcpu);
4624 return 0;
4625}
4626
4627static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4628{
4629 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4630 u32 offset = svm->vmcb->control.exit_info_1 &
4631 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4632
4633 switch (offset) {
4634 case APIC_ID:
4635 if (avic_handle_apic_id_update(&svm->vcpu))
4636 return 0;
4637 break;
4638 case APIC_LDR:
4639 if (avic_handle_ldr_update(&svm->vcpu))
4640 return 0;
4641 break;
4642 case APIC_DFR:
4643 avic_handle_dfr_update(&svm->vcpu);
4644 break;
4645 default:
4646 break;
4647 }
4648
4649 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4650
4651 return 1;
4652}
4653
4654static bool is_avic_unaccelerated_access_trap(u32 offset)
4655{
4656 bool ret = false;
4657
4658 switch (offset) {
4659 case APIC_ID:
4660 case APIC_EOI:
4661 case APIC_RRR:
4662 case APIC_LDR:
4663 case APIC_DFR:
4664 case APIC_SPIV:
4665 case APIC_ESR:
4666 case APIC_ICR:
4667 case APIC_LVTT:
4668 case APIC_LVTTHMR:
4669 case APIC_LVTPC:
4670 case APIC_LVT0:
4671 case APIC_LVT1:
4672 case APIC_LVTERR:
4673 case APIC_TMICT:
4674 case APIC_TDCR:
4675 ret = true;
4676 break;
4677 default:
4678 break;
4679 }
4680 return ret;
4681}
4682
4683static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4684{
4685 int ret = 0;
4686 u32 offset = svm->vmcb->control.exit_info_1 &
4687 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4688 u32 vector = svm->vmcb->control.exit_info_2 &
4689 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4690 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4691 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4692 bool trap = is_avic_unaccelerated_access_trap(offset);
4693
4694 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4695 trap, write, vector);
4696 if (trap) {
4697 /* Handling Trap */
4698 WARN_ONCE(!write, "svm: Handling trap read.\n");
4699 ret = avic_unaccel_trap_write(svm);
4700 } else {
4701 /* Handling Fault */
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004702 ret = (kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004703 }
4704
4705 return ret;
4706}
4707
Mathias Krause09941fb2012-08-30 01:30:20 +02004708static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004709 [SVM_EXIT_READ_CR0] = cr_interception,
4710 [SVM_EXIT_READ_CR3] = cr_interception,
4711 [SVM_EXIT_READ_CR4] = cr_interception,
4712 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004713 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004714 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004715 [SVM_EXIT_WRITE_CR3] = cr_interception,
4716 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004717 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004718 [SVM_EXIT_READ_DR0] = dr_interception,
4719 [SVM_EXIT_READ_DR1] = dr_interception,
4720 [SVM_EXIT_READ_DR2] = dr_interception,
4721 [SVM_EXIT_READ_DR3] = dr_interception,
4722 [SVM_EXIT_READ_DR4] = dr_interception,
4723 [SVM_EXIT_READ_DR5] = dr_interception,
4724 [SVM_EXIT_READ_DR6] = dr_interception,
4725 [SVM_EXIT_READ_DR7] = dr_interception,
4726 [SVM_EXIT_WRITE_DR0] = dr_interception,
4727 [SVM_EXIT_WRITE_DR1] = dr_interception,
4728 [SVM_EXIT_WRITE_DR2] = dr_interception,
4729 [SVM_EXIT_WRITE_DR3] = dr_interception,
4730 [SVM_EXIT_WRITE_DR4] = dr_interception,
4731 [SVM_EXIT_WRITE_DR5] = dr_interception,
4732 [SVM_EXIT_WRITE_DR6] = dr_interception,
4733 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004734 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4735 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004736 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004737 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004738 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004739 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004740 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004741 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004742 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004743 [SVM_EXIT_SMI] = nop_on_interception,
4744 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004745 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004746 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004747 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004748 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004749 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004750 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004751 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004752 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004753 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004754 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004755 [SVM_EXIT_MSR] = msr_interception,
4756 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004757 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004758 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004759 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004760 [SVM_EXIT_VMLOAD] = vmload_interception,
4761 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004762 [SVM_EXIT_STGI] = stgi_interception,
4763 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004764 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004765 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004766 [SVM_EXIT_MONITOR] = monitor_interception,
4767 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004768 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004769 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004770 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004771 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4772 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004773};
4774
Joe Perchesae8cc052011-04-24 22:00:50 -07004775static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004776{
4777 struct vcpu_svm *svm = to_svm(vcpu);
4778 struct vmcb_control_area *control = &svm->vmcb->control;
4779 struct vmcb_save_area *save = &svm->vmcb->save;
4780
4781 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004782 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4783 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4784 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4785 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4786 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4787 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4788 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004789 pr_err("%-20s%d\n", "pause filter threshold:",
4790 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004791 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4792 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4793 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4794 pr_err("%-20s%d\n", "asid:", control->asid);
4795 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4796 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4797 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4798 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4799 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4800 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4801 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4802 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4803 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4804 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4805 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004806 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004807 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4808 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004809 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004810 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004811 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4812 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4813 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004814 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004815 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4816 "es:",
4817 save->es.selector, save->es.attrib,
4818 save->es.limit, save->es.base);
4819 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4820 "cs:",
4821 save->cs.selector, save->cs.attrib,
4822 save->cs.limit, save->cs.base);
4823 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4824 "ss:",
4825 save->ss.selector, save->ss.attrib,
4826 save->ss.limit, save->ss.base);
4827 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4828 "ds:",
4829 save->ds.selector, save->ds.attrib,
4830 save->ds.limit, save->ds.base);
4831 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4832 "fs:",
4833 save->fs.selector, save->fs.attrib,
4834 save->fs.limit, save->fs.base);
4835 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4836 "gs:",
4837 save->gs.selector, save->gs.attrib,
4838 save->gs.limit, save->gs.base);
4839 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4840 "gdtr:",
4841 save->gdtr.selector, save->gdtr.attrib,
4842 save->gdtr.limit, save->gdtr.base);
4843 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4844 "ldtr:",
4845 save->ldtr.selector, save->ldtr.attrib,
4846 save->ldtr.limit, save->ldtr.base);
4847 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4848 "idtr:",
4849 save->idtr.selector, save->idtr.attrib,
4850 save->idtr.limit, save->idtr.base);
4851 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4852 "tr:",
4853 save->tr.selector, save->tr.attrib,
4854 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004855 pr_err("cpl: %d efer: %016llx\n",
4856 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004857 pr_err("%-15s %016llx %-13s %016llx\n",
4858 "cr0:", save->cr0, "cr2:", save->cr2);
4859 pr_err("%-15s %016llx %-13s %016llx\n",
4860 "cr3:", save->cr3, "cr4:", save->cr4);
4861 pr_err("%-15s %016llx %-13s %016llx\n",
4862 "dr6:", save->dr6, "dr7:", save->dr7);
4863 pr_err("%-15s %016llx %-13s %016llx\n",
4864 "rip:", save->rip, "rflags:", save->rflags);
4865 pr_err("%-15s %016llx %-13s %016llx\n",
4866 "rsp:", save->rsp, "rax:", save->rax);
4867 pr_err("%-15s %016llx %-13s %016llx\n",
4868 "star:", save->star, "lstar:", save->lstar);
4869 pr_err("%-15s %016llx %-13s %016llx\n",
4870 "cstar:", save->cstar, "sfmask:", save->sfmask);
4871 pr_err("%-15s %016llx %-13s %016llx\n",
4872 "kernel_gs_base:", save->kernel_gs_base,
4873 "sysenter_cs:", save->sysenter_cs);
4874 pr_err("%-15s %016llx %-13s %016llx\n",
4875 "sysenter_esp:", save->sysenter_esp,
4876 "sysenter_eip:", save->sysenter_eip);
4877 pr_err("%-15s %016llx %-13s %016llx\n",
4878 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4879 pr_err("%-15s %016llx %-13s %016llx\n",
4880 "br_from:", save->br_from, "br_to:", save->br_to);
4881 pr_err("%-15s %016llx %-13s %016llx\n",
4882 "excp_from:", save->last_excp_from,
4883 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004884}
4885
Avi Kivity586f9602010-11-18 13:09:54 +02004886static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4887{
4888 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4889
4890 *info1 = control->exit_info_1;
4891 *info2 = control->exit_info_2;
4892}
4893
Avi Kivity851ba692009-08-24 11:10:17 +03004894static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004895{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004896 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004897 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004898 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004899
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004900 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4901
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004902 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004903 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4904 if (npt_enabled)
4905 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004906
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004907 if (unlikely(svm->nested.exit_required)) {
4908 nested_svm_vmexit(svm);
4909 svm->nested.exit_required = false;
4910
4911 return 1;
4912 }
4913
Joerg Roedel20307532010-11-29 17:51:48 +01004914 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004915 int vmexit;
4916
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004917 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4918 svm->vmcb->control.exit_info_1,
4919 svm->vmcb->control.exit_info_2,
4920 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004921 svm->vmcb->control.exit_int_info_err,
4922 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004923
Joerg Roedel410e4d52009-08-07 11:49:44 +02004924 vmexit = nested_svm_exit_special(svm);
4925
4926 if (vmexit == NESTED_EXIT_CONTINUE)
4927 vmexit = nested_svm_exit_handled(svm);
4928
4929 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01004930 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01004931 }
4932
Joerg Roedela5c38322009-08-07 11:49:32 +02004933 svm_complete_interrupts(svm);
4934
Avi Kivity04d2cc72007-09-10 18:10:54 +03004935 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4936 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4937 kvm_run->fail_entry.hardware_entry_failure_reason
4938 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02004939 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4940 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03004941 return 0;
4942 }
4943
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004944 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01004945 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02004946 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4947 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02004948 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08004949 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08004950 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004951 exit_code);
4952
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02004953 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08004954 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04004955 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03004956 kvm_queue_exception(vcpu, UD_VECTOR);
4957 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004958 }
4959
Avi Kivity851ba692009-08-24 11:10:17 +03004960 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004961}
4962
4963static void reload_tss(struct kvm_vcpu *vcpu)
4964{
4965 int cpu = raw_smp_processor_id();
4966
Tejun Heo0fe1e002009-10-29 22:34:14 +09004967 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4968 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004969 load_TR_desc();
4970}
4971
Brijesh Singh70cd94e2017-12-04 10:57:34 -06004972static void pre_sev_run(struct vcpu_svm *svm, int cpu)
4973{
4974 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4975 int asid = sev_get_asid(svm->vcpu.kvm);
4976
4977 /* Assign the asid allocated with this SEV guest */
4978 svm->vmcb->control.asid = asid;
4979
4980 /*
4981 * Flush guest TLB:
4982 *
4983 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
4984 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
4985 */
4986 if (sd->sev_vmcbs[asid] == svm->vmcb &&
4987 svm->last_cpu == cpu)
4988 return;
4989
4990 svm->last_cpu = cpu;
4991 sd->sev_vmcbs[asid] = svm->vmcb;
4992 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
4993 mark_dirty(svm->vmcb, VMCB_ASID);
4994}
4995
Rusty Russelle756fc62007-07-30 20:07:08 +10004996static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004997{
4998 int cpu = raw_smp_processor_id();
4999
Tejun Heo0fe1e002009-10-29 22:34:14 +09005000 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005001
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005002 if (sev_guest(svm->vcpu.kvm))
5003 return pre_sev_run(svm, cpu);
5004
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005005 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005006 if (svm->asid_generation != sd->asid_generation)
5007 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005008}
5009
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005010static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5011{
5012 struct vcpu_svm *svm = to_svm(vcpu);
5013
5014 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5015 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005016 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005017 ++vcpu->stat.nmi_injections;
5018}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005019
Eddie Dong85f455f2007-07-06 12:20:49 +03005020static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005021{
5022 struct vmcb_control_area *control;
5023
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005024 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005025 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005026 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005027 control->int_ctl &= ~V_INTR_PRIO_MASK;
5028 control->int_ctl |= V_IRQ_MASK |
5029 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005030 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005031}
5032
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005033static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005034{
5035 struct vcpu_svm *svm = to_svm(vcpu);
5036
Joerg Roedel2af91942009-08-07 11:49:28 +02005037 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005038
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005039 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5040 ++vcpu->stat.irq_injections;
5041
Alexander Graf219b65d2009-06-15 15:21:25 +02005042 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5043 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005044}
5045
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005046static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5047{
5048 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5049}
5050
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005051static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5052{
5053 struct vcpu_svm *svm = to_svm(vcpu);
5054
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005055 if (svm_nested_virtualize_tpr(vcpu) ||
5056 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005057 return;
5058
Radim Krčmář596f3142014-03-11 19:11:18 +01005059 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5060
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005061 if (irr == -1)
5062 return;
5063
5064 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005065 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005066}
5067
Jim Mattson8d860bb2018-05-09 16:56:05 -04005068static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005069{
5070 return;
5071}
5072
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005073static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005074{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005075 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005076}
5077
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005078static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5079{
5080}
5081
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005082static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005083{
5084}
5085
5086/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005087static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5088{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005089 struct vcpu_svm *svm = to_svm(vcpu);
5090 struct vmcb *vmcb = svm->vmcb;
5091
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005092 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005093 return;
5094
5095 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5096 mark_dirty(vmcb, VMCB_INTR);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005097}
5098
Andrey Smetanin63086302015-11-10 15:36:32 +03005099static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005100{
5101 return;
5102}
5103
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005104static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5105{
5106 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5107 smp_mb__after_atomic();
5108
5109 if (avic_vcpu_is_running(vcpu))
5110 wrmsrl(SVM_AVIC_DOORBELL,
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05005111 kvm_cpu_get_apicid(vcpu->cpu));
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005112 else
5113 kvm_vcpu_wake_up(vcpu);
5114}
5115
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005116static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5117{
5118 unsigned long flags;
5119 struct amd_svm_iommu_ir *cur;
5120
5121 spin_lock_irqsave(&svm->ir_list_lock, flags);
5122 list_for_each_entry(cur, &svm->ir_list, node) {
5123 if (cur->data != pi->ir_data)
5124 continue;
5125 list_del(&cur->node);
5126 kfree(cur);
5127 break;
5128 }
5129 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5130}
5131
5132static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5133{
5134 int ret = 0;
5135 unsigned long flags;
5136 struct amd_svm_iommu_ir *ir;
5137
5138 /**
5139 * In some cases, the existing irte is updaed and re-set,
5140 * so we need to check here if it's already been * added
5141 * to the ir_list.
5142 */
5143 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5144 struct kvm *kvm = svm->vcpu.kvm;
5145 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5146 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5147 struct vcpu_svm *prev_svm;
5148
5149 if (!prev_vcpu) {
5150 ret = -EINVAL;
5151 goto out;
5152 }
5153
5154 prev_svm = to_svm(prev_vcpu);
5155 svm_ir_list_del(prev_svm, pi);
5156 }
5157
5158 /**
5159 * Allocating new amd_iommu_pi_data, which will get
5160 * add to the per-vcpu ir_list.
5161 */
5162 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
5163 if (!ir) {
5164 ret = -ENOMEM;
5165 goto out;
5166 }
5167 ir->data = pi->ir_data;
5168
5169 spin_lock_irqsave(&svm->ir_list_lock, flags);
5170 list_add(&ir->node, &svm->ir_list);
5171 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5172out:
5173 return ret;
5174}
5175
5176/**
5177 * Note:
5178 * The HW cannot support posting multicast/broadcast
5179 * interrupts to a vCPU. So, we still use legacy interrupt
5180 * remapping for these kind of interrupts.
5181 *
5182 * For lowest-priority interrupts, we only support
5183 * those with single CPU as the destination, e.g. user
5184 * configures the interrupts via /proc/irq or uses
5185 * irqbalance to make the interrupts single-CPU.
5186 */
5187static int
5188get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5189 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5190{
5191 struct kvm_lapic_irq irq;
5192 struct kvm_vcpu *vcpu = NULL;
5193
5194 kvm_set_msi_irq(kvm, e, &irq);
5195
5196 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
5197 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5198 __func__, irq.vector);
5199 return -1;
5200 }
5201
5202 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5203 irq.vector);
5204 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005205 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005206 vcpu_info->vector = irq.vector;
5207
5208 return 0;
5209}
5210
5211/*
5212 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5213 *
5214 * @kvm: kvm
5215 * @host_irq: host irq of the interrupt
5216 * @guest_irq: gsi of the interrupt
5217 * @set: set or unset PI
5218 * returns 0 on success, < 0 on failure
5219 */
5220static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5221 uint32_t guest_irq, bool set)
5222{
5223 struct kvm_kernel_irq_routing_entry *e;
5224 struct kvm_irq_routing_table *irq_rt;
5225 int idx, ret = -EINVAL;
5226
5227 if (!kvm_arch_has_assigned_device(kvm) ||
5228 !irq_remapping_cap(IRQ_POSTING_CAP))
5229 return 0;
5230
5231 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5232 __func__, host_irq, guest_irq, set);
5233
5234 idx = srcu_read_lock(&kvm->irq_srcu);
5235 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5236 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5237
5238 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5239 struct vcpu_data vcpu_info;
5240 struct vcpu_svm *svm = NULL;
5241
5242 if (e->type != KVM_IRQ_ROUTING_MSI)
5243 continue;
5244
5245 /**
5246 * Here, we setup with legacy mode in the following cases:
5247 * 1. When cannot target interrupt to a specific vcpu.
5248 * 2. Unsetting posted interrupt.
5249 * 3. APIC virtialization is disabled for the vcpu.
5250 */
5251 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5252 kvm_vcpu_apicv_active(&svm->vcpu)) {
5253 struct amd_iommu_pi_data pi;
5254
5255 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005256 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5257 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005258 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005259 svm->vcpu.vcpu_id);
5260 pi.is_guest_mode = true;
5261 pi.vcpu_data = &vcpu_info;
5262 ret = irq_set_vcpu_affinity(host_irq, &pi);
5263
5264 /**
5265 * Here, we successfully setting up vcpu affinity in
5266 * IOMMU guest mode. Now, we need to store the posted
5267 * interrupt information in a per-vcpu ir_list so that
5268 * we can reference to them directly when we update vcpu
5269 * scheduling information in IOMMU irte.
5270 */
5271 if (!ret && pi.is_guest_mode)
5272 svm_ir_list_add(svm, &pi);
5273 } else {
5274 /* Use legacy mode in IRTE */
5275 struct amd_iommu_pi_data pi;
5276
5277 /**
5278 * Here, pi is used to:
5279 * - Tell IOMMU to use legacy mode for this interrupt.
5280 * - Retrieve ga_tag of prior interrupt remapping data.
5281 */
5282 pi.is_guest_mode = false;
5283 ret = irq_set_vcpu_affinity(host_irq, &pi);
5284
5285 /**
5286 * Check if the posted interrupt was previously
5287 * setup with the guest_mode by checking if the ga_tag
5288 * was cached. If so, we need to clean up the per-vcpu
5289 * ir_list.
5290 */
5291 if (!ret && pi.prev_ga_tag) {
5292 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5293 struct kvm_vcpu *vcpu;
5294
5295 vcpu = kvm_get_vcpu_by_id(kvm, id);
5296 if (vcpu)
5297 svm_ir_list_del(to_svm(vcpu), &pi);
5298 }
5299 }
5300
5301 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005302 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5303 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005304 vcpu_info.pi_desc_addr, set);
5305 }
5306
5307 if (ret < 0) {
5308 pr_err("%s: failed to update PI IRTE\n", __func__);
5309 goto out;
5310 }
5311 }
5312
5313 ret = 0;
5314out:
5315 srcu_read_unlock(&kvm->irq_srcu, idx);
5316 return ret;
5317}
5318
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005319static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005320{
5321 struct vcpu_svm *svm = to_svm(vcpu);
5322 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005323 int ret;
5324 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5325 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5326 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5327
5328 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005329}
5330
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005331static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5332{
5333 struct vcpu_svm *svm = to_svm(vcpu);
5334
5335 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5336}
5337
5338static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5339{
5340 struct vcpu_svm *svm = to_svm(vcpu);
5341
5342 if (masked) {
5343 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005344 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005345 } else {
5346 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005347 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005348 }
5349}
5350
Gleb Natapov78646122009-03-23 12:12:11 +02005351static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5352{
5353 struct vcpu_svm *svm = to_svm(vcpu);
5354 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005355 int ret;
5356
5357 if (!gif_set(svm) ||
5358 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5359 return 0;
5360
Avi Kivityf6e78472010-08-02 15:30:20 +03005361 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005362
Joerg Roedel20307532010-11-29 17:51:48 +01005363 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005364 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5365
5366 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005367}
5368
Jan Kiszkac9a79532014-03-07 20:03:15 +01005369static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005370{
Alexander Graf219b65d2009-06-15 15:21:25 +02005371 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005372
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005373 if (kvm_vcpu_apicv_active(vcpu))
5374 return;
5375
Joerg Roedele0231712010-02-24 18:59:10 +01005376 /*
5377 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5378 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5379 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005380 * we'll get the vintr intercept. However, if the vGIF feature is
5381 * enabled, the STGI interception will not occur. Enable the irq
5382 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005383 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005384 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005385 svm_set_vintr(svm);
5386 svm_inject_irq(svm, 0x0);
5387 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005388}
5389
Jan Kiszkac9a79532014-03-07 20:03:15 +01005390static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005391{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005392 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005393
Gleb Natapov44c11432009-05-11 13:35:52 +03005394 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5395 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005396 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005397
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005398 if (!gif_set(svm)) {
5399 if (vgif_enabled(svm))
5400 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005401 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005402 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005403
5404 if (svm->nested.exit_required)
5405 return; /* we're not going to run the guest yet */
5406
Joerg Roedele0231712010-02-24 18:59:10 +01005407 /*
5408 * Something prevents NMI from been injected. Single step over possible
5409 * problem (IRET or exception injection or interrupt shadow)
5410 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005411 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005412 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005413 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005414}
5415
Izik Eiduscbc94022007-10-25 00:29:55 +02005416static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5417{
5418 return 0;
5419}
5420
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005421static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5422{
5423 return 0;
5424}
5425
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005426static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005427{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005428 struct vcpu_svm *svm = to_svm(vcpu);
5429
5430 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5431 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5432 else
5433 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005434}
5435
Junaid Shahidfaff8752018-06-29 13:10:05 -07005436static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5437{
5438 struct vcpu_svm *svm = to_svm(vcpu);
5439
5440 invlpga(gva, svm->vmcb->control.asid);
5441}
5442
Avi Kivity04d2cc72007-09-10 18:10:54 +03005443static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5444{
5445}
5446
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005447static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5448{
5449 struct vcpu_svm *svm = to_svm(vcpu);
5450
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005451 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005452 return;
5453
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005454 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005455 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005456 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005457 }
5458}
5459
Joerg Roedel649d6862008-04-16 16:51:15 +02005460static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5461{
5462 struct vcpu_svm *svm = to_svm(vcpu);
5463 u64 cr8;
5464
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005465 if (svm_nested_virtualize_tpr(vcpu) ||
5466 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005467 return;
5468
Joerg Roedel649d6862008-04-16 16:51:15 +02005469 cr8 = kvm_get_cr8(vcpu);
5470 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5471 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5472}
5473
Gleb Natapov9222be12009-04-23 17:14:37 +03005474static void svm_complete_interrupts(struct vcpu_svm *svm)
5475{
5476 u8 vector;
5477 int type;
5478 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005479 unsigned int3_injected = svm->int3_injected;
5480
5481 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005482
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005483 /*
5484 * If we've made progress since setting HF_IRET_MASK, we've
5485 * executed an IRET and can allow NMI injection.
5486 */
5487 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5488 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005489 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005490 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5491 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005492
Gleb Natapov9222be12009-04-23 17:14:37 +03005493 svm->vcpu.arch.nmi_injected = false;
5494 kvm_clear_exception_queue(&svm->vcpu);
5495 kvm_clear_interrupt_queue(&svm->vcpu);
5496
5497 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5498 return;
5499
Avi Kivity3842d132010-07-27 12:30:24 +03005500 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5501
Gleb Natapov9222be12009-04-23 17:14:37 +03005502 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5503 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5504
5505 switch (type) {
5506 case SVM_EXITINTINFO_TYPE_NMI:
5507 svm->vcpu.arch.nmi_injected = true;
5508 break;
5509 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005510 /*
5511 * In case of software exceptions, do not reinject the vector,
5512 * but re-execute the instruction instead. Rewind RIP first
5513 * if we emulated INT3 before.
5514 */
5515 if (kvm_exception_is_soft(vector)) {
5516 if (vector == BP_VECTOR && int3_injected &&
5517 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5518 kvm_rip_write(&svm->vcpu,
5519 kvm_rip_read(&svm->vcpu) -
5520 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005521 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005522 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005523 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5524 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005525 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005526
5527 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005528 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005529 break;
5530 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005531 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005532 break;
5533 default:
5534 break;
5535 }
5536}
5537
Avi Kivityb463a6f2010-07-20 15:06:17 +03005538static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5539{
5540 struct vcpu_svm *svm = to_svm(vcpu);
5541 struct vmcb_control_area *control = &svm->vmcb->control;
5542
5543 control->exit_int_info = control->event_inj;
5544 control->exit_int_info_err = control->event_inj_err;
5545 control->event_inj = 0;
5546 svm_complete_interrupts(svm);
5547}
5548
Avi Kivity851ba692009-08-24 11:10:17 +03005549static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005550{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005551 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005552
Joerg Roedel2041a062010-04-22 12:33:08 +02005553 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5554 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5555 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5556
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005557 /*
5558 * A vmexit emulation is required before the vcpu can be executed
5559 * again.
5560 */
5561 if (unlikely(svm->nested.exit_required))
5562 return;
5563
Ladi Proseka12713c2017-06-21 09:07:00 +02005564 /*
5565 * Disable singlestep if we're injecting an interrupt/exception.
5566 * We don't want our modified rflags to be pushed on the stack where
5567 * we might not be able to easily reset them if we disabled NMI
5568 * singlestep later.
5569 */
5570 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5571 /*
5572 * Event injection happens before external interrupts cause a
5573 * vmexit and interrupts are disabled here, so smp_send_reschedule
5574 * is enough to force an immediate vmexit.
5575 */
5576 disable_nmi_singlestep(svm);
5577 smp_send_reschedule(vcpu->cpu);
5578 }
5579
Rusty Russelle756fc62007-07-30 20:07:08 +10005580 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005581
Joerg Roedel649d6862008-04-16 16:51:15 +02005582 sync_lapic_to_cr8(vcpu);
5583
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005584 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005585
Avi Kivity04d2cc72007-09-10 18:10:54 +03005586 clgi();
5587
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005588 /*
5589 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5590 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5591 * is no need to worry about the conditional branch over the wrmsr
5592 * being speculatively taken.
5593 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005594 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005595
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005596 local_irq_enable();
5597
Avi Kivity6aa8b732006-12-10 02:21:36 -08005598 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005599 "push %%" _ASM_BP "; \n\t"
5600 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5601 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5602 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5603 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5604 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5605 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005606#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005607 "mov %c[r8](%[svm]), %%r8 \n\t"
5608 "mov %c[r9](%[svm]), %%r9 \n\t"
5609 "mov %c[r10](%[svm]), %%r10 \n\t"
5610 "mov %c[r11](%[svm]), %%r11 \n\t"
5611 "mov %c[r12](%[svm]), %%r12 \n\t"
5612 "mov %c[r13](%[svm]), %%r13 \n\t"
5613 "mov %c[r14](%[svm]), %%r14 \n\t"
5614 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005615#endif
5616
Avi Kivity6aa8b732006-12-10 02:21:36 -08005617 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005618 "push %%" _ASM_AX " \n\t"
5619 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005620 __ex(SVM_VMLOAD) "\n\t"
5621 __ex(SVM_VMRUN) "\n\t"
5622 __ex(SVM_VMSAVE) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005623 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005624
5625 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005626 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5627 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5628 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5629 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5630 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5631 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005632#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005633 "mov %%r8, %c[r8](%[svm]) \n\t"
5634 "mov %%r9, %c[r9](%[svm]) \n\t"
5635 "mov %%r10, %c[r10](%[svm]) \n\t"
5636 "mov %%r11, %c[r11](%[svm]) \n\t"
5637 "mov %%r12, %c[r12](%[svm]) \n\t"
5638 "mov %%r13, %c[r13](%[svm]) \n\t"
5639 "mov %%r14, %c[r14](%[svm]) \n\t"
5640 "mov %%r15, %c[r15](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005641#endif
Jim Mattson0cb5b302018-01-03 14:31:38 -08005642 /*
5643 * Clear host registers marked as clobbered to prevent
5644 * speculative use.
5645 */
5646 "xor %%" _ASM_BX ", %%" _ASM_BX " \n\t"
5647 "xor %%" _ASM_CX ", %%" _ASM_CX " \n\t"
5648 "xor %%" _ASM_DX ", %%" _ASM_DX " \n\t"
5649 "xor %%" _ASM_SI ", %%" _ASM_SI " \n\t"
5650 "xor %%" _ASM_DI ", %%" _ASM_DI " \n\t"
5651#ifdef CONFIG_X86_64
5652 "xor %%r8, %%r8 \n\t"
5653 "xor %%r9, %%r9 \n\t"
5654 "xor %%r10, %%r10 \n\t"
5655 "xor %%r11, %%r11 \n\t"
5656 "xor %%r12, %%r12 \n\t"
5657 "xor %%r13, %%r13 \n\t"
5658 "xor %%r14, %%r14 \n\t"
5659 "xor %%r15, %%r15 \n\t"
5660#endif
Avi Kivity74547662012-09-16 15:10:59 +03005661 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005662 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005663 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005664 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005665 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5666 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5667 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5668 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5669 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5670 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005671#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005672 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5673 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5674 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5675 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5676 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5677 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5678 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5679 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005680#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005681 : "cc", "memory"
5682#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005683 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005684 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005685#else
5686 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005687#endif
5688 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005689
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005690 /* Eliminate branch target predictions from guest mode */
5691 vmexit_fill_RSB();
5692
5693#ifdef CONFIG_X86_64
5694 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5695#else
5696 loadsegment(fs, svm->host.fs);
5697#ifndef CONFIG_X86_32_LAZY_GS
5698 loadsegment(gs, svm->host.gs);
5699#endif
5700#endif
5701
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005702 /*
5703 * We do not use IBRS in the kernel. If this vCPU has used the
5704 * SPEC_CTRL MSR it may have left it on; save the value and
5705 * turn it off. This is much more efficient than blindly adding
5706 * it to the atomic save/restore list. Especially as the former
5707 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5708 *
5709 * For non-nested case:
5710 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5711 * save it.
5712 *
5713 * For nested case:
5714 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5715 * save it.
5716 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005717 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005718 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005719
Avi Kivity6aa8b732006-12-10 02:21:36 -08005720 reload_tss(vcpu);
5721
Avi Kivity56ba47d2007-11-07 17:14:18 +02005722 local_irq_disable();
5723
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005724 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5725
Avi Kivity13c34e02010-10-21 12:20:31 +02005726 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5727 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5728 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5729 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5730
Joerg Roedel3781c012011-01-14 16:45:02 +01005731 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005732 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005733
5734 stgi();
5735
5736 /* Any pending NMI will happen here */
5737
5738 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005739 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005740
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005741 sync_cr8_to_lapic(vcpu);
5742
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005743 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005744
Joerg Roedel38e5e922010-12-03 15:25:16 +01005745 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5746
Gleb Natapov631bc482010-10-14 11:22:52 +02005747 /* if exit due to PF check for async PF */
5748 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005749 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005750
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005751 if (npt_enabled) {
5752 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5753 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5754 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005755
5756 /*
5757 * We need to handle MC intercepts here before the vcpu has a chance to
5758 * change the physical cpu
5759 */
5760 if (unlikely(svm->vmcb->control.exit_code ==
5761 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5762 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005763
5764 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005765}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005766STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005767
Avi Kivity6aa8b732006-12-10 02:21:36 -08005768static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5769{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005770 struct vcpu_svm *svm = to_svm(vcpu);
5771
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005772 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005773 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005774}
5775
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005776static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5777{
5778 struct vcpu_svm *svm = to_svm(vcpu);
5779
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005780 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005781 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005782
5783 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005784 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005785 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005786}
5787
Avi Kivity6aa8b732006-12-10 02:21:36 -08005788static int is_disabled(void)
5789{
Joerg Roedel6031a612007-06-22 12:29:50 +03005790 u64 vm_cr;
5791
5792 rdmsrl(MSR_VM_CR, vm_cr);
5793 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5794 return 1;
5795
Avi Kivity6aa8b732006-12-10 02:21:36 -08005796 return 0;
5797}
5798
Ingo Molnar102d8322007-02-19 14:37:47 +02005799static void
5800svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5801{
5802 /*
5803 * Patch in the VMMCALL instruction:
5804 */
5805 hypercall[0] = 0x0f;
5806 hypercall[1] = 0x01;
5807 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005808}
5809
Yang, Sheng002c7f72007-07-31 14:23:01 +03005810static void svm_check_processor_compat(void *rtn)
5811{
5812 *(int *)rtn = 0;
5813}
5814
Avi Kivity774ead32007-12-26 13:57:04 +02005815static bool svm_cpu_has_accelerated_tpr(void)
5816{
5817 return false;
5818}
5819
Tom Lendackybc226f02018-05-10 22:06:39 +02005820static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005821{
5822 return true;
5823}
5824
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005825static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5826{
5827 return 0;
5828}
5829
Sheng Yang0e851882009-12-18 16:48:46 +08005830static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5831{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005832 struct vcpu_svm *svm = to_svm(vcpu);
5833
5834 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005835 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005836
5837 if (!kvm_vcpu_apicv_active(vcpu))
5838 return;
5839
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005840 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005841}
5842
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005843static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5844{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005845 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005846 case 0x1:
5847 if (avic)
5848 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5849 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005850 case 0x80000001:
5851 if (nested)
5852 entry->ecx |= (1 << 2); /* Set SVM bit */
5853 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005854 case 0x8000000A:
5855 entry->eax = 1; /* SVM revision 1 */
5856 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5857 ASID emulation to nested SVM */
5858 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005859 entry->edx = 0; /* Per default do not support any
5860 additional features */
5861
5862 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005863 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005864 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005865
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005866 /* Support NPT for the guest if enabled */
5867 if (npt_enabled)
5868 entry->edx |= SVM_FEATURE_NPT;
5869
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005870 break;
Brijesh Singh8765d752017-12-04 10:57:25 -06005871 case 0x8000001F:
5872 /* Support memory encryption cpuid if host supports it */
5873 if (boot_cpu_has(X86_FEATURE_SEV))
5874 cpuid(0x8000001f, &entry->eax, &entry->ebx,
5875 &entry->ecx, &entry->edx);
5876
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005877 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005878}
5879
Sheng Yang17cc3932010-01-05 19:02:27 +08005880static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005881{
Sheng Yang17cc3932010-01-05 19:02:27 +08005882 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005883}
5884
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005885static bool svm_rdtscp_supported(void)
5886{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005887 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005888}
5889
Mao, Junjiead756a12012-07-02 01:18:48 +00005890static bool svm_invpcid_supported(void)
5891{
5892 return false;
5893}
5894
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005895static bool svm_mpx_supported(void)
5896{
5897 return false;
5898}
5899
Wanpeng Li55412b22014-12-02 19:21:30 +08005900static bool svm_xsaves_supported(void)
5901{
5902 return false;
5903}
5904
Paolo Bonzini66336ca2016-07-12 10:36:41 +02005905static bool svm_umip_emulated(void)
5906{
5907 return false;
5908}
5909
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005910static bool svm_has_wbinvd_exit(void)
5911{
5912 return true;
5913}
5914
Joerg Roedel80612522011-04-04 12:39:33 +02005915#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005916 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005917#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005918 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005919#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005920 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005921
Mathias Krause09941fb2012-08-30 01:30:20 +02005922static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005923 u32 exit_code;
5924 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005925} x86_intercept_map[] = {
5926 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5927 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5928 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5929 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5930 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02005931 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5932 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02005933 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5934 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5935 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5936 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5937 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5938 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5939 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5940 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02005941 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
5942 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
5943 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
5944 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
5945 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
5946 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
5947 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
5948 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005949 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
5950 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
5951 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02005952 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
5953 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
5954 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
5955 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
5956 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
5957 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
5958 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
5959 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
5960 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02005961 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
5962 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
5963 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
5964 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
5965 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
5966 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
5967 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02005968 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
5969 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
5970 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
5971 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005972};
5973
Joerg Roedel80612522011-04-04 12:39:33 +02005974#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005975#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005976#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005977
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005978static int svm_check_intercept(struct kvm_vcpu *vcpu,
5979 struct x86_instruction_info *info,
5980 enum x86_intercept_stage stage)
5981{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005982 struct vcpu_svm *svm = to_svm(vcpu);
5983 int vmexit, ret = X86EMUL_CONTINUE;
5984 struct __x86_intercept icpt_info;
5985 struct vmcb *vmcb = svm->vmcb;
5986
5987 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
5988 goto out;
5989
5990 icpt_info = x86_intercept_map[info->intercept];
5991
Avi Kivity40e19b52011-04-21 12:35:41 +03005992 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005993 goto out;
5994
5995 switch (icpt_info.exit_code) {
5996 case SVM_EXIT_READ_CR0:
5997 if (info->intercept == x86_intercept_cr_read)
5998 icpt_info.exit_code += info->modrm_reg;
5999 break;
6000 case SVM_EXIT_WRITE_CR0: {
6001 unsigned long cr0, val;
6002 u64 intercept;
6003
6004 if (info->intercept == x86_intercept_cr_write)
6005 icpt_info.exit_code += info->modrm_reg;
6006
Jan Kiszka62baf442014-06-29 21:55:53 +02006007 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6008 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006009 break;
6010
6011 intercept = svm->nested.intercept;
6012
6013 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6014 break;
6015
6016 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6017 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6018
6019 if (info->intercept == x86_intercept_lmsw) {
6020 cr0 &= 0xfUL;
6021 val &= 0xfUL;
6022 /* lmsw can't clear PE - catch this here */
6023 if (cr0 & X86_CR0_PE)
6024 val |= X86_CR0_PE;
6025 }
6026
6027 if (cr0 ^ val)
6028 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6029
6030 break;
6031 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006032 case SVM_EXIT_READ_DR0:
6033 case SVM_EXIT_WRITE_DR0:
6034 icpt_info.exit_code += info->modrm_reg;
6035 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006036 case SVM_EXIT_MSR:
6037 if (info->intercept == x86_intercept_wrmsr)
6038 vmcb->control.exit_info_1 = 1;
6039 else
6040 vmcb->control.exit_info_1 = 0;
6041 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006042 case SVM_EXIT_PAUSE:
6043 /*
6044 * We get this for NOP only, but pause
6045 * is rep not, check this here
6046 */
6047 if (info->rep_prefix != REPE_PREFIX)
6048 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006049 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006050 case SVM_EXIT_IOIO: {
6051 u64 exit_info;
6052 u32 bytes;
6053
Joerg Roedelf6511932011-04-04 12:39:35 +02006054 if (info->intercept == x86_intercept_in ||
6055 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006056 exit_info = ((info->src_val & 0xffff) << 16) |
6057 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006058 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006059 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006060 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006061 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006062 }
6063
6064 if (info->intercept == x86_intercept_outs ||
6065 info->intercept == x86_intercept_ins)
6066 exit_info |= SVM_IOIO_STR_MASK;
6067
6068 if (info->rep_prefix)
6069 exit_info |= SVM_IOIO_REP_MASK;
6070
6071 bytes = min(bytes, 4u);
6072
6073 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6074
6075 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6076
6077 vmcb->control.exit_info_1 = exit_info;
6078 vmcb->control.exit_info_2 = info->next_rip;
6079
6080 break;
6081 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006082 default:
6083 break;
6084 }
6085
Bandan Dasf1047652015-06-11 02:05:33 -04006086 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6087 if (static_cpu_has(X86_FEATURE_NRIPS))
6088 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006089 vmcb->control.exit_code = icpt_info.exit_code;
6090 vmexit = nested_svm_exit_handled(svm);
6091
6092 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6093 : X86EMUL_CONTINUE;
6094
6095out:
6096 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006097}
6098
Yang Zhanga547c6d2013-04-11 19:25:10 +08006099static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
6100{
6101 local_irq_enable();
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006102 /*
6103 * We must have an instruction with interrupts enabled, so
6104 * the timer interrupt isn't delayed by the interrupt shadow.
6105 */
6106 asm("nop");
6107 local_irq_disable();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006108}
6109
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006110static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6111{
Babu Moger8566ac82018-03-16 16:37:26 -04006112 if (pause_filter_thresh)
6113 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006114}
6115
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006116static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6117{
6118 if (avic_handle_apic_id_update(vcpu) != 0)
6119 return;
6120 if (avic_handle_dfr_update(vcpu) != 0)
6121 return;
6122 avic_handle_ldr_update(vcpu);
6123}
6124
Borislav Petkov74f16902017-03-26 23:51:24 +02006125static void svm_setup_mce(struct kvm_vcpu *vcpu)
6126{
6127 /* [63:9] are reserved. */
6128 vcpu->arch.mcg_cap &= 0x1ff;
6129}
6130
Ladi Prosek72d7b372017-10-11 16:54:41 +02006131static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6132{
Ladi Prosek05cade72017-10-11 16:54:45 +02006133 struct vcpu_svm *svm = to_svm(vcpu);
6134
6135 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6136 if (!gif_set(svm))
6137 return 0;
6138
6139 if (is_guest_mode(&svm->vcpu) &&
6140 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6141 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6142 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6143 svm->nested.exit_required = true;
6144 return 0;
6145 }
6146
Ladi Prosek72d7b372017-10-11 16:54:41 +02006147 return 1;
6148}
6149
Ladi Prosek0234bf82017-10-11 16:54:40 +02006150static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6151{
Ladi Prosek05cade72017-10-11 16:54:45 +02006152 struct vcpu_svm *svm = to_svm(vcpu);
6153 int ret;
6154
6155 if (is_guest_mode(vcpu)) {
6156 /* FED8h - SVM Guest */
6157 put_smstate(u64, smstate, 0x7ed8, 1);
6158 /* FEE0h - SVM Guest VMCB Physical Address */
6159 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6160
6161 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6162 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6163 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6164
6165 ret = nested_svm_vmexit(svm);
6166 if (ret)
6167 return ret;
6168 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006169 return 0;
6170}
6171
6172static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
6173{
Ladi Prosek05cade72017-10-11 16:54:45 +02006174 struct vcpu_svm *svm = to_svm(vcpu);
6175 struct vmcb *nested_vmcb;
6176 struct page *page;
6177 struct {
6178 u64 guest;
6179 u64 vmcb;
6180 } svm_state_save;
6181 int ret;
6182
6183 ret = kvm_vcpu_read_guest(vcpu, smbase + 0xfed8, &svm_state_save,
6184 sizeof(svm_state_save));
6185 if (ret)
6186 return ret;
6187
6188 if (svm_state_save.guest) {
6189 vcpu->arch.hflags &= ~HF_SMM_MASK;
6190 nested_vmcb = nested_svm_map(svm, svm_state_save.vmcb, &page);
6191 if (nested_vmcb)
6192 enter_svm_guest_mode(svm, svm_state_save.vmcb, nested_vmcb, page);
6193 else
6194 ret = 1;
6195 vcpu->arch.hflags |= HF_SMM_MASK;
6196 }
6197 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006198}
6199
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006200static int enable_smi_window(struct kvm_vcpu *vcpu)
6201{
6202 struct vcpu_svm *svm = to_svm(vcpu);
6203
6204 if (!gif_set(svm)) {
6205 if (vgif_enabled(svm))
6206 set_intercept(svm, INTERCEPT_STGI);
6207 /* STGI will cause a vm exit */
6208 return 1;
6209 }
6210 return 0;
6211}
6212
Brijesh Singh1654efc2017-12-04 10:57:34 -06006213static int sev_asid_new(void)
6214{
6215 int pos;
6216
6217 /*
6218 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6219 */
6220 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
6221 if (pos >= max_sev_asid)
6222 return -EBUSY;
6223
6224 set_bit(pos, sev_asid_bitmap);
6225 return pos + 1;
6226}
6227
6228static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6229{
Sean Christopherson81811c12018-03-20 12:17:21 -07006230 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006231 int asid, ret;
6232
6233 ret = -EBUSY;
6234 asid = sev_asid_new();
6235 if (asid < 0)
6236 return ret;
6237
6238 ret = sev_platform_init(&argp->error);
6239 if (ret)
6240 goto e_free;
6241
6242 sev->active = true;
6243 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006244 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006245
6246 return 0;
6247
6248e_free:
6249 __sev_asid_free(asid);
6250 return ret;
6251}
6252
Brijesh Singh59414c92017-12-04 10:57:35 -06006253static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6254{
6255 struct sev_data_activate *data;
6256 int asid = sev_get_asid(kvm);
6257 int ret;
6258
6259 wbinvd_on_all_cpus();
6260
6261 ret = sev_guest_df_flush(error);
6262 if (ret)
6263 return ret;
6264
6265 data = kzalloc(sizeof(*data), GFP_KERNEL);
6266 if (!data)
6267 return -ENOMEM;
6268
6269 /* activate ASID on the given handle */
6270 data->handle = handle;
6271 data->asid = asid;
6272 ret = sev_guest_activate(data, error);
6273 kfree(data);
6274
6275 return ret;
6276}
6277
Brijesh Singh89c50582017-12-04 10:57:35 -06006278static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006279{
6280 struct fd f;
6281 int ret;
6282
6283 f = fdget(fd);
6284 if (!f.file)
6285 return -EBADF;
6286
6287 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6288
6289 fdput(f);
6290 return ret;
6291}
6292
Brijesh Singh89c50582017-12-04 10:57:35 -06006293static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6294{
Sean Christopherson81811c12018-03-20 12:17:21 -07006295 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006296
6297 return __sev_issue_cmd(sev->fd, id, data, error);
6298}
6299
Brijesh Singh59414c92017-12-04 10:57:35 -06006300static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6301{
Sean Christopherson81811c12018-03-20 12:17:21 -07006302 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006303 struct sev_data_launch_start *start;
6304 struct kvm_sev_launch_start params;
6305 void *dh_blob, *session_blob;
6306 int *error = &argp->error;
6307 int ret;
6308
6309 if (!sev_guest(kvm))
6310 return -ENOTTY;
6311
6312 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6313 return -EFAULT;
6314
6315 start = kzalloc(sizeof(*start), GFP_KERNEL);
6316 if (!start)
6317 return -ENOMEM;
6318
6319 dh_blob = NULL;
6320 if (params.dh_uaddr) {
6321 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6322 if (IS_ERR(dh_blob)) {
6323 ret = PTR_ERR(dh_blob);
6324 goto e_free;
6325 }
6326
6327 start->dh_cert_address = __sme_set(__pa(dh_blob));
6328 start->dh_cert_len = params.dh_len;
6329 }
6330
6331 session_blob = NULL;
6332 if (params.session_uaddr) {
6333 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6334 if (IS_ERR(session_blob)) {
6335 ret = PTR_ERR(session_blob);
6336 goto e_free_dh;
6337 }
6338
6339 start->session_address = __sme_set(__pa(session_blob));
6340 start->session_len = params.session_len;
6341 }
6342
6343 start->handle = params.handle;
6344 start->policy = params.policy;
6345
6346 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006347 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006348 if (ret)
6349 goto e_free_session;
6350
6351 /* Bind ASID to this guest */
6352 ret = sev_bind_asid(kvm, start->handle, error);
6353 if (ret)
6354 goto e_free_session;
6355
6356 /* return handle to userspace */
6357 params.handle = start->handle;
6358 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6359 sev_unbind_asid(kvm, start->handle);
6360 ret = -EFAULT;
6361 goto e_free_session;
6362 }
6363
6364 sev->handle = start->handle;
6365 sev->fd = argp->sev_fd;
6366
6367e_free_session:
6368 kfree(session_blob);
6369e_free_dh:
6370 kfree(dh_blob);
6371e_free:
6372 kfree(start);
6373 return ret;
6374}
6375
Brijesh Singh89c50582017-12-04 10:57:35 -06006376static int get_num_contig_pages(int idx, struct page **inpages,
6377 unsigned long npages)
6378{
6379 unsigned long paddr, next_paddr;
6380 int i = idx + 1, pages = 1;
6381
6382 /* find the number of contiguous pages starting from idx */
6383 paddr = __sme_page_pa(inpages[idx]);
6384 while (i < npages) {
6385 next_paddr = __sme_page_pa(inpages[i++]);
6386 if ((paddr + PAGE_SIZE) == next_paddr) {
6387 pages++;
6388 paddr = next_paddr;
6389 continue;
6390 }
6391 break;
6392 }
6393
6394 return pages;
6395}
6396
6397static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6398{
6399 unsigned long vaddr, vaddr_end, next_vaddr, npages, size;
Sean Christopherson81811c12018-03-20 12:17:21 -07006400 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006401 struct kvm_sev_launch_update_data params;
6402 struct sev_data_launch_update_data *data;
6403 struct page **inpages;
6404 int i, ret, pages;
6405
6406 if (!sev_guest(kvm))
6407 return -ENOTTY;
6408
6409 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6410 return -EFAULT;
6411
6412 data = kzalloc(sizeof(*data), GFP_KERNEL);
6413 if (!data)
6414 return -ENOMEM;
6415
6416 vaddr = params.uaddr;
6417 size = params.len;
6418 vaddr_end = vaddr + size;
6419
6420 /* Lock the user memory. */
6421 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6422 if (!inpages) {
6423 ret = -ENOMEM;
6424 goto e_free;
6425 }
6426
6427 /*
6428 * The LAUNCH_UPDATE command will perform in-place encryption of the
6429 * memory content (i.e it will write the same memory region with C=1).
6430 * It's possible that the cache may contain the data with C=0, i.e.,
6431 * unencrypted so invalidate it first.
6432 */
6433 sev_clflush_pages(inpages, npages);
6434
6435 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6436 int offset, len;
6437
6438 /*
6439 * If the user buffer is not page-aligned, calculate the offset
6440 * within the page.
6441 */
6442 offset = vaddr & (PAGE_SIZE - 1);
6443
6444 /* Calculate the number of pages that can be encrypted in one go. */
6445 pages = get_num_contig_pages(i, inpages, npages);
6446
6447 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6448
6449 data->handle = sev->handle;
6450 data->len = len;
6451 data->address = __sme_page_pa(inpages[i]) + offset;
6452 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6453 if (ret)
6454 goto e_unpin;
6455
6456 size -= len;
6457 next_vaddr = vaddr + len;
6458 }
6459
6460e_unpin:
6461 /* content of memory is updated, mark pages dirty */
6462 for (i = 0; i < npages; i++) {
6463 set_page_dirty_lock(inpages[i]);
6464 mark_page_accessed(inpages[i]);
6465 }
6466 /* unlock the user pages */
6467 sev_unpin_memory(kvm, inpages, npages);
6468e_free:
6469 kfree(data);
6470 return ret;
6471}
6472
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006473static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6474{
Brijesh Singh3e233382018-02-23 12:36:50 -06006475 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006476 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006477 struct sev_data_launch_measure *data;
6478 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006479 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006480 void *blob = NULL;
6481 int ret;
6482
6483 if (!sev_guest(kvm))
6484 return -ENOTTY;
6485
Brijesh Singh3e233382018-02-23 12:36:50 -06006486 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006487 return -EFAULT;
6488
6489 data = kzalloc(sizeof(*data), GFP_KERNEL);
6490 if (!data)
6491 return -ENOMEM;
6492
6493 /* User wants to query the blob length */
6494 if (!params.len)
6495 goto cmd;
6496
Brijesh Singh3e233382018-02-23 12:36:50 -06006497 p = (void __user *)(uintptr_t)params.uaddr;
6498 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006499 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6500 ret = -EINVAL;
6501 goto e_free;
6502 }
6503
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006504 ret = -ENOMEM;
6505 blob = kmalloc(params.len, GFP_KERNEL);
6506 if (!blob)
6507 goto e_free;
6508
6509 data->address = __psp_pa(blob);
6510 data->len = params.len;
6511 }
6512
6513cmd:
6514 data->handle = sev->handle;
6515 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6516
6517 /*
6518 * If we query the session length, FW responded with expected data.
6519 */
6520 if (!params.len)
6521 goto done;
6522
6523 if (ret)
6524 goto e_free_blob;
6525
6526 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006527 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006528 ret = -EFAULT;
6529 }
6530
6531done:
6532 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006533 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006534 ret = -EFAULT;
6535e_free_blob:
6536 kfree(blob);
6537e_free:
6538 kfree(data);
6539 return ret;
6540}
6541
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006542static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6543{
Sean Christopherson81811c12018-03-20 12:17:21 -07006544 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006545 struct sev_data_launch_finish *data;
6546 int ret;
6547
6548 if (!sev_guest(kvm))
6549 return -ENOTTY;
6550
6551 data = kzalloc(sizeof(*data), GFP_KERNEL);
6552 if (!data)
6553 return -ENOMEM;
6554
6555 data->handle = sev->handle;
6556 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6557
6558 kfree(data);
6559 return ret;
6560}
6561
Brijesh Singh255d9e72017-12-04 10:57:37 -06006562static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6563{
Sean Christopherson81811c12018-03-20 12:17:21 -07006564 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006565 struct kvm_sev_guest_status params;
6566 struct sev_data_guest_status *data;
6567 int ret;
6568
6569 if (!sev_guest(kvm))
6570 return -ENOTTY;
6571
6572 data = kzalloc(sizeof(*data), GFP_KERNEL);
6573 if (!data)
6574 return -ENOMEM;
6575
6576 data->handle = sev->handle;
6577 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6578 if (ret)
6579 goto e_free;
6580
6581 params.policy = data->policy;
6582 params.state = data->state;
6583 params.handle = data->handle;
6584
6585 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6586 ret = -EFAULT;
6587e_free:
6588 kfree(data);
6589 return ret;
6590}
6591
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006592static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6593 unsigned long dst, int size,
6594 int *error, bool enc)
6595{
Sean Christopherson81811c12018-03-20 12:17:21 -07006596 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006597 struct sev_data_dbg *data;
6598 int ret;
6599
6600 data = kzalloc(sizeof(*data), GFP_KERNEL);
6601 if (!data)
6602 return -ENOMEM;
6603
6604 data->handle = sev->handle;
6605 data->dst_addr = dst;
6606 data->src_addr = src;
6607 data->len = size;
6608
6609 ret = sev_issue_cmd(kvm,
6610 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6611 data, error);
6612 kfree(data);
6613 return ret;
6614}
6615
6616static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6617 unsigned long dst_paddr, int sz, int *err)
6618{
6619 int offset;
6620
6621 /*
6622 * Its safe to read more than we are asked, caller should ensure that
6623 * destination has enough space.
6624 */
6625 src_paddr = round_down(src_paddr, 16);
6626 offset = src_paddr & 15;
6627 sz = round_up(sz + offset, 16);
6628
6629 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6630}
6631
6632static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6633 unsigned long __user dst_uaddr,
6634 unsigned long dst_paddr,
6635 int size, int *err)
6636{
6637 struct page *tpage = NULL;
6638 int ret, offset;
6639
6640 /* if inputs are not 16-byte then use intermediate buffer */
6641 if (!IS_ALIGNED(dst_paddr, 16) ||
6642 !IS_ALIGNED(paddr, 16) ||
6643 !IS_ALIGNED(size, 16)) {
6644 tpage = (void *)alloc_page(GFP_KERNEL);
6645 if (!tpage)
6646 return -ENOMEM;
6647
6648 dst_paddr = __sme_page_pa(tpage);
6649 }
6650
6651 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6652 if (ret)
6653 goto e_free;
6654
6655 if (tpage) {
6656 offset = paddr & 15;
6657 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6658 page_address(tpage) + offset, size))
6659 ret = -EFAULT;
6660 }
6661
6662e_free:
6663 if (tpage)
6664 __free_page(tpage);
6665
6666 return ret;
6667}
6668
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006669static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6670 unsigned long __user vaddr,
6671 unsigned long dst_paddr,
6672 unsigned long __user dst_vaddr,
6673 int size, int *error)
6674{
6675 struct page *src_tpage = NULL;
6676 struct page *dst_tpage = NULL;
6677 int ret, len = size;
6678
6679 /* If source buffer is not aligned then use an intermediate buffer */
6680 if (!IS_ALIGNED(vaddr, 16)) {
6681 src_tpage = alloc_page(GFP_KERNEL);
6682 if (!src_tpage)
6683 return -ENOMEM;
6684
6685 if (copy_from_user(page_address(src_tpage),
6686 (void __user *)(uintptr_t)vaddr, size)) {
6687 __free_page(src_tpage);
6688 return -EFAULT;
6689 }
6690
6691 paddr = __sme_page_pa(src_tpage);
6692 }
6693
6694 /*
6695 * If destination buffer or length is not aligned then do read-modify-write:
6696 * - decrypt destination in an intermediate buffer
6697 * - copy the source buffer in an intermediate buffer
6698 * - use the intermediate buffer as source buffer
6699 */
6700 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6701 int dst_offset;
6702
6703 dst_tpage = alloc_page(GFP_KERNEL);
6704 if (!dst_tpage) {
6705 ret = -ENOMEM;
6706 goto e_free;
6707 }
6708
6709 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6710 __sme_page_pa(dst_tpage), size, error);
6711 if (ret)
6712 goto e_free;
6713
6714 /*
6715 * If source is kernel buffer then use memcpy() otherwise
6716 * copy_from_user().
6717 */
6718 dst_offset = dst_paddr & 15;
6719
6720 if (src_tpage)
6721 memcpy(page_address(dst_tpage) + dst_offset,
6722 page_address(src_tpage), size);
6723 else {
6724 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6725 (void __user *)(uintptr_t)vaddr, size)) {
6726 ret = -EFAULT;
6727 goto e_free;
6728 }
6729 }
6730
6731 paddr = __sme_page_pa(dst_tpage);
6732 dst_paddr = round_down(dst_paddr, 16);
6733 len = round_up(size, 16);
6734 }
6735
6736 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6737
6738e_free:
6739 if (src_tpage)
6740 __free_page(src_tpage);
6741 if (dst_tpage)
6742 __free_page(dst_tpage);
6743 return ret;
6744}
6745
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006746static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6747{
6748 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006749 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006750 struct page **src_p, **dst_p;
6751 struct kvm_sev_dbg debug;
6752 unsigned long n;
6753 int ret, size;
6754
6755 if (!sev_guest(kvm))
6756 return -ENOTTY;
6757
6758 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6759 return -EFAULT;
6760
6761 vaddr = debug.src_uaddr;
6762 size = debug.len;
6763 vaddr_end = vaddr + size;
6764 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006765
6766 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6767 int len, s_off, d_off;
6768
6769 /* lock userspace source and destination page */
6770 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6771 if (!src_p)
6772 return -EFAULT;
6773
6774 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6775 if (!dst_p) {
6776 sev_unpin_memory(kvm, src_p, n);
6777 return -EFAULT;
6778 }
6779
6780 /*
6781 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6782 * memory content (i.e it will write the same memory region with C=1).
6783 * It's possible that the cache may contain the data with C=0, i.e.,
6784 * unencrypted so invalidate it first.
6785 */
6786 sev_clflush_pages(src_p, 1);
6787 sev_clflush_pages(dst_p, 1);
6788
6789 /*
6790 * Since user buffer may not be page aligned, calculate the
6791 * offset within the page.
6792 */
6793 s_off = vaddr & ~PAGE_MASK;
6794 d_off = dst_vaddr & ~PAGE_MASK;
6795 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6796
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006797 if (dec)
6798 ret = __sev_dbg_decrypt_user(kvm,
6799 __sme_page_pa(src_p[0]) + s_off,
6800 dst_vaddr,
6801 __sme_page_pa(dst_p[0]) + d_off,
6802 len, &argp->error);
6803 else
6804 ret = __sev_dbg_encrypt_user(kvm,
6805 __sme_page_pa(src_p[0]) + s_off,
6806 vaddr,
6807 __sme_page_pa(dst_p[0]) + d_off,
6808 dst_vaddr,
6809 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006810
6811 sev_unpin_memory(kvm, src_p, 1);
6812 sev_unpin_memory(kvm, dst_p, 1);
6813
6814 if (ret)
6815 goto err;
6816
6817 next_vaddr = vaddr + len;
6818 dst_vaddr = dst_vaddr + len;
6819 size -= len;
6820 }
6821err:
6822 return ret;
6823}
6824
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006825static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6826{
Sean Christopherson81811c12018-03-20 12:17:21 -07006827 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006828 struct sev_data_launch_secret *data;
6829 struct kvm_sev_launch_secret params;
6830 struct page **pages;
6831 void *blob, *hdr;
6832 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006833 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006834
6835 if (!sev_guest(kvm))
6836 return -ENOTTY;
6837
6838 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6839 return -EFAULT;
6840
6841 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
6842 if (!pages)
6843 return -ENOMEM;
6844
6845 /*
6846 * The secret must be copied into contiguous memory region, lets verify
6847 * that userspace memory pages are contiguous before we issue command.
6848 */
6849 if (get_num_contig_pages(0, pages, n) != n) {
6850 ret = -EINVAL;
6851 goto e_unpin_memory;
6852 }
6853
6854 ret = -ENOMEM;
6855 data = kzalloc(sizeof(*data), GFP_KERNEL);
6856 if (!data)
6857 goto e_unpin_memory;
6858
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006859 offset = params.guest_uaddr & (PAGE_SIZE - 1);
6860 data->guest_address = __sme_page_pa(pages[0]) + offset;
6861 data->guest_len = params.guest_len;
6862
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006863 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
6864 if (IS_ERR(blob)) {
6865 ret = PTR_ERR(blob);
6866 goto e_free;
6867 }
6868
6869 data->trans_address = __psp_pa(blob);
6870 data->trans_len = params.trans_len;
6871
6872 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
6873 if (IS_ERR(hdr)) {
6874 ret = PTR_ERR(hdr);
6875 goto e_free_blob;
6876 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006877 data->hdr_address = __psp_pa(hdr);
6878 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006879
6880 data->handle = sev->handle;
6881 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
6882
6883 kfree(hdr);
6884
6885e_free_blob:
6886 kfree(blob);
6887e_free:
6888 kfree(data);
6889e_unpin_memory:
6890 sev_unpin_memory(kvm, pages, n);
6891 return ret;
6892}
6893
Brijesh Singh1654efc2017-12-04 10:57:34 -06006894static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
6895{
6896 struct kvm_sev_cmd sev_cmd;
6897 int r;
6898
6899 if (!svm_sev_enabled())
6900 return -ENOTTY;
6901
6902 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
6903 return -EFAULT;
6904
6905 mutex_lock(&kvm->lock);
6906
6907 switch (sev_cmd.id) {
6908 case KVM_SEV_INIT:
6909 r = sev_guest_init(kvm, &sev_cmd);
6910 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06006911 case KVM_SEV_LAUNCH_START:
6912 r = sev_launch_start(kvm, &sev_cmd);
6913 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06006914 case KVM_SEV_LAUNCH_UPDATE_DATA:
6915 r = sev_launch_update_data(kvm, &sev_cmd);
6916 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006917 case KVM_SEV_LAUNCH_MEASURE:
6918 r = sev_launch_measure(kvm, &sev_cmd);
6919 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006920 case KVM_SEV_LAUNCH_FINISH:
6921 r = sev_launch_finish(kvm, &sev_cmd);
6922 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006923 case KVM_SEV_GUEST_STATUS:
6924 r = sev_guest_status(kvm, &sev_cmd);
6925 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006926 case KVM_SEV_DBG_DECRYPT:
6927 r = sev_dbg_crypt(kvm, &sev_cmd, true);
6928 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006929 case KVM_SEV_DBG_ENCRYPT:
6930 r = sev_dbg_crypt(kvm, &sev_cmd, false);
6931 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006932 case KVM_SEV_LAUNCH_SECRET:
6933 r = sev_launch_secret(kvm, &sev_cmd);
6934 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006935 default:
6936 r = -EINVAL;
6937 goto out;
6938 }
6939
6940 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
6941 r = -EFAULT;
6942
6943out:
6944 mutex_unlock(&kvm->lock);
6945 return r;
6946}
6947
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006948static int svm_register_enc_region(struct kvm *kvm,
6949 struct kvm_enc_region *range)
6950{
Sean Christopherson81811c12018-03-20 12:17:21 -07006951 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006952 struct enc_region *region;
6953 int ret = 0;
6954
6955 if (!sev_guest(kvm))
6956 return -ENOTTY;
6957
Dan Carpenter86bf20c2018-05-19 09:01:36 +03006958 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
6959 return -EINVAL;
6960
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006961 region = kzalloc(sizeof(*region), GFP_KERNEL);
6962 if (!region)
6963 return -ENOMEM;
6964
6965 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
6966 if (!region->pages) {
6967 ret = -ENOMEM;
6968 goto e_free;
6969 }
6970
6971 /*
6972 * The guest may change the memory encryption attribute from C=0 -> C=1
6973 * or vice versa for this memory range. Lets make sure caches are
6974 * flushed to ensure that guest data gets written into memory with
6975 * correct C-bit.
6976 */
6977 sev_clflush_pages(region->pages, region->npages);
6978
6979 region->uaddr = range->addr;
6980 region->size = range->size;
6981
6982 mutex_lock(&kvm->lock);
6983 list_add_tail(&region->list, &sev->regions_list);
6984 mutex_unlock(&kvm->lock);
6985
6986 return ret;
6987
6988e_free:
6989 kfree(region);
6990 return ret;
6991}
6992
6993static struct enc_region *
6994find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
6995{
Sean Christopherson81811c12018-03-20 12:17:21 -07006996 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006997 struct list_head *head = &sev->regions_list;
6998 struct enc_region *i;
6999
7000 list_for_each_entry(i, head, list) {
7001 if (i->uaddr == range->addr &&
7002 i->size == range->size)
7003 return i;
7004 }
7005
7006 return NULL;
7007}
7008
7009
7010static int svm_unregister_enc_region(struct kvm *kvm,
7011 struct kvm_enc_region *range)
7012{
7013 struct enc_region *region;
7014 int ret;
7015
7016 mutex_lock(&kvm->lock);
7017
7018 if (!sev_guest(kvm)) {
7019 ret = -ENOTTY;
7020 goto failed;
7021 }
7022
7023 region = find_enc_region(kvm, range);
7024 if (!region) {
7025 ret = -EINVAL;
7026 goto failed;
7027 }
7028
7029 __unregister_enc_region_locked(kvm, region);
7030
7031 mutex_unlock(&kvm->lock);
7032 return 0;
7033
7034failed:
7035 mutex_unlock(&kvm->lock);
7036 return ret;
7037}
7038
Kees Cook404f6aa2016-08-08 16:29:06 -07007039static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007040 .cpu_has_kvm_support = has_svm,
7041 .disabled_by_bios = is_disabled,
7042 .hardware_setup = svm_hardware_setup,
7043 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007044 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007045 .hardware_enable = svm_hardware_enable,
7046 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007047 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02007048 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007049
7050 .vcpu_create = svm_create_vcpu,
7051 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007052 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007053
Sean Christopherson434a1e92018-03-20 12:17:18 -07007054 .vm_alloc = svm_vm_alloc,
7055 .vm_free = svm_vm_free,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007056 .vm_init = avic_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007057 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007058
Avi Kivity04d2cc72007-09-10 18:10:54 +03007059 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007060 .vcpu_load = svm_vcpu_load,
7061 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007062 .vcpu_blocking = svm_vcpu_blocking,
7063 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007064
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007065 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007066 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007067 .get_msr = svm_get_msr,
7068 .set_msr = svm_set_msr,
7069 .get_segment_base = svm_get_segment_base,
7070 .get_segment = svm_get_segment,
7071 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007072 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007073 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007074 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007075 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007076 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007077 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007078 .set_cr3 = svm_set_cr3,
7079 .set_cr4 = svm_set_cr4,
7080 .set_efer = svm_set_efer,
7081 .get_idt = svm_get_idt,
7082 .set_idt = svm_set_idt,
7083 .get_gdt = svm_get_gdt,
7084 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007085 .get_dr6 = svm_get_dr6,
7086 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007087 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007088 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007089 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007090 .get_rflags = svm_get_rflags,
7091 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007092
Avi Kivity6aa8b732006-12-10 02:21:36 -08007093 .tlb_flush = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007094 .tlb_flush_gva = svm_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007095
Avi Kivity6aa8b732006-12-10 02:21:36 -08007096 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007097 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007098 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007099 .set_interrupt_shadow = svm_set_interrupt_shadow,
7100 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007101 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007102 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007103 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007104 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007105 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007106 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007107 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007108 .get_nmi_mask = svm_get_nmi_mask,
7109 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007110 .enable_nmi_window = enable_nmi_window,
7111 .enable_irq_window = enable_irq_window,
7112 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007113 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007114 .get_enable_apicv = svm_get_enable_apicv,
7115 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007116 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007117 .hwapic_irr_update = svm_hwapic_irr_update,
7118 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007119 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007120 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007121
7122 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007123 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007124 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007125 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007126
Avi Kivity586f9602010-11-18 13:09:54 +02007127 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007128
Sheng Yang17cc3932010-01-05 19:02:27 +08007129 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007130
7131 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007132
7133 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007134 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007135 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007136 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007137 .umip_emulated = svm_umip_emulated,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007138
7139 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007140
7141 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007142
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007143 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007144 .write_tsc_offset = svm_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007145
7146 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007147
7148 .check_intercept = svm_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +08007149 .handle_external_intr = svm_handle_external_intr,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007150
7151 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007152
7153 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007154 .deliver_posted_interrupt = svm_deliver_avic_intr,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007155 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007156 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007157
Ladi Prosek72d7b372017-10-11 16:54:41 +02007158 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007159 .pre_enter_smm = svm_pre_enter_smm,
7160 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007161 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007162
7163 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007164 .mem_enc_reg_region = svm_register_enc_region,
7165 .mem_enc_unreg_region = svm_unregister_enc_region,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007166};
7167
7168static int __init svm_init(void)
7169{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007170 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007171 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007172}
7173
7174static void __exit svm_exit(void)
7175{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007176 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007177}
7178
7179module_init(svm_init)
7180module_exit(svm_exit)