blob: 4339fc4715fa9e7f22e4df70cc48456fc74de44f [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) {
Andre Przywara51d8b662010-12-21 11:12:02 +0100779 if (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 */
1229 sev_asid_bitmap = kcalloc(BITS_TO_LONGS(max_sev_asid),
1230 sizeof(unsigned long), GFP_KERNEL);
1231 if (!sev_asid_bitmap)
1232 return 1;
1233
Brijesh Singhe9df0942017-12-04 10:57:33 -06001234 status = kmalloc(sizeof(*status), GFP_KERNEL);
1235 if (!status)
1236 return 1;
1237
1238 /*
1239 * Check SEV platform status.
1240 *
1241 * PLATFORM_STATUS can be called in any state, if we failed to query
1242 * the PLATFORM status then either PSP firmware does not support SEV
1243 * feature or SEV firmware is dead.
1244 */
1245 rc = sev_platform_status(status, NULL);
1246 if (rc)
1247 goto err;
1248
1249 pr_info("SEV supported\n");
1250
1251err:
1252 kfree(status);
1253 return rc;
1254}
1255
Babu Moger8566ac82018-03-16 16:37:26 -04001256static void grow_ple_window(struct kvm_vcpu *vcpu)
1257{
1258 struct vcpu_svm *svm = to_svm(vcpu);
1259 struct vmcb_control_area *control = &svm->vmcb->control;
1260 int old = control->pause_filter_count;
1261
1262 control->pause_filter_count = __grow_ple_window(old,
1263 pause_filter_count,
1264 pause_filter_count_grow,
1265 pause_filter_count_max);
1266
1267 if (control->pause_filter_count != old)
1268 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1269
1270 trace_kvm_ple_window_grow(vcpu->vcpu_id,
1271 control->pause_filter_count, old);
1272}
1273
1274static void shrink_ple_window(struct kvm_vcpu *vcpu)
1275{
1276 struct vcpu_svm *svm = to_svm(vcpu);
1277 struct vmcb_control_area *control = &svm->vmcb->control;
1278 int old = control->pause_filter_count;
1279
1280 control->pause_filter_count =
1281 __shrink_ple_window(old,
1282 pause_filter_count,
1283 pause_filter_count_shrink,
1284 pause_filter_count);
1285 if (control->pause_filter_count != old)
1286 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1287
1288 trace_kvm_ple_window_shrink(vcpu->vcpu_id,
1289 control->pause_filter_count, old);
1290}
1291
Avi Kivity6aa8b732006-12-10 02:21:36 -08001292static __init int svm_hardware_setup(void)
1293{
1294 int cpu;
1295 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001296 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001297 int r;
1298
Avi Kivity6aa8b732006-12-10 02:21:36 -08001299 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1300
1301 if (!iopm_pages)
1302 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001303
1304 iopm_va = page_address(iopm_pages);
1305 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001306 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1307
Joerg Roedel323c3d82010-03-01 15:34:37 +01001308 init_msrpm_offsets();
1309
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001310 if (boot_cpu_has(X86_FEATURE_NX))
1311 kvm_enable_efer_bits(EFER_NX);
1312
Alexander Graf1b2fd702009-02-02 16:23:51 +01001313 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1314 kvm_enable_efer_bits(EFER_FFXSR);
1315
Joerg Roedel92a1f122011-03-25 09:44:51 +01001316 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001317 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001318 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1319 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001320 }
1321
Babu Moger8566ac82018-03-16 16:37:26 -04001322 /* Check for pause filtering support */
1323 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1324 pause_filter_count = 0;
1325 pause_filter_thresh = 0;
1326 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1327 pause_filter_thresh = 0;
1328 }
1329
Alexander Graf236de052008-11-25 20:17:10 +01001330 if (nested) {
1331 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001332 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001333 }
1334
Brijesh Singhe9df0942017-12-04 10:57:33 -06001335 if (sev) {
1336 if (boot_cpu_has(X86_FEATURE_SEV) &&
1337 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1338 r = sev_hardware_setup();
1339 if (r)
1340 sev = false;
1341 } else {
1342 sev = false;
1343 }
1344 }
1345
Zachary Amsden3230bb42009-09-29 11:38:37 -10001346 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001347 r = svm_cpu_init(cpu);
1348 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001349 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001350 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001351
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001352 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001353 npt_enabled = false;
1354
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001355 if (npt_enabled && !npt) {
1356 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1357 npt_enabled = false;
1358 }
1359
Joerg Roedel18552672008-02-07 13:47:41 +01001360 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001361 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001362 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001363 } else
1364 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001365
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001366 if (avic) {
1367 if (!npt_enabled ||
1368 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001369 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001370 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001371 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001372 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001373
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001374 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1375 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001376 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001377
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001378 if (vls) {
1379 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001380 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001381 !IS_ENABLED(CONFIG_X86_64)) {
1382 vls = false;
1383 } else {
1384 pr_info("Virtual VMLOAD VMSAVE supported\n");
1385 }
1386 }
1387
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001388 if (vgif) {
1389 if (!boot_cpu_has(X86_FEATURE_VGIF))
1390 vgif = false;
1391 else
1392 pr_info("Virtual GIF supported\n");
1393 }
1394
Avi Kivity6aa8b732006-12-10 02:21:36 -08001395 return 0;
1396
Joerg Roedelf65c2292008-02-13 18:58:46 +01001397err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1399 iopm_base = 0;
1400 return r;
1401}
1402
1403static __exit void svm_hardware_unsetup(void)
1404{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001405 int cpu;
1406
Brijesh Singh1654efc2017-12-04 10:57:34 -06001407 if (svm_sev_enabled())
1408 kfree(sev_asid_bitmap);
1409
Zachary Amsden3230bb42009-09-29 11:38:37 -10001410 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001411 svm_cpu_uninit(cpu);
1412
Avi Kivity6aa8b732006-12-10 02:21:36 -08001413 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001414 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001415}
1416
1417static void init_seg(struct vmcb_seg *seg)
1418{
1419 seg->selector = 0;
1420 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001421 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001422 seg->limit = 0xffff;
1423 seg->base = 0;
1424}
1425
1426static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1427{
1428 seg->selector = 0;
1429 seg->attrib = SVM_SELECTOR_P_MASK | type;
1430 seg->limit = 0xffff;
1431 seg->base = 0;
1432}
1433
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001434static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1435{
1436 struct vcpu_svm *svm = to_svm(vcpu);
1437
1438 if (is_guest_mode(vcpu))
1439 return svm->nested.hsave->control.tsc_offset;
1440
1441 return vcpu->arch.tsc_offset;
1442}
1443
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001444static void svm_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1445{
1446 struct vcpu_svm *svm = to_svm(vcpu);
1447 u64 g_tsc_offset = 0;
1448
Joerg Roedel20307532010-11-29 17:51:48 +01001449 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001450 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001451 g_tsc_offset = svm->vmcb->control.tsc_offset -
1452 svm->nested.hsave->control.tsc_offset;
1453 svm->nested.hsave->control.tsc_offset = offset;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09001454 } else
1455 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1456 svm->vmcb->control.tsc_offset,
1457 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001458
1459 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001460
1461 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001462}
1463
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001464static void avic_init_vmcb(struct vcpu_svm *svm)
1465{
1466 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001467 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001468 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001469 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1470 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001471
1472 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1473 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1474 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1475 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1476 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001477}
1478
Paolo Bonzini56908912015-10-19 11:30:19 +02001479static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001480{
Joerg Roedele6101a92008-02-13 18:58:45 +01001481 struct vmcb_control_area *control = &svm->vmcb->control;
1482 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001483
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001484 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001485
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001486 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1487 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1488 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1489 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1490 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1491 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001492 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1493 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001494
Paolo Bonzini5315c712014-03-03 13:08:29 +01001495 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001496
Joerg Roedel18c918c2010-11-30 18:03:59 +01001497 set_exception_intercept(svm, PF_VECTOR);
1498 set_exception_intercept(svm, UD_VECTOR);
1499 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001500 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001501 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001502 /*
1503 * Guest access to VMware backdoor ports could legitimately
1504 * trigger #GP because of TSS I/O permission bitmap.
1505 * We intercept those #GP and allow access to them anyway
1506 * as VMware does.
1507 */
1508 if (enable_vmware_backdoor)
1509 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001510
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001511 set_intercept(svm, INTERCEPT_INTR);
1512 set_intercept(svm, INTERCEPT_NMI);
1513 set_intercept(svm, INTERCEPT_SMI);
1514 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001515 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001516 set_intercept(svm, INTERCEPT_CPUID);
1517 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001518 set_intercept(svm, INTERCEPT_INVLPG);
1519 set_intercept(svm, INTERCEPT_INVLPGA);
1520 set_intercept(svm, INTERCEPT_IOIO_PROT);
1521 set_intercept(svm, INTERCEPT_MSR_PROT);
1522 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1523 set_intercept(svm, INTERCEPT_SHUTDOWN);
1524 set_intercept(svm, INTERCEPT_VMRUN);
1525 set_intercept(svm, INTERCEPT_VMMCALL);
1526 set_intercept(svm, INTERCEPT_VMLOAD);
1527 set_intercept(svm, INTERCEPT_VMSAVE);
1528 set_intercept(svm, INTERCEPT_STGI);
1529 set_intercept(svm, INTERCEPT_CLGI);
1530 set_intercept(svm, INTERCEPT_SKINIT);
1531 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001532 set_intercept(svm, INTERCEPT_XSETBV);
Brijesh Singh7607b712018-02-19 10:14:44 -06001533 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001534
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001535 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001536 set_intercept(svm, INTERCEPT_MONITOR);
1537 set_intercept(svm, INTERCEPT_MWAIT);
1538 }
1539
Wanpeng Licaa057a2018-03-12 04:53:03 -07001540 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1541 set_intercept(svm, INTERCEPT_HLT);
1542
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001543 control->iopm_base_pa = __sme_set(iopm_base);
1544 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001545 control->int_ctl = V_INTR_MASKING_MASK;
1546
1547 init_seg(&save->es);
1548 init_seg(&save->ss);
1549 init_seg(&save->ds);
1550 init_seg(&save->fs);
1551 init_seg(&save->gs);
1552
1553 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001554 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001555 /* Executable/Readable Code Segment */
1556 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1557 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1558 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559
1560 save->gdtr.limit = 0xffff;
1561 save->idtr.limit = 0xffff;
1562
1563 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1564 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1565
Paolo Bonzini56908912015-10-19 11:30:19 +02001566 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001567 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001568 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001569 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001570 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001571
Joerg Roedele0231712010-02-24 18:59:10 +01001572 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001573 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001574 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001575 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001576 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001577 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001578
Rusty Russell66aee912007-07-17 23:34:16 +10001579 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001580 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001581
1582 if (npt_enabled) {
1583 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001584 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001585 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001586 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001587 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1588 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001589 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001590 save->cr3 = 0;
1591 save->cr4 = 0;
1592 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001593 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001594
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001595 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001596 svm->vcpu.arch.hflags = 0;
1597
Babu Moger8566ac82018-03-16 16:37:26 -04001598 if (pause_filter_count) {
1599 control->pause_filter_count = pause_filter_count;
1600 if (pause_filter_thresh)
1601 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001602 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001603 } else {
1604 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001605 }
1606
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001607 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001608 avic_init_vmcb(svm);
1609
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001610 /*
1611 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1612 * in VMCB and clear intercepts to avoid #VMEXIT.
1613 */
1614 if (vls) {
1615 clr_intercept(svm, INTERCEPT_VMLOAD);
1616 clr_intercept(svm, INTERCEPT_VMSAVE);
1617 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1618 }
1619
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001620 if (vgif) {
1621 clr_intercept(svm, INTERCEPT_STGI);
1622 clr_intercept(svm, INTERCEPT_CLGI);
1623 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1624 }
1625
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001626 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001627 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001628 clr_exception_intercept(svm, UD_VECTOR);
1629 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001630
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001631 mark_all_dirty(svm->vmcb);
1632
Joerg Roedel2af91942009-08-07 11:49:28 +02001633 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001634
1635}
1636
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001637static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1638 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001639{
1640 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001641 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001642
1643 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1644 return NULL;
1645
Sean Christopherson81811c12018-03-20 12:17:21 -07001646 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001647
1648 return &avic_physical_id_table[index];
1649}
1650
1651/**
1652 * Note:
1653 * AVIC hardware walks the nested page table to check permissions,
1654 * but does not use the SPA address specified in the leaf page
1655 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1656 * field of the VMCB. Therefore, we set up the
1657 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1658 */
1659static int avic_init_access_page(struct kvm_vcpu *vcpu)
1660{
1661 struct kvm *kvm = vcpu->kvm;
1662 int ret;
1663
1664 if (kvm->arch.apic_access_page_done)
1665 return 0;
1666
1667 ret = x86_set_memory_region(kvm,
1668 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1669 APIC_DEFAULT_PHYS_BASE,
1670 PAGE_SIZE);
1671 if (ret)
1672 return ret;
1673
1674 kvm->arch.apic_access_page_done = true;
1675 return 0;
1676}
1677
1678static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1679{
1680 int ret;
1681 u64 *entry, new_entry;
1682 int id = vcpu->vcpu_id;
1683 struct vcpu_svm *svm = to_svm(vcpu);
1684
1685 ret = avic_init_access_page(vcpu);
1686 if (ret)
1687 return ret;
1688
1689 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1690 return -EINVAL;
1691
1692 if (!svm->vcpu.arch.apic->regs)
1693 return -EINVAL;
1694
1695 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1696
1697 /* Setting AVIC backing page address in the phy APIC ID table */
1698 entry = avic_get_physical_id_entry(vcpu, id);
1699 if (!entry)
1700 return -EINVAL;
1701
1702 new_entry = READ_ONCE(*entry);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001703 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1704 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1705 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001706 WRITE_ONCE(*entry, new_entry);
1707
1708 svm->avic_physical_id_cache = entry;
1709
1710 return 0;
1711}
1712
Brijesh Singh1654efc2017-12-04 10:57:34 -06001713static void __sev_asid_free(int asid)
1714{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001715 struct svm_cpu_data *sd;
1716 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001717
1718 pos = asid - 1;
1719 clear_bit(pos, sev_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001720
1721 for_each_possible_cpu(cpu) {
1722 sd = per_cpu(svm_data, cpu);
1723 sd->sev_vmcbs[pos] = NULL;
1724 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001725}
1726
1727static void sev_asid_free(struct kvm *kvm)
1728{
Sean Christopherson81811c12018-03-20 12:17:21 -07001729 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001730
1731 __sev_asid_free(sev->asid);
1732}
1733
Brijesh Singh59414c92017-12-04 10:57:35 -06001734static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1735{
1736 struct sev_data_decommission *decommission;
1737 struct sev_data_deactivate *data;
1738
1739 if (!handle)
1740 return;
1741
1742 data = kzalloc(sizeof(*data), GFP_KERNEL);
1743 if (!data)
1744 return;
1745
1746 /* deactivate handle */
1747 data->handle = handle;
1748 sev_guest_deactivate(data, NULL);
1749
1750 wbinvd_on_all_cpus();
1751 sev_guest_df_flush(NULL);
1752 kfree(data);
1753
1754 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1755 if (!decommission)
1756 return;
1757
1758 /* decommission handle */
1759 decommission->handle = handle;
1760 sev_guest_decommission(decommission, NULL);
1761
1762 kfree(decommission);
1763}
1764
Brijesh Singh89c50582017-12-04 10:57:35 -06001765static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1766 unsigned long ulen, unsigned long *n,
1767 int write)
1768{
Sean Christopherson81811c12018-03-20 12:17:21 -07001769 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001770 unsigned long npages, npinned, size;
1771 unsigned long locked, lock_limit;
1772 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001773 unsigned long first, last;
1774
1775 if (ulen == 0 || uaddr + ulen < uaddr)
1776 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001777
1778 /* Calculate number of pages. */
1779 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1780 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1781 npages = (last - first + 1);
1782
1783 locked = sev->pages_locked + npages;
1784 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1785 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1786 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1787 return NULL;
1788 }
1789
1790 /* Avoid using vmalloc for smaller buffers. */
1791 size = npages * sizeof(struct page *);
1792 if (size > PAGE_SIZE)
1793 pages = vmalloc(size);
1794 else
1795 pages = kmalloc(size, GFP_KERNEL);
1796
1797 if (!pages)
1798 return NULL;
1799
1800 /* Pin the user virtual address. */
1801 npinned = get_user_pages_fast(uaddr, npages, write ? FOLL_WRITE : 0, pages);
1802 if (npinned != npages) {
1803 pr_err("SEV: Failure locking %lu pages.\n", npages);
1804 goto err;
1805 }
1806
1807 *n = npages;
1808 sev->pages_locked = locked;
1809
1810 return pages;
1811
1812err:
1813 if (npinned > 0)
1814 release_pages(pages, npinned);
1815
1816 kvfree(pages);
1817 return NULL;
1818}
1819
1820static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1821 unsigned long npages)
1822{
Sean Christopherson81811c12018-03-20 12:17:21 -07001823 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001824
1825 release_pages(pages, npages);
1826 kvfree(pages);
1827 sev->pages_locked -= npages;
1828}
1829
1830static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1831{
1832 uint8_t *page_virtual;
1833 unsigned long i;
1834
1835 if (npages == 0 || pages == NULL)
1836 return;
1837
1838 for (i = 0; i < npages; i++) {
1839 page_virtual = kmap_atomic(pages[i]);
1840 clflush_cache_range(page_virtual, PAGE_SIZE);
1841 kunmap_atomic(page_virtual);
1842 }
1843}
1844
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001845static void __unregister_enc_region_locked(struct kvm *kvm,
1846 struct enc_region *region)
1847{
1848 /*
1849 * The guest may change the memory encryption attribute from C=0 -> C=1
1850 * or vice versa for this memory range. Lets make sure caches are
1851 * flushed to ensure that guest data gets written into memory with
1852 * correct C-bit.
1853 */
1854 sev_clflush_pages(region->pages, region->npages);
1855
1856 sev_unpin_memory(kvm, region->pages, region->npages);
1857 list_del(&region->list);
1858 kfree(region);
1859}
1860
Sean Christopherson434a1e92018-03-20 12:17:18 -07001861static struct kvm *svm_vm_alloc(void)
1862{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001863 struct kvm_svm *kvm_svm = vzalloc(sizeof(struct kvm_svm));
Sean Christopherson81811c12018-03-20 12:17:21 -07001864 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001865}
1866
1867static void svm_vm_free(struct kvm *kvm)
1868{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001869 vfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001870}
1871
Brijesh Singh1654efc2017-12-04 10:57:34 -06001872static void sev_vm_destroy(struct kvm *kvm)
1873{
Sean Christopherson81811c12018-03-20 12:17:21 -07001874 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001875 struct list_head *head = &sev->regions_list;
1876 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001877
Brijesh Singh1654efc2017-12-04 10:57:34 -06001878 if (!sev_guest(kvm))
1879 return;
1880
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001881 mutex_lock(&kvm->lock);
1882
1883 /*
1884 * if userspace was terminated before unregistering the memory regions
1885 * then lets unpin all the registered memory.
1886 */
1887 if (!list_empty(head)) {
1888 list_for_each_safe(pos, q, head) {
1889 __unregister_enc_region_locked(kvm,
1890 list_entry(pos, struct enc_region, list));
1891 }
1892 }
1893
1894 mutex_unlock(&kvm->lock);
1895
Brijesh Singh59414c92017-12-04 10:57:35 -06001896 sev_unbind_asid(kvm, sev->handle);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001897 sev_asid_free(kvm);
1898}
1899
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001900static void avic_vm_destroy(struct kvm *kvm)
1901{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001902 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001903 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001904
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001905 if (!avic)
1906 return;
1907
Sean Christopherson81811c12018-03-20 12:17:21 -07001908 if (kvm_svm->avic_logical_id_table_page)
1909 __free_page(kvm_svm->avic_logical_id_table_page);
1910 if (kvm_svm->avic_physical_id_table_page)
1911 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001912
1913 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001914 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001915 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001916}
1917
Brijesh Singh1654efc2017-12-04 10:57:34 -06001918static void svm_vm_destroy(struct kvm *kvm)
1919{
1920 avic_vm_destroy(kvm);
1921 sev_vm_destroy(kvm);
1922}
1923
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001924static int avic_vm_init(struct kvm *kvm)
1925{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001926 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001927 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07001928 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
1929 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001930 struct page *p_page;
1931 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001932 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001933
1934 if (!avic)
1935 return 0;
1936
1937 /* Allocating physical APIC ID table (4KB) */
1938 p_page = alloc_page(GFP_KERNEL);
1939 if (!p_page)
1940 goto free_avic;
1941
Sean Christopherson81811c12018-03-20 12:17:21 -07001942 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001943 clear_page(page_address(p_page));
1944
1945 /* Allocating logical APIC ID table (4KB) */
1946 l_page = alloc_page(GFP_KERNEL);
1947 if (!l_page)
1948 goto free_avic;
1949
Sean Christopherson81811c12018-03-20 12:17:21 -07001950 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001951 clear_page(page_address(l_page));
1952
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001953 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001954 again:
1955 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1956 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1957 next_vm_id_wrapped = 1;
1958 goto again;
1959 }
1960 /* Is it still in use? Only possible if wrapped at least once */
1961 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07001962 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
1963 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001964 goto again;
1965 }
1966 }
Sean Christopherson81811c12018-03-20 12:17:21 -07001967 kvm_svm->avic_vm_id = vm_id;
1968 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001969 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1970
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001971 return 0;
1972
1973free_avic:
1974 avic_vm_destroy(kvm);
1975 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001976}
1977
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001978static inline int
1979avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001980{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001981 int ret = 0;
1982 unsigned long flags;
1983 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001984 struct vcpu_svm *svm = to_svm(vcpu);
1985
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001986 if (!kvm_arch_has_assigned_device(vcpu->kvm))
1987 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001988
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001989 /*
1990 * Here, we go through the per-vcpu ir_list to update all existing
1991 * interrupt remapping table entry targeting this vcpu.
1992 */
1993 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001994
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001995 if (list_empty(&svm->ir_list))
1996 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001997
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001998 list_for_each_entry(ir, &svm->ir_list, node) {
1999 ret = amd_iommu_update_ga(cpu, r, ir->data);
2000 if (ret)
2001 break;
2002 }
2003out:
2004 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2005 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002006}
2007
2008static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2009{
2010 u64 entry;
2011 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002012 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002013 struct vcpu_svm *svm = to_svm(vcpu);
2014
2015 if (!kvm_vcpu_apicv_active(vcpu))
2016 return;
2017
2018 if (WARN_ON(h_physical_id >= AVIC_MAX_PHYSICAL_ID_COUNT))
2019 return;
2020
2021 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2022 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2023
2024 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2025 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2026
2027 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2028 if (svm->avic_is_running)
2029 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2030
2031 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002032 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2033 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002034}
2035
2036static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2037{
2038 u64 entry;
2039 struct vcpu_svm *svm = to_svm(vcpu);
2040
2041 if (!kvm_vcpu_apicv_active(vcpu))
2042 return;
2043
2044 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002045 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2046 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2047
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002048 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2049 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002050}
2051
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002052/**
2053 * This function is called during VCPU halt/unhalt.
2054 */
2055static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2056{
2057 struct vcpu_svm *svm = to_svm(vcpu);
2058
2059 svm->avic_is_running = is_run;
2060 if (is_run)
2061 avic_vcpu_load(vcpu, vcpu->cpu);
2062 else
2063 avic_vcpu_put(vcpu);
2064}
2065
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002066static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002067{
2068 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002069 u32 dummy;
2070 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002071
Wanpeng Li518e7b92018-02-28 14:03:31 +08002072 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002073 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002074 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002075
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002076 if (!init_event) {
2077 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2078 MSR_IA32_APICBASE_ENABLE;
2079 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2080 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2081 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002082 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002083
Yu Zhange911eb32017-08-24 20:27:52 +08002084 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002085 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002086
2087 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2088 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002089}
2090
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002091static int avic_init_vcpu(struct vcpu_svm *svm)
2092{
2093 int ret;
2094
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002095 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002096 return 0;
2097
2098 ret = avic_init_backing_page(&svm->vcpu);
2099 if (ret)
2100 return ret;
2101
2102 INIT_LIST_HEAD(&svm->ir_list);
2103 spin_lock_init(&svm->ir_list_lock);
2104
2105 return ret;
2106}
2107
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002108static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002109{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002110 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002111 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002112 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002113 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002114 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002115 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002116
Rusty Russellc16f8622007-07-30 21:12:19 +10002117 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002118 if (!svm) {
2119 err = -ENOMEM;
2120 goto out;
2121 }
2122
2123 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
2124 if (err)
2125 goto free_svm;
2126
Joerg Roedelf65c2292008-02-13 18:58:46 +01002127 err = -ENOMEM;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002128 page = alloc_page(GFP_KERNEL);
2129 if (!page)
2130 goto uninit;
2131
Joerg Roedelf65c2292008-02-13 18:58:46 +01002132 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2133 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002134 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002135
2136 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2137 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002138 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002139
Alexander Grafb286d5d2008-11-25 20:17:05 +01002140 hsave_page = alloc_page(GFP_KERNEL);
2141 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002142 goto free_page3;
2143
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002144 err = avic_init_vcpu(svm);
2145 if (err)
2146 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002147
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002148 /* We initialize this flag to true to make sure that the is_running
2149 * bit would be set the first time the vcpu is loaded.
2150 */
2151 svm->avic_is_running = true;
2152
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002153 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002154
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002155 svm->msrpm = page_address(msrpm_pages);
2156 svm_vcpu_init_msrpm(svm->msrpm);
2157
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002158 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002159 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002160
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002161 svm->vmcb = page_address(page);
2162 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002163 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002164 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002165 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002166
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002167 svm_init_osvw(&svm->vcpu);
2168
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002169 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08002170
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002171free_page4:
2172 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002173free_page3:
2174 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2175free_page2:
2176 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2177free_page1:
2178 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002179uninit:
2180 kvm_vcpu_uninit(&svm->vcpu);
2181free_svm:
Rusty Russella4770342007-08-01 14:46:11 +10002182 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002183out:
2184 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002185}
2186
2187static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2188{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002189 struct vcpu_svm *svm = to_svm(vcpu);
2190
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002191 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002192 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002193 __free_page(virt_to_page(svm->nested.hsave));
2194 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002195 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10002196 kmem_cache_free(kvm_vcpu_cache, svm);
Ashok Raj15d45072018-02-01 22:59:43 +01002197 /*
2198 * The vmcb page can be recycled, causing a false negative in
2199 * svm_vcpu_load(). So do a full IBPB now.
2200 */
2201 indirect_branch_prediction_barrier();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002202}
2203
Avi Kivity15ad7142007-07-11 18:17:21 +03002204static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002205{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002206 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002207 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002208 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002209
Avi Kivity0cc50642007-03-25 12:07:27 +02002210 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002211 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002212 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002213 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002214
Avi Kivity82ca2d12010-10-21 12:20:34 +02002215#ifdef CONFIG_X86_64
2216 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2217#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002218 savesegment(fs, svm->host.fs);
2219 savesegment(gs, svm->host.gs);
2220 svm->host.ldt = kvm_read_ldt();
2221
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002222 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002223 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002224
Haozhong Zhangad7218832015-10-20 15:39:02 +08002225 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2226 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2227 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2228 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2229 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2230 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002231 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002232 /* This assumes that the kernel never uses MSR_TSC_AUX */
2233 if (static_cpu_has(X86_FEATURE_RDTSCP))
2234 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002235
Ashok Raj15d45072018-02-01 22:59:43 +01002236 if (sd->current_vmcb != svm->vmcb) {
2237 sd->current_vmcb = svm->vmcb;
2238 indirect_branch_prediction_barrier();
2239 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002240 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002241}
2242
2243static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2244{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002245 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002246 int i;
2247
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002248 avic_vcpu_put(vcpu);
2249
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002250 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002251 kvm_load_ldt(svm->host.ldt);
2252#ifdef CONFIG_X86_64
2253 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002254 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002255 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002256#else
Avi Kivity831ca602011-03-08 16:09:51 +02002257#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002258 loadsegment(gs, svm->host.gs);
2259#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002260#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002261 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002262 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002263}
2264
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002265static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2266{
2267 avic_set_running(vcpu, false);
2268}
2269
2270static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2271{
2272 avic_set_running(vcpu, true);
2273}
2274
Avi Kivity6aa8b732006-12-10 02:21:36 -08002275static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2276{
Ladi Prosek9b611742017-06-21 09:06:59 +02002277 struct vcpu_svm *svm = to_svm(vcpu);
2278 unsigned long rflags = svm->vmcb->save.rflags;
2279
2280 if (svm->nmi_singlestep) {
2281 /* Hide our flags if they were not set by the guest */
2282 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2283 rflags &= ~X86_EFLAGS_TF;
2284 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2285 rflags &= ~X86_EFLAGS_RF;
2286 }
2287 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002288}
2289
2290static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2291{
Ladi Prosek9b611742017-06-21 09:06:59 +02002292 if (to_svm(vcpu)->nmi_singlestep)
2293 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2294
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002295 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002296 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002297 * (caused by either a task switch or an inter-privilege IRET),
2298 * so we do not need to update the CPL here.
2299 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002300 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002301}
2302
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002303static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2304{
2305 switch (reg) {
2306 case VCPU_EXREG_PDPTR:
2307 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002308 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002309 break;
2310 default:
2311 BUG();
2312 }
2313}
2314
Alexander Graff0b85052008-11-25 20:17:01 +01002315static void svm_set_vintr(struct vcpu_svm *svm)
2316{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002317 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002318}
2319
2320static void svm_clear_vintr(struct vcpu_svm *svm)
2321{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002322 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002323}
2324
Avi Kivity6aa8b732006-12-10 02:21:36 -08002325static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2326{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002327 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002328
2329 switch (seg) {
2330 case VCPU_SREG_CS: return &save->cs;
2331 case VCPU_SREG_DS: return &save->ds;
2332 case VCPU_SREG_ES: return &save->es;
2333 case VCPU_SREG_FS: return &save->fs;
2334 case VCPU_SREG_GS: return &save->gs;
2335 case VCPU_SREG_SS: return &save->ss;
2336 case VCPU_SREG_TR: return &save->tr;
2337 case VCPU_SREG_LDTR: return &save->ldtr;
2338 }
2339 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002340 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341}
2342
2343static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2344{
2345 struct vmcb_seg *s = svm_seg(vcpu, seg);
2346
2347 return s->base;
2348}
2349
2350static void svm_get_segment(struct kvm_vcpu *vcpu,
2351 struct kvm_segment *var, int seg)
2352{
2353 struct vmcb_seg *s = svm_seg(vcpu, seg);
2354
2355 var->base = s->base;
2356 var->limit = s->limit;
2357 var->selector = s->selector;
2358 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2359 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2360 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2361 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2362 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2363 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2364 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302365
2366 /*
2367 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2368 * However, the SVM spec states that the G bit is not observed by the
2369 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2370 * So let's synthesize a legal G bit for all segments, this helps
2371 * running KVM nested. It also helps cross-vendor migration, because
2372 * Intel's vmentry has a check on the 'G' bit.
2373 */
2374 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002375
Joerg Roedele0231712010-02-24 18:59:10 +01002376 /*
2377 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002378 * for cross vendor migration purposes by "not present"
2379 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002380 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002381
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002382 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002383 case VCPU_SREG_TR:
2384 /*
2385 * Work around a bug where the busy flag in the tr selector
2386 * isn't exposed
2387 */
Amit Shahc0d09822008-10-27 09:04:18 +00002388 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002389 break;
2390 case VCPU_SREG_DS:
2391 case VCPU_SREG_ES:
2392 case VCPU_SREG_FS:
2393 case VCPU_SREG_GS:
2394 /*
2395 * The accessed bit must always be set in the segment
2396 * descriptor cache, although it can be cleared in the
2397 * descriptor, the cached bit always remains at 1. Since
2398 * Intel has a check on this, set it here to support
2399 * cross-vendor migration.
2400 */
2401 if (!var->unusable)
2402 var->type |= 0x1;
2403 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002404 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002405 /*
2406 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002407 * descriptor is left as 1, although the whole segment has
2408 * been made unusable. Clear it here to pass an Intel VMX
2409 * entry check when cross vendor migrating.
2410 */
2411 if (var->unusable)
2412 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002413 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002414 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002415 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002416 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002417}
2418
Izik Eidus2e4d2652008-03-24 19:38:34 +02002419static int svm_get_cpl(struct kvm_vcpu *vcpu)
2420{
2421 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2422
2423 return save->cpl;
2424}
2425
Gleb Natapov89a27f42010-02-16 10:51:48 +02002426static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002427{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002428 struct vcpu_svm *svm = to_svm(vcpu);
2429
Gleb Natapov89a27f42010-02-16 10:51:48 +02002430 dt->size = svm->vmcb->save.idtr.limit;
2431 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002432}
2433
Gleb Natapov89a27f42010-02-16 10:51:48 +02002434static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002435{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002436 struct vcpu_svm *svm = to_svm(vcpu);
2437
Gleb Natapov89a27f42010-02-16 10:51:48 +02002438 svm->vmcb->save.idtr.limit = dt->size;
2439 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002440 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002441}
2442
Gleb Natapov89a27f42010-02-16 10:51:48 +02002443static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002444{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002445 struct vcpu_svm *svm = to_svm(vcpu);
2446
Gleb Natapov89a27f42010-02-16 10:51:48 +02002447 dt->size = svm->vmcb->save.gdtr.limit;
2448 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002449}
2450
Gleb Natapov89a27f42010-02-16 10:51:48 +02002451static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002452{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002453 struct vcpu_svm *svm = to_svm(vcpu);
2454
Gleb Natapov89a27f42010-02-16 10:51:48 +02002455 svm->vmcb->save.gdtr.limit = dt->size;
2456 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002457 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002458}
2459
Avi Kivitye8467fd2009-12-29 18:43:06 +02002460static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2461{
2462}
2463
Avi Kivityaff48ba2010-12-05 18:56:11 +02002464static void svm_decache_cr3(struct kvm_vcpu *vcpu)
2465{
2466}
2467
Anthony Liguori25c4c272007-04-27 09:29:21 +03002468static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002469{
2470}
2471
Avi Kivityd2251572010-01-06 10:55:27 +02002472static void update_cr0_intercept(struct vcpu_svm *svm)
2473{
2474 ulong gcr0 = svm->vcpu.arch.cr0;
2475 u64 *hcr0 = &svm->vmcb->save.cr0;
2476
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002477 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2478 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002479
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002480 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002481
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002482 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002483 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2484 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002485 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002486 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2487 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002488 }
2489}
2490
Avi Kivity6aa8b732006-12-10 02:21:36 -08002491static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2492{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002493 struct vcpu_svm *svm = to_svm(vcpu);
2494
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002495#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002496 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002497 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002498 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002499 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002500 }
2501
Mike Dayd77c26f2007-10-08 09:02:08 -04002502 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002503 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002504 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002505 }
2506 }
2507#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002508 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002509
2510 if (!npt_enabled)
2511 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002512
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002513 /*
2514 * re-enable caching here because the QEMU bios
2515 * does not do it - this results in some delay at
2516 * reboot
2517 */
2518 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2519 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002520 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002521 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002522 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523}
2524
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002525static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002526{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002527 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002528 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2529
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002530 if (cr4 & X86_CR4_VMXE)
2531 return 1;
2532
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002533 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002534 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002535
Joerg Roedelec077262008-04-09 14:15:28 +02002536 vcpu->arch.cr4 = cr4;
2537 if (!npt_enabled)
2538 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002539 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002540 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002541 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002542 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543}
2544
2545static void svm_set_segment(struct kvm_vcpu *vcpu,
2546 struct kvm_segment *var, int seg)
2547{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002548 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002549 struct vmcb_seg *s = svm_seg(vcpu, seg);
2550
2551 s->base = var->base;
2552 s->limit = var->limit;
2553 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002554 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2555 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2556 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2557 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2558 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2559 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2560 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2561 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002562
2563 /*
2564 * This is always accurate, except if SYSRET returned to a segment
2565 * with SS.DPL != 3. Intel does not have this quirk, and always
2566 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2567 * would entail passing the CPL to userspace and back.
2568 */
2569 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002570 /* This is symmetric with svm_get_segment() */
2571 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002572
Joerg Roedel060d0c92010-12-03 11:45:57 +01002573 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002574}
2575
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002576static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002577{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002578 struct vcpu_svm *svm = to_svm(vcpu);
2579
Joerg Roedel18c918c2010-11-30 18:03:59 +01002580 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002581
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002582 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002583 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002584 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002585 } else
2586 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002587}
2588
Tejun Heo0fe1e002009-10-29 22:34:14 +09002589static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002590{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002591 if (sd->next_asid > sd->max_asid) {
2592 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002593 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002594 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002595 }
2596
Tejun Heo0fe1e002009-10-29 22:34:14 +09002597 svm->asid_generation = sd->asid_generation;
2598 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002599
2600 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002601}
2602
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002603static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2604{
2605 return to_svm(vcpu)->vmcb->save.dr6;
2606}
2607
2608static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2609{
2610 struct vcpu_svm *svm = to_svm(vcpu);
2611
2612 svm->vmcb->save.dr6 = value;
2613 mark_dirty(svm->vmcb, VMCB_DR);
2614}
2615
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002616static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2617{
2618 struct vcpu_svm *svm = to_svm(vcpu);
2619
2620 get_debugreg(vcpu->arch.db[0], 0);
2621 get_debugreg(vcpu->arch.db[1], 1);
2622 get_debugreg(vcpu->arch.db[2], 2);
2623 get_debugreg(vcpu->arch.db[3], 3);
2624 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2625 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2626
2627 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2628 set_dr_intercepts(svm);
2629}
2630
Gleb Natapov020df072010-04-13 10:05:23 +03002631static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002632{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002633 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002634
Gleb Natapov020df072010-04-13 10:05:23 +03002635 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002636 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002637}
2638
Avi Kivity851ba692009-08-24 11:10:17 +03002639static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002640{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002641 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002642 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002644 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002645 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2646 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002647 svm->vmcb->control.insn_len);
2648}
2649
2650static int npf_interception(struct vcpu_svm *svm)
2651{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002652 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002653 u64 error_code = svm->vmcb->control.exit_info_1;
2654
2655 trace_kvm_page_fault(fault_address, error_code);
2656 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002657 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2658 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002659 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002660}
2661
Avi Kivity851ba692009-08-24 11:10:17 +03002662static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002663{
Avi Kivity851ba692009-08-24 11:10:17 +03002664 struct kvm_run *kvm_run = svm->vcpu.run;
2665
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002666 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002667 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002668 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002669 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2670 return 1;
2671 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002672
Jan Kiszka6be7d302009-10-18 13:24:54 +02002673 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002674 disable_nmi_singlestep(svm);
Gleb Natapov44c11432009-05-11 13:35:52 +03002675 }
2676
2677 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002678 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002679 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2680 kvm_run->debug.arch.pc =
2681 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2682 kvm_run->debug.arch.exception = DB_VECTOR;
2683 return 0;
2684 }
2685
2686 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002687}
2688
Avi Kivity851ba692009-08-24 11:10:17 +03002689static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002690{
Avi Kivity851ba692009-08-24 11:10:17 +03002691 struct kvm_run *kvm_run = svm->vcpu.run;
2692
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002693 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2694 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2695 kvm_run->debug.arch.exception = BP_VECTOR;
2696 return 0;
2697}
2698
Avi Kivity851ba692009-08-24 11:10:17 +03002699static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002700{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002701 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002702}
2703
Eric Northup54a20552015-11-03 18:03:53 +01002704static int ac_interception(struct vcpu_svm *svm)
2705{
2706 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2707 return 1;
2708}
2709
Liran Alon97184202018-03-12 13:12:52 +02002710static int gp_interception(struct vcpu_svm *svm)
2711{
2712 struct kvm_vcpu *vcpu = &svm->vcpu;
2713 u32 error_code = svm->vmcb->control.exit_info_1;
2714 int er;
2715
2716 WARN_ON_ONCE(!enable_vmware_backdoor);
2717
2718 er = emulate_instruction(vcpu,
2719 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
2720 if (er == EMULATE_USER_EXIT)
2721 return 0;
2722 else if (er != EMULATE_DONE)
2723 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2724 return 1;
2725}
2726
Joerg Roedel67ec6602010-05-17 14:43:35 +02002727static bool is_erratum_383(void)
2728{
2729 int err, i;
2730 u64 value;
2731
2732 if (!erratum_383_found)
2733 return false;
2734
2735 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2736 if (err)
2737 return false;
2738
2739 /* Bit 62 may or may not be set for this mce */
2740 value &= ~(1ULL << 62);
2741
2742 if (value != 0xb600000000010015ULL)
2743 return false;
2744
2745 /* Clear MCi_STATUS registers */
2746 for (i = 0; i < 6; ++i)
2747 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2748
2749 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2750 if (!err) {
2751 u32 low, high;
2752
2753 value &= ~(1ULL << 2);
2754 low = lower_32_bits(value);
2755 high = upper_32_bits(value);
2756
2757 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2758 }
2759
2760 /* Flush tlb to evict multi-match entries */
2761 __flush_tlb_all();
2762
2763 return true;
2764}
2765
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002766static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002767{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002768 if (is_erratum_383()) {
2769 /*
2770 * Erratum 383 triggered. Guest state is corrupt so kill the
2771 * guest.
2772 */
2773 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2774
Avi Kivitya8eeb042010-05-10 12:34:53 +03002775 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002776
2777 return;
2778 }
2779
Joerg Roedel53371b52008-04-09 14:15:30 +02002780 /*
2781 * On an #MC intercept the MCE handler is not called automatically in
2782 * the host. So do it by hand here.
2783 */
2784 asm volatile (
2785 "int $0x12\n");
2786 /* not sure if we ever come back to this point */
2787
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002788 return;
2789}
2790
2791static int mc_interception(struct vcpu_svm *svm)
2792{
Joerg Roedel53371b52008-04-09 14:15:30 +02002793 return 1;
2794}
2795
Avi Kivity851ba692009-08-24 11:10:17 +03002796static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002797{
Avi Kivity851ba692009-08-24 11:10:17 +03002798 struct kvm_run *kvm_run = svm->vcpu.run;
2799
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002800 /*
2801 * VMCB is undefined after a SHUTDOWN intercept
2802 * so reinitialize it.
2803 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002804 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002805 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002806
2807 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2808 return 0;
2809}
2810
Avi Kivity851ba692009-08-24 11:10:17 +03002811static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002812{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002813 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002814 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002815 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002816 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002817
Rusty Russelle756fc62007-07-30 20:07:08 +10002818 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002819 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002820 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002821 if (string)
Andre Przywara51d8b662010-12-21 11:12:02 +01002822 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002823
Avi Kivity039576c2007-03-20 12:46:50 +02002824 port = io_info >> 16;
2825 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002826 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002827
Sean Christophersondca7f122018-03-08 08:57:27 -08002828 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002829}
2830
Avi Kivity851ba692009-08-24 11:10:17 +03002831static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002832{
2833 return 1;
2834}
2835
Avi Kivity851ba692009-08-24 11:10:17 +03002836static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002837{
2838 ++svm->vcpu.stat.irq_exits;
2839 return 1;
2840}
2841
Avi Kivity851ba692009-08-24 11:10:17 +03002842static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002843{
2844 return 1;
2845}
2846
Avi Kivity851ba692009-08-24 11:10:17 +03002847static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002848{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002849 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002850 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002851}
2852
Avi Kivity851ba692009-08-24 11:10:17 +03002853static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002854{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002855 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002856 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002857}
2858
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002859static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2860{
2861 struct vcpu_svm *svm = to_svm(vcpu);
2862
2863 return svm->nested.nested_cr3;
2864}
2865
Avi Kivitye4e517b2011-07-28 11:36:17 +03002866static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2867{
2868 struct vcpu_svm *svm = to_svm(vcpu);
2869 u64 cr3 = svm->nested.nested_cr3;
2870 u64 pdpte;
2871 int ret;
2872
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002873 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002874 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002875 if (ret)
2876 return 0;
2877 return pdpte;
2878}
2879
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002880static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2881 unsigned long root)
2882{
2883 struct vcpu_svm *svm = to_svm(vcpu);
2884
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002885 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002886 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002887}
2888
Avi Kivity6389ee92010-11-29 16:12:30 +02002889static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2890 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002891{
2892 struct vcpu_svm *svm = to_svm(vcpu);
2893
Paolo Bonzini5e352512014-09-02 13:18:37 +02002894 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2895 /*
2896 * TODO: track the cause of the nested page fault, and
2897 * correctly fill in the high bits of exit_info_1.
2898 */
2899 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2900 svm->vmcb->control.exit_code_hi = 0;
2901 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2902 svm->vmcb->control.exit_info_2 = fault->address;
2903 }
2904
2905 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2906 svm->vmcb->control.exit_info_1 |= fault->error_code;
2907
2908 /*
2909 * The present bit is always zero for page structure faults on real
2910 * hardware.
2911 */
2912 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2913 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002914
2915 nested_svm_vmexit(svm);
2916}
2917
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002918static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002919{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002920 WARN_ON(mmu_is_nested(vcpu));
2921 kvm_init_shadow_mmu(vcpu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002922 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2923 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03002924 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
Joerg Roedel4b161842010-09-10 17:31:03 +02002925 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
Yu Zhang855feb62017-08-24 20:27:55 +08002926 vcpu->arch.mmu.shadow_root_level = get_npt_level(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08002927 reset_shadow_zero_bits_mask(vcpu, &vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002928 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002929}
2930
2931static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2932{
2933 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
2934}
2935
Alexander Grafc0725422008-11-25 20:17:03 +01002936static int nested_svm_check_permissions(struct vcpu_svm *svm)
2937{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002938 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2939 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01002940 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2941 return 1;
2942 }
2943
2944 if (svm->vmcb->save.cpl) {
2945 kvm_inject_gp(&svm->vcpu, 0);
2946 return 1;
2947 }
2948
Dan Carpentere9196ce2017-05-18 10:39:53 +03002949 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01002950}
2951
Alexander Grafcf74a782008-11-25 20:17:08 +01002952static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2953 bool has_error_code, u32 error_code)
2954{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002955 int vmexit;
2956
Joerg Roedel20307532010-11-29 17:51:48 +01002957 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02002958 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01002959
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002960 vmexit = nested_svm_intercept(svm);
2961 if (vmexit != NESTED_EXIT_DONE)
2962 return 0;
2963
Joerg Roedel0295ad72009-08-07 11:49:37 +02002964 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2965 svm->vmcb->control.exit_code_hi = 0;
2966 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002967
2968 /*
2969 * FIXME: we should not write CR2 when L1 intercepts an L2 #PF exception.
2970 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2971 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6 can be
2972 * written only when inject_pending_event runs (DR6 would written here
2973 * too). This should be conditional on a new capability---if the
2974 * capability is disabled, kvm_multiple_exception would write the
2975 * ancillary information to CR2 or DR6, for backwards ABI-compatibility.
2976 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002977 if (svm->vcpu.arch.exception.nested_apf)
2978 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
2979 else
2980 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02002981
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002982 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002983 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01002984}
2985
Joerg Roedel8fe54652010-02-19 16:23:01 +01002986/* This function returns true if it is save to enable the irq window */
2987static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002988{
Joerg Roedel20307532010-11-29 17:51:48 +01002989 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002990 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002991
Joerg Roedel26666952009-08-07 11:49:46 +02002992 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002993 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002994
Joerg Roedel26666952009-08-07 11:49:46 +02002995 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002996 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01002997
Gleb Natapova0a07cd2010-09-20 10:15:32 +02002998 /*
2999 * if vmexit was already requested (by intercepted exception
3000 * for instance) do not overwrite it with "external interrupt"
3001 * vmexit.
3002 */
3003 if (svm->nested.exit_required)
3004 return false;
3005
Joerg Roedel197717d2010-02-24 18:59:19 +01003006 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3007 svm->vmcb->control.exit_info_1 = 0;
3008 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003009
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003010 if (svm->nested.intercept & 1ULL) {
3011 /*
3012 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003013 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003014 * #vmexit emulation might sleep. Only signal request for
3015 * the #vmexit here.
3016 */
3017 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003018 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003019 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003020 }
3021
Joerg Roedel8fe54652010-02-19 16:23:01 +01003022 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003023}
3024
Joerg Roedel887f5002010-02-24 18:59:12 +01003025/* This function returns true if it is save to enable the nmi window */
3026static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3027{
Joerg Roedel20307532010-11-29 17:51:48 +01003028 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003029 return true;
3030
3031 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3032 return true;
3033
3034 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3035 svm->nested.exit_required = true;
3036
3037 return false;
3038}
3039
Joerg Roedel7597f122010-02-19 16:23:00 +01003040static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003041{
3042 struct page *page;
3043
Joerg Roedel6c3bd3d2010-02-19 16:23:04 +01003044 might_sleep();
3045
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003046 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003047 if (is_error_page(page))
3048 goto error;
3049
Joerg Roedel7597f122010-02-19 16:23:00 +01003050 *_page = page;
3051
3052 return kmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003053
3054error:
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003055 kvm_inject_gp(&svm->vcpu, 0);
3056
3057 return NULL;
3058}
3059
Joerg Roedel7597f122010-02-19 16:23:00 +01003060static void nested_svm_unmap(struct page *page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003061{
Joerg Roedel7597f122010-02-19 16:23:00 +01003062 kunmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003063 kvm_release_page_dirty(page);
3064}
3065
Joerg Roedelce2ac082010-03-01 15:34:39 +01003066static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003067{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003068 unsigned port, size, iopm_len;
3069 u16 val, mask;
3070 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003071 u64 gpa;
3072
3073 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3074 return NESTED_EXIT_HOST;
3075
3076 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003077 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3078 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003079 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003080 start_bit = port % 8;
3081 iopm_len = (start_bit + size > 8) ? 2 : 1;
3082 mask = (0xf >> (4 - size)) << start_bit;
3083 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003084
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003085 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003086 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003087
Jan Kiszka9bf41832014-06-30 10:54:17 +02003088 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003089}
3090
Joerg Roedeld2477822010-03-01 15:34:34 +01003091static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003092{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003093 u32 offset, msr, value;
3094 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003095
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003096 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003097 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003098
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003099 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3100 offset = svm_msrpm_offset(msr);
3101 write = svm->vmcb->control.exit_info_1 & 1;
3102 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003103
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003104 if (offset == MSR_INVALID)
3105 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003106
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003107 /* Offset is in 32 bit units but need in 8 bit units */
3108 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003109
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003110 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003111 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003112
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003113 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003114}
3115
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003116/* DB exceptions for our internal use must not cause vmexit */
3117static int nested_svm_intercept_db(struct vcpu_svm *svm)
3118{
3119 unsigned long dr6;
3120
3121 /* if we're not singlestepping, it's not ours */
3122 if (!svm->nmi_singlestep)
3123 return NESTED_EXIT_DONE;
3124
3125 /* if it's not a singlestep exception, it's not ours */
3126 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3127 return NESTED_EXIT_DONE;
3128 if (!(dr6 & DR6_BS))
3129 return NESTED_EXIT_DONE;
3130
3131 /* if the guest is singlestepping, it should get the vmexit */
3132 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3133 disable_nmi_singlestep(svm);
3134 return NESTED_EXIT_DONE;
3135 }
3136
3137 /* it's ours, the nested hypervisor must not see this one */
3138 return NESTED_EXIT_HOST;
3139}
3140
Joerg Roedel410e4d52009-08-07 11:49:44 +02003141static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003142{
Alexander Grafcf74a782008-11-25 20:17:08 +01003143 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003144
Joerg Roedel410e4d52009-08-07 11:49:44 +02003145 switch (exit_code) {
3146 case SVM_EXIT_INTR:
3147 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003148 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003149 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003150 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003151 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003152 if (npt_enabled)
3153 return NESTED_EXIT_HOST;
3154 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003155 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003156 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003157 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003158 return NESTED_EXIT_HOST;
3159 break;
3160 default:
3161 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003162 }
3163
Joerg Roedel410e4d52009-08-07 11:49:44 +02003164 return NESTED_EXIT_CONTINUE;
3165}
3166
3167/*
3168 * If this function returns true, this #vmexit was already handled
3169 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003170static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003171{
3172 u32 exit_code = svm->vmcb->control.exit_code;
3173 int vmexit = NESTED_EXIT_HOST;
3174
Alexander Grafcf74a782008-11-25 20:17:08 +01003175 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003176 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003177 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003178 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003179 case SVM_EXIT_IOIO:
3180 vmexit = nested_svm_intercept_ioio(svm);
3181 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003182 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3183 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3184 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003185 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003186 break;
3187 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003188 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3189 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3190 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003191 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003192 break;
3193 }
3194 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3195 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003196 if (svm->nested.intercept_exceptions & excp_bits) {
3197 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3198 vmexit = nested_svm_intercept_db(svm);
3199 else
3200 vmexit = NESTED_EXIT_DONE;
3201 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003202 /* async page fault always cause vmexit */
3203 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003204 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003205 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003206 break;
3207 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003208 case SVM_EXIT_ERR: {
3209 vmexit = NESTED_EXIT_DONE;
3210 break;
3211 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003212 default: {
3213 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003214 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003215 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003216 }
3217 }
3218
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003219 return vmexit;
3220}
3221
3222static int nested_svm_exit_handled(struct vcpu_svm *svm)
3223{
3224 int vmexit;
3225
3226 vmexit = nested_svm_intercept(svm);
3227
3228 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003229 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003230
3231 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003232}
3233
Joerg Roedel0460a972009-08-07 11:49:31 +02003234static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3235{
3236 struct vmcb_control_area *dst = &dst_vmcb->control;
3237 struct vmcb_control_area *from = &from_vmcb->control;
3238
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003239 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003240 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003241 dst->intercept_exceptions = from->intercept_exceptions;
3242 dst->intercept = from->intercept;
3243 dst->iopm_base_pa = from->iopm_base_pa;
3244 dst->msrpm_base_pa = from->msrpm_base_pa;
3245 dst->tsc_offset = from->tsc_offset;
3246 dst->asid = from->asid;
3247 dst->tlb_ctl = from->tlb_ctl;
3248 dst->int_ctl = from->int_ctl;
3249 dst->int_vector = from->int_vector;
3250 dst->int_state = from->int_state;
3251 dst->exit_code = from->exit_code;
3252 dst->exit_code_hi = from->exit_code_hi;
3253 dst->exit_info_1 = from->exit_info_1;
3254 dst->exit_info_2 = from->exit_info_2;
3255 dst->exit_int_info = from->exit_int_info;
3256 dst->exit_int_info_err = from->exit_int_info_err;
3257 dst->nested_ctl = from->nested_ctl;
3258 dst->event_inj = from->event_inj;
3259 dst->event_inj_err = from->event_inj_err;
3260 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003261 dst->virt_ext = from->virt_ext;
Joerg Roedel0460a972009-08-07 11:49:31 +02003262}
3263
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003264static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003265{
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003266 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003267 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003268 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003269 struct page *page;
Alexander Grafcf74a782008-11-25 20:17:08 +01003270
Joerg Roedel17897f32009-10-09 16:08:29 +02003271 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3272 vmcb->control.exit_info_1,
3273 vmcb->control.exit_info_2,
3274 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003275 vmcb->control.exit_int_info_err,
3276 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003277
Joerg Roedel7597f122010-02-19 16:23:00 +01003278 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003279 if (!nested_vmcb)
3280 return 1;
3281
Joerg Roedel20307532010-11-29 17:51:48 +01003282 /* Exit Guest-Mode */
3283 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003284 svm->nested.vmcb = 0;
3285
Alexander Grafcf74a782008-11-25 20:17:08 +01003286 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003287 disable_gif(svm);
3288
3289 nested_vmcb->save.es = vmcb->save.es;
3290 nested_vmcb->save.cs = vmcb->save.cs;
3291 nested_vmcb->save.ss = vmcb->save.ss;
3292 nested_vmcb->save.ds = vmcb->save.ds;
3293 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3294 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003295 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003296 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003297 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003298 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003299 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003300 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003301 nested_vmcb->save.rip = vmcb->save.rip;
3302 nested_vmcb->save.rsp = vmcb->save.rsp;
3303 nested_vmcb->save.rax = vmcb->save.rax;
3304 nested_vmcb->save.dr7 = vmcb->save.dr7;
3305 nested_vmcb->save.dr6 = vmcb->save.dr6;
3306 nested_vmcb->save.cpl = vmcb->save.cpl;
3307
3308 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3309 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3310 nested_vmcb->control.int_state = vmcb->control.int_state;
3311 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3312 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3313 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3314 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3315 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3316 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003317
3318 if (svm->nrips_enabled)
3319 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003320
3321 /*
3322 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3323 * to make sure that we do not lose injected events. So check event_inj
3324 * here and copy it to exit_int_info if it is valid.
3325 * Exit_int_info and event_inj can't be both valid because the case
3326 * below only happens on a VMRUN instruction intercept which has
3327 * no valid exit_int_info set.
3328 */
3329 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3330 struct vmcb_control_area *nc = &nested_vmcb->control;
3331
3332 nc->exit_int_info = vmcb->control.event_inj;
3333 nc->exit_int_info_err = vmcb->control.event_inj_err;
3334 }
3335
Joerg Roedel33740e42009-08-07 11:49:29 +02003336 nested_vmcb->control.tlb_ctl = 0;
3337 nested_vmcb->control.event_inj = 0;
3338 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003339
3340 /* We always set V_INTR_MASKING and remember the old value in hflags */
3341 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3342 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3343
Alexander Grafcf74a782008-11-25 20:17:08 +01003344 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003345 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003346
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003347 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003348 kvm_clear_exception_queue(&svm->vcpu);
3349 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003350
Joerg Roedel4b161842010-09-10 17:31:03 +02003351 svm->nested.nested_cr3 = 0;
3352
Alexander Grafcf74a782008-11-25 20:17:08 +01003353 /* Restore selected save entries */
3354 svm->vmcb->save.es = hsave->save.es;
3355 svm->vmcb->save.cs = hsave->save.cs;
3356 svm->vmcb->save.ss = hsave->save.ss;
3357 svm->vmcb->save.ds = hsave->save.ds;
3358 svm->vmcb->save.gdtr = hsave->save.gdtr;
3359 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003360 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003361 svm_set_efer(&svm->vcpu, hsave->save.efer);
3362 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3363 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3364 if (npt_enabled) {
3365 svm->vmcb->save.cr3 = hsave->save.cr3;
3366 svm->vcpu.arch.cr3 = hsave->save.cr3;
3367 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003368 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003369 }
3370 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
3371 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
3372 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
3373 svm->vmcb->save.dr7 = 0;
3374 svm->vmcb->save.cpl = 0;
3375 svm->vmcb->control.exit_int_info = 0;
3376
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003377 mark_all_dirty(svm->vmcb);
3378
Joerg Roedel7597f122010-02-19 16:23:00 +01003379 nested_svm_unmap(page);
Alexander Grafcf74a782008-11-25 20:17:08 +01003380
Joerg Roedel4b161842010-09-10 17:31:03 +02003381 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003382 kvm_mmu_reset_context(&svm->vcpu);
3383 kvm_mmu_load(&svm->vcpu);
3384
3385 return 0;
3386}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003387
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003388static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003389{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003390 /*
3391 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003392 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003393 * the kvm msr permission bitmap may contain zero bits
3394 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003395 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003396
Joerg Roedel323c3d82010-03-01 15:34:37 +01003397 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3398 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003399
Joerg Roedel323c3d82010-03-01 15:34:37 +01003400 for (i = 0; i < MSRPM_OFFSETS; i++) {
3401 u32 value, p;
3402 u64 offset;
3403
3404 if (msrpm_offsets[i] == 0xffffffff)
3405 break;
3406
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003407 p = msrpm_offsets[i];
3408 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003409
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003410 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003411 return false;
3412
3413 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3414 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003415
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003416 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003417
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003418 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003419}
3420
Joerg Roedel52c65a302010-08-02 16:46:44 +02003421static bool nested_vmcb_checks(struct vmcb *vmcb)
3422{
3423 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3424 return false;
3425
Joerg Roedeldbe77582010-08-02 16:46:45 +02003426 if (vmcb->control.asid == 0)
3427 return false;
3428
Tom Lendackycea3a192017-12-04 10:57:24 -06003429 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3430 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003431 return false;
3432
Joerg Roedel52c65a302010-08-02 16:46:44 +02003433 return true;
3434}
3435
Ladi Prosekc2634062017-10-11 16:54:44 +02003436static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
3437 struct vmcb *nested_vmcb, struct page *page)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003438{
Avi Kivityf6e78472010-08-02 15:30:20 +03003439 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003440 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3441 else
3442 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3443
Tom Lendackycea3a192017-12-04 10:57:24 -06003444 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003445 kvm_mmu_unload(&svm->vcpu);
3446 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3447 nested_svm_init_mmu_context(&svm->vcpu);
3448 }
3449
Alexander Graf3d6368e2008-11-25 20:17:07 +01003450 /* Load the nested guest state */
3451 svm->vmcb->save.es = nested_vmcb->save.es;
3452 svm->vmcb->save.cs = nested_vmcb->save.cs;
3453 svm->vmcb->save.ss = nested_vmcb->save.ss;
3454 svm->vmcb->save.ds = nested_vmcb->save.ds;
3455 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3456 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003457 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003458 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3459 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3460 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3461 if (npt_enabled) {
3462 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3463 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003464 } else
Avi Kivity23902182010-06-10 17:02:16 +03003465 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003466
3467 /* Guest paging mode is active - reset mmu */
3468 kvm_mmu_reset_context(&svm->vcpu);
3469
Joerg Roedeldefbba52009-08-07 11:49:30 +02003470 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003471 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
3472 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
3473 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003474
Alexander Graf3d6368e2008-11-25 20:17:07 +01003475 /* In case we don't even reach vcpu_run, the fields are not updated */
3476 svm->vmcb->save.rax = nested_vmcb->save.rax;
3477 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3478 svm->vmcb->save.rip = nested_vmcb->save.rip;
3479 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3480 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3481 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3482
Joerg Roedelf7138532010-03-01 15:34:40 +01003483 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003484 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003485
Joerg Roedelaad42c62009-08-07 11:49:34 +02003486 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003487 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003488 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003489 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3490 svm->nested.intercept = nested_vmcb->control.intercept;
3491
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003492 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003493 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003494 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3495 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3496 else
3497 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3498
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003499 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3500 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003501 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3502 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003503 }
3504
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003505 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003506 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003507
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003508 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3509 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3510
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003511 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003512 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3513 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003514 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3515 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3516
Joerg Roedel7597f122010-02-19 16:23:00 +01003517 nested_svm_unmap(page);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003518
Joerg Roedel20307532010-11-29 17:51:48 +01003519 /* Enter Guest-Mode */
3520 enter_guest_mode(&svm->vcpu);
3521
Joerg Roedel384c6362010-11-30 18:03:56 +01003522 /*
3523 * Merge guest and host intercepts - must be called with vcpu in
3524 * guest-mode to take affect here
3525 */
3526 recalc_intercepts(svm);
3527
Joerg Roedel06fc77722010-02-19 16:23:07 +01003528 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003529
Joerg Roedel2af91942009-08-07 11:49:28 +02003530 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003531
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003532 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003533}
3534
3535static bool nested_svm_vmrun(struct vcpu_svm *svm)
3536{
3537 struct vmcb *nested_vmcb;
3538 struct vmcb *hsave = svm->nested.hsave;
3539 struct vmcb *vmcb = svm->vmcb;
3540 struct page *page;
3541 u64 vmcb_gpa;
3542
3543 vmcb_gpa = svm->vmcb->save.rax;
3544
3545 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
3546 if (!nested_vmcb)
3547 return false;
3548
3549 if (!nested_vmcb_checks(nested_vmcb)) {
3550 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3551 nested_vmcb->control.exit_code_hi = 0;
3552 nested_vmcb->control.exit_info_1 = 0;
3553 nested_vmcb->control.exit_info_2 = 0;
3554
3555 nested_svm_unmap(page);
3556
3557 return false;
3558 }
3559
3560 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3561 nested_vmcb->save.rip,
3562 nested_vmcb->control.int_ctl,
3563 nested_vmcb->control.event_inj,
3564 nested_vmcb->control.nested_ctl);
3565
3566 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3567 nested_vmcb->control.intercept_cr >> 16,
3568 nested_vmcb->control.intercept_exceptions,
3569 nested_vmcb->control.intercept);
3570
3571 /* Clear internal status */
3572 kvm_clear_exception_queue(&svm->vcpu);
3573 kvm_clear_interrupt_queue(&svm->vcpu);
3574
3575 /*
3576 * Save the old vmcb, so we don't need to pick what we save, but can
3577 * restore everything when a VMEXIT occurs
3578 */
3579 hsave->save.es = vmcb->save.es;
3580 hsave->save.cs = vmcb->save.cs;
3581 hsave->save.ss = vmcb->save.ss;
3582 hsave->save.ds = vmcb->save.ds;
3583 hsave->save.gdtr = vmcb->save.gdtr;
3584 hsave->save.idtr = vmcb->save.idtr;
3585 hsave->save.efer = svm->vcpu.arch.efer;
3586 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3587 hsave->save.cr4 = svm->vcpu.arch.cr4;
3588 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3589 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3590 hsave->save.rsp = vmcb->save.rsp;
3591 hsave->save.rax = vmcb->save.rax;
3592 if (npt_enabled)
3593 hsave->save.cr3 = vmcb->save.cr3;
3594 else
3595 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3596
3597 copy_vmcb_control_area(hsave, vmcb);
3598
3599 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, page);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003600
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003601 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003602}
3603
Joerg Roedel9966bf62009-08-07 11:49:40 +02003604static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003605{
3606 to_vmcb->save.fs = from_vmcb->save.fs;
3607 to_vmcb->save.gs = from_vmcb->save.gs;
3608 to_vmcb->save.tr = from_vmcb->save.tr;
3609 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3610 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3611 to_vmcb->save.star = from_vmcb->save.star;
3612 to_vmcb->save.lstar = from_vmcb->save.lstar;
3613 to_vmcb->save.cstar = from_vmcb->save.cstar;
3614 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3615 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3616 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3617 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003618}
3619
Avi Kivity851ba692009-08-24 11:10:17 +03003620static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003621{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003622 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003623 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003624 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003625
Alexander Graf55426752008-11-25 20:17:06 +01003626 if (nested_svm_check_permissions(svm))
3627 return 1;
3628
Joerg Roedel7597f122010-02-19 16:23:00 +01003629 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003630 if (!nested_vmcb)
3631 return 1;
3632
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003633 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003634 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003635
Joerg Roedel9966bf62009-08-07 11:49:40 +02003636 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003637 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003638
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003639 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003640}
3641
Avi Kivity851ba692009-08-24 11:10:17 +03003642static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003643{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003644 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003645 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003646 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003647
Alexander Graf55426752008-11-25 20:17:06 +01003648 if (nested_svm_check_permissions(svm))
3649 return 1;
3650
Joerg Roedel7597f122010-02-19 16:23:00 +01003651 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003652 if (!nested_vmcb)
3653 return 1;
3654
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003655 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003656 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003657
Joerg Roedel9966bf62009-08-07 11:49:40 +02003658 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003659 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003660
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003661 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003662}
3663
Avi Kivity851ba692009-08-24 11:10:17 +03003664static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003665{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003666 if (nested_svm_check_permissions(svm))
3667 return 1;
3668
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003669 /* Save rip after vmrun instruction */
3670 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003671
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003672 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003673 return 1;
3674
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003675 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003676 goto failed;
3677
3678 return 1;
3679
3680failed:
3681
3682 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3683 svm->vmcb->control.exit_code_hi = 0;
3684 svm->vmcb->control.exit_info_1 = 0;
3685 svm->vmcb->control.exit_info_2 = 0;
3686
3687 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003688
3689 return 1;
3690}
3691
Avi Kivity851ba692009-08-24 11:10:17 +03003692static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003693{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003694 int ret;
3695
Alexander Graf1371d902008-11-25 20:17:04 +01003696 if (nested_svm_check_permissions(svm))
3697 return 1;
3698
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003699 /*
3700 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003701 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003702 */
3703 if (vgif_enabled(svm))
3704 clr_intercept(svm, INTERCEPT_STGI);
3705
Alexander Graf1371d902008-11-25 20:17:04 +01003706 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003707 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003708 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003709
Joerg Roedel2af91942009-08-07 11:49:28 +02003710 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003711
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003712 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003713}
3714
Avi Kivity851ba692009-08-24 11:10:17 +03003715static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003716{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003717 int ret;
3718
Alexander Graf1371d902008-11-25 20:17:04 +01003719 if (nested_svm_check_permissions(svm))
3720 return 1;
3721
3722 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003723 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003724
Joerg Roedel2af91942009-08-07 11:49:28 +02003725 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003726
3727 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003728 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3729 svm_clear_vintr(svm);
3730 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3731 mark_dirty(svm->vmcb, VMCB_INTR);
3732 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003733
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003734 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003735}
3736
Avi Kivity851ba692009-08-24 11:10:17 +03003737static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003738{
3739 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003740
David Kaplan668f1982015-02-20 16:02:10 -06003741 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3742 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003743
Alexander Grafff092382009-06-15 15:21:24 +02003744 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
David Kaplan668f1982015-02-20 16:02:10 -06003745 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Alexander Grafff092382009-06-15 15:21:24 +02003746
3747 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003748 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003749}
3750
Joerg Roedel532a46b2009-10-09 16:08:32 +02003751static int skinit_interception(struct vcpu_svm *svm)
3752{
David Kaplan668f1982015-02-20 16:02:10 -06003753 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003754
3755 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3756 return 1;
3757}
3758
David Kaplandab429a2015-03-02 13:43:37 -06003759static int wbinvd_interception(struct vcpu_svm *svm)
3760{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003761 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003762}
3763
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003764static int xsetbv_interception(struct vcpu_svm *svm)
3765{
3766 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3767 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3768
3769 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3770 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003771 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003772 }
3773
3774 return 1;
3775}
3776
Avi Kivity851ba692009-08-24 11:10:17 +03003777static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003778{
Izik Eidus37817f22008-03-24 23:14:53 +02003779 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003780 int reason;
3781 int int_type = svm->vmcb->control.exit_int_info &
3782 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003783 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003784 uint32_t type =
3785 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3786 uint32_t idt_v =
3787 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003788 bool has_error_code = false;
3789 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003790
3791 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003792
Izik Eidus37817f22008-03-24 23:14:53 +02003793 if (svm->vmcb->control.exit_info_2 &
3794 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003795 reason = TASK_SWITCH_IRET;
3796 else if (svm->vmcb->control.exit_info_2 &
3797 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3798 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003799 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003800 reason = TASK_SWITCH_GATE;
3801 else
3802 reason = TASK_SWITCH_CALL;
3803
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003804 if (reason == TASK_SWITCH_GATE) {
3805 switch (type) {
3806 case SVM_EXITINTINFO_TYPE_NMI:
3807 svm->vcpu.arch.nmi_injected = false;
3808 break;
3809 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003810 if (svm->vmcb->control.exit_info_2 &
3811 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3812 has_error_code = true;
3813 error_code =
3814 (u32)svm->vmcb->control.exit_info_2;
3815 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003816 kvm_clear_exception_queue(&svm->vcpu);
3817 break;
3818 case SVM_EXITINTINFO_TYPE_INTR:
3819 kvm_clear_interrupt_queue(&svm->vcpu);
3820 break;
3821 default:
3822 break;
3823 }
3824 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003825
Gleb Natapov8317c292009-04-12 13:37:02 +03003826 if (reason != TASK_SWITCH_GATE ||
3827 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3828 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003829 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3830 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003831
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003832 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3833 int_vec = -1;
3834
3835 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003836 has_error_code, error_code) == EMULATE_FAIL) {
3837 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3838 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3839 svm->vcpu.run->internal.ndata = 0;
3840 return 0;
3841 }
3842 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003843}
3844
Avi Kivity851ba692009-08-24 11:10:17 +03003845static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003846{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003847 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003848 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003849}
3850
Avi Kivity851ba692009-08-24 11:10:17 +03003851static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003852{
3853 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003854 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003855 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003856 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003857 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003858 return 1;
3859}
3860
Avi Kivity851ba692009-08-24 11:10:17 +03003861static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003862{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003863 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3864 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
3865
3866 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003867 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003868}
3869
Avi Kivity851ba692009-08-24 11:10:17 +03003870static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003871{
Andre Przywara51d8b662010-12-21 11:12:02 +01003872 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003873}
3874
Brijesh Singh7607b712018-02-19 10:14:44 -06003875static int rsm_interception(struct vcpu_svm *svm)
3876{
3877 return x86_emulate_instruction(&svm->vcpu, 0, 0,
3878 rsm_ins_bytes, 2) == EMULATE_DONE;
3879}
3880
Avi Kivity332b56e2011-11-10 14:57:24 +02003881static int rdpmc_interception(struct vcpu_svm *svm)
3882{
3883 int err;
3884
3885 if (!static_cpu_has(X86_FEATURE_NRIPS))
3886 return emulate_on_interception(svm);
3887
3888 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003889 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003890}
3891
Xiubo Li52eb5a62015-03-13 17:39:45 +08003892static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3893 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003894{
3895 unsigned long cr0 = svm->vcpu.arch.cr0;
3896 bool ret = false;
3897 u64 intercept;
3898
3899 intercept = svm->nested.intercept;
3900
3901 if (!is_guest_mode(&svm->vcpu) ||
3902 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3903 return false;
3904
3905 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3906 val &= ~SVM_CR0_SELECTIVE_MASK;
3907
3908 if (cr0 ^ val) {
3909 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3910 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3911 }
3912
3913 return ret;
3914}
3915
Andre Przywara7ff76d52010-12-21 11:12:04 +01003916#define CR_VALID (1ULL << 63)
3917
3918static int cr_interception(struct vcpu_svm *svm)
3919{
3920 int reg, cr;
3921 unsigned long val;
3922 int err;
3923
3924 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3925 return emulate_on_interception(svm);
3926
3927 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3928 return emulate_on_interception(svm);
3929
3930 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06003931 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3932 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3933 else
3934 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01003935
3936 err = 0;
3937 if (cr >= 16) { /* mov to cr */
3938 cr -= 16;
3939 val = kvm_register_read(&svm->vcpu, reg);
3940 switch (cr) {
3941 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02003942 if (!check_selective_cr0_intercepted(svm, val))
3943 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02003944 else
3945 return 1;
3946
Andre Przywara7ff76d52010-12-21 11:12:04 +01003947 break;
3948 case 3:
3949 err = kvm_set_cr3(&svm->vcpu, val);
3950 break;
3951 case 4:
3952 err = kvm_set_cr4(&svm->vcpu, val);
3953 break;
3954 case 8:
3955 err = kvm_set_cr8(&svm->vcpu, val);
3956 break;
3957 default:
3958 WARN(1, "unhandled write to CR%d", cr);
3959 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3960 return 1;
3961 }
3962 } else { /* mov from cr */
3963 switch (cr) {
3964 case 0:
3965 val = kvm_read_cr0(&svm->vcpu);
3966 break;
3967 case 2:
3968 val = svm->vcpu.arch.cr2;
3969 break;
3970 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02003971 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003972 break;
3973 case 4:
3974 val = kvm_read_cr4(&svm->vcpu);
3975 break;
3976 case 8:
3977 val = kvm_get_cr8(&svm->vcpu);
3978 break;
3979 default:
3980 WARN(1, "unhandled read from CR%d", cr);
3981 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3982 return 1;
3983 }
3984 kvm_register_write(&svm->vcpu, reg, val);
3985 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08003986 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003987}
3988
Andre Przywaracae37972010-12-21 11:12:05 +01003989static int dr_interception(struct vcpu_svm *svm)
3990{
3991 int reg, dr;
3992 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01003993
Paolo Bonzinifacb0132014-02-21 10:32:27 +01003994 if (svm->vcpu.guest_debug == 0) {
3995 /*
3996 * No more DR vmexits; force a reload of the debug registers
3997 * and reenter on this instruction. The next vmexit will
3998 * retrieve the full state of the debug registers.
3999 */
4000 clr_dr_intercepts(svm);
4001 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4002 return 1;
4003 }
4004
Andre Przywaracae37972010-12-21 11:12:05 +01004005 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4006 return emulate_on_interception(svm);
4007
4008 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4009 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4010
4011 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004012 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4013 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004014 val = kvm_register_read(&svm->vcpu, reg);
4015 kvm_set_dr(&svm->vcpu, dr - 16, val);
4016 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004017 if (!kvm_require_dr(&svm->vcpu, dr))
4018 return 1;
4019 kvm_get_dr(&svm->vcpu, dr, &val);
4020 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004021 }
4022
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004023 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004024}
4025
Avi Kivity851ba692009-08-24 11:10:17 +03004026static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004027{
Avi Kivity851ba692009-08-24 11:10:17 +03004028 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004029 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004030
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004031 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4032 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004033 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004034 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004035 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004036 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004037 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004038 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4039 return 0;
4040}
4041
Tom Lendacky801e4592018-02-21 13:39:51 -06004042static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4043{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004044 msr->data = 0;
4045
4046 switch (msr->index) {
4047 case MSR_F10H_DECFG:
4048 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4049 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4050 break;
4051 default:
4052 return 1;
4053 }
4054
4055 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004056}
4057
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004058static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004059{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004060 struct vcpu_svm *svm = to_svm(vcpu);
4061
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004062 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004063 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004064 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004065 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004066#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004067 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004068 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004069 break;
4070 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004071 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004072 break;
4073 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004074 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004075 break;
4076 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004077 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004078 break;
4079#endif
4080 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004081 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004082 break;
4083 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004084 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004085 break;
4086 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004087 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004088 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004089 case MSR_TSC_AUX:
4090 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4091 return 1;
4092 msr_info->data = svm->tsc_aux;
4093 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004094 /*
4095 * Nobody will change the following 5 values in the VMCB so we can
4096 * safely return them on rdmsr. They will always be 0 until LBRV is
4097 * implemented.
4098 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004099 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004100 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004101 break;
4102 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004103 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004104 break;
4105 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004106 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004107 break;
4108 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004109 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004110 break;
4111 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004112 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004113 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004114 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004115 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004116 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004117 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004118 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004119 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004120 case MSR_IA32_SPEC_CTRL:
4121 if (!msr_info->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004122 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4123 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004124 return 1;
4125
4126 msr_info->data = svm->spec_ctrl;
4127 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004128 case MSR_AMD64_VIRT_SPEC_CTRL:
4129 if (!msr_info->host_initiated &&
4130 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4131 return 1;
4132
4133 msr_info->data = svm->virt_spec_ctrl;
4134 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004135 case MSR_F15H_IC_CFG: {
4136
4137 int family, model;
4138
4139 family = guest_cpuid_family(vcpu);
4140 model = guest_cpuid_model(vcpu);
4141
4142 if (family < 0 || model < 0)
4143 return kvm_get_msr_common(vcpu, msr_info);
4144
4145 msr_info->data = 0;
4146
4147 if (family == 0x15 &&
4148 (model >= 0x2 && model < 0x20))
4149 msr_info->data = 0x1E;
4150 }
4151 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004152 case MSR_F10H_DECFG:
4153 msr_info->data = svm->msr_decfg;
4154 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004155 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004156 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004157 }
4158 return 0;
4159}
4160
Avi Kivity851ba692009-08-24 11:10:17 +03004161static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004162{
David Kaplan668f1982015-02-20 16:02:10 -06004163 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004164 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004165
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004166 msr_info.index = ecx;
4167 msr_info.host_initiated = false;
4168 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004169 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004170 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004171 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004172 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004173 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004174
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004175 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
4176 msr_info.data & 0xffffffff);
4177 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
4178 msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004179 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004180 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004181 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004182}
4183
Joerg Roedel4a810182010-02-24 18:59:15 +01004184static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4185{
4186 struct vcpu_svm *svm = to_svm(vcpu);
4187 int svm_dis, chg_mask;
4188
4189 if (data & ~SVM_VM_CR_VALID_MASK)
4190 return 1;
4191
4192 chg_mask = SVM_VM_CR_VALID_MASK;
4193
4194 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4195 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4196
4197 svm->nested.vm_cr_msr &= ~chg_mask;
4198 svm->nested.vm_cr_msr |= (data & chg_mask);
4199
4200 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4201
4202 /* check for svm_disable while efer.svme is set */
4203 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4204 return 1;
4205
4206 return 0;
4207}
4208
Will Auld8fe8ab42012-11-29 12:42:12 -08004209static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004210{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004211 struct vcpu_svm *svm = to_svm(vcpu);
4212
Will Auld8fe8ab42012-11-29 12:42:12 -08004213 u32 ecx = msr->index;
4214 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004215 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004216 case MSR_IA32_CR_PAT:
4217 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4218 return 1;
4219 vcpu->arch.pat = data;
4220 svm->vmcb->save.g_pat = data;
4221 mark_dirty(svm->vmcb, VMCB_NPT);
4222 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004223 case MSR_IA32_SPEC_CTRL:
4224 if (!msr->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004225 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4226 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004227 return 1;
4228
4229 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004230 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004231 return 1;
4232
4233 svm->spec_ctrl = data;
4234
4235 if (!data)
4236 break;
4237
4238 /*
4239 * For non-nested:
4240 * When it's written (to non-zero) for the first time, pass
4241 * it through.
4242 *
4243 * For nested:
4244 * The handling of the MSR bitmap for L2 guests is done in
4245 * nested_svm_vmrun_msrpm.
4246 * We update the L1 MSR bit as well since it will end up
4247 * touching the MSR anyway now.
4248 */
4249 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4250 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004251 case MSR_IA32_PRED_CMD:
4252 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004253 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004254 return 1;
4255
4256 if (data & ~PRED_CMD_IBPB)
4257 return 1;
4258
4259 if (!data)
4260 break;
4261
4262 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4263 if (is_guest_mode(vcpu))
4264 break;
4265 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4266 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004267 case MSR_AMD64_VIRT_SPEC_CTRL:
4268 if (!msr->host_initiated &&
4269 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4270 return 1;
4271
4272 if (data & ~SPEC_CTRL_SSBD)
4273 return 1;
4274
4275 svm->virt_spec_ctrl = data;
4276 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004277 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004278 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004279 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004280#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004281 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004282 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004283 break;
4284 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004285 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004286 break;
4287 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004288 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004289 break;
4290 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004291 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004292 break;
4293#endif
4294 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004295 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004296 break;
4297 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004298 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004299 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004300 break;
4301 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004302 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004303 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004304 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004305 case MSR_TSC_AUX:
4306 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4307 return 1;
4308
4309 /*
4310 * This is rare, so we update the MSR here instead of using
4311 * direct_access_msrs. Doing that would require a rdmsr in
4312 * svm_vcpu_put.
4313 */
4314 svm->tsc_aux = data;
4315 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4316 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004317 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004318 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004319 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4320 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004321 break;
4322 }
4323 if (data & DEBUGCTL_RESERVED_BITS)
4324 return 1;
4325
4326 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004327 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004328 if (data & (1ULL<<0))
4329 svm_enable_lbrv(svm);
4330 else
4331 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004332 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004333 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004334 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004335 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004336 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004337 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004338 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004339 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004340 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004341 case MSR_F10H_DECFG: {
4342 struct kvm_msr_entry msr_entry;
4343
4344 msr_entry.index = msr->index;
4345 if (svm_get_msr_feature(&msr_entry))
4346 return 1;
4347
4348 /* Check the supported bits */
4349 if (data & ~msr_entry.data)
4350 return 1;
4351
4352 /* Don't allow the guest to change a bit, #GP */
4353 if (!msr->host_initiated && (data ^ msr_entry.data))
4354 return 1;
4355
4356 svm->msr_decfg = data;
4357 break;
4358 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004359 case MSR_IA32_APICBASE:
4360 if (kvm_vcpu_apicv_active(vcpu))
4361 avic_update_vapic_bar(to_svm(vcpu), data);
4362 /* Follow through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004363 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004364 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004365 }
4366 return 0;
4367}
4368
Avi Kivity851ba692009-08-24 11:10:17 +03004369static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004370{
Will Auld8fe8ab42012-11-29 12:42:12 -08004371 struct msr_data msr;
David Kaplan668f1982015-02-20 16:02:10 -06004372 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
4373 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004374
Will Auld8fe8ab42012-11-29 12:42:12 -08004375 msr.data = data;
4376 msr.index = ecx;
4377 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004378
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004379 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004380 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02004381 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004382 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004383 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004384 } else {
4385 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004386 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02004387 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004388}
4389
Avi Kivity851ba692009-08-24 11:10:17 +03004390static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004391{
Rusty Russelle756fc62007-07-30 20:07:08 +10004392 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004393 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004394 else
Avi Kivity851ba692009-08-24 11:10:17 +03004395 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004396}
4397
Avi Kivity851ba692009-08-24 11:10:17 +03004398static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004399{
Avi Kivity3842d132010-07-27 12:30:24 +03004400 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004401 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004402 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004403 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004404 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004405 return 1;
4406}
4407
Mark Langsdorf565d0992009-10-06 14:25:02 -05004408static int pause_interception(struct vcpu_svm *svm)
4409{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004410 struct kvm_vcpu *vcpu = &svm->vcpu;
4411 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4412
Babu Moger8566ac82018-03-16 16:37:26 -04004413 if (pause_filter_thresh)
4414 grow_ple_window(vcpu);
4415
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004416 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004417 return 1;
4418}
4419
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004420static int nop_interception(struct vcpu_svm *svm)
4421{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004422 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004423}
4424
4425static int monitor_interception(struct vcpu_svm *svm)
4426{
4427 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4428 return nop_interception(svm);
4429}
4430
4431static int mwait_interception(struct vcpu_svm *svm)
4432{
4433 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4434 return nop_interception(svm);
4435}
4436
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004437enum avic_ipi_failure_cause {
4438 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4439 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4440 AVIC_IPI_FAILURE_INVALID_TARGET,
4441 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4442};
4443
4444static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4445{
4446 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4447 u32 icrl = svm->vmcb->control.exit_info_1;
4448 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004449 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004450 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4451
4452 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4453
4454 switch (id) {
4455 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4456 /*
4457 * AVIC hardware handles the generation of
4458 * IPIs when the specified Message Type is Fixed
4459 * (also known as fixed delivery mode) and
4460 * the Trigger Mode is edge-triggered. The hardware
4461 * also supports self and broadcast delivery modes
4462 * specified via the Destination Shorthand(DSH)
4463 * field of the ICRL. Logical and physical APIC ID
4464 * formats are supported. All other IPI types cause
4465 * a #VMEXIT, which needs to emulated.
4466 */
4467 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4468 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4469 break;
4470 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
4471 int i;
4472 struct kvm_vcpu *vcpu;
4473 struct kvm *kvm = svm->vcpu.kvm;
4474 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4475
4476 /*
4477 * At this point, we expect that the AVIC HW has already
4478 * set the appropriate IRR bits on the valid target
4479 * vcpus. So, we just need to kick the appropriate vcpu.
4480 */
4481 kvm_for_each_vcpu(i, vcpu, kvm) {
4482 bool m = kvm_apic_match_dest(vcpu, apic,
4483 icrl & KVM_APIC_SHORT_MASK,
4484 GET_APIC_DEST_FIELD(icrh),
4485 icrl & KVM_APIC_DEST_MASK);
4486
4487 if (m && !avic_vcpu_is_running(vcpu))
4488 kvm_vcpu_wake_up(vcpu);
4489 }
4490 break;
4491 }
4492 case AVIC_IPI_FAILURE_INVALID_TARGET:
4493 break;
4494 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4495 WARN_ONCE(1, "Invalid backing page\n");
4496 break;
4497 default:
4498 pr_err("Unknown IPI interception\n");
4499 }
4500
4501 return 1;
4502}
4503
4504static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4505{
Sean Christopherson81811c12018-03-20 12:17:21 -07004506 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004507 int index;
4508 u32 *logical_apic_id_table;
4509 int dlid = GET_APIC_LOGICAL_ID(ldr);
4510
4511 if (!dlid)
4512 return NULL;
4513
4514 if (flat) { /* flat */
4515 index = ffs(dlid) - 1;
4516 if (index > 7)
4517 return NULL;
4518 } else { /* cluster */
4519 int cluster = (dlid & 0xf0) >> 4;
4520 int apic = ffs(dlid & 0x0f) - 1;
4521
4522 if ((apic < 0) || (apic > 7) ||
4523 (cluster >= 0xf))
4524 return NULL;
4525 index = (cluster << 2) + apic;
4526 }
4527
Sean Christopherson81811c12018-03-20 12:17:21 -07004528 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004529
4530 return &logical_apic_id_table[index];
4531}
4532
4533static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
4534 bool valid)
4535{
4536 bool flat;
4537 u32 *entry, new_entry;
4538
4539 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4540 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4541 if (!entry)
4542 return -EINVAL;
4543
4544 new_entry = READ_ONCE(*entry);
4545 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4546 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
4547 if (valid)
4548 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4549 else
4550 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4551 WRITE_ONCE(*entry, new_entry);
4552
4553 return 0;
4554}
4555
4556static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4557{
4558 int ret;
4559 struct vcpu_svm *svm = to_svm(vcpu);
4560 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
4561
4562 if (!ldr)
4563 return 1;
4564
4565 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
4566 if (ret && svm->ldr_reg) {
4567 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
4568 svm->ldr_reg = 0;
4569 } else {
4570 svm->ldr_reg = ldr;
4571 }
4572 return ret;
4573}
4574
4575static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4576{
4577 u64 *old, *new;
4578 struct vcpu_svm *svm = to_svm(vcpu);
4579 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
4580 u32 id = (apic_id_reg >> 24) & 0xff;
4581
4582 if (vcpu->vcpu_id == id)
4583 return 0;
4584
4585 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4586 new = avic_get_physical_id_entry(vcpu, id);
4587 if (!new || !old)
4588 return 1;
4589
4590 /* We need to move physical_id_entry to new offset */
4591 *new = *old;
4592 *old = 0ULL;
4593 to_svm(vcpu)->avic_physical_id_cache = new;
4594
4595 /*
4596 * Also update the guest physical APIC ID in the logical
4597 * APIC ID table entry if already setup the LDR.
4598 */
4599 if (svm->ldr_reg)
4600 avic_handle_ldr_update(vcpu);
4601
4602 return 0;
4603}
4604
4605static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
4606{
4607 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson81811c12018-03-20 12:17:21 -07004608 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004609 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
4610 u32 mod = (dfr >> 28) & 0xf;
4611
4612 /*
4613 * We assume that all local APICs are using the same type.
4614 * If this changes, we need to flush the AVIC logical
4615 * APID id table.
4616 */
Sean Christopherson81811c12018-03-20 12:17:21 -07004617 if (kvm_svm->ldr_mode == mod)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004618 return 0;
4619
Sean Christopherson81811c12018-03-20 12:17:21 -07004620 clear_page(page_address(kvm_svm->avic_logical_id_table_page));
4621 kvm_svm->ldr_mode = mod;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004622
4623 if (svm->ldr_reg)
4624 avic_handle_ldr_update(vcpu);
4625 return 0;
4626}
4627
4628static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4629{
4630 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4631 u32 offset = svm->vmcb->control.exit_info_1 &
4632 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4633
4634 switch (offset) {
4635 case APIC_ID:
4636 if (avic_handle_apic_id_update(&svm->vcpu))
4637 return 0;
4638 break;
4639 case APIC_LDR:
4640 if (avic_handle_ldr_update(&svm->vcpu))
4641 return 0;
4642 break;
4643 case APIC_DFR:
4644 avic_handle_dfr_update(&svm->vcpu);
4645 break;
4646 default:
4647 break;
4648 }
4649
4650 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4651
4652 return 1;
4653}
4654
4655static bool is_avic_unaccelerated_access_trap(u32 offset)
4656{
4657 bool ret = false;
4658
4659 switch (offset) {
4660 case APIC_ID:
4661 case APIC_EOI:
4662 case APIC_RRR:
4663 case APIC_LDR:
4664 case APIC_DFR:
4665 case APIC_SPIV:
4666 case APIC_ESR:
4667 case APIC_ICR:
4668 case APIC_LVTT:
4669 case APIC_LVTTHMR:
4670 case APIC_LVTPC:
4671 case APIC_LVT0:
4672 case APIC_LVT1:
4673 case APIC_LVTERR:
4674 case APIC_TMICT:
4675 case APIC_TDCR:
4676 ret = true;
4677 break;
4678 default:
4679 break;
4680 }
4681 return ret;
4682}
4683
4684static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4685{
4686 int ret = 0;
4687 u32 offset = svm->vmcb->control.exit_info_1 &
4688 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4689 u32 vector = svm->vmcb->control.exit_info_2 &
4690 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4691 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4692 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4693 bool trap = is_avic_unaccelerated_access_trap(offset);
4694
4695 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4696 trap, write, vector);
4697 if (trap) {
4698 /* Handling Trap */
4699 WARN_ONCE(!write, "svm: Handling trap read.\n");
4700 ret = avic_unaccel_trap_write(svm);
4701 } else {
4702 /* Handling Fault */
4703 ret = (emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
4704 }
4705
4706 return ret;
4707}
4708
Mathias Krause09941fb2012-08-30 01:30:20 +02004709static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004710 [SVM_EXIT_READ_CR0] = cr_interception,
4711 [SVM_EXIT_READ_CR3] = cr_interception,
4712 [SVM_EXIT_READ_CR4] = cr_interception,
4713 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004714 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004715 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004716 [SVM_EXIT_WRITE_CR3] = cr_interception,
4717 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004718 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004719 [SVM_EXIT_READ_DR0] = dr_interception,
4720 [SVM_EXIT_READ_DR1] = dr_interception,
4721 [SVM_EXIT_READ_DR2] = dr_interception,
4722 [SVM_EXIT_READ_DR3] = dr_interception,
4723 [SVM_EXIT_READ_DR4] = dr_interception,
4724 [SVM_EXIT_READ_DR5] = dr_interception,
4725 [SVM_EXIT_READ_DR6] = dr_interception,
4726 [SVM_EXIT_READ_DR7] = dr_interception,
4727 [SVM_EXIT_WRITE_DR0] = dr_interception,
4728 [SVM_EXIT_WRITE_DR1] = dr_interception,
4729 [SVM_EXIT_WRITE_DR2] = dr_interception,
4730 [SVM_EXIT_WRITE_DR3] = dr_interception,
4731 [SVM_EXIT_WRITE_DR4] = dr_interception,
4732 [SVM_EXIT_WRITE_DR5] = dr_interception,
4733 [SVM_EXIT_WRITE_DR6] = dr_interception,
4734 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004735 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4736 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004737 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004738 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004739 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004740 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004741 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004742 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004743 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004744 [SVM_EXIT_SMI] = nop_on_interception,
4745 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004746 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004747 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004748 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004749 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004750 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004751 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004752 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004753 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004754 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004755 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004756 [SVM_EXIT_MSR] = msr_interception,
4757 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004758 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004759 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004760 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004761 [SVM_EXIT_VMLOAD] = vmload_interception,
4762 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004763 [SVM_EXIT_STGI] = stgi_interception,
4764 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004765 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004766 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004767 [SVM_EXIT_MONITOR] = monitor_interception,
4768 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004769 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004770 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004771 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004772 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4773 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004774};
4775
Joe Perchesae8cc052011-04-24 22:00:50 -07004776static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004777{
4778 struct vcpu_svm *svm = to_svm(vcpu);
4779 struct vmcb_control_area *control = &svm->vmcb->control;
4780 struct vmcb_save_area *save = &svm->vmcb->save;
4781
4782 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004783 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4784 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4785 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4786 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4787 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4788 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4789 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004790 pr_err("%-20s%d\n", "pause filter threshold:",
4791 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004792 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4793 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4794 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4795 pr_err("%-20s%d\n", "asid:", control->asid);
4796 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4797 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4798 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4799 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4800 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4801 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4802 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4803 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4804 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4805 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4806 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004807 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004808 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4809 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004810 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004811 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004812 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4813 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4814 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004815 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004816 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4817 "es:",
4818 save->es.selector, save->es.attrib,
4819 save->es.limit, save->es.base);
4820 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4821 "cs:",
4822 save->cs.selector, save->cs.attrib,
4823 save->cs.limit, save->cs.base);
4824 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4825 "ss:",
4826 save->ss.selector, save->ss.attrib,
4827 save->ss.limit, save->ss.base);
4828 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4829 "ds:",
4830 save->ds.selector, save->ds.attrib,
4831 save->ds.limit, save->ds.base);
4832 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4833 "fs:",
4834 save->fs.selector, save->fs.attrib,
4835 save->fs.limit, save->fs.base);
4836 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4837 "gs:",
4838 save->gs.selector, save->gs.attrib,
4839 save->gs.limit, save->gs.base);
4840 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4841 "gdtr:",
4842 save->gdtr.selector, save->gdtr.attrib,
4843 save->gdtr.limit, save->gdtr.base);
4844 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4845 "ldtr:",
4846 save->ldtr.selector, save->ldtr.attrib,
4847 save->ldtr.limit, save->ldtr.base);
4848 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4849 "idtr:",
4850 save->idtr.selector, save->idtr.attrib,
4851 save->idtr.limit, save->idtr.base);
4852 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4853 "tr:",
4854 save->tr.selector, save->tr.attrib,
4855 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004856 pr_err("cpl: %d efer: %016llx\n",
4857 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004858 pr_err("%-15s %016llx %-13s %016llx\n",
4859 "cr0:", save->cr0, "cr2:", save->cr2);
4860 pr_err("%-15s %016llx %-13s %016llx\n",
4861 "cr3:", save->cr3, "cr4:", save->cr4);
4862 pr_err("%-15s %016llx %-13s %016llx\n",
4863 "dr6:", save->dr6, "dr7:", save->dr7);
4864 pr_err("%-15s %016llx %-13s %016llx\n",
4865 "rip:", save->rip, "rflags:", save->rflags);
4866 pr_err("%-15s %016llx %-13s %016llx\n",
4867 "rsp:", save->rsp, "rax:", save->rax);
4868 pr_err("%-15s %016llx %-13s %016llx\n",
4869 "star:", save->star, "lstar:", save->lstar);
4870 pr_err("%-15s %016llx %-13s %016llx\n",
4871 "cstar:", save->cstar, "sfmask:", save->sfmask);
4872 pr_err("%-15s %016llx %-13s %016llx\n",
4873 "kernel_gs_base:", save->kernel_gs_base,
4874 "sysenter_cs:", save->sysenter_cs);
4875 pr_err("%-15s %016llx %-13s %016llx\n",
4876 "sysenter_esp:", save->sysenter_esp,
4877 "sysenter_eip:", save->sysenter_eip);
4878 pr_err("%-15s %016llx %-13s %016llx\n",
4879 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4880 pr_err("%-15s %016llx %-13s %016llx\n",
4881 "br_from:", save->br_from, "br_to:", save->br_to);
4882 pr_err("%-15s %016llx %-13s %016llx\n",
4883 "excp_from:", save->last_excp_from,
4884 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004885}
4886
Avi Kivity586f9602010-11-18 13:09:54 +02004887static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4888{
4889 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4890
4891 *info1 = control->exit_info_1;
4892 *info2 = control->exit_info_2;
4893}
4894
Avi Kivity851ba692009-08-24 11:10:17 +03004895static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004896{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004897 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004898 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004899 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004900
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004901 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4902
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004903 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004904 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4905 if (npt_enabled)
4906 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004907
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004908 if (unlikely(svm->nested.exit_required)) {
4909 nested_svm_vmexit(svm);
4910 svm->nested.exit_required = false;
4911
4912 return 1;
4913 }
4914
Joerg Roedel20307532010-11-29 17:51:48 +01004915 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004916 int vmexit;
4917
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004918 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4919 svm->vmcb->control.exit_info_1,
4920 svm->vmcb->control.exit_info_2,
4921 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004922 svm->vmcb->control.exit_int_info_err,
4923 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004924
Joerg Roedel410e4d52009-08-07 11:49:44 +02004925 vmexit = nested_svm_exit_special(svm);
4926
4927 if (vmexit == NESTED_EXIT_CONTINUE)
4928 vmexit = nested_svm_exit_handled(svm);
4929
4930 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01004931 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01004932 }
4933
Joerg Roedela5c38322009-08-07 11:49:32 +02004934 svm_complete_interrupts(svm);
4935
Avi Kivity04d2cc72007-09-10 18:10:54 +03004936 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4937 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4938 kvm_run->fail_entry.hardware_entry_failure_reason
4939 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02004940 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4941 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03004942 return 0;
4943 }
4944
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004945 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01004946 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02004947 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4948 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02004949 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08004950 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08004951 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004952 exit_code);
4953
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02004954 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08004955 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04004956 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03004957 kvm_queue_exception(vcpu, UD_VECTOR);
4958 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004959 }
4960
Avi Kivity851ba692009-08-24 11:10:17 +03004961 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004962}
4963
4964static void reload_tss(struct kvm_vcpu *vcpu)
4965{
4966 int cpu = raw_smp_processor_id();
4967
Tejun Heo0fe1e002009-10-29 22:34:14 +09004968 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4969 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004970 load_TR_desc();
4971}
4972
Brijesh Singh70cd94e2017-12-04 10:57:34 -06004973static void pre_sev_run(struct vcpu_svm *svm, int cpu)
4974{
4975 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4976 int asid = sev_get_asid(svm->vcpu.kvm);
4977
4978 /* Assign the asid allocated with this SEV guest */
4979 svm->vmcb->control.asid = asid;
4980
4981 /*
4982 * Flush guest TLB:
4983 *
4984 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
4985 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
4986 */
4987 if (sd->sev_vmcbs[asid] == svm->vmcb &&
4988 svm->last_cpu == cpu)
4989 return;
4990
4991 svm->last_cpu = cpu;
4992 sd->sev_vmcbs[asid] = svm->vmcb;
4993 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
4994 mark_dirty(svm->vmcb, VMCB_ASID);
4995}
4996
Rusty Russelle756fc62007-07-30 20:07:08 +10004997static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004998{
4999 int cpu = raw_smp_processor_id();
5000
Tejun Heo0fe1e002009-10-29 22:34:14 +09005001 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005002
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005003 if (sev_guest(svm->vcpu.kvm))
5004 return pre_sev_run(svm, cpu);
5005
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005006 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005007 if (svm->asid_generation != sd->asid_generation)
5008 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005009}
5010
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005011static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5012{
5013 struct vcpu_svm *svm = to_svm(vcpu);
5014
5015 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5016 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005017 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005018 ++vcpu->stat.nmi_injections;
5019}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005020
Eddie Dong85f455f2007-07-06 12:20:49 +03005021static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005022{
5023 struct vmcb_control_area *control;
5024
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005025 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005026 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005027 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005028 control->int_ctl &= ~V_INTR_PRIO_MASK;
5029 control->int_ctl |= V_IRQ_MASK |
5030 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005031 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005032}
5033
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005034static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005035{
5036 struct vcpu_svm *svm = to_svm(vcpu);
5037
Joerg Roedel2af91942009-08-07 11:49:28 +02005038 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005039
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005040 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5041 ++vcpu->stat.irq_injections;
5042
Alexander Graf219b65d2009-06-15 15:21:25 +02005043 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5044 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005045}
5046
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005047static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5048{
5049 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5050}
5051
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005052static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5053{
5054 struct vcpu_svm *svm = to_svm(vcpu);
5055
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005056 if (svm_nested_virtualize_tpr(vcpu) ||
5057 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005058 return;
5059
Radim Krčmář596f3142014-03-11 19:11:18 +01005060 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5061
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005062 if (irr == -1)
5063 return;
5064
5065 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005066 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005067}
5068
Jim Mattson8d860bb2018-05-09 16:56:05 -04005069static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005070{
5071 return;
5072}
5073
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005074static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005075{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005076 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005077}
5078
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005079static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5080{
5081}
5082
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005083static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005084{
5085}
5086
5087/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005088static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5089{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005090 struct vcpu_svm *svm = to_svm(vcpu);
5091 struct vmcb *vmcb = svm->vmcb;
5092
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005093 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005094 return;
5095
5096 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5097 mark_dirty(vmcb, VMCB_INTR);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005098}
5099
Andrey Smetanin63086302015-11-10 15:36:32 +03005100static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005101{
5102 return;
5103}
5104
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005105static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5106{
5107 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5108 smp_mb__after_atomic();
5109
5110 if (avic_vcpu_is_running(vcpu))
5111 wrmsrl(SVM_AVIC_DOORBELL,
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05005112 kvm_cpu_get_apicid(vcpu->cpu));
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005113 else
5114 kvm_vcpu_wake_up(vcpu);
5115}
5116
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005117static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5118{
5119 unsigned long flags;
5120 struct amd_svm_iommu_ir *cur;
5121
5122 spin_lock_irqsave(&svm->ir_list_lock, flags);
5123 list_for_each_entry(cur, &svm->ir_list, node) {
5124 if (cur->data != pi->ir_data)
5125 continue;
5126 list_del(&cur->node);
5127 kfree(cur);
5128 break;
5129 }
5130 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5131}
5132
5133static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5134{
5135 int ret = 0;
5136 unsigned long flags;
5137 struct amd_svm_iommu_ir *ir;
5138
5139 /**
5140 * In some cases, the existing irte is updaed and re-set,
5141 * so we need to check here if it's already been * added
5142 * to the ir_list.
5143 */
5144 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5145 struct kvm *kvm = svm->vcpu.kvm;
5146 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5147 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5148 struct vcpu_svm *prev_svm;
5149
5150 if (!prev_vcpu) {
5151 ret = -EINVAL;
5152 goto out;
5153 }
5154
5155 prev_svm = to_svm(prev_vcpu);
5156 svm_ir_list_del(prev_svm, pi);
5157 }
5158
5159 /**
5160 * Allocating new amd_iommu_pi_data, which will get
5161 * add to the per-vcpu ir_list.
5162 */
5163 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
5164 if (!ir) {
5165 ret = -ENOMEM;
5166 goto out;
5167 }
5168 ir->data = pi->ir_data;
5169
5170 spin_lock_irqsave(&svm->ir_list_lock, flags);
5171 list_add(&ir->node, &svm->ir_list);
5172 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5173out:
5174 return ret;
5175}
5176
5177/**
5178 * Note:
5179 * The HW cannot support posting multicast/broadcast
5180 * interrupts to a vCPU. So, we still use legacy interrupt
5181 * remapping for these kind of interrupts.
5182 *
5183 * For lowest-priority interrupts, we only support
5184 * those with single CPU as the destination, e.g. user
5185 * configures the interrupts via /proc/irq or uses
5186 * irqbalance to make the interrupts single-CPU.
5187 */
5188static int
5189get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5190 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5191{
5192 struct kvm_lapic_irq irq;
5193 struct kvm_vcpu *vcpu = NULL;
5194
5195 kvm_set_msi_irq(kvm, e, &irq);
5196
5197 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
5198 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5199 __func__, irq.vector);
5200 return -1;
5201 }
5202
5203 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5204 irq.vector);
5205 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005206 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005207 vcpu_info->vector = irq.vector;
5208
5209 return 0;
5210}
5211
5212/*
5213 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5214 *
5215 * @kvm: kvm
5216 * @host_irq: host irq of the interrupt
5217 * @guest_irq: gsi of the interrupt
5218 * @set: set or unset PI
5219 * returns 0 on success, < 0 on failure
5220 */
5221static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5222 uint32_t guest_irq, bool set)
5223{
5224 struct kvm_kernel_irq_routing_entry *e;
5225 struct kvm_irq_routing_table *irq_rt;
5226 int idx, ret = -EINVAL;
5227
5228 if (!kvm_arch_has_assigned_device(kvm) ||
5229 !irq_remapping_cap(IRQ_POSTING_CAP))
5230 return 0;
5231
5232 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5233 __func__, host_irq, guest_irq, set);
5234
5235 idx = srcu_read_lock(&kvm->irq_srcu);
5236 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5237 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5238
5239 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5240 struct vcpu_data vcpu_info;
5241 struct vcpu_svm *svm = NULL;
5242
5243 if (e->type != KVM_IRQ_ROUTING_MSI)
5244 continue;
5245
5246 /**
5247 * Here, we setup with legacy mode in the following cases:
5248 * 1. When cannot target interrupt to a specific vcpu.
5249 * 2. Unsetting posted interrupt.
5250 * 3. APIC virtialization is disabled for the vcpu.
5251 */
5252 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5253 kvm_vcpu_apicv_active(&svm->vcpu)) {
5254 struct amd_iommu_pi_data pi;
5255
5256 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005257 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5258 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005259 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005260 svm->vcpu.vcpu_id);
5261 pi.is_guest_mode = true;
5262 pi.vcpu_data = &vcpu_info;
5263 ret = irq_set_vcpu_affinity(host_irq, &pi);
5264
5265 /**
5266 * Here, we successfully setting up vcpu affinity in
5267 * IOMMU guest mode. Now, we need to store the posted
5268 * interrupt information in a per-vcpu ir_list so that
5269 * we can reference to them directly when we update vcpu
5270 * scheduling information in IOMMU irte.
5271 */
5272 if (!ret && pi.is_guest_mode)
5273 svm_ir_list_add(svm, &pi);
5274 } else {
5275 /* Use legacy mode in IRTE */
5276 struct amd_iommu_pi_data pi;
5277
5278 /**
5279 * Here, pi is used to:
5280 * - Tell IOMMU to use legacy mode for this interrupt.
5281 * - Retrieve ga_tag of prior interrupt remapping data.
5282 */
5283 pi.is_guest_mode = false;
5284 ret = irq_set_vcpu_affinity(host_irq, &pi);
5285
5286 /**
5287 * Check if the posted interrupt was previously
5288 * setup with the guest_mode by checking if the ga_tag
5289 * was cached. If so, we need to clean up the per-vcpu
5290 * ir_list.
5291 */
5292 if (!ret && pi.prev_ga_tag) {
5293 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5294 struct kvm_vcpu *vcpu;
5295
5296 vcpu = kvm_get_vcpu_by_id(kvm, id);
5297 if (vcpu)
5298 svm_ir_list_del(to_svm(vcpu), &pi);
5299 }
5300 }
5301
5302 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005303 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5304 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005305 vcpu_info.pi_desc_addr, set);
5306 }
5307
5308 if (ret < 0) {
5309 pr_err("%s: failed to update PI IRTE\n", __func__);
5310 goto out;
5311 }
5312 }
5313
5314 ret = 0;
5315out:
5316 srcu_read_unlock(&kvm->irq_srcu, idx);
5317 return ret;
5318}
5319
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005320static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005321{
5322 struct vcpu_svm *svm = to_svm(vcpu);
5323 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005324 int ret;
5325 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5326 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5327 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5328
5329 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005330}
5331
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005332static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5333{
5334 struct vcpu_svm *svm = to_svm(vcpu);
5335
5336 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5337}
5338
5339static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5340{
5341 struct vcpu_svm *svm = to_svm(vcpu);
5342
5343 if (masked) {
5344 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005345 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005346 } else {
5347 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005348 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005349 }
5350}
5351
Gleb Natapov78646122009-03-23 12:12:11 +02005352static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5353{
5354 struct vcpu_svm *svm = to_svm(vcpu);
5355 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005356 int ret;
5357
5358 if (!gif_set(svm) ||
5359 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5360 return 0;
5361
Avi Kivityf6e78472010-08-02 15:30:20 +03005362 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005363
Joerg Roedel20307532010-11-29 17:51:48 +01005364 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005365 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5366
5367 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005368}
5369
Jan Kiszkac9a79532014-03-07 20:03:15 +01005370static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005371{
Alexander Graf219b65d2009-06-15 15:21:25 +02005372 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005373
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005374 if (kvm_vcpu_apicv_active(vcpu))
5375 return;
5376
Joerg Roedele0231712010-02-24 18:59:10 +01005377 /*
5378 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5379 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5380 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005381 * we'll get the vintr intercept. However, if the vGIF feature is
5382 * enabled, the STGI interception will not occur. Enable the irq
5383 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005384 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005385 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005386 svm_set_vintr(svm);
5387 svm_inject_irq(svm, 0x0);
5388 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005389}
5390
Jan Kiszkac9a79532014-03-07 20:03:15 +01005391static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005392{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005393 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005394
Gleb Natapov44c11432009-05-11 13:35:52 +03005395 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5396 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005397 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005398
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005399 if (!gif_set(svm)) {
5400 if (vgif_enabled(svm))
5401 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005402 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005403 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005404
5405 if (svm->nested.exit_required)
5406 return; /* we're not going to run the guest yet */
5407
Joerg Roedele0231712010-02-24 18:59:10 +01005408 /*
5409 * Something prevents NMI from been injected. Single step over possible
5410 * problem (IRET or exception injection or interrupt shadow)
5411 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005412 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005413 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005414 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005415}
5416
Izik Eiduscbc94022007-10-25 00:29:55 +02005417static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5418{
5419 return 0;
5420}
5421
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005422static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5423{
5424 return 0;
5425}
5426
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005427static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005428{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005429 struct vcpu_svm *svm = to_svm(vcpu);
5430
5431 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5432 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5433 else
5434 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005435}
5436
Junaid Shahidfaff8752018-06-29 13:10:05 -07005437static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5438{
5439 struct vcpu_svm *svm = to_svm(vcpu);
5440
5441 invlpga(gva, svm->vmcb->control.asid);
5442}
5443
Avi Kivity04d2cc72007-09-10 18:10:54 +03005444static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5445{
5446}
5447
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005448static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5449{
5450 struct vcpu_svm *svm = to_svm(vcpu);
5451
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005452 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005453 return;
5454
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005455 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005456 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005457 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005458 }
5459}
5460
Joerg Roedel649d6862008-04-16 16:51:15 +02005461static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5462{
5463 struct vcpu_svm *svm = to_svm(vcpu);
5464 u64 cr8;
5465
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005466 if (svm_nested_virtualize_tpr(vcpu) ||
5467 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005468 return;
5469
Joerg Roedel649d6862008-04-16 16:51:15 +02005470 cr8 = kvm_get_cr8(vcpu);
5471 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5472 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5473}
5474
Gleb Natapov9222be12009-04-23 17:14:37 +03005475static void svm_complete_interrupts(struct vcpu_svm *svm)
5476{
5477 u8 vector;
5478 int type;
5479 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005480 unsigned int3_injected = svm->int3_injected;
5481
5482 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005483
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005484 /*
5485 * If we've made progress since setting HF_IRET_MASK, we've
5486 * executed an IRET and can allow NMI injection.
5487 */
5488 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5489 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005490 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005491 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5492 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005493
Gleb Natapov9222be12009-04-23 17:14:37 +03005494 svm->vcpu.arch.nmi_injected = false;
5495 kvm_clear_exception_queue(&svm->vcpu);
5496 kvm_clear_interrupt_queue(&svm->vcpu);
5497
5498 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5499 return;
5500
Avi Kivity3842d132010-07-27 12:30:24 +03005501 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5502
Gleb Natapov9222be12009-04-23 17:14:37 +03005503 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5504 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5505
5506 switch (type) {
5507 case SVM_EXITINTINFO_TYPE_NMI:
5508 svm->vcpu.arch.nmi_injected = true;
5509 break;
5510 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005511 /*
5512 * In case of software exceptions, do not reinject the vector,
5513 * but re-execute the instruction instead. Rewind RIP first
5514 * if we emulated INT3 before.
5515 */
5516 if (kvm_exception_is_soft(vector)) {
5517 if (vector == BP_VECTOR && int3_injected &&
5518 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5519 kvm_rip_write(&svm->vcpu,
5520 kvm_rip_read(&svm->vcpu) -
5521 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005522 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005523 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005524 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5525 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005526 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005527
5528 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005529 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005530 break;
5531 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005532 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005533 break;
5534 default:
5535 break;
5536 }
5537}
5538
Avi Kivityb463a6f2010-07-20 15:06:17 +03005539static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5540{
5541 struct vcpu_svm *svm = to_svm(vcpu);
5542 struct vmcb_control_area *control = &svm->vmcb->control;
5543
5544 control->exit_int_info = control->event_inj;
5545 control->exit_int_info_err = control->event_inj_err;
5546 control->event_inj = 0;
5547 svm_complete_interrupts(svm);
5548}
5549
Avi Kivity851ba692009-08-24 11:10:17 +03005550static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005551{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005552 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005553
Joerg Roedel2041a062010-04-22 12:33:08 +02005554 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5555 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5556 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5557
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005558 /*
5559 * A vmexit emulation is required before the vcpu can be executed
5560 * again.
5561 */
5562 if (unlikely(svm->nested.exit_required))
5563 return;
5564
Ladi Proseka12713c2017-06-21 09:07:00 +02005565 /*
5566 * Disable singlestep if we're injecting an interrupt/exception.
5567 * We don't want our modified rflags to be pushed on the stack where
5568 * we might not be able to easily reset them if we disabled NMI
5569 * singlestep later.
5570 */
5571 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5572 /*
5573 * Event injection happens before external interrupts cause a
5574 * vmexit and interrupts are disabled here, so smp_send_reschedule
5575 * is enough to force an immediate vmexit.
5576 */
5577 disable_nmi_singlestep(svm);
5578 smp_send_reschedule(vcpu->cpu);
5579 }
5580
Rusty Russelle756fc62007-07-30 20:07:08 +10005581 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005582
Joerg Roedel649d6862008-04-16 16:51:15 +02005583 sync_lapic_to_cr8(vcpu);
5584
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005585 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005586
Avi Kivity04d2cc72007-09-10 18:10:54 +03005587 clgi();
5588
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005589 /*
5590 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5591 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5592 * is no need to worry about the conditional branch over the wrmsr
5593 * being speculatively taken.
5594 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005595 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005596
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005597 local_irq_enable();
5598
Avi Kivity6aa8b732006-12-10 02:21:36 -08005599 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005600 "push %%" _ASM_BP "; \n\t"
5601 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5602 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5603 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5604 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5605 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5606 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005607#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005608 "mov %c[r8](%[svm]), %%r8 \n\t"
5609 "mov %c[r9](%[svm]), %%r9 \n\t"
5610 "mov %c[r10](%[svm]), %%r10 \n\t"
5611 "mov %c[r11](%[svm]), %%r11 \n\t"
5612 "mov %c[r12](%[svm]), %%r12 \n\t"
5613 "mov %c[r13](%[svm]), %%r13 \n\t"
5614 "mov %c[r14](%[svm]), %%r14 \n\t"
5615 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005616#endif
5617
Avi Kivity6aa8b732006-12-10 02:21:36 -08005618 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005619 "push %%" _ASM_AX " \n\t"
5620 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005621 __ex(SVM_VMLOAD) "\n\t"
5622 __ex(SVM_VMRUN) "\n\t"
5623 __ex(SVM_VMSAVE) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005624 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005625
5626 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005627 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5628 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5629 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5630 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5631 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5632 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005633#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005634 "mov %%r8, %c[r8](%[svm]) \n\t"
5635 "mov %%r9, %c[r9](%[svm]) \n\t"
5636 "mov %%r10, %c[r10](%[svm]) \n\t"
5637 "mov %%r11, %c[r11](%[svm]) \n\t"
5638 "mov %%r12, %c[r12](%[svm]) \n\t"
5639 "mov %%r13, %c[r13](%[svm]) \n\t"
5640 "mov %%r14, %c[r14](%[svm]) \n\t"
5641 "mov %%r15, %c[r15](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005642#endif
Jim Mattson0cb5b302018-01-03 14:31:38 -08005643 /*
5644 * Clear host registers marked as clobbered to prevent
5645 * speculative use.
5646 */
5647 "xor %%" _ASM_BX ", %%" _ASM_BX " \n\t"
5648 "xor %%" _ASM_CX ", %%" _ASM_CX " \n\t"
5649 "xor %%" _ASM_DX ", %%" _ASM_DX " \n\t"
5650 "xor %%" _ASM_SI ", %%" _ASM_SI " \n\t"
5651 "xor %%" _ASM_DI ", %%" _ASM_DI " \n\t"
5652#ifdef CONFIG_X86_64
5653 "xor %%r8, %%r8 \n\t"
5654 "xor %%r9, %%r9 \n\t"
5655 "xor %%r10, %%r10 \n\t"
5656 "xor %%r11, %%r11 \n\t"
5657 "xor %%r12, %%r12 \n\t"
5658 "xor %%r13, %%r13 \n\t"
5659 "xor %%r14, %%r14 \n\t"
5660 "xor %%r15, %%r15 \n\t"
5661#endif
Avi Kivity74547662012-09-16 15:10:59 +03005662 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005663 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005664 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005665 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005666 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5667 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5668 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5669 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5670 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5671 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005672#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005673 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5674 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5675 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5676 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5677 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5678 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5679 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5680 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005681#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005682 : "cc", "memory"
5683#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005684 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005685 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005686#else
5687 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005688#endif
5689 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005690
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005691 /* Eliminate branch target predictions from guest mode */
5692 vmexit_fill_RSB();
5693
5694#ifdef CONFIG_X86_64
5695 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5696#else
5697 loadsegment(fs, svm->host.fs);
5698#ifndef CONFIG_X86_32_LAZY_GS
5699 loadsegment(gs, svm->host.gs);
5700#endif
5701#endif
5702
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005703 /*
5704 * We do not use IBRS in the kernel. If this vCPU has used the
5705 * SPEC_CTRL MSR it may have left it on; save the value and
5706 * turn it off. This is much more efficient than blindly adding
5707 * it to the atomic save/restore list. Especially as the former
5708 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5709 *
5710 * For non-nested case:
5711 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5712 * save it.
5713 *
5714 * For nested case:
5715 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5716 * save it.
5717 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005718 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005719 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005720
Avi Kivity6aa8b732006-12-10 02:21:36 -08005721 reload_tss(vcpu);
5722
Avi Kivity56ba47d2007-11-07 17:14:18 +02005723 local_irq_disable();
5724
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005725 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5726
Avi Kivity13c34e02010-10-21 12:20:31 +02005727 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5728 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5729 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5730 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5731
Joerg Roedel3781c012011-01-14 16:45:02 +01005732 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005733 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005734
5735 stgi();
5736
5737 /* Any pending NMI will happen here */
5738
5739 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005740 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005741
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005742 sync_cr8_to_lapic(vcpu);
5743
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005744 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005745
Joerg Roedel38e5e922010-12-03 15:25:16 +01005746 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5747
Gleb Natapov631bc482010-10-14 11:22:52 +02005748 /* if exit due to PF check for async PF */
5749 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005750 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005751
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005752 if (npt_enabled) {
5753 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5754 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5755 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005756
5757 /*
5758 * We need to handle MC intercepts here before the vcpu has a chance to
5759 * change the physical cpu
5760 */
5761 if (unlikely(svm->vmcb->control.exit_code ==
5762 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5763 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005764
5765 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005766}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005767STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005768
Avi Kivity6aa8b732006-12-10 02:21:36 -08005769static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5770{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005771 struct vcpu_svm *svm = to_svm(vcpu);
5772
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005773 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005774 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005775}
5776
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005777static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5778{
5779 struct vcpu_svm *svm = to_svm(vcpu);
5780
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005781 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005782 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005783
5784 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005785 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005786 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005787}
5788
Avi Kivity6aa8b732006-12-10 02:21:36 -08005789static int is_disabled(void)
5790{
Joerg Roedel6031a612007-06-22 12:29:50 +03005791 u64 vm_cr;
5792
5793 rdmsrl(MSR_VM_CR, vm_cr);
5794 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5795 return 1;
5796
Avi Kivity6aa8b732006-12-10 02:21:36 -08005797 return 0;
5798}
5799
Ingo Molnar102d8322007-02-19 14:37:47 +02005800static void
5801svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5802{
5803 /*
5804 * Patch in the VMMCALL instruction:
5805 */
5806 hypercall[0] = 0x0f;
5807 hypercall[1] = 0x01;
5808 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005809}
5810
Yang, Sheng002c7f72007-07-31 14:23:01 +03005811static void svm_check_processor_compat(void *rtn)
5812{
5813 *(int *)rtn = 0;
5814}
5815
Avi Kivity774ead32007-12-26 13:57:04 +02005816static bool svm_cpu_has_accelerated_tpr(void)
5817{
5818 return false;
5819}
5820
Tom Lendackybc226f02018-05-10 22:06:39 +02005821static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005822{
5823 return true;
5824}
5825
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005826static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5827{
5828 return 0;
5829}
5830
Sheng Yang0e851882009-12-18 16:48:46 +08005831static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5832{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005833 struct vcpu_svm *svm = to_svm(vcpu);
5834
5835 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005836 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005837
5838 if (!kvm_vcpu_apicv_active(vcpu))
5839 return;
5840
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005841 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005842}
5843
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005844static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5845{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005846 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005847 case 0x1:
5848 if (avic)
5849 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5850 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005851 case 0x80000001:
5852 if (nested)
5853 entry->ecx |= (1 << 2); /* Set SVM bit */
5854 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005855 case 0x8000000A:
5856 entry->eax = 1; /* SVM revision 1 */
5857 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5858 ASID emulation to nested SVM */
5859 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005860 entry->edx = 0; /* Per default do not support any
5861 additional features */
5862
5863 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005864 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005865 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005866
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005867 /* Support NPT for the guest if enabled */
5868 if (npt_enabled)
5869 entry->edx |= SVM_FEATURE_NPT;
5870
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005871 break;
Brijesh Singh8765d752017-12-04 10:57:25 -06005872 case 0x8000001F:
5873 /* Support memory encryption cpuid if host supports it */
5874 if (boot_cpu_has(X86_FEATURE_SEV))
5875 cpuid(0x8000001f, &entry->eax, &entry->ebx,
5876 &entry->ecx, &entry->edx);
5877
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005878 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005879}
5880
Sheng Yang17cc3932010-01-05 19:02:27 +08005881static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005882{
Sheng Yang17cc3932010-01-05 19:02:27 +08005883 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005884}
5885
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005886static bool svm_rdtscp_supported(void)
5887{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005888 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005889}
5890
Mao, Junjiead756a12012-07-02 01:18:48 +00005891static bool svm_invpcid_supported(void)
5892{
5893 return false;
5894}
5895
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005896static bool svm_mpx_supported(void)
5897{
5898 return false;
5899}
5900
Wanpeng Li55412b22014-12-02 19:21:30 +08005901static bool svm_xsaves_supported(void)
5902{
5903 return false;
5904}
5905
Paolo Bonzini66336ca2016-07-12 10:36:41 +02005906static bool svm_umip_emulated(void)
5907{
5908 return false;
5909}
5910
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005911static bool svm_has_wbinvd_exit(void)
5912{
5913 return true;
5914}
5915
Joerg Roedel80612522011-04-04 12:39:33 +02005916#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005917 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005918#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005919 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005920#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005921 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005922
Mathias Krause09941fb2012-08-30 01:30:20 +02005923static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005924 u32 exit_code;
5925 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005926} x86_intercept_map[] = {
5927 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5928 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5929 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5930 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5931 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02005932 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5933 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02005934 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5935 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5936 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5937 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5938 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5939 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5940 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5941 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02005942 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
5943 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
5944 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
5945 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
5946 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
5947 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
5948 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
5949 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005950 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
5951 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
5952 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02005953 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
5954 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
5955 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
5956 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
5957 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
5958 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
5959 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
5960 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
5961 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02005962 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
5963 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
5964 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
5965 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
5966 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
5967 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
5968 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02005969 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
5970 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
5971 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
5972 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005973};
5974
Joerg Roedel80612522011-04-04 12:39:33 +02005975#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005976#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005977#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005978
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005979static int svm_check_intercept(struct kvm_vcpu *vcpu,
5980 struct x86_instruction_info *info,
5981 enum x86_intercept_stage stage)
5982{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005983 struct vcpu_svm *svm = to_svm(vcpu);
5984 int vmexit, ret = X86EMUL_CONTINUE;
5985 struct __x86_intercept icpt_info;
5986 struct vmcb *vmcb = svm->vmcb;
5987
5988 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
5989 goto out;
5990
5991 icpt_info = x86_intercept_map[info->intercept];
5992
Avi Kivity40e19b52011-04-21 12:35:41 +03005993 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005994 goto out;
5995
5996 switch (icpt_info.exit_code) {
5997 case SVM_EXIT_READ_CR0:
5998 if (info->intercept == x86_intercept_cr_read)
5999 icpt_info.exit_code += info->modrm_reg;
6000 break;
6001 case SVM_EXIT_WRITE_CR0: {
6002 unsigned long cr0, val;
6003 u64 intercept;
6004
6005 if (info->intercept == x86_intercept_cr_write)
6006 icpt_info.exit_code += info->modrm_reg;
6007
Jan Kiszka62baf442014-06-29 21:55:53 +02006008 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6009 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006010 break;
6011
6012 intercept = svm->nested.intercept;
6013
6014 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6015 break;
6016
6017 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6018 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6019
6020 if (info->intercept == x86_intercept_lmsw) {
6021 cr0 &= 0xfUL;
6022 val &= 0xfUL;
6023 /* lmsw can't clear PE - catch this here */
6024 if (cr0 & X86_CR0_PE)
6025 val |= X86_CR0_PE;
6026 }
6027
6028 if (cr0 ^ val)
6029 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6030
6031 break;
6032 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006033 case SVM_EXIT_READ_DR0:
6034 case SVM_EXIT_WRITE_DR0:
6035 icpt_info.exit_code += info->modrm_reg;
6036 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006037 case SVM_EXIT_MSR:
6038 if (info->intercept == x86_intercept_wrmsr)
6039 vmcb->control.exit_info_1 = 1;
6040 else
6041 vmcb->control.exit_info_1 = 0;
6042 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006043 case SVM_EXIT_PAUSE:
6044 /*
6045 * We get this for NOP only, but pause
6046 * is rep not, check this here
6047 */
6048 if (info->rep_prefix != REPE_PREFIX)
6049 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006050 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006051 case SVM_EXIT_IOIO: {
6052 u64 exit_info;
6053 u32 bytes;
6054
Joerg Roedelf6511932011-04-04 12:39:35 +02006055 if (info->intercept == x86_intercept_in ||
6056 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006057 exit_info = ((info->src_val & 0xffff) << 16) |
6058 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006059 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006060 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006061 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006062 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006063 }
6064
6065 if (info->intercept == x86_intercept_outs ||
6066 info->intercept == x86_intercept_ins)
6067 exit_info |= SVM_IOIO_STR_MASK;
6068
6069 if (info->rep_prefix)
6070 exit_info |= SVM_IOIO_REP_MASK;
6071
6072 bytes = min(bytes, 4u);
6073
6074 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6075
6076 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6077
6078 vmcb->control.exit_info_1 = exit_info;
6079 vmcb->control.exit_info_2 = info->next_rip;
6080
6081 break;
6082 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006083 default:
6084 break;
6085 }
6086
Bandan Dasf1047652015-06-11 02:05:33 -04006087 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6088 if (static_cpu_has(X86_FEATURE_NRIPS))
6089 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006090 vmcb->control.exit_code = icpt_info.exit_code;
6091 vmexit = nested_svm_exit_handled(svm);
6092
6093 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6094 : X86EMUL_CONTINUE;
6095
6096out:
6097 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006098}
6099
Yang Zhanga547c6d2013-04-11 19:25:10 +08006100static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
6101{
6102 local_irq_enable();
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006103 /*
6104 * We must have an instruction with interrupts enabled, so
6105 * the timer interrupt isn't delayed by the interrupt shadow.
6106 */
6107 asm("nop");
6108 local_irq_disable();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006109}
6110
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006111static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6112{
Babu Moger8566ac82018-03-16 16:37:26 -04006113 if (pause_filter_thresh)
6114 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006115}
6116
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006117static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6118{
6119 if (avic_handle_apic_id_update(vcpu) != 0)
6120 return;
6121 if (avic_handle_dfr_update(vcpu) != 0)
6122 return;
6123 avic_handle_ldr_update(vcpu);
6124}
6125
Borislav Petkov74f16902017-03-26 23:51:24 +02006126static void svm_setup_mce(struct kvm_vcpu *vcpu)
6127{
6128 /* [63:9] are reserved. */
6129 vcpu->arch.mcg_cap &= 0x1ff;
6130}
6131
Ladi Prosek72d7b372017-10-11 16:54:41 +02006132static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6133{
Ladi Prosek05cade72017-10-11 16:54:45 +02006134 struct vcpu_svm *svm = to_svm(vcpu);
6135
6136 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6137 if (!gif_set(svm))
6138 return 0;
6139
6140 if (is_guest_mode(&svm->vcpu) &&
6141 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6142 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6143 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6144 svm->nested.exit_required = true;
6145 return 0;
6146 }
6147
Ladi Prosek72d7b372017-10-11 16:54:41 +02006148 return 1;
6149}
6150
Ladi Prosek0234bf82017-10-11 16:54:40 +02006151static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6152{
Ladi Prosek05cade72017-10-11 16:54:45 +02006153 struct vcpu_svm *svm = to_svm(vcpu);
6154 int ret;
6155
6156 if (is_guest_mode(vcpu)) {
6157 /* FED8h - SVM Guest */
6158 put_smstate(u64, smstate, 0x7ed8, 1);
6159 /* FEE0h - SVM Guest VMCB Physical Address */
6160 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6161
6162 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6163 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6164 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6165
6166 ret = nested_svm_vmexit(svm);
6167 if (ret)
6168 return ret;
6169 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006170 return 0;
6171}
6172
6173static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
6174{
Ladi Prosek05cade72017-10-11 16:54:45 +02006175 struct vcpu_svm *svm = to_svm(vcpu);
6176 struct vmcb *nested_vmcb;
6177 struct page *page;
6178 struct {
6179 u64 guest;
6180 u64 vmcb;
6181 } svm_state_save;
6182 int ret;
6183
6184 ret = kvm_vcpu_read_guest(vcpu, smbase + 0xfed8, &svm_state_save,
6185 sizeof(svm_state_save));
6186 if (ret)
6187 return ret;
6188
6189 if (svm_state_save.guest) {
6190 vcpu->arch.hflags &= ~HF_SMM_MASK;
6191 nested_vmcb = nested_svm_map(svm, svm_state_save.vmcb, &page);
6192 if (nested_vmcb)
6193 enter_svm_guest_mode(svm, svm_state_save.vmcb, nested_vmcb, page);
6194 else
6195 ret = 1;
6196 vcpu->arch.hflags |= HF_SMM_MASK;
6197 }
6198 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006199}
6200
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006201static int enable_smi_window(struct kvm_vcpu *vcpu)
6202{
6203 struct vcpu_svm *svm = to_svm(vcpu);
6204
6205 if (!gif_set(svm)) {
6206 if (vgif_enabled(svm))
6207 set_intercept(svm, INTERCEPT_STGI);
6208 /* STGI will cause a vm exit */
6209 return 1;
6210 }
6211 return 0;
6212}
6213
Brijesh Singh1654efc2017-12-04 10:57:34 -06006214static int sev_asid_new(void)
6215{
6216 int pos;
6217
6218 /*
6219 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6220 */
6221 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
6222 if (pos >= max_sev_asid)
6223 return -EBUSY;
6224
6225 set_bit(pos, sev_asid_bitmap);
6226 return pos + 1;
6227}
6228
6229static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6230{
Sean Christopherson81811c12018-03-20 12:17:21 -07006231 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006232 int asid, ret;
6233
6234 ret = -EBUSY;
6235 asid = sev_asid_new();
6236 if (asid < 0)
6237 return ret;
6238
6239 ret = sev_platform_init(&argp->error);
6240 if (ret)
6241 goto e_free;
6242
6243 sev->active = true;
6244 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006245 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006246
6247 return 0;
6248
6249e_free:
6250 __sev_asid_free(asid);
6251 return ret;
6252}
6253
Brijesh Singh59414c92017-12-04 10:57:35 -06006254static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6255{
6256 struct sev_data_activate *data;
6257 int asid = sev_get_asid(kvm);
6258 int ret;
6259
6260 wbinvd_on_all_cpus();
6261
6262 ret = sev_guest_df_flush(error);
6263 if (ret)
6264 return ret;
6265
6266 data = kzalloc(sizeof(*data), GFP_KERNEL);
6267 if (!data)
6268 return -ENOMEM;
6269
6270 /* activate ASID on the given handle */
6271 data->handle = handle;
6272 data->asid = asid;
6273 ret = sev_guest_activate(data, error);
6274 kfree(data);
6275
6276 return ret;
6277}
6278
Brijesh Singh89c50582017-12-04 10:57:35 -06006279static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006280{
6281 struct fd f;
6282 int ret;
6283
6284 f = fdget(fd);
6285 if (!f.file)
6286 return -EBADF;
6287
6288 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6289
6290 fdput(f);
6291 return ret;
6292}
6293
Brijesh Singh89c50582017-12-04 10:57:35 -06006294static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6295{
Sean Christopherson81811c12018-03-20 12:17:21 -07006296 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006297
6298 return __sev_issue_cmd(sev->fd, id, data, error);
6299}
6300
Brijesh Singh59414c92017-12-04 10:57:35 -06006301static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6302{
Sean Christopherson81811c12018-03-20 12:17:21 -07006303 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006304 struct sev_data_launch_start *start;
6305 struct kvm_sev_launch_start params;
6306 void *dh_blob, *session_blob;
6307 int *error = &argp->error;
6308 int ret;
6309
6310 if (!sev_guest(kvm))
6311 return -ENOTTY;
6312
6313 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6314 return -EFAULT;
6315
6316 start = kzalloc(sizeof(*start), GFP_KERNEL);
6317 if (!start)
6318 return -ENOMEM;
6319
6320 dh_blob = NULL;
6321 if (params.dh_uaddr) {
6322 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6323 if (IS_ERR(dh_blob)) {
6324 ret = PTR_ERR(dh_blob);
6325 goto e_free;
6326 }
6327
6328 start->dh_cert_address = __sme_set(__pa(dh_blob));
6329 start->dh_cert_len = params.dh_len;
6330 }
6331
6332 session_blob = NULL;
6333 if (params.session_uaddr) {
6334 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6335 if (IS_ERR(session_blob)) {
6336 ret = PTR_ERR(session_blob);
6337 goto e_free_dh;
6338 }
6339
6340 start->session_address = __sme_set(__pa(session_blob));
6341 start->session_len = params.session_len;
6342 }
6343
6344 start->handle = params.handle;
6345 start->policy = params.policy;
6346
6347 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006348 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006349 if (ret)
6350 goto e_free_session;
6351
6352 /* Bind ASID to this guest */
6353 ret = sev_bind_asid(kvm, start->handle, error);
6354 if (ret)
6355 goto e_free_session;
6356
6357 /* return handle to userspace */
6358 params.handle = start->handle;
6359 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6360 sev_unbind_asid(kvm, start->handle);
6361 ret = -EFAULT;
6362 goto e_free_session;
6363 }
6364
6365 sev->handle = start->handle;
6366 sev->fd = argp->sev_fd;
6367
6368e_free_session:
6369 kfree(session_blob);
6370e_free_dh:
6371 kfree(dh_blob);
6372e_free:
6373 kfree(start);
6374 return ret;
6375}
6376
Brijesh Singh89c50582017-12-04 10:57:35 -06006377static int get_num_contig_pages(int idx, struct page **inpages,
6378 unsigned long npages)
6379{
6380 unsigned long paddr, next_paddr;
6381 int i = idx + 1, pages = 1;
6382
6383 /* find the number of contiguous pages starting from idx */
6384 paddr = __sme_page_pa(inpages[idx]);
6385 while (i < npages) {
6386 next_paddr = __sme_page_pa(inpages[i++]);
6387 if ((paddr + PAGE_SIZE) == next_paddr) {
6388 pages++;
6389 paddr = next_paddr;
6390 continue;
6391 }
6392 break;
6393 }
6394
6395 return pages;
6396}
6397
6398static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6399{
6400 unsigned long vaddr, vaddr_end, next_vaddr, npages, size;
Sean Christopherson81811c12018-03-20 12:17:21 -07006401 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006402 struct kvm_sev_launch_update_data params;
6403 struct sev_data_launch_update_data *data;
6404 struct page **inpages;
6405 int i, ret, pages;
6406
6407 if (!sev_guest(kvm))
6408 return -ENOTTY;
6409
6410 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6411 return -EFAULT;
6412
6413 data = kzalloc(sizeof(*data), GFP_KERNEL);
6414 if (!data)
6415 return -ENOMEM;
6416
6417 vaddr = params.uaddr;
6418 size = params.len;
6419 vaddr_end = vaddr + size;
6420
6421 /* Lock the user memory. */
6422 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6423 if (!inpages) {
6424 ret = -ENOMEM;
6425 goto e_free;
6426 }
6427
6428 /*
6429 * The LAUNCH_UPDATE command will perform in-place encryption of the
6430 * memory content (i.e it will write the same memory region with C=1).
6431 * It's possible that the cache may contain the data with C=0, i.e.,
6432 * unencrypted so invalidate it first.
6433 */
6434 sev_clflush_pages(inpages, npages);
6435
6436 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6437 int offset, len;
6438
6439 /*
6440 * If the user buffer is not page-aligned, calculate the offset
6441 * within the page.
6442 */
6443 offset = vaddr & (PAGE_SIZE - 1);
6444
6445 /* Calculate the number of pages that can be encrypted in one go. */
6446 pages = get_num_contig_pages(i, inpages, npages);
6447
6448 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6449
6450 data->handle = sev->handle;
6451 data->len = len;
6452 data->address = __sme_page_pa(inpages[i]) + offset;
6453 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6454 if (ret)
6455 goto e_unpin;
6456
6457 size -= len;
6458 next_vaddr = vaddr + len;
6459 }
6460
6461e_unpin:
6462 /* content of memory is updated, mark pages dirty */
6463 for (i = 0; i < npages; i++) {
6464 set_page_dirty_lock(inpages[i]);
6465 mark_page_accessed(inpages[i]);
6466 }
6467 /* unlock the user pages */
6468 sev_unpin_memory(kvm, inpages, npages);
6469e_free:
6470 kfree(data);
6471 return ret;
6472}
6473
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006474static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6475{
Brijesh Singh3e233382018-02-23 12:36:50 -06006476 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006477 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006478 struct sev_data_launch_measure *data;
6479 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006480 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006481 void *blob = NULL;
6482 int ret;
6483
6484 if (!sev_guest(kvm))
6485 return -ENOTTY;
6486
Brijesh Singh3e233382018-02-23 12:36:50 -06006487 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006488 return -EFAULT;
6489
6490 data = kzalloc(sizeof(*data), GFP_KERNEL);
6491 if (!data)
6492 return -ENOMEM;
6493
6494 /* User wants to query the blob length */
6495 if (!params.len)
6496 goto cmd;
6497
Brijesh Singh3e233382018-02-23 12:36:50 -06006498 p = (void __user *)(uintptr_t)params.uaddr;
6499 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006500 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6501 ret = -EINVAL;
6502 goto e_free;
6503 }
6504
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006505 ret = -ENOMEM;
6506 blob = kmalloc(params.len, GFP_KERNEL);
6507 if (!blob)
6508 goto e_free;
6509
6510 data->address = __psp_pa(blob);
6511 data->len = params.len;
6512 }
6513
6514cmd:
6515 data->handle = sev->handle;
6516 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6517
6518 /*
6519 * If we query the session length, FW responded with expected data.
6520 */
6521 if (!params.len)
6522 goto done;
6523
6524 if (ret)
6525 goto e_free_blob;
6526
6527 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006528 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006529 ret = -EFAULT;
6530 }
6531
6532done:
6533 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006534 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006535 ret = -EFAULT;
6536e_free_blob:
6537 kfree(blob);
6538e_free:
6539 kfree(data);
6540 return ret;
6541}
6542
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006543static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6544{
Sean Christopherson81811c12018-03-20 12:17:21 -07006545 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006546 struct sev_data_launch_finish *data;
6547 int ret;
6548
6549 if (!sev_guest(kvm))
6550 return -ENOTTY;
6551
6552 data = kzalloc(sizeof(*data), GFP_KERNEL);
6553 if (!data)
6554 return -ENOMEM;
6555
6556 data->handle = sev->handle;
6557 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6558
6559 kfree(data);
6560 return ret;
6561}
6562
Brijesh Singh255d9e72017-12-04 10:57:37 -06006563static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6564{
Sean Christopherson81811c12018-03-20 12:17:21 -07006565 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006566 struct kvm_sev_guest_status params;
6567 struct sev_data_guest_status *data;
6568 int ret;
6569
6570 if (!sev_guest(kvm))
6571 return -ENOTTY;
6572
6573 data = kzalloc(sizeof(*data), GFP_KERNEL);
6574 if (!data)
6575 return -ENOMEM;
6576
6577 data->handle = sev->handle;
6578 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6579 if (ret)
6580 goto e_free;
6581
6582 params.policy = data->policy;
6583 params.state = data->state;
6584 params.handle = data->handle;
6585
6586 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6587 ret = -EFAULT;
6588e_free:
6589 kfree(data);
6590 return ret;
6591}
6592
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006593static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6594 unsigned long dst, int size,
6595 int *error, bool enc)
6596{
Sean Christopherson81811c12018-03-20 12:17:21 -07006597 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006598 struct sev_data_dbg *data;
6599 int ret;
6600
6601 data = kzalloc(sizeof(*data), GFP_KERNEL);
6602 if (!data)
6603 return -ENOMEM;
6604
6605 data->handle = sev->handle;
6606 data->dst_addr = dst;
6607 data->src_addr = src;
6608 data->len = size;
6609
6610 ret = sev_issue_cmd(kvm,
6611 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6612 data, error);
6613 kfree(data);
6614 return ret;
6615}
6616
6617static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6618 unsigned long dst_paddr, int sz, int *err)
6619{
6620 int offset;
6621
6622 /*
6623 * Its safe to read more than we are asked, caller should ensure that
6624 * destination has enough space.
6625 */
6626 src_paddr = round_down(src_paddr, 16);
6627 offset = src_paddr & 15;
6628 sz = round_up(sz + offset, 16);
6629
6630 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6631}
6632
6633static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6634 unsigned long __user dst_uaddr,
6635 unsigned long dst_paddr,
6636 int size, int *err)
6637{
6638 struct page *tpage = NULL;
6639 int ret, offset;
6640
6641 /* if inputs are not 16-byte then use intermediate buffer */
6642 if (!IS_ALIGNED(dst_paddr, 16) ||
6643 !IS_ALIGNED(paddr, 16) ||
6644 !IS_ALIGNED(size, 16)) {
6645 tpage = (void *)alloc_page(GFP_KERNEL);
6646 if (!tpage)
6647 return -ENOMEM;
6648
6649 dst_paddr = __sme_page_pa(tpage);
6650 }
6651
6652 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6653 if (ret)
6654 goto e_free;
6655
6656 if (tpage) {
6657 offset = paddr & 15;
6658 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6659 page_address(tpage) + offset, size))
6660 ret = -EFAULT;
6661 }
6662
6663e_free:
6664 if (tpage)
6665 __free_page(tpage);
6666
6667 return ret;
6668}
6669
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006670static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6671 unsigned long __user vaddr,
6672 unsigned long dst_paddr,
6673 unsigned long __user dst_vaddr,
6674 int size, int *error)
6675{
6676 struct page *src_tpage = NULL;
6677 struct page *dst_tpage = NULL;
6678 int ret, len = size;
6679
6680 /* If source buffer is not aligned then use an intermediate buffer */
6681 if (!IS_ALIGNED(vaddr, 16)) {
6682 src_tpage = alloc_page(GFP_KERNEL);
6683 if (!src_tpage)
6684 return -ENOMEM;
6685
6686 if (copy_from_user(page_address(src_tpage),
6687 (void __user *)(uintptr_t)vaddr, size)) {
6688 __free_page(src_tpage);
6689 return -EFAULT;
6690 }
6691
6692 paddr = __sme_page_pa(src_tpage);
6693 }
6694
6695 /*
6696 * If destination buffer or length is not aligned then do read-modify-write:
6697 * - decrypt destination in an intermediate buffer
6698 * - copy the source buffer in an intermediate buffer
6699 * - use the intermediate buffer as source buffer
6700 */
6701 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6702 int dst_offset;
6703
6704 dst_tpage = alloc_page(GFP_KERNEL);
6705 if (!dst_tpage) {
6706 ret = -ENOMEM;
6707 goto e_free;
6708 }
6709
6710 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6711 __sme_page_pa(dst_tpage), size, error);
6712 if (ret)
6713 goto e_free;
6714
6715 /*
6716 * If source is kernel buffer then use memcpy() otherwise
6717 * copy_from_user().
6718 */
6719 dst_offset = dst_paddr & 15;
6720
6721 if (src_tpage)
6722 memcpy(page_address(dst_tpage) + dst_offset,
6723 page_address(src_tpage), size);
6724 else {
6725 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6726 (void __user *)(uintptr_t)vaddr, size)) {
6727 ret = -EFAULT;
6728 goto e_free;
6729 }
6730 }
6731
6732 paddr = __sme_page_pa(dst_tpage);
6733 dst_paddr = round_down(dst_paddr, 16);
6734 len = round_up(size, 16);
6735 }
6736
6737 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6738
6739e_free:
6740 if (src_tpage)
6741 __free_page(src_tpage);
6742 if (dst_tpage)
6743 __free_page(dst_tpage);
6744 return ret;
6745}
6746
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006747static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6748{
6749 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006750 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006751 struct page **src_p, **dst_p;
6752 struct kvm_sev_dbg debug;
6753 unsigned long n;
6754 int ret, size;
6755
6756 if (!sev_guest(kvm))
6757 return -ENOTTY;
6758
6759 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6760 return -EFAULT;
6761
6762 vaddr = debug.src_uaddr;
6763 size = debug.len;
6764 vaddr_end = vaddr + size;
6765 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006766
6767 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6768 int len, s_off, d_off;
6769
6770 /* lock userspace source and destination page */
6771 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6772 if (!src_p)
6773 return -EFAULT;
6774
6775 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6776 if (!dst_p) {
6777 sev_unpin_memory(kvm, src_p, n);
6778 return -EFAULT;
6779 }
6780
6781 /*
6782 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6783 * memory content (i.e it will write the same memory region with C=1).
6784 * It's possible that the cache may contain the data with C=0, i.e.,
6785 * unencrypted so invalidate it first.
6786 */
6787 sev_clflush_pages(src_p, 1);
6788 sev_clflush_pages(dst_p, 1);
6789
6790 /*
6791 * Since user buffer may not be page aligned, calculate the
6792 * offset within the page.
6793 */
6794 s_off = vaddr & ~PAGE_MASK;
6795 d_off = dst_vaddr & ~PAGE_MASK;
6796 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6797
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006798 if (dec)
6799 ret = __sev_dbg_decrypt_user(kvm,
6800 __sme_page_pa(src_p[0]) + s_off,
6801 dst_vaddr,
6802 __sme_page_pa(dst_p[0]) + d_off,
6803 len, &argp->error);
6804 else
6805 ret = __sev_dbg_encrypt_user(kvm,
6806 __sme_page_pa(src_p[0]) + s_off,
6807 vaddr,
6808 __sme_page_pa(dst_p[0]) + d_off,
6809 dst_vaddr,
6810 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006811
6812 sev_unpin_memory(kvm, src_p, 1);
6813 sev_unpin_memory(kvm, dst_p, 1);
6814
6815 if (ret)
6816 goto err;
6817
6818 next_vaddr = vaddr + len;
6819 dst_vaddr = dst_vaddr + len;
6820 size -= len;
6821 }
6822err:
6823 return ret;
6824}
6825
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006826static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6827{
Sean Christopherson81811c12018-03-20 12:17:21 -07006828 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006829 struct sev_data_launch_secret *data;
6830 struct kvm_sev_launch_secret params;
6831 struct page **pages;
6832 void *blob, *hdr;
6833 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006834 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006835
6836 if (!sev_guest(kvm))
6837 return -ENOTTY;
6838
6839 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6840 return -EFAULT;
6841
6842 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
6843 if (!pages)
6844 return -ENOMEM;
6845
6846 /*
6847 * The secret must be copied into contiguous memory region, lets verify
6848 * that userspace memory pages are contiguous before we issue command.
6849 */
6850 if (get_num_contig_pages(0, pages, n) != n) {
6851 ret = -EINVAL;
6852 goto e_unpin_memory;
6853 }
6854
6855 ret = -ENOMEM;
6856 data = kzalloc(sizeof(*data), GFP_KERNEL);
6857 if (!data)
6858 goto e_unpin_memory;
6859
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006860 offset = params.guest_uaddr & (PAGE_SIZE - 1);
6861 data->guest_address = __sme_page_pa(pages[0]) + offset;
6862 data->guest_len = params.guest_len;
6863
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006864 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
6865 if (IS_ERR(blob)) {
6866 ret = PTR_ERR(blob);
6867 goto e_free;
6868 }
6869
6870 data->trans_address = __psp_pa(blob);
6871 data->trans_len = params.trans_len;
6872
6873 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
6874 if (IS_ERR(hdr)) {
6875 ret = PTR_ERR(hdr);
6876 goto e_free_blob;
6877 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006878 data->hdr_address = __psp_pa(hdr);
6879 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006880
6881 data->handle = sev->handle;
6882 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
6883
6884 kfree(hdr);
6885
6886e_free_blob:
6887 kfree(blob);
6888e_free:
6889 kfree(data);
6890e_unpin_memory:
6891 sev_unpin_memory(kvm, pages, n);
6892 return ret;
6893}
6894
Brijesh Singh1654efc2017-12-04 10:57:34 -06006895static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
6896{
6897 struct kvm_sev_cmd sev_cmd;
6898 int r;
6899
6900 if (!svm_sev_enabled())
6901 return -ENOTTY;
6902
6903 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
6904 return -EFAULT;
6905
6906 mutex_lock(&kvm->lock);
6907
6908 switch (sev_cmd.id) {
6909 case KVM_SEV_INIT:
6910 r = sev_guest_init(kvm, &sev_cmd);
6911 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06006912 case KVM_SEV_LAUNCH_START:
6913 r = sev_launch_start(kvm, &sev_cmd);
6914 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06006915 case KVM_SEV_LAUNCH_UPDATE_DATA:
6916 r = sev_launch_update_data(kvm, &sev_cmd);
6917 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006918 case KVM_SEV_LAUNCH_MEASURE:
6919 r = sev_launch_measure(kvm, &sev_cmd);
6920 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006921 case KVM_SEV_LAUNCH_FINISH:
6922 r = sev_launch_finish(kvm, &sev_cmd);
6923 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006924 case KVM_SEV_GUEST_STATUS:
6925 r = sev_guest_status(kvm, &sev_cmd);
6926 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006927 case KVM_SEV_DBG_DECRYPT:
6928 r = sev_dbg_crypt(kvm, &sev_cmd, true);
6929 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006930 case KVM_SEV_DBG_ENCRYPT:
6931 r = sev_dbg_crypt(kvm, &sev_cmd, false);
6932 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006933 case KVM_SEV_LAUNCH_SECRET:
6934 r = sev_launch_secret(kvm, &sev_cmd);
6935 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006936 default:
6937 r = -EINVAL;
6938 goto out;
6939 }
6940
6941 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
6942 r = -EFAULT;
6943
6944out:
6945 mutex_unlock(&kvm->lock);
6946 return r;
6947}
6948
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006949static int svm_register_enc_region(struct kvm *kvm,
6950 struct kvm_enc_region *range)
6951{
Sean Christopherson81811c12018-03-20 12:17:21 -07006952 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006953 struct enc_region *region;
6954 int ret = 0;
6955
6956 if (!sev_guest(kvm))
6957 return -ENOTTY;
6958
Dan Carpenter86bf20c2018-05-19 09:01:36 +03006959 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
6960 return -EINVAL;
6961
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006962 region = kzalloc(sizeof(*region), GFP_KERNEL);
6963 if (!region)
6964 return -ENOMEM;
6965
6966 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
6967 if (!region->pages) {
6968 ret = -ENOMEM;
6969 goto e_free;
6970 }
6971
6972 /*
6973 * The guest may change the memory encryption attribute from C=0 -> C=1
6974 * or vice versa for this memory range. Lets make sure caches are
6975 * flushed to ensure that guest data gets written into memory with
6976 * correct C-bit.
6977 */
6978 sev_clflush_pages(region->pages, region->npages);
6979
6980 region->uaddr = range->addr;
6981 region->size = range->size;
6982
6983 mutex_lock(&kvm->lock);
6984 list_add_tail(&region->list, &sev->regions_list);
6985 mutex_unlock(&kvm->lock);
6986
6987 return ret;
6988
6989e_free:
6990 kfree(region);
6991 return ret;
6992}
6993
6994static struct enc_region *
6995find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
6996{
Sean Christopherson81811c12018-03-20 12:17:21 -07006997 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006998 struct list_head *head = &sev->regions_list;
6999 struct enc_region *i;
7000
7001 list_for_each_entry(i, head, list) {
7002 if (i->uaddr == range->addr &&
7003 i->size == range->size)
7004 return i;
7005 }
7006
7007 return NULL;
7008}
7009
7010
7011static int svm_unregister_enc_region(struct kvm *kvm,
7012 struct kvm_enc_region *range)
7013{
7014 struct enc_region *region;
7015 int ret;
7016
7017 mutex_lock(&kvm->lock);
7018
7019 if (!sev_guest(kvm)) {
7020 ret = -ENOTTY;
7021 goto failed;
7022 }
7023
7024 region = find_enc_region(kvm, range);
7025 if (!region) {
7026 ret = -EINVAL;
7027 goto failed;
7028 }
7029
7030 __unregister_enc_region_locked(kvm, region);
7031
7032 mutex_unlock(&kvm->lock);
7033 return 0;
7034
7035failed:
7036 mutex_unlock(&kvm->lock);
7037 return ret;
7038}
7039
Kees Cook404f6aa2016-08-08 16:29:06 -07007040static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007041 .cpu_has_kvm_support = has_svm,
7042 .disabled_by_bios = is_disabled,
7043 .hardware_setup = svm_hardware_setup,
7044 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007045 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007046 .hardware_enable = svm_hardware_enable,
7047 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007048 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02007049 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007050
7051 .vcpu_create = svm_create_vcpu,
7052 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007053 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007054
Sean Christopherson434a1e92018-03-20 12:17:18 -07007055 .vm_alloc = svm_vm_alloc,
7056 .vm_free = svm_vm_free,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007057 .vm_init = avic_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007058 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007059
Avi Kivity04d2cc72007-09-10 18:10:54 +03007060 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007061 .vcpu_load = svm_vcpu_load,
7062 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007063 .vcpu_blocking = svm_vcpu_blocking,
7064 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007065
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007066 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007067 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007068 .get_msr = svm_get_msr,
7069 .set_msr = svm_set_msr,
7070 .get_segment_base = svm_get_segment_base,
7071 .get_segment = svm_get_segment,
7072 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007073 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007074 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007075 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007076 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007077 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007078 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007079 .set_cr3 = svm_set_cr3,
7080 .set_cr4 = svm_set_cr4,
7081 .set_efer = svm_set_efer,
7082 .get_idt = svm_get_idt,
7083 .set_idt = svm_set_idt,
7084 .get_gdt = svm_get_gdt,
7085 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007086 .get_dr6 = svm_get_dr6,
7087 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007088 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007089 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007090 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007091 .get_rflags = svm_get_rflags,
7092 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007093
Avi Kivity6aa8b732006-12-10 02:21:36 -08007094 .tlb_flush = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007095 .tlb_flush_gva = svm_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007096
Avi Kivity6aa8b732006-12-10 02:21:36 -08007097 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007098 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007099 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007100 .set_interrupt_shadow = svm_set_interrupt_shadow,
7101 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007102 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007103 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007104 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007105 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007106 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007107 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007108 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007109 .get_nmi_mask = svm_get_nmi_mask,
7110 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007111 .enable_nmi_window = enable_nmi_window,
7112 .enable_irq_window = enable_irq_window,
7113 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007114 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007115 .get_enable_apicv = svm_get_enable_apicv,
7116 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007117 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007118 .hwapic_irr_update = svm_hwapic_irr_update,
7119 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007120 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007121 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007122
7123 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007124 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007125 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007126 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007127
Avi Kivity586f9602010-11-18 13:09:54 +02007128 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007129
Sheng Yang17cc3932010-01-05 19:02:27 +08007130 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007131
7132 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007133
7134 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007135 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007136 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007137 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007138 .umip_emulated = svm_umip_emulated,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007139
7140 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007141
7142 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007143
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007144 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007145 .write_tsc_offset = svm_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007146
7147 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007148
7149 .check_intercept = svm_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +08007150 .handle_external_intr = svm_handle_external_intr,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007151
7152 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007153
7154 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007155 .deliver_posted_interrupt = svm_deliver_avic_intr,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007156 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007157 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007158
Ladi Prosek72d7b372017-10-11 16:54:41 +02007159 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007160 .pre_enter_smm = svm_pre_enter_smm,
7161 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007162 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007163
7164 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007165 .mem_enc_reg_region = svm_register_enc_region,
7166 .mem_enc_unreg_region = svm_unregister_enc_region,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007167};
7168
7169static int __init svm_init(void)
7170{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007171 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007172 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007173}
7174
7175static void __exit svm_exit(void)
7176{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007177 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007178}
7179
7180module_init(svm_init)
7181module_exit(svm_exit)