blob: de21d5c5168b865d6fb0e66363329a91c5d0aaff [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>
David Woodhouse117cc7a2018-01-12 11:11:27 +000052#include <asm/nospec-branch.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;
216
Avi Kivity6c8166a2009-05-31 18:15:37 +0300217 u32 *msrpm;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300218
Avi Kivitybd3d1ec2011-02-03 15:29:52 +0200219 ulong nmi_iret_rip;
220
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200221 struct nested_state nested;
Jan Kiszka6be7d302009-10-18 13:24:54 +0200222
223 bool nmi_singlestep;
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200224 u64 nmi_singlestep_guest_rflags;
Jan Kiszka66b71382010-02-23 17:47:56 +0100225
226 unsigned int3_injected;
227 unsigned long int3_rip;
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100228
Joerg Roedel6092d3d2015-10-14 15:10:54 +0200229 /* cached guest cpuid flags for faster access */
230 bool nrips_enabled : 1;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500231
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500232 u32 ldr_reg;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500233 struct page *avic_backing_page;
234 u64 *avic_physical_id_cache;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -0500235 bool avic_is_running;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500236
237 /*
238 * Per-vcpu list of struct amd_svm_iommu_ir:
239 * This is used mainly to store interrupt remapping information used
240 * when update the vcpu affinity. This avoids the need to scan for
241 * IRTE and try to match ga_tag in the IOMMU driver.
242 */
243 struct list_head ir_list;
244 spinlock_t ir_list_lock;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600245
246 /* which host CPU was used for running this vcpu */
247 unsigned int last_cpu;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500248};
249
250/*
251 * This is a wrapper of struct amd_iommu_ir_data.
252 */
253struct amd_svm_iommu_ir {
254 struct list_head node; /* Used by SVM for per-vcpu ir_list */
255 void *data; /* Storing pointer to struct amd_ir_data */
Avi Kivity6c8166a2009-05-31 18:15:37 +0300256};
257
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500258#define AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK (0xFF)
259#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
260
261#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
262#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
263#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
264#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
265
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100266static DEFINE_PER_CPU(u64, current_tsc_ratio);
267#define TSC_RATIO_DEFAULT 0x0100000000ULL
268
Joerg Roedel455716f2010-03-01 15:34:35 +0100269#define MSR_INVALID 0xffffffffU
270
Mathias Krause09941fb2012-08-30 01:30:20 +0200271static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100272 u32 index; /* Index of the MSR */
273 bool always; /* True if intercept is always on */
274} direct_access_msrs[] = {
Brian Gerst8c065852010-07-17 09:03:26 -0400275 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100276 { .index = MSR_IA32_SYSENTER_CS, .always = true },
277#ifdef CONFIG_X86_64
278 { .index = MSR_GS_BASE, .always = true },
279 { .index = MSR_FS_BASE, .always = true },
280 { .index = MSR_KERNEL_GS_BASE, .always = true },
281 { .index = MSR_LSTAR, .always = true },
282 { .index = MSR_CSTAR, .always = true },
283 { .index = MSR_SYSCALL_MASK, .always = true },
284#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100285 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100286 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100287 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
288 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
289 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
290 { .index = MSR_IA32_LASTINTTOIP, .always = false },
291 { .index = MSR_INVALID, .always = false },
Avi Kivity6aa8b732006-12-10 02:21:36 -0800292};
293
294/* enable NPT for AMD64 and X86 with PAE */
295#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
296static bool npt_enabled = true;
297#else
Joerg Roedele0231712010-02-24 18:59:10 +0100298static bool npt_enabled;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800299#endif
300
Babu Moger8566ac82018-03-16 16:37:26 -0400301/*
302 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
303 * pause_filter_count: On processors that support Pause filtering(indicated
304 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
305 * count value. On VMRUN this value is loaded into an internal counter.
306 * Each time a pause instruction is executed, this counter is decremented
307 * until it reaches zero at which time a #VMEXIT is generated if pause
308 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
309 * Intercept Filtering for more details.
310 * This also indicate if ple logic enabled.
311 *
312 * pause_filter_thresh: In addition, some processor families support advanced
313 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
314 * the amount of time a guest is allowed to execute in a pause loop.
315 * In this mode, a 16-bit pause filter threshold field is added in the
316 * VMCB. The threshold value is a cycle count that is used to reset the
317 * pause counter. As with simple pause filtering, VMRUN loads the pause
318 * count value from VMCB into an internal counter. Then, on each pause
319 * instruction the hardware checks the elapsed number of cycles since
320 * the most recent pause instruction against the pause filter threshold.
321 * If the elapsed cycle count is greater than the pause filter threshold,
322 * then the internal pause count is reloaded from the VMCB and execution
323 * continues. If the elapsed cycle count is less than the pause filter
324 * threshold, then the internal pause count is decremented. If the count
325 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
326 * triggered. If advanced pause filtering is supported and pause filter
327 * threshold field is set to zero, the filter will operate in the simpler,
328 * count only mode.
329 */
330
331static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
332module_param(pause_filter_thresh, ushort, 0444);
333
334static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
335module_param(pause_filter_count, ushort, 0444);
336
337/* Default doubles per-vcpu window every exit. */
338static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
339module_param(pause_filter_count_grow, ushort, 0444);
340
341/* Default resets per-vcpu window every exit to pause_filter_count. */
342static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
343module_param(pause_filter_count_shrink, ushort, 0444);
344
345/* Default is to compute the maximum so we can never overflow. */
346static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
347module_param(pause_filter_count_max, ushort, 0444);
348
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100349/* allow nested paging (virtualized MMU) for all guests */
350static int npt = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800351module_param(npt, int, S_IRUGO);
352
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100353/* allow nested virtualization in KVM/SVM */
354static int nested = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800355module_param(nested, int, S_IRUGO);
356
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500357/* enable / disable AVIC */
358static int avic;
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500359#ifdef CONFIG_X86_LOCAL_APIC
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500360module_param(avic, int, S_IRUGO);
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500361#endif
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500362
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500363/* enable/disable Virtual VMLOAD VMSAVE */
364static int vls = true;
365module_param(vls, int, 0444);
366
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500367/* enable/disable Virtual GIF */
368static int vgif = true;
369module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500370
Brijesh Singhe9df0942017-12-04 10:57:33 -0600371/* enable/disable SEV support */
372static int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
373module_param(sev, int, 0444);
374
Brijesh Singh7607b712018-02-19 10:14:44 -0600375static u8 rsm_ins_bytes[] = "\x0f\xaa";
376
Paolo Bonzini79a80592015-09-21 07:46:55 +0200377static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -0800378static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa);
Joerg Roedela5c38322009-08-07 11:49:32 +0200379static void svm_complete_interrupts(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800380
Joerg Roedel410e4d52009-08-07 11:49:44 +0200381static int nested_svm_exit_handled(struct vcpu_svm *svm);
Joerg Roedelb8e88bc2010-02-19 16:23:02 +0100382static int nested_svm_intercept(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800383static int nested_svm_vmexit(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800384static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
385 bool has_error_code, u32 error_code);
386
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100387enum {
Joerg Roedel116a0a22010-12-03 11:45:49 +0100388 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
389 pause filter count */
Joerg Roedelf56838e2010-12-03 11:45:50 +0100390 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
Joerg Roedeld48086d2010-12-03 11:45:51 +0100391 VMCB_ASID, /* ASID */
Joerg Roedeldecdbf62010-12-03 11:45:52 +0100392 VMCB_INTR, /* int_ctl, int_vector */
Joerg Roedelb2747162010-12-03 11:45:53 +0100393 VMCB_NPT, /* npt_en, nCR3, gPAT */
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100394 VMCB_CR, /* CR0, CR3, CR4, EFER */
Joerg Roedel72214b92010-12-03 11:45:55 +0100395 VMCB_DR, /* DR6, DR7 */
Joerg Roedel17a703c2010-12-03 11:45:56 +0100396 VMCB_DT, /* GDT, IDT */
Joerg Roedel060d0c92010-12-03 11:45:57 +0100397 VMCB_SEG, /* CS, DS, SS, ES, CPL */
Joerg Roedel0574dec2010-12-03 11:45:58 +0100398 VMCB_CR2, /* CR2 only */
Joerg Roedelb53ba3f2010-12-03 11:45:59 +0100399 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500400 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
401 * AVIC PHYSICAL_TABLE pointer,
402 * AVIC LOGICAL_TABLE pointer
403 */
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100404 VMCB_DIRTY_MAX,
405};
406
Joerg Roedel0574dec2010-12-03 11:45:58 +0100407/* TPR and CR2 are always written before VMRUN */
408#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100409
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500410#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
411
Brijesh Singhed3cd232017-12-04 10:57:32 -0600412static unsigned int max_sev_asid;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600413static unsigned int min_sev_asid;
414static unsigned long *sev_asid_bitmap;
Brijesh Singh89c50582017-12-04 10:57:35 -0600415#define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
Brijesh Singh1654efc2017-12-04 10:57:34 -0600416
Brijesh Singh1e80fdc2017-12-04 10:57:38 -0600417struct enc_region {
418 struct list_head list;
419 unsigned long npages;
420 struct page **pages;
421 unsigned long uaddr;
422 unsigned long size;
423};
424
Sean Christopherson81811c12018-03-20 12:17:21 -0700425
426static inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
427{
428 return container_of(kvm, struct kvm_svm, kvm);
429}
430
Brijesh Singh1654efc2017-12-04 10:57:34 -0600431static inline bool svm_sev_enabled(void)
432{
433 return max_sev_asid;
434}
435
436static inline bool sev_guest(struct kvm *kvm)
437{
Sean Christopherson81811c12018-03-20 12:17:21 -0700438 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600439
440 return sev->active;
441}
Brijesh Singhed3cd232017-12-04 10:57:32 -0600442
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600443static inline int sev_get_asid(struct kvm *kvm)
444{
Sean Christopherson81811c12018-03-20 12:17:21 -0700445 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600446
447 return sev->asid;
448}
449
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100450static inline void mark_all_dirty(struct vmcb *vmcb)
451{
452 vmcb->control.clean = 0;
453}
454
455static inline void mark_all_clean(struct vmcb *vmcb)
456{
457 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
458 & ~VMCB_ALWAYS_DIRTY_MASK;
459}
460
461static inline void mark_dirty(struct vmcb *vmcb, int bit)
462{
463 vmcb->control.clean &= ~(1 << bit);
464}
465
Avi Kivity6aa8b732006-12-10 02:21:36 -0800466static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
467{
468 return container_of(vcpu, struct vcpu_svm, vcpu);
469}
470
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500471static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
472{
473 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
474 mark_dirty(svm->vmcb, VMCB_AVIC);
475}
476
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -0500477static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
478{
479 struct vcpu_svm *svm = to_svm(vcpu);
480 u64 *entry = svm->avic_physical_id_cache;
481
482 if (!entry)
483 return false;
484
485 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
486}
487
Joerg Roedel384c6362010-11-30 18:03:56 +0100488static void recalc_intercepts(struct vcpu_svm *svm)
489{
490 struct vmcb_control_area *c, *h;
491 struct nested_state *g;
492
Joerg Roedel116a0a22010-12-03 11:45:49 +0100493 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
494
Joerg Roedel384c6362010-11-30 18:03:56 +0100495 if (!is_guest_mode(&svm->vcpu))
496 return;
497
498 c = &svm->vmcb->control;
499 h = &svm->nested.hsave->control;
500 g = &svm->nested;
501
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100502 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100503 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Paolo Bonzinibd895252018-01-11 16:55:24 +0100504 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100505 c->intercept = h->intercept | g->intercept;
506}
507
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100508static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
509{
510 if (is_guest_mode(&svm->vcpu))
511 return svm->nested.hsave;
512 else
513 return svm->vmcb;
514}
515
516static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
517{
518 struct vmcb *vmcb = get_host_vmcb(svm);
519
520 vmcb->control.intercept_cr |= (1U << bit);
521
522 recalc_intercepts(svm);
523}
524
525static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
526{
527 struct vmcb *vmcb = get_host_vmcb(svm);
528
529 vmcb->control.intercept_cr &= ~(1U << bit);
530
531 recalc_intercepts(svm);
532}
533
534static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
535{
536 struct vmcb *vmcb = get_host_vmcb(svm);
537
538 return vmcb->control.intercept_cr & (1U << bit);
539}
540
Paolo Bonzini5315c712014-03-03 13:08:29 +0100541static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100542{
543 struct vmcb *vmcb = get_host_vmcb(svm);
544
Paolo Bonzini5315c712014-03-03 13:08:29 +0100545 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
546 | (1 << INTERCEPT_DR1_READ)
547 | (1 << INTERCEPT_DR2_READ)
548 | (1 << INTERCEPT_DR3_READ)
549 | (1 << INTERCEPT_DR4_READ)
550 | (1 << INTERCEPT_DR5_READ)
551 | (1 << INTERCEPT_DR6_READ)
552 | (1 << INTERCEPT_DR7_READ)
553 | (1 << INTERCEPT_DR0_WRITE)
554 | (1 << INTERCEPT_DR1_WRITE)
555 | (1 << INTERCEPT_DR2_WRITE)
556 | (1 << INTERCEPT_DR3_WRITE)
557 | (1 << INTERCEPT_DR4_WRITE)
558 | (1 << INTERCEPT_DR5_WRITE)
559 | (1 << INTERCEPT_DR6_WRITE)
560 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100561
562 recalc_intercepts(svm);
563}
564
Paolo Bonzini5315c712014-03-03 13:08:29 +0100565static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100566{
567 struct vmcb *vmcb = get_host_vmcb(svm);
568
Paolo Bonzini5315c712014-03-03 13:08:29 +0100569 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100570
571 recalc_intercepts(svm);
572}
573
Joerg Roedel18c918c2010-11-30 18:03:59 +0100574static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
575{
576 struct vmcb *vmcb = get_host_vmcb(svm);
577
578 vmcb->control.intercept_exceptions |= (1U << bit);
579
580 recalc_intercepts(svm);
581}
582
583static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
584{
585 struct vmcb *vmcb = get_host_vmcb(svm);
586
587 vmcb->control.intercept_exceptions &= ~(1U << bit);
588
589 recalc_intercepts(svm);
590}
591
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100592static inline void set_intercept(struct vcpu_svm *svm, int bit)
593{
594 struct vmcb *vmcb = get_host_vmcb(svm);
595
596 vmcb->control.intercept |= (1ULL << bit);
597
598 recalc_intercepts(svm);
599}
600
601static inline void clr_intercept(struct vcpu_svm *svm, int bit)
602{
603 struct vmcb *vmcb = get_host_vmcb(svm);
604
605 vmcb->control.intercept &= ~(1ULL << bit);
606
607 recalc_intercepts(svm);
608}
609
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500610static inline bool vgif_enabled(struct vcpu_svm *svm)
611{
612 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
613}
614
Joerg Roedel2af91942009-08-07 11:49:28 +0200615static inline void enable_gif(struct vcpu_svm *svm)
616{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500617 if (vgif_enabled(svm))
618 svm->vmcb->control.int_ctl |= V_GIF_MASK;
619 else
620 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200621}
622
623static inline void disable_gif(struct vcpu_svm *svm)
624{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500625 if (vgif_enabled(svm))
626 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
627 else
628 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200629}
630
631static inline bool gif_set(struct vcpu_svm *svm)
632{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500633 if (vgif_enabled(svm))
634 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
635 else
636 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200637}
638
Avi Kivity6aa8b732006-12-10 02:21:36 -0800639static unsigned long iopm_base;
640
641struct kvm_ldttss_desc {
642 u16 limit0;
643 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100644 unsigned base1:8, type:5, dpl:2, p:1;
645 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800646 u32 base3;
647 u32 zero1;
648} __attribute__((packed));
649
650struct svm_cpu_data {
651 int cpu;
652
Avi Kivity5008fdf2007-04-02 13:05:50 +0300653 u64 asid_generation;
654 u32 max_asid;
655 u32 next_asid;
Brijesh Singh4faefff2017-12-04 10:57:25 -0600656 u32 min_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800657 struct kvm_ldttss_desc *tss_desc;
658
659 struct page *save_area;
Ashok Raj15d45072018-02-01 22:59:43 +0100660 struct vmcb *current_vmcb;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600661
662 /* index = sev_asid, value = vmcb pointer */
663 struct vmcb **sev_vmcbs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800664};
665
666static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
667
668struct svm_init_data {
669 int cpu;
670 int r;
671};
672
Mathias Krause09941fb2012-08-30 01:30:20 +0200673static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800674
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200675#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800676#define MSRS_RANGE_SIZE 2048
677#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
678
Joerg Roedel455716f2010-03-01 15:34:35 +0100679static u32 svm_msrpm_offset(u32 msr)
680{
681 u32 offset;
682 int i;
683
684 for (i = 0; i < NUM_MSR_MAPS; i++) {
685 if (msr < msrpm_ranges[i] ||
686 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
687 continue;
688
689 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
690 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
691
692 /* Now we have the u8 offset - but need the u32 offset */
693 return offset / 4;
694 }
695
696 /* MSR not in any range */
697 return MSR_INVALID;
698}
699
Avi Kivity6aa8b732006-12-10 02:21:36 -0800700#define MAX_INST_SIZE 15
701
Avi Kivity6aa8b732006-12-10 02:21:36 -0800702static inline void clgi(void)
703{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300704 asm volatile (__ex(SVM_CLGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800705}
706
707static inline void stgi(void)
708{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300709 asm volatile (__ex(SVM_STGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800710}
711
712static inline void invlpga(unsigned long addr, u32 asid)
713{
Joerg Roedele0231712010-02-24 18:59:10 +0100714 asm volatile (__ex(SVM_INVLPGA) : : "a"(addr), "c"(asid));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800715}
716
Yu Zhang855feb62017-08-24 20:27:55 +0800717static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200718{
719#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800720 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200721#else
722 return PT32E_ROOT_LEVEL;
723#endif
724}
725
Avi Kivity6aa8b732006-12-10 02:21:36 -0800726static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
727{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000728 vcpu->arch.efer = efer;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100729 if (!npt_enabled && !(efer & EFER_LMA))
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -0600730 efer &= ~EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800731
Alexander Graf9962d032008-11-25 20:17:02 +0100732 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100733 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800734}
735
Avi Kivity6aa8b732006-12-10 02:21:36 -0800736static int is_external_interrupt(u32 info)
737{
738 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
739 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
740}
741
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200742static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400743{
744 struct vcpu_svm *svm = to_svm(vcpu);
745 u32 ret = 0;
746
747 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200748 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
749 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400750}
751
752static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
753{
754 struct vcpu_svm *svm = to_svm(vcpu);
755
756 if (mask == 0)
757 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
758 else
759 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
760
761}
762
Avi Kivity6aa8b732006-12-10 02:21:36 -0800763static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
764{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400765 struct vcpu_svm *svm = to_svm(vcpu);
766
Bandan Dasf1047652015-06-11 02:05:33 -0400767 if (svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200768 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200769 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400770 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200771
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400772 if (!svm->next_rip) {
Andre Przywara51d8b662010-12-21 11:12:02 +0100773 if (emulate_instruction(vcpu, EMULTYPE_SKIP) !=
Gleb Natapovf629cf82009-05-11 13:35:49 +0300774 EMULATE_DONE)
775 printk(KERN_DEBUG "%s: NOP\n", __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800776 return;
777 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300778 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
779 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
780 __func__, kvm_rip_read(vcpu), svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800781
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300782 kvm_rip_write(vcpu, svm->next_rip);
Glauber Costa2809f5d2009-05-12 16:21:05 -0400783 svm_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800784}
785
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700786static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100787{
788 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700789 unsigned nr = vcpu->arch.exception.nr;
790 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700791 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700792 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100793
Joerg Roedele0231712010-02-24 18:59:10 +0100794 /*
795 * If we are within a nested VM we'd better #VMEXIT and let the guest
796 * handle the exception
797 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200798 if (!reinject &&
799 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100800 return;
801
Avi Kivity2a6b20b2010-11-09 16:15:42 +0200802 if (nr == BP_VECTOR && !static_cpu_has(X86_FEATURE_NRIPS)) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100803 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
804
805 /*
806 * For guest debugging where we have to reinject #BP if some
807 * INT3 is guest-owned:
808 * Emulate nRIP by moving RIP forward. Will fail if injection
809 * raises a fault that is not intercepted. Still better than
810 * failing in all cases.
811 */
812 skip_emulated_instruction(&svm->vcpu);
813 rip = kvm_rip_read(&svm->vcpu);
814 svm->int3_rip = rip + svm->vmcb->save.cs.base;
815 svm->int3_injected = rip - old_rip;
816 }
817
Jan Kiszka116a4752010-02-23 17:47:54 +0100818 svm->vmcb->control.event_inj = nr
819 | SVM_EVTINJ_VALID
820 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
821 | SVM_EVTINJ_TYPE_EXEPT;
822 svm->vmcb->control.event_inj_err = error_code;
823}
824
Joerg Roedel67ec6602010-05-17 14:43:35 +0200825static void svm_init_erratum_383(void)
826{
827 u32 low, high;
828 int err;
829 u64 val;
830
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100831 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200832 return;
833
834 /* Use _safe variants to not break nested virtualization */
835 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
836 if (err)
837 return;
838
839 val |= (1ULL << 47);
840
841 low = lower_32_bits(val);
842 high = upper_32_bits(val);
843
844 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
845
846 erratum_383_found = true;
847}
848
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500849static void svm_init_osvw(struct kvm_vcpu *vcpu)
850{
851 /*
852 * Guests should see errata 400 and 415 as fixed (assuming that
853 * HLT and IO instructions are intercepted).
854 */
855 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
856 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
857
858 /*
859 * By increasing VCPU's osvw.length to 3 we are telling the guest that
860 * all osvw.status bits inside that length, including bit 0 (which is
861 * reserved for erratum 298), are valid. However, if host processor's
862 * osvw_len is 0 then osvw_status[0] carries no information. We need to
863 * be conservative here and therefore we tell the guest that erratum 298
864 * is present (because we really don't know).
865 */
866 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
867 vcpu->arch.osvw.status |= 1;
868}
869
Avi Kivity6aa8b732006-12-10 02:21:36 -0800870static int has_svm(void)
871{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200872 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800873
Eduardo Habkost63d11422008-11-17 19:03:20 -0200874 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800875 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800876 return 0;
877 }
878
Avi Kivity6aa8b732006-12-10 02:21:36 -0800879 return 1;
880}
881
Radim Krčmář13a34e02014-08-28 15:13:03 +0200882static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800883{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100884 /* Make sure we clean up behind us */
885 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
886 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
887
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200888 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100889
890 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800891}
892
Radim Krčmář13a34e02014-08-28 15:13:03 +0200893static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800894{
895
Tejun Heo0fe1e002009-10-29 22:34:14 +0900896 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800897 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800898 struct desc_struct *gdt;
899 int me = raw_smp_processor_id();
900
Alexander Graf10474ae2009-09-15 11:37:46 +0200901 rdmsrl(MSR_EFER, efer);
902 if (efer & EFER_SVME)
903 return -EBUSY;
904
Avi Kivity6aa8b732006-12-10 02:21:36 -0800905 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200906 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200907 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800908 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900909 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900910 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200911 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200912 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800913 }
914
Tejun Heo0fe1e002009-10-29 22:34:14 +0900915 sd->asid_generation = 1;
916 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
917 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600918 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919
Thomas Garnier45fc8752017-03-14 10:05:08 -0700920 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900921 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800922
Alexander Graf9962d032008-11-25 20:17:02 +0100923 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800924
Linus Torvaldsd0316552009-12-14 09:58:24 -0800925 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200926
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100927 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
928 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500929 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100930 }
931
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500932
933 /*
934 * Get OSVW bits.
935 *
936 * Note that it is possible to have a system with mixed processor
937 * revisions and therefore different OSVW bits. If bits are not the same
938 * on different processors then choose the worst case (i.e. if erratum
939 * is present on one processor and not on another then assume that the
940 * erratum is present everywhere).
941 */
942 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
943 uint64_t len, status = 0;
944 int err;
945
946 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
947 if (!err)
948 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
949 &err);
950
951 if (err)
952 osvw_status = osvw_len = 0;
953 else {
954 if (len < osvw_len)
955 osvw_len = len;
956 osvw_status |= status;
957 osvw_status &= (1ULL << osvw_len) - 1;
958 }
959 } else
960 osvw_status = osvw_len = 0;
961
Joerg Roedel67ec6602010-05-17 14:43:35 +0200962 svm_init_erratum_383();
963
Joerg Roedel1018faa2012-02-29 14:57:32 +0100964 amd_pmu_enable_virt();
965
Alexander Graf10474ae2009-09-15 11:37:46 +0200966 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800967}
968
Joerg Roedel0da1db752008-07-02 16:02:11 +0200969static void svm_cpu_uninit(int cpu)
970{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900971 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200972
Tejun Heo0fe1e002009-10-29 22:34:14 +0900973 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200974 return;
975
976 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600977 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900978 __free_page(sd->save_area);
979 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200980}
981
Avi Kivity6aa8b732006-12-10 02:21:36 -0800982static int svm_cpu_init(int cpu)
983{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900984 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985 int r;
986
Tejun Heo0fe1e002009-10-29 22:34:14 +0900987 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
988 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800989 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900990 sd->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991 r = -ENOMEM;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600992 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900993 if (!sd->save_area)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994 goto err_1;
995
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600996 if (svm_sev_enabled()) {
997 r = -ENOMEM;
998 sd->sev_vmcbs = kmalloc((max_sev_asid + 1) * sizeof(void *), GFP_KERNEL);
999 if (!sd->sev_vmcbs)
1000 goto err_1;
1001 }
1002
Tejun Heo0fe1e002009-10-29 22:34:14 +09001003 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001004
1005 return 0;
1006
1007err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +09001008 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009 return r;
1010
1011}
1012
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001013static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001014{
1015 int i;
1016
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001017 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1018 if (direct_access_msrs[i].index == index)
1019 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001020
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001021 return false;
1022}
1023
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001024static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1025{
1026 u8 bit_write;
1027 unsigned long tmp;
1028 u32 offset;
1029 u32 *msrpm;
1030
1031 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1032 to_svm(vcpu)->msrpm;
1033
1034 offset = svm_msrpm_offset(msr);
1035 bit_write = 2 * (msr & 0x0f) + 1;
1036 tmp = msrpm[offset];
1037
1038 BUG_ON(offset == MSR_INVALID);
1039
1040 return !!test_bit(bit_write, &tmp);
1041}
1042
Avi Kivity6aa8b732006-12-10 02:21:36 -08001043static void set_msr_interception(u32 *msrpm, unsigned msr,
1044 int read, int write)
1045{
Joerg Roedel455716f2010-03-01 15:34:35 +01001046 u8 bit_read, bit_write;
1047 unsigned long tmp;
1048 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001049
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001050 /*
1051 * If this warning triggers extend the direct_access_msrs list at the
1052 * beginning of the file
1053 */
1054 WARN_ON(!valid_msr_intercept(msr));
1055
Joerg Roedel455716f2010-03-01 15:34:35 +01001056 offset = svm_msrpm_offset(msr);
1057 bit_read = 2 * (msr & 0x0f);
1058 bit_write = 2 * (msr & 0x0f) + 1;
1059 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001060
Joerg Roedel455716f2010-03-01 15:34:35 +01001061 BUG_ON(offset == MSR_INVALID);
1062
1063 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1064 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1065
1066 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001067}
1068
Joerg Roedelf65c2292008-02-13 18:58:46 +01001069static void svm_vcpu_init_msrpm(u32 *msrpm)
1070{
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001071 int i;
1072
Joerg Roedelf65c2292008-02-13 18:58:46 +01001073 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1074
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001075 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1076 if (!direct_access_msrs[i].always)
1077 continue;
1078
1079 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1080 }
Joerg Roedelf65c2292008-02-13 18:58:46 +01001081}
1082
Joerg Roedel323c3d82010-03-01 15:34:37 +01001083static void add_msr_offset(u32 offset)
1084{
1085 int i;
1086
1087 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1088
1089 /* Offset already in list? */
1090 if (msrpm_offsets[i] == offset)
1091 return;
1092
1093 /* Slot used by another offset? */
1094 if (msrpm_offsets[i] != MSR_INVALID)
1095 continue;
1096
1097 /* Add offset to list */
1098 msrpm_offsets[i] = offset;
1099
1100 return;
1101 }
1102
1103 /*
1104 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1105 * increase MSRPM_OFFSETS in this case.
1106 */
1107 BUG();
1108}
1109
1110static void init_msrpm_offsets(void)
1111{
1112 int i;
1113
1114 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1115
1116 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1117 u32 offset;
1118
1119 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1120 BUG_ON(offset == MSR_INVALID);
1121
1122 add_msr_offset(offset);
1123 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001124}
1125
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001126static void svm_enable_lbrv(struct vcpu_svm *svm)
1127{
1128 u32 *msrpm = svm->msrpm;
1129
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001130 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001131 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1132 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1133 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1134 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1135}
1136
1137static void svm_disable_lbrv(struct vcpu_svm *svm)
1138{
1139 u32 *msrpm = svm->msrpm;
1140
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001141 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001142 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
1143 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1144 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1145 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1146}
1147
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001148static void disable_nmi_singlestep(struct vcpu_svm *svm)
1149{
1150 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001151
Ladi Prosekab2f4d732017-06-21 09:06:58 +02001152 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1153 /* Clear our flags if they were not set by the guest */
1154 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1155 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1156 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1157 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1158 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001159}
1160
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001161/* Note:
Sean Christopherson81811c12018-03-20 12:17:21 -07001162 * This hash table is used to map VM_ID to a struct kvm_svm,
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001163 * when handling AMD IOMMU GALOG notification to schedule in
1164 * a particular vCPU.
1165 */
1166#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001167static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001168static u32 next_vm_id = 0;
1169static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001170static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001171
1172/* Note:
1173 * This function is called from IOMMU driver to notify
1174 * SVM to schedule in a particular vCPU of a particular VM.
1175 */
1176static int avic_ga_log_notifier(u32 ga_tag)
1177{
1178 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001179 struct kvm_svm *kvm_svm;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001180 struct kvm_vcpu *vcpu = NULL;
1181 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1182 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1183
1184 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1185
1186 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001187 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1188 if (kvm_svm->avic_vm_id != vm_id)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001189 continue;
Sean Christopherson81811c12018-03-20 12:17:21 -07001190 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001191 break;
1192 }
1193 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1194
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001195 /* Note:
1196 * At this point, the IOMMU should have already set the pending
1197 * bit in the vAPIC backing page. So, we just need to schedule
1198 * in the vcpu.
1199 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001200 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001201 kvm_vcpu_wake_up(vcpu);
1202
1203 return 0;
1204}
1205
Brijesh Singhe9df0942017-12-04 10:57:33 -06001206static __init int sev_hardware_setup(void)
1207{
1208 struct sev_user_data_status *status;
1209 int rc;
1210
1211 /* Maximum number of encrypted guests supported simultaneously */
1212 max_sev_asid = cpuid_ecx(0x8000001F);
1213
1214 if (!max_sev_asid)
1215 return 1;
1216
Brijesh Singh1654efc2017-12-04 10:57:34 -06001217 /* Minimum ASID value that should be used for SEV guest */
1218 min_sev_asid = cpuid_edx(0x8000001F);
1219
1220 /* Initialize SEV ASID bitmap */
1221 sev_asid_bitmap = kcalloc(BITS_TO_LONGS(max_sev_asid),
1222 sizeof(unsigned long), GFP_KERNEL);
1223 if (!sev_asid_bitmap)
1224 return 1;
1225
Brijesh Singhe9df0942017-12-04 10:57:33 -06001226 status = kmalloc(sizeof(*status), GFP_KERNEL);
1227 if (!status)
1228 return 1;
1229
1230 /*
1231 * Check SEV platform status.
1232 *
1233 * PLATFORM_STATUS can be called in any state, if we failed to query
1234 * the PLATFORM status then either PSP firmware does not support SEV
1235 * feature or SEV firmware is dead.
1236 */
1237 rc = sev_platform_status(status, NULL);
1238 if (rc)
1239 goto err;
1240
1241 pr_info("SEV supported\n");
1242
1243err:
1244 kfree(status);
1245 return rc;
1246}
1247
Babu Moger8566ac82018-03-16 16:37:26 -04001248static void grow_ple_window(struct kvm_vcpu *vcpu)
1249{
1250 struct vcpu_svm *svm = to_svm(vcpu);
1251 struct vmcb_control_area *control = &svm->vmcb->control;
1252 int old = control->pause_filter_count;
1253
1254 control->pause_filter_count = __grow_ple_window(old,
1255 pause_filter_count,
1256 pause_filter_count_grow,
1257 pause_filter_count_max);
1258
1259 if (control->pause_filter_count != old)
1260 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1261
1262 trace_kvm_ple_window_grow(vcpu->vcpu_id,
1263 control->pause_filter_count, old);
1264}
1265
1266static void shrink_ple_window(struct kvm_vcpu *vcpu)
1267{
1268 struct vcpu_svm *svm = to_svm(vcpu);
1269 struct vmcb_control_area *control = &svm->vmcb->control;
1270 int old = control->pause_filter_count;
1271
1272 control->pause_filter_count =
1273 __shrink_ple_window(old,
1274 pause_filter_count,
1275 pause_filter_count_shrink,
1276 pause_filter_count);
1277 if (control->pause_filter_count != old)
1278 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1279
1280 trace_kvm_ple_window_shrink(vcpu->vcpu_id,
1281 control->pause_filter_count, old);
1282}
1283
Avi Kivity6aa8b732006-12-10 02:21:36 -08001284static __init int svm_hardware_setup(void)
1285{
1286 int cpu;
1287 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001288 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001289 int r;
1290
Avi Kivity6aa8b732006-12-10 02:21:36 -08001291 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1292
1293 if (!iopm_pages)
1294 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001295
1296 iopm_va = page_address(iopm_pages);
1297 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001298 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1299
Joerg Roedel323c3d82010-03-01 15:34:37 +01001300 init_msrpm_offsets();
1301
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001302 if (boot_cpu_has(X86_FEATURE_NX))
1303 kvm_enable_efer_bits(EFER_NX);
1304
Alexander Graf1b2fd702009-02-02 16:23:51 +01001305 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1306 kvm_enable_efer_bits(EFER_FFXSR);
1307
Joerg Roedel92a1f122011-03-25 09:44:51 +01001308 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001309 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001310 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1311 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001312 }
1313
Babu Moger8566ac82018-03-16 16:37:26 -04001314 /* Check for pause filtering support */
1315 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1316 pause_filter_count = 0;
1317 pause_filter_thresh = 0;
1318 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1319 pause_filter_thresh = 0;
1320 }
1321
Alexander Graf236de052008-11-25 20:17:10 +01001322 if (nested) {
1323 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001324 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001325 }
1326
Brijesh Singhe9df0942017-12-04 10:57:33 -06001327 if (sev) {
1328 if (boot_cpu_has(X86_FEATURE_SEV) &&
1329 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1330 r = sev_hardware_setup();
1331 if (r)
1332 sev = false;
1333 } else {
1334 sev = false;
1335 }
1336 }
1337
Zachary Amsden3230bb42009-09-29 11:38:37 -10001338 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001339 r = svm_cpu_init(cpu);
1340 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001341 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001342 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001343
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001344 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001345 npt_enabled = false;
1346
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001347 if (npt_enabled && !npt) {
1348 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1349 npt_enabled = false;
1350 }
1351
Joerg Roedel18552672008-02-07 13:47:41 +01001352 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001353 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001354 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001355 } else
1356 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001357
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001358 if (avic) {
1359 if (!npt_enabled ||
1360 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001361 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001362 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001363 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001364 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001365
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001366 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1367 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001368 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001369
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001370 if (vls) {
1371 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001372 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001373 !IS_ENABLED(CONFIG_X86_64)) {
1374 vls = false;
1375 } else {
1376 pr_info("Virtual VMLOAD VMSAVE supported\n");
1377 }
1378 }
1379
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001380 if (vgif) {
1381 if (!boot_cpu_has(X86_FEATURE_VGIF))
1382 vgif = false;
1383 else
1384 pr_info("Virtual GIF supported\n");
1385 }
1386
Avi Kivity6aa8b732006-12-10 02:21:36 -08001387 return 0;
1388
Joerg Roedelf65c2292008-02-13 18:58:46 +01001389err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001390 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1391 iopm_base = 0;
1392 return r;
1393}
1394
1395static __exit void svm_hardware_unsetup(void)
1396{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001397 int cpu;
1398
Brijesh Singh1654efc2017-12-04 10:57:34 -06001399 if (svm_sev_enabled())
1400 kfree(sev_asid_bitmap);
1401
Zachary Amsden3230bb42009-09-29 11:38:37 -10001402 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001403 svm_cpu_uninit(cpu);
1404
Avi Kivity6aa8b732006-12-10 02:21:36 -08001405 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001406 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001407}
1408
1409static void init_seg(struct vmcb_seg *seg)
1410{
1411 seg->selector = 0;
1412 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001413 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001414 seg->limit = 0xffff;
1415 seg->base = 0;
1416}
1417
1418static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1419{
1420 seg->selector = 0;
1421 seg->attrib = SVM_SELECTOR_P_MASK | type;
1422 seg->limit = 0xffff;
1423 seg->base = 0;
1424}
1425
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001426static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1427{
1428 struct vcpu_svm *svm = to_svm(vcpu);
1429
1430 if (is_guest_mode(vcpu))
1431 return svm->nested.hsave->control.tsc_offset;
1432
1433 return vcpu->arch.tsc_offset;
1434}
1435
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001436static void svm_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1437{
1438 struct vcpu_svm *svm = to_svm(vcpu);
1439 u64 g_tsc_offset = 0;
1440
Joerg Roedel20307532010-11-29 17:51:48 +01001441 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001442 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001443 g_tsc_offset = svm->vmcb->control.tsc_offset -
1444 svm->nested.hsave->control.tsc_offset;
1445 svm->nested.hsave->control.tsc_offset = offset;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09001446 } else
1447 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1448 svm->vmcb->control.tsc_offset,
1449 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001450
1451 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001452
1453 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001454}
1455
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001456static void avic_init_vmcb(struct vcpu_svm *svm)
1457{
1458 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001459 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001460 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001461 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1462 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001463
1464 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1465 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1466 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1467 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1468 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001469}
1470
Paolo Bonzini56908912015-10-19 11:30:19 +02001471static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001472{
Joerg Roedele6101a92008-02-13 18:58:45 +01001473 struct vmcb_control_area *control = &svm->vmcb->control;
1474 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001475
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001476 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001477
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001478 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1479 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1480 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1481 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1482 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1483 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001484 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1485 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001486
Paolo Bonzini5315c712014-03-03 13:08:29 +01001487 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001488
Joerg Roedel18c918c2010-11-30 18:03:59 +01001489 set_exception_intercept(svm, PF_VECTOR);
1490 set_exception_intercept(svm, UD_VECTOR);
1491 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001492 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001493 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001494 /*
1495 * Guest access to VMware backdoor ports could legitimately
1496 * trigger #GP because of TSS I/O permission bitmap.
1497 * We intercept those #GP and allow access to them anyway
1498 * as VMware does.
1499 */
1500 if (enable_vmware_backdoor)
1501 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001502
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001503 set_intercept(svm, INTERCEPT_INTR);
1504 set_intercept(svm, INTERCEPT_NMI);
1505 set_intercept(svm, INTERCEPT_SMI);
1506 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001507 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001508 set_intercept(svm, INTERCEPT_CPUID);
1509 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001510 set_intercept(svm, INTERCEPT_INVLPG);
1511 set_intercept(svm, INTERCEPT_INVLPGA);
1512 set_intercept(svm, INTERCEPT_IOIO_PROT);
1513 set_intercept(svm, INTERCEPT_MSR_PROT);
1514 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1515 set_intercept(svm, INTERCEPT_SHUTDOWN);
1516 set_intercept(svm, INTERCEPT_VMRUN);
1517 set_intercept(svm, INTERCEPT_VMMCALL);
1518 set_intercept(svm, INTERCEPT_VMLOAD);
1519 set_intercept(svm, INTERCEPT_VMSAVE);
1520 set_intercept(svm, INTERCEPT_STGI);
1521 set_intercept(svm, INTERCEPT_CLGI);
1522 set_intercept(svm, INTERCEPT_SKINIT);
1523 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001524 set_intercept(svm, INTERCEPT_XSETBV);
Brijesh Singh7607b712018-02-19 10:14:44 -06001525 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001526
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001527 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001528 set_intercept(svm, INTERCEPT_MONITOR);
1529 set_intercept(svm, INTERCEPT_MWAIT);
1530 }
1531
Wanpeng Licaa057a2018-03-12 04:53:03 -07001532 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1533 set_intercept(svm, INTERCEPT_HLT);
1534
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001535 control->iopm_base_pa = __sme_set(iopm_base);
1536 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001537 control->int_ctl = V_INTR_MASKING_MASK;
1538
1539 init_seg(&save->es);
1540 init_seg(&save->ss);
1541 init_seg(&save->ds);
1542 init_seg(&save->fs);
1543 init_seg(&save->gs);
1544
1545 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001546 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001547 /* Executable/Readable Code Segment */
1548 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1549 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1550 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001551
1552 save->gdtr.limit = 0xffff;
1553 save->idtr.limit = 0xffff;
1554
1555 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1556 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1557
Paolo Bonzini56908912015-10-19 11:30:19 +02001558 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001559 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001560 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001561 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001562 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563
Joerg Roedele0231712010-02-24 18:59:10 +01001564 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001565 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001566 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001567 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001568 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001569 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001570
Rusty Russell66aee912007-07-17 23:34:16 +10001571 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001572 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001573
1574 if (npt_enabled) {
1575 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001576 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001577 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001578 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001579 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1580 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001581 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001582 save->cr3 = 0;
1583 save->cr4 = 0;
1584 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001585 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001586
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001587 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001588 svm->vcpu.arch.hflags = 0;
1589
Babu Moger8566ac82018-03-16 16:37:26 -04001590 if (pause_filter_count) {
1591 control->pause_filter_count = pause_filter_count;
1592 if (pause_filter_thresh)
1593 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001594 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001595 } else {
1596 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001597 }
1598
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001599 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001600 avic_init_vmcb(svm);
1601
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001602 /*
1603 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1604 * in VMCB and clear intercepts to avoid #VMEXIT.
1605 */
1606 if (vls) {
1607 clr_intercept(svm, INTERCEPT_VMLOAD);
1608 clr_intercept(svm, INTERCEPT_VMSAVE);
1609 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1610 }
1611
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001612 if (vgif) {
1613 clr_intercept(svm, INTERCEPT_STGI);
1614 clr_intercept(svm, INTERCEPT_CLGI);
1615 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1616 }
1617
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001618 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001619 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001620 clr_exception_intercept(svm, UD_VECTOR);
1621 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001622
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001623 mark_all_dirty(svm->vmcb);
1624
Joerg Roedel2af91942009-08-07 11:49:28 +02001625 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001626
1627}
1628
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001629static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1630 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001631{
1632 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001633 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001634
1635 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1636 return NULL;
1637
Sean Christopherson81811c12018-03-20 12:17:21 -07001638 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001639
1640 return &avic_physical_id_table[index];
1641}
1642
1643/**
1644 * Note:
1645 * AVIC hardware walks the nested page table to check permissions,
1646 * but does not use the SPA address specified in the leaf page
1647 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1648 * field of the VMCB. Therefore, we set up the
1649 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1650 */
1651static int avic_init_access_page(struct kvm_vcpu *vcpu)
1652{
1653 struct kvm *kvm = vcpu->kvm;
1654 int ret;
1655
1656 if (kvm->arch.apic_access_page_done)
1657 return 0;
1658
1659 ret = x86_set_memory_region(kvm,
1660 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1661 APIC_DEFAULT_PHYS_BASE,
1662 PAGE_SIZE);
1663 if (ret)
1664 return ret;
1665
1666 kvm->arch.apic_access_page_done = true;
1667 return 0;
1668}
1669
1670static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1671{
1672 int ret;
1673 u64 *entry, new_entry;
1674 int id = vcpu->vcpu_id;
1675 struct vcpu_svm *svm = to_svm(vcpu);
1676
1677 ret = avic_init_access_page(vcpu);
1678 if (ret)
1679 return ret;
1680
1681 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1682 return -EINVAL;
1683
1684 if (!svm->vcpu.arch.apic->regs)
1685 return -EINVAL;
1686
1687 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1688
1689 /* Setting AVIC backing page address in the phy APIC ID table */
1690 entry = avic_get_physical_id_entry(vcpu, id);
1691 if (!entry)
1692 return -EINVAL;
1693
1694 new_entry = READ_ONCE(*entry);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001695 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1696 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1697 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001698 WRITE_ONCE(*entry, new_entry);
1699
1700 svm->avic_physical_id_cache = entry;
1701
1702 return 0;
1703}
1704
Brijesh Singh1654efc2017-12-04 10:57:34 -06001705static void __sev_asid_free(int asid)
1706{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001707 struct svm_cpu_data *sd;
1708 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001709
1710 pos = asid - 1;
1711 clear_bit(pos, sev_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001712
1713 for_each_possible_cpu(cpu) {
1714 sd = per_cpu(svm_data, cpu);
1715 sd->sev_vmcbs[pos] = NULL;
1716 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001717}
1718
1719static void sev_asid_free(struct kvm *kvm)
1720{
Sean Christopherson81811c12018-03-20 12:17:21 -07001721 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001722
1723 __sev_asid_free(sev->asid);
1724}
1725
Brijesh Singh59414c92017-12-04 10:57:35 -06001726static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1727{
1728 struct sev_data_decommission *decommission;
1729 struct sev_data_deactivate *data;
1730
1731 if (!handle)
1732 return;
1733
1734 data = kzalloc(sizeof(*data), GFP_KERNEL);
1735 if (!data)
1736 return;
1737
1738 /* deactivate handle */
1739 data->handle = handle;
1740 sev_guest_deactivate(data, NULL);
1741
1742 wbinvd_on_all_cpus();
1743 sev_guest_df_flush(NULL);
1744 kfree(data);
1745
1746 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1747 if (!decommission)
1748 return;
1749
1750 /* decommission handle */
1751 decommission->handle = handle;
1752 sev_guest_decommission(decommission, NULL);
1753
1754 kfree(decommission);
1755}
1756
Brijesh Singh89c50582017-12-04 10:57:35 -06001757static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1758 unsigned long ulen, unsigned long *n,
1759 int write)
1760{
Sean Christopherson81811c12018-03-20 12:17:21 -07001761 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001762 unsigned long npages, npinned, size;
1763 unsigned long locked, lock_limit;
1764 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001765 unsigned long first, last;
1766
1767 if (ulen == 0 || uaddr + ulen < uaddr)
1768 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001769
1770 /* Calculate number of pages. */
1771 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1772 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1773 npages = (last - first + 1);
1774
1775 locked = sev->pages_locked + npages;
1776 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1777 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1778 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1779 return NULL;
1780 }
1781
1782 /* Avoid using vmalloc for smaller buffers. */
1783 size = npages * sizeof(struct page *);
1784 if (size > PAGE_SIZE)
1785 pages = vmalloc(size);
1786 else
1787 pages = kmalloc(size, GFP_KERNEL);
1788
1789 if (!pages)
1790 return NULL;
1791
1792 /* Pin the user virtual address. */
1793 npinned = get_user_pages_fast(uaddr, npages, write ? FOLL_WRITE : 0, pages);
1794 if (npinned != npages) {
1795 pr_err("SEV: Failure locking %lu pages.\n", npages);
1796 goto err;
1797 }
1798
1799 *n = npages;
1800 sev->pages_locked = locked;
1801
1802 return pages;
1803
1804err:
1805 if (npinned > 0)
1806 release_pages(pages, npinned);
1807
1808 kvfree(pages);
1809 return NULL;
1810}
1811
1812static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1813 unsigned long npages)
1814{
Sean Christopherson81811c12018-03-20 12:17:21 -07001815 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001816
1817 release_pages(pages, npages);
1818 kvfree(pages);
1819 sev->pages_locked -= npages;
1820}
1821
1822static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1823{
1824 uint8_t *page_virtual;
1825 unsigned long i;
1826
1827 if (npages == 0 || pages == NULL)
1828 return;
1829
1830 for (i = 0; i < npages; i++) {
1831 page_virtual = kmap_atomic(pages[i]);
1832 clflush_cache_range(page_virtual, PAGE_SIZE);
1833 kunmap_atomic(page_virtual);
1834 }
1835}
1836
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001837static void __unregister_enc_region_locked(struct kvm *kvm,
1838 struct enc_region *region)
1839{
1840 /*
1841 * The guest may change the memory encryption attribute from C=0 -> C=1
1842 * or vice versa for this memory range. Lets make sure caches are
1843 * flushed to ensure that guest data gets written into memory with
1844 * correct C-bit.
1845 */
1846 sev_clflush_pages(region->pages, region->npages);
1847
1848 sev_unpin_memory(kvm, region->pages, region->npages);
1849 list_del(&region->list);
1850 kfree(region);
1851}
1852
Sean Christopherson434a1e92018-03-20 12:17:18 -07001853static struct kvm *svm_vm_alloc(void)
1854{
Sean Christopherson81811c12018-03-20 12:17:21 -07001855 struct kvm_svm *kvm_svm = kzalloc(sizeof(struct kvm_svm), GFP_KERNEL);
1856 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001857}
1858
1859static void svm_vm_free(struct kvm *kvm)
1860{
Sean Christopherson81811c12018-03-20 12:17:21 -07001861 kfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001862}
1863
Brijesh Singh1654efc2017-12-04 10:57:34 -06001864static void sev_vm_destroy(struct kvm *kvm)
1865{
Sean Christopherson81811c12018-03-20 12:17:21 -07001866 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001867 struct list_head *head = &sev->regions_list;
1868 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001869
Brijesh Singh1654efc2017-12-04 10:57:34 -06001870 if (!sev_guest(kvm))
1871 return;
1872
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001873 mutex_lock(&kvm->lock);
1874
1875 /*
1876 * if userspace was terminated before unregistering the memory regions
1877 * then lets unpin all the registered memory.
1878 */
1879 if (!list_empty(head)) {
1880 list_for_each_safe(pos, q, head) {
1881 __unregister_enc_region_locked(kvm,
1882 list_entry(pos, struct enc_region, list));
1883 }
1884 }
1885
1886 mutex_unlock(&kvm->lock);
1887
Brijesh Singh59414c92017-12-04 10:57:35 -06001888 sev_unbind_asid(kvm, sev->handle);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001889 sev_asid_free(kvm);
1890}
1891
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001892static void avic_vm_destroy(struct kvm *kvm)
1893{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001894 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001895 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001896
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001897 if (!avic)
1898 return;
1899
Sean Christopherson81811c12018-03-20 12:17:21 -07001900 if (kvm_svm->avic_logical_id_table_page)
1901 __free_page(kvm_svm->avic_logical_id_table_page);
1902 if (kvm_svm->avic_physical_id_table_page)
1903 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001904
1905 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001906 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001907 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001908}
1909
Brijesh Singh1654efc2017-12-04 10:57:34 -06001910static void svm_vm_destroy(struct kvm *kvm)
1911{
1912 avic_vm_destroy(kvm);
1913 sev_vm_destroy(kvm);
1914}
1915
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001916static int avic_vm_init(struct kvm *kvm)
1917{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001918 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001919 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07001920 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
1921 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001922 struct page *p_page;
1923 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001924 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001925
1926 if (!avic)
1927 return 0;
1928
1929 /* Allocating physical APIC ID table (4KB) */
1930 p_page = alloc_page(GFP_KERNEL);
1931 if (!p_page)
1932 goto free_avic;
1933
Sean Christopherson81811c12018-03-20 12:17:21 -07001934 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001935 clear_page(page_address(p_page));
1936
1937 /* Allocating logical APIC ID table (4KB) */
1938 l_page = alloc_page(GFP_KERNEL);
1939 if (!l_page)
1940 goto free_avic;
1941
Sean Christopherson81811c12018-03-20 12:17:21 -07001942 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001943 clear_page(page_address(l_page));
1944
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001945 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001946 again:
1947 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1948 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1949 next_vm_id_wrapped = 1;
1950 goto again;
1951 }
1952 /* Is it still in use? Only possible if wrapped at least once */
1953 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07001954 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
1955 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001956 goto again;
1957 }
1958 }
Sean Christopherson81811c12018-03-20 12:17:21 -07001959 kvm_svm->avic_vm_id = vm_id;
1960 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001961 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1962
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001963 return 0;
1964
1965free_avic:
1966 avic_vm_destroy(kvm);
1967 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001968}
1969
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001970static inline int
1971avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001972{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001973 int ret = 0;
1974 unsigned long flags;
1975 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001976 struct vcpu_svm *svm = to_svm(vcpu);
1977
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001978 if (!kvm_arch_has_assigned_device(vcpu->kvm))
1979 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001980
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001981 /*
1982 * Here, we go through the per-vcpu ir_list to update all existing
1983 * interrupt remapping table entry targeting this vcpu.
1984 */
1985 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001986
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001987 if (list_empty(&svm->ir_list))
1988 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001989
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001990 list_for_each_entry(ir, &svm->ir_list, node) {
1991 ret = amd_iommu_update_ga(cpu, r, ir->data);
1992 if (ret)
1993 break;
1994 }
1995out:
1996 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
1997 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001998}
1999
2000static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2001{
2002 u64 entry;
2003 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002004 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002005 struct vcpu_svm *svm = to_svm(vcpu);
2006
2007 if (!kvm_vcpu_apicv_active(vcpu))
2008 return;
2009
2010 if (WARN_ON(h_physical_id >= AVIC_MAX_PHYSICAL_ID_COUNT))
2011 return;
2012
2013 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2014 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2015
2016 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2017 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2018
2019 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2020 if (svm->avic_is_running)
2021 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2022
2023 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002024 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2025 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002026}
2027
2028static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2029{
2030 u64 entry;
2031 struct vcpu_svm *svm = to_svm(vcpu);
2032
2033 if (!kvm_vcpu_apicv_active(vcpu))
2034 return;
2035
2036 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002037 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2038 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2039
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002040 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2041 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002042}
2043
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002044/**
2045 * This function is called during VCPU halt/unhalt.
2046 */
2047static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2048{
2049 struct vcpu_svm *svm = to_svm(vcpu);
2050
2051 svm->avic_is_running = is_run;
2052 if (is_run)
2053 avic_vcpu_load(vcpu, vcpu->cpu);
2054 else
2055 avic_vcpu_put(vcpu);
2056}
2057
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002058static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002059{
2060 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002061 u32 dummy;
2062 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002063
Wanpeng Li518e7b92018-02-28 14:03:31 +08002064 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002065 svm->spec_ctrl = 0;
2066
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002067 if (!init_event) {
2068 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2069 MSR_IA32_APICBASE_ENABLE;
2070 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2071 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2072 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002073 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002074
Yu Zhange911eb32017-08-24 20:27:52 +08002075 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002076 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002077
2078 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2079 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002080}
2081
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002082static int avic_init_vcpu(struct vcpu_svm *svm)
2083{
2084 int ret;
2085
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002086 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002087 return 0;
2088
2089 ret = avic_init_backing_page(&svm->vcpu);
2090 if (ret)
2091 return ret;
2092
2093 INIT_LIST_HEAD(&svm->ir_list);
2094 spin_lock_init(&svm->ir_list_lock);
2095
2096 return ret;
2097}
2098
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002099static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002100{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002101 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002102 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002103 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002104 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002105 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002106 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002107
Rusty Russellc16f8622007-07-30 21:12:19 +10002108 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002109 if (!svm) {
2110 err = -ENOMEM;
2111 goto out;
2112 }
2113
2114 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
2115 if (err)
2116 goto free_svm;
2117
Joerg Roedelf65c2292008-02-13 18:58:46 +01002118 err = -ENOMEM;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002119 page = alloc_page(GFP_KERNEL);
2120 if (!page)
2121 goto uninit;
2122
Joerg Roedelf65c2292008-02-13 18:58:46 +01002123 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2124 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002125 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002126
2127 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2128 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002129 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002130
Alexander Grafb286d5d2008-11-25 20:17:05 +01002131 hsave_page = alloc_page(GFP_KERNEL);
2132 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002133 goto free_page3;
2134
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002135 err = avic_init_vcpu(svm);
2136 if (err)
2137 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002138
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002139 /* We initialize this flag to true to make sure that the is_running
2140 * bit would be set the first time the vcpu is loaded.
2141 */
2142 svm->avic_is_running = true;
2143
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002144 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002145
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002146 svm->msrpm = page_address(msrpm_pages);
2147 svm_vcpu_init_msrpm(svm->msrpm);
2148
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002149 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002150 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002151
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002152 svm->vmcb = page_address(page);
2153 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002154 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002155 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002156 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002157
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002158 svm_init_osvw(&svm->vcpu);
2159
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002160 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08002161
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002162free_page4:
2163 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002164free_page3:
2165 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2166free_page2:
2167 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2168free_page1:
2169 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002170uninit:
2171 kvm_vcpu_uninit(&svm->vcpu);
2172free_svm:
Rusty Russella4770342007-08-01 14:46:11 +10002173 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002174out:
2175 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002176}
2177
2178static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2179{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002180 struct vcpu_svm *svm = to_svm(vcpu);
2181
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002182 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002183 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002184 __free_page(virt_to_page(svm->nested.hsave));
2185 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002186 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10002187 kmem_cache_free(kvm_vcpu_cache, svm);
Ashok Raj15d45072018-02-01 22:59:43 +01002188 /*
2189 * The vmcb page can be recycled, causing a false negative in
2190 * svm_vcpu_load(). So do a full IBPB now.
2191 */
2192 indirect_branch_prediction_barrier();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002193}
2194
Avi Kivity15ad7142007-07-11 18:17:21 +03002195static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002196{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002197 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002198 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002199 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002200
Avi Kivity0cc50642007-03-25 12:07:27 +02002201 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002202 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002203 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002204 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002205
Avi Kivity82ca2d12010-10-21 12:20:34 +02002206#ifdef CONFIG_X86_64
2207 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2208#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002209 savesegment(fs, svm->host.fs);
2210 savesegment(gs, svm->host.gs);
2211 svm->host.ldt = kvm_read_ldt();
2212
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002213 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002214 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002215
Haozhong Zhangad7218832015-10-20 15:39:02 +08002216 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2217 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2218 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2219 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2220 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2221 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002222 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002223 /* This assumes that the kernel never uses MSR_TSC_AUX */
2224 if (static_cpu_has(X86_FEATURE_RDTSCP))
2225 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002226
Ashok Raj15d45072018-02-01 22:59:43 +01002227 if (sd->current_vmcb != svm->vmcb) {
2228 sd->current_vmcb = svm->vmcb;
2229 indirect_branch_prediction_barrier();
2230 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002231 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002232}
2233
2234static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2235{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002236 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002237 int i;
2238
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002239 avic_vcpu_put(vcpu);
2240
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002241 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002242 kvm_load_ldt(svm->host.ldt);
2243#ifdef CONFIG_X86_64
2244 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002245 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002246 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002247#else
Avi Kivity831ca602011-03-08 16:09:51 +02002248#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002249 loadsegment(gs, svm->host.gs);
2250#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002251#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002252 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002253 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002254}
2255
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002256static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2257{
2258 avic_set_running(vcpu, false);
2259}
2260
2261static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2262{
2263 avic_set_running(vcpu, true);
2264}
2265
Avi Kivity6aa8b732006-12-10 02:21:36 -08002266static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2267{
Ladi Prosek9b611742017-06-21 09:06:59 +02002268 struct vcpu_svm *svm = to_svm(vcpu);
2269 unsigned long rflags = svm->vmcb->save.rflags;
2270
2271 if (svm->nmi_singlestep) {
2272 /* Hide our flags if they were not set by the guest */
2273 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2274 rflags &= ~X86_EFLAGS_TF;
2275 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2276 rflags &= ~X86_EFLAGS_RF;
2277 }
2278 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002279}
2280
2281static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2282{
Ladi Prosek9b611742017-06-21 09:06:59 +02002283 if (to_svm(vcpu)->nmi_singlestep)
2284 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2285
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002286 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002287 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002288 * (caused by either a task switch or an inter-privilege IRET),
2289 * so we do not need to update the CPL here.
2290 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002291 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002292}
2293
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002294static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2295{
2296 switch (reg) {
2297 case VCPU_EXREG_PDPTR:
2298 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002299 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002300 break;
2301 default:
2302 BUG();
2303 }
2304}
2305
Alexander Graff0b85052008-11-25 20:17:01 +01002306static void svm_set_vintr(struct vcpu_svm *svm)
2307{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002308 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002309}
2310
2311static void svm_clear_vintr(struct vcpu_svm *svm)
2312{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002313 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002314}
2315
Avi Kivity6aa8b732006-12-10 02:21:36 -08002316static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2317{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002318 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002319
2320 switch (seg) {
2321 case VCPU_SREG_CS: return &save->cs;
2322 case VCPU_SREG_DS: return &save->ds;
2323 case VCPU_SREG_ES: return &save->es;
2324 case VCPU_SREG_FS: return &save->fs;
2325 case VCPU_SREG_GS: return &save->gs;
2326 case VCPU_SREG_SS: return &save->ss;
2327 case VCPU_SREG_TR: return &save->tr;
2328 case VCPU_SREG_LDTR: return &save->ldtr;
2329 }
2330 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002331 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002332}
2333
2334static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2335{
2336 struct vmcb_seg *s = svm_seg(vcpu, seg);
2337
2338 return s->base;
2339}
2340
2341static void svm_get_segment(struct kvm_vcpu *vcpu,
2342 struct kvm_segment *var, int seg)
2343{
2344 struct vmcb_seg *s = svm_seg(vcpu, seg);
2345
2346 var->base = s->base;
2347 var->limit = s->limit;
2348 var->selector = s->selector;
2349 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2350 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2351 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2352 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2353 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2354 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2355 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302356
2357 /*
2358 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2359 * However, the SVM spec states that the G bit is not observed by the
2360 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2361 * So let's synthesize a legal G bit for all segments, this helps
2362 * running KVM nested. It also helps cross-vendor migration, because
2363 * Intel's vmentry has a check on the 'G' bit.
2364 */
2365 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002366
Joerg Roedele0231712010-02-24 18:59:10 +01002367 /*
2368 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002369 * for cross vendor migration purposes by "not present"
2370 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002371 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002372
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002373 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002374 case VCPU_SREG_TR:
2375 /*
2376 * Work around a bug where the busy flag in the tr selector
2377 * isn't exposed
2378 */
Amit Shahc0d09822008-10-27 09:04:18 +00002379 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002380 break;
2381 case VCPU_SREG_DS:
2382 case VCPU_SREG_ES:
2383 case VCPU_SREG_FS:
2384 case VCPU_SREG_GS:
2385 /*
2386 * The accessed bit must always be set in the segment
2387 * descriptor cache, although it can be cleared in the
2388 * descriptor, the cached bit always remains at 1. Since
2389 * Intel has a check on this, set it here to support
2390 * cross-vendor migration.
2391 */
2392 if (!var->unusable)
2393 var->type |= 0x1;
2394 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002395 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002396 /*
2397 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002398 * descriptor is left as 1, although the whole segment has
2399 * been made unusable. Clear it here to pass an Intel VMX
2400 * entry check when cross vendor migrating.
2401 */
2402 if (var->unusable)
2403 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002404 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002405 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002406 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002407 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002408}
2409
Izik Eidus2e4d2652008-03-24 19:38:34 +02002410static int svm_get_cpl(struct kvm_vcpu *vcpu)
2411{
2412 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2413
2414 return save->cpl;
2415}
2416
Gleb Natapov89a27f42010-02-16 10:51:48 +02002417static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002418{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002419 struct vcpu_svm *svm = to_svm(vcpu);
2420
Gleb Natapov89a27f42010-02-16 10:51:48 +02002421 dt->size = svm->vmcb->save.idtr.limit;
2422 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002423}
2424
Gleb Natapov89a27f42010-02-16 10:51:48 +02002425static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002426{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002427 struct vcpu_svm *svm = to_svm(vcpu);
2428
Gleb Natapov89a27f42010-02-16 10:51:48 +02002429 svm->vmcb->save.idtr.limit = dt->size;
2430 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002431 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002432}
2433
Gleb Natapov89a27f42010-02-16 10:51:48 +02002434static void svm_get_gdt(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 dt->size = svm->vmcb->save.gdtr.limit;
2439 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002440}
2441
Gleb Natapov89a27f42010-02-16 10:51:48 +02002442static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002443{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002444 struct vcpu_svm *svm = to_svm(vcpu);
2445
Gleb Natapov89a27f42010-02-16 10:51:48 +02002446 svm->vmcb->save.gdtr.limit = dt->size;
2447 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002448 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002449}
2450
Avi Kivitye8467fd2009-12-29 18:43:06 +02002451static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2452{
2453}
2454
Avi Kivityaff48ba2010-12-05 18:56:11 +02002455static void svm_decache_cr3(struct kvm_vcpu *vcpu)
2456{
2457}
2458
Anthony Liguori25c4c272007-04-27 09:29:21 +03002459static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002460{
2461}
2462
Avi Kivityd2251572010-01-06 10:55:27 +02002463static void update_cr0_intercept(struct vcpu_svm *svm)
2464{
2465 ulong gcr0 = svm->vcpu.arch.cr0;
2466 u64 *hcr0 = &svm->vmcb->save.cr0;
2467
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002468 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2469 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002470
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002471 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002472
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002473 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002474 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2475 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002476 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002477 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2478 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002479 }
2480}
2481
Avi Kivity6aa8b732006-12-10 02:21:36 -08002482static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2483{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002484 struct vcpu_svm *svm = to_svm(vcpu);
2485
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002486#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002487 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002488 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002489 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002490 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002491 }
2492
Mike Dayd77c26f2007-10-08 09:02:08 -04002493 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002494 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002495 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002496 }
2497 }
2498#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002499 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002500
2501 if (!npt_enabled)
2502 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002503
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002504 /*
2505 * re-enable caching here because the QEMU bios
2506 * does not do it - this results in some delay at
2507 * reboot
2508 */
2509 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2510 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002511 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002512 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002513 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002514}
2515
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002516static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002517{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002518 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002519 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2520
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002521 if (cr4 & X86_CR4_VMXE)
2522 return 1;
2523
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002524 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002525 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002526
Joerg Roedelec077262008-04-09 14:15:28 +02002527 vcpu->arch.cr4 = cr4;
2528 if (!npt_enabled)
2529 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002530 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002531 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002532 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002533 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002534}
2535
2536static void svm_set_segment(struct kvm_vcpu *vcpu,
2537 struct kvm_segment *var, int seg)
2538{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002539 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002540 struct vmcb_seg *s = svm_seg(vcpu, seg);
2541
2542 s->base = var->base;
2543 s->limit = var->limit;
2544 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002545 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2546 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2547 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2548 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2549 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2550 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2551 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2552 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002553
2554 /*
2555 * This is always accurate, except if SYSRET returned to a segment
2556 * with SS.DPL != 3. Intel does not have this quirk, and always
2557 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2558 * would entail passing the CPL to userspace and back.
2559 */
2560 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002561 /* This is symmetric with svm_get_segment() */
2562 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002563
Joerg Roedel060d0c92010-12-03 11:45:57 +01002564 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002565}
2566
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002567static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002568{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002569 struct vcpu_svm *svm = to_svm(vcpu);
2570
Joerg Roedel18c918c2010-11-30 18:03:59 +01002571 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002572
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002573 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002574 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002575 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002576 } else
2577 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002578}
2579
Tejun Heo0fe1e002009-10-29 22:34:14 +09002580static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002581{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002582 if (sd->next_asid > sd->max_asid) {
2583 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002584 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002585 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002586 }
2587
Tejun Heo0fe1e002009-10-29 22:34:14 +09002588 svm->asid_generation = sd->asid_generation;
2589 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002590
2591 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002592}
2593
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002594static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2595{
2596 return to_svm(vcpu)->vmcb->save.dr6;
2597}
2598
2599static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2600{
2601 struct vcpu_svm *svm = to_svm(vcpu);
2602
2603 svm->vmcb->save.dr6 = value;
2604 mark_dirty(svm->vmcb, VMCB_DR);
2605}
2606
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002607static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2608{
2609 struct vcpu_svm *svm = to_svm(vcpu);
2610
2611 get_debugreg(vcpu->arch.db[0], 0);
2612 get_debugreg(vcpu->arch.db[1], 1);
2613 get_debugreg(vcpu->arch.db[2], 2);
2614 get_debugreg(vcpu->arch.db[3], 3);
2615 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2616 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2617
2618 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2619 set_dr_intercepts(svm);
2620}
2621
Gleb Natapov020df072010-04-13 10:05:23 +03002622static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002623{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002624 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002625
Gleb Natapov020df072010-04-13 10:05:23 +03002626 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002627 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002628}
2629
Avi Kivity851ba692009-08-24 11:10:17 +03002630static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002631{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002632 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002633 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002634
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002635 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002636 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2637 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002638 svm->vmcb->control.insn_len);
2639}
2640
2641static int npf_interception(struct vcpu_svm *svm)
2642{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002643 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002644 u64 error_code = svm->vmcb->control.exit_info_1;
2645
2646 trace_kvm_page_fault(fault_address, error_code);
2647 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002648 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2649 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002650 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002651}
2652
Avi Kivity851ba692009-08-24 11:10:17 +03002653static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002654{
Avi Kivity851ba692009-08-24 11:10:17 +03002655 struct kvm_run *kvm_run = svm->vcpu.run;
2656
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002657 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002658 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002659 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002660 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2661 return 1;
2662 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002663
Jan Kiszka6be7d302009-10-18 13:24:54 +02002664 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002665 disable_nmi_singlestep(svm);
Gleb Natapov44c11432009-05-11 13:35:52 +03002666 }
2667
2668 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002669 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002670 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2671 kvm_run->debug.arch.pc =
2672 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2673 kvm_run->debug.arch.exception = DB_VECTOR;
2674 return 0;
2675 }
2676
2677 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002678}
2679
Avi Kivity851ba692009-08-24 11:10:17 +03002680static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002681{
Avi Kivity851ba692009-08-24 11:10:17 +03002682 struct kvm_run *kvm_run = svm->vcpu.run;
2683
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002684 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2685 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2686 kvm_run->debug.arch.exception = BP_VECTOR;
2687 return 0;
2688}
2689
Avi Kivity851ba692009-08-24 11:10:17 +03002690static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002691{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002692 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002693}
2694
Eric Northup54a20552015-11-03 18:03:53 +01002695static int ac_interception(struct vcpu_svm *svm)
2696{
2697 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2698 return 1;
2699}
2700
Liran Alon97184202018-03-12 13:12:52 +02002701static int gp_interception(struct vcpu_svm *svm)
2702{
2703 struct kvm_vcpu *vcpu = &svm->vcpu;
2704 u32 error_code = svm->vmcb->control.exit_info_1;
2705 int er;
2706
2707 WARN_ON_ONCE(!enable_vmware_backdoor);
2708
2709 er = emulate_instruction(vcpu,
2710 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
2711 if (er == EMULATE_USER_EXIT)
2712 return 0;
2713 else if (er != EMULATE_DONE)
2714 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2715 return 1;
2716}
2717
Joerg Roedel67ec6602010-05-17 14:43:35 +02002718static bool is_erratum_383(void)
2719{
2720 int err, i;
2721 u64 value;
2722
2723 if (!erratum_383_found)
2724 return false;
2725
2726 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2727 if (err)
2728 return false;
2729
2730 /* Bit 62 may or may not be set for this mce */
2731 value &= ~(1ULL << 62);
2732
2733 if (value != 0xb600000000010015ULL)
2734 return false;
2735
2736 /* Clear MCi_STATUS registers */
2737 for (i = 0; i < 6; ++i)
2738 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2739
2740 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2741 if (!err) {
2742 u32 low, high;
2743
2744 value &= ~(1ULL << 2);
2745 low = lower_32_bits(value);
2746 high = upper_32_bits(value);
2747
2748 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2749 }
2750
2751 /* Flush tlb to evict multi-match entries */
2752 __flush_tlb_all();
2753
2754 return true;
2755}
2756
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002757static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002758{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002759 if (is_erratum_383()) {
2760 /*
2761 * Erratum 383 triggered. Guest state is corrupt so kill the
2762 * guest.
2763 */
2764 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2765
Avi Kivitya8eeb042010-05-10 12:34:53 +03002766 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002767
2768 return;
2769 }
2770
Joerg Roedel53371b52008-04-09 14:15:30 +02002771 /*
2772 * On an #MC intercept the MCE handler is not called automatically in
2773 * the host. So do it by hand here.
2774 */
2775 asm volatile (
2776 "int $0x12\n");
2777 /* not sure if we ever come back to this point */
2778
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002779 return;
2780}
2781
2782static int mc_interception(struct vcpu_svm *svm)
2783{
Joerg Roedel53371b52008-04-09 14:15:30 +02002784 return 1;
2785}
2786
Avi Kivity851ba692009-08-24 11:10:17 +03002787static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002788{
Avi Kivity851ba692009-08-24 11:10:17 +03002789 struct kvm_run *kvm_run = svm->vcpu.run;
2790
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002791 /*
2792 * VMCB is undefined after a SHUTDOWN intercept
2793 * so reinitialize it.
2794 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002795 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002796 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002797
2798 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2799 return 0;
2800}
2801
Avi Kivity851ba692009-08-24 11:10:17 +03002802static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002803{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002804 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002805 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002806 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002807 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002808
Rusty Russelle756fc62007-07-30 20:07:08 +10002809 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002810 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002811 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002812 if (string)
Andre Przywara51d8b662010-12-21 11:12:02 +01002813 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002814
Avi Kivity039576c2007-03-20 12:46:50 +02002815 port = io_info >> 16;
2816 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002817 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002818
Sean Christophersondca7f122018-03-08 08:57:27 -08002819 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002820}
2821
Avi Kivity851ba692009-08-24 11:10:17 +03002822static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002823{
2824 return 1;
2825}
2826
Avi Kivity851ba692009-08-24 11:10:17 +03002827static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002828{
2829 ++svm->vcpu.stat.irq_exits;
2830 return 1;
2831}
2832
Avi Kivity851ba692009-08-24 11:10:17 +03002833static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002834{
2835 return 1;
2836}
2837
Avi Kivity851ba692009-08-24 11:10:17 +03002838static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002839{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002840 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002841 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002842}
2843
Avi Kivity851ba692009-08-24 11:10:17 +03002844static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002845{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002846 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002847 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002848}
2849
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002850static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2851{
2852 struct vcpu_svm *svm = to_svm(vcpu);
2853
2854 return svm->nested.nested_cr3;
2855}
2856
Avi Kivitye4e517b2011-07-28 11:36:17 +03002857static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2858{
2859 struct vcpu_svm *svm = to_svm(vcpu);
2860 u64 cr3 = svm->nested.nested_cr3;
2861 u64 pdpte;
2862 int ret;
2863
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002864 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002865 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002866 if (ret)
2867 return 0;
2868 return pdpte;
2869}
2870
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002871static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2872 unsigned long root)
2873{
2874 struct vcpu_svm *svm = to_svm(vcpu);
2875
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002876 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002877 mark_dirty(svm->vmcb, VMCB_NPT);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002878 svm_flush_tlb(vcpu, true);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002879}
2880
Avi Kivity6389ee92010-11-29 16:12:30 +02002881static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2882 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002883{
2884 struct vcpu_svm *svm = to_svm(vcpu);
2885
Paolo Bonzini5e352512014-09-02 13:18:37 +02002886 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2887 /*
2888 * TODO: track the cause of the nested page fault, and
2889 * correctly fill in the high bits of exit_info_1.
2890 */
2891 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2892 svm->vmcb->control.exit_code_hi = 0;
2893 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2894 svm->vmcb->control.exit_info_2 = fault->address;
2895 }
2896
2897 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2898 svm->vmcb->control.exit_info_1 |= fault->error_code;
2899
2900 /*
2901 * The present bit is always zero for page structure faults on real
2902 * hardware.
2903 */
2904 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2905 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002906
2907 nested_svm_vmexit(svm);
2908}
2909
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002910static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002911{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002912 WARN_ON(mmu_is_nested(vcpu));
2913 kvm_init_shadow_mmu(vcpu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002914 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2915 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03002916 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
Joerg Roedel4b161842010-09-10 17:31:03 +02002917 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
Yu Zhang855feb62017-08-24 20:27:55 +08002918 vcpu->arch.mmu.shadow_root_level = get_npt_level(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08002919 reset_shadow_zero_bits_mask(vcpu, &vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002920 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002921}
2922
2923static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2924{
2925 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
2926}
2927
Alexander Grafc0725422008-11-25 20:17:03 +01002928static int nested_svm_check_permissions(struct vcpu_svm *svm)
2929{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002930 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2931 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01002932 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2933 return 1;
2934 }
2935
2936 if (svm->vmcb->save.cpl) {
2937 kvm_inject_gp(&svm->vcpu, 0);
2938 return 1;
2939 }
2940
Dan Carpentere9196ce2017-05-18 10:39:53 +03002941 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01002942}
2943
Alexander Grafcf74a782008-11-25 20:17:08 +01002944static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2945 bool has_error_code, u32 error_code)
2946{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002947 int vmexit;
2948
Joerg Roedel20307532010-11-29 17:51:48 +01002949 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02002950 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01002951
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002952 vmexit = nested_svm_intercept(svm);
2953 if (vmexit != NESTED_EXIT_DONE)
2954 return 0;
2955
Joerg Roedel0295ad72009-08-07 11:49:37 +02002956 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2957 svm->vmcb->control.exit_code_hi = 0;
2958 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002959
2960 /*
2961 * FIXME: we should not write CR2 when L1 intercepts an L2 #PF exception.
2962 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2963 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6 can be
2964 * written only when inject_pending_event runs (DR6 would written here
2965 * too). This should be conditional on a new capability---if the
2966 * capability is disabled, kvm_multiple_exception would write the
2967 * ancillary information to CR2 or DR6, for backwards ABI-compatibility.
2968 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002969 if (svm->vcpu.arch.exception.nested_apf)
2970 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
2971 else
2972 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02002973
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002974 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002975 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01002976}
2977
Joerg Roedel8fe54652010-02-19 16:23:01 +01002978/* This function returns true if it is save to enable the irq window */
2979static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002980{
Joerg Roedel20307532010-11-29 17:51:48 +01002981 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002982 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002983
Joerg Roedel26666952009-08-07 11:49:46 +02002984 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002985 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002986
Joerg Roedel26666952009-08-07 11:49:46 +02002987 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002988 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01002989
Gleb Natapova0a07cd2010-09-20 10:15:32 +02002990 /*
2991 * if vmexit was already requested (by intercepted exception
2992 * for instance) do not overwrite it with "external interrupt"
2993 * vmexit.
2994 */
2995 if (svm->nested.exit_required)
2996 return false;
2997
Joerg Roedel197717d2010-02-24 18:59:19 +01002998 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
2999 svm->vmcb->control.exit_info_1 = 0;
3000 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003001
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003002 if (svm->nested.intercept & 1ULL) {
3003 /*
3004 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003005 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003006 * #vmexit emulation might sleep. Only signal request for
3007 * the #vmexit here.
3008 */
3009 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003010 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003011 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003012 }
3013
Joerg Roedel8fe54652010-02-19 16:23:01 +01003014 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003015}
3016
Joerg Roedel887f5002010-02-24 18:59:12 +01003017/* This function returns true if it is save to enable the nmi window */
3018static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3019{
Joerg Roedel20307532010-11-29 17:51:48 +01003020 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003021 return true;
3022
3023 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3024 return true;
3025
3026 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3027 svm->nested.exit_required = true;
3028
3029 return false;
3030}
3031
Joerg Roedel7597f122010-02-19 16:23:00 +01003032static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003033{
3034 struct page *page;
3035
Joerg Roedel6c3bd3d2010-02-19 16:23:04 +01003036 might_sleep();
3037
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003038 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003039 if (is_error_page(page))
3040 goto error;
3041
Joerg Roedel7597f122010-02-19 16:23:00 +01003042 *_page = page;
3043
3044 return kmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003045
3046error:
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003047 kvm_inject_gp(&svm->vcpu, 0);
3048
3049 return NULL;
3050}
3051
Joerg Roedel7597f122010-02-19 16:23:00 +01003052static void nested_svm_unmap(struct page *page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003053{
Joerg Roedel7597f122010-02-19 16:23:00 +01003054 kunmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003055 kvm_release_page_dirty(page);
3056}
3057
Joerg Roedelce2ac082010-03-01 15:34:39 +01003058static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003059{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003060 unsigned port, size, iopm_len;
3061 u16 val, mask;
3062 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003063 u64 gpa;
3064
3065 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3066 return NESTED_EXIT_HOST;
3067
3068 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003069 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3070 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003071 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003072 start_bit = port % 8;
3073 iopm_len = (start_bit + size > 8) ? 2 : 1;
3074 mask = (0xf >> (4 - size)) << start_bit;
3075 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003076
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003077 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003078 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003079
Jan Kiszka9bf41832014-06-30 10:54:17 +02003080 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003081}
3082
Joerg Roedeld2477822010-03-01 15:34:34 +01003083static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003084{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003085 u32 offset, msr, value;
3086 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003087
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003088 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003089 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003090
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003091 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3092 offset = svm_msrpm_offset(msr);
3093 write = svm->vmcb->control.exit_info_1 & 1;
3094 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003095
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003096 if (offset == MSR_INVALID)
3097 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003098
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003099 /* Offset is in 32 bit units but need in 8 bit units */
3100 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003101
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003102 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003103 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003104
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003105 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003106}
3107
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003108/* DB exceptions for our internal use must not cause vmexit */
3109static int nested_svm_intercept_db(struct vcpu_svm *svm)
3110{
3111 unsigned long dr6;
3112
3113 /* if we're not singlestepping, it's not ours */
3114 if (!svm->nmi_singlestep)
3115 return NESTED_EXIT_DONE;
3116
3117 /* if it's not a singlestep exception, it's not ours */
3118 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3119 return NESTED_EXIT_DONE;
3120 if (!(dr6 & DR6_BS))
3121 return NESTED_EXIT_DONE;
3122
3123 /* if the guest is singlestepping, it should get the vmexit */
3124 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3125 disable_nmi_singlestep(svm);
3126 return NESTED_EXIT_DONE;
3127 }
3128
3129 /* it's ours, the nested hypervisor must not see this one */
3130 return NESTED_EXIT_HOST;
3131}
3132
Joerg Roedel410e4d52009-08-07 11:49:44 +02003133static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003134{
Alexander Grafcf74a782008-11-25 20:17:08 +01003135 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003136
Joerg Roedel410e4d52009-08-07 11:49:44 +02003137 switch (exit_code) {
3138 case SVM_EXIT_INTR:
3139 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003140 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003141 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003142 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003143 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003144 if (npt_enabled)
3145 return NESTED_EXIT_HOST;
3146 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003147 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003148 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003149 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003150 return NESTED_EXIT_HOST;
3151 break;
3152 default:
3153 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003154 }
3155
Joerg Roedel410e4d52009-08-07 11:49:44 +02003156 return NESTED_EXIT_CONTINUE;
3157}
3158
3159/*
3160 * If this function returns true, this #vmexit was already handled
3161 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003162static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003163{
3164 u32 exit_code = svm->vmcb->control.exit_code;
3165 int vmexit = NESTED_EXIT_HOST;
3166
Alexander Grafcf74a782008-11-25 20:17:08 +01003167 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003168 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003169 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003170 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003171 case SVM_EXIT_IOIO:
3172 vmexit = nested_svm_intercept_ioio(svm);
3173 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003174 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3175 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3176 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003177 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003178 break;
3179 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003180 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3181 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3182 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003183 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003184 break;
3185 }
3186 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3187 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003188 if (svm->nested.intercept_exceptions & excp_bits) {
3189 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3190 vmexit = nested_svm_intercept_db(svm);
3191 else
3192 vmexit = NESTED_EXIT_DONE;
3193 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003194 /* async page fault always cause vmexit */
3195 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003196 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003197 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003198 break;
3199 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003200 case SVM_EXIT_ERR: {
3201 vmexit = NESTED_EXIT_DONE;
3202 break;
3203 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003204 default: {
3205 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003206 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003207 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003208 }
3209 }
3210
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003211 return vmexit;
3212}
3213
3214static int nested_svm_exit_handled(struct vcpu_svm *svm)
3215{
3216 int vmexit;
3217
3218 vmexit = nested_svm_intercept(svm);
3219
3220 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003221 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003222
3223 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003224}
3225
Joerg Roedel0460a972009-08-07 11:49:31 +02003226static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3227{
3228 struct vmcb_control_area *dst = &dst_vmcb->control;
3229 struct vmcb_control_area *from = &from_vmcb->control;
3230
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003231 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003232 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003233 dst->intercept_exceptions = from->intercept_exceptions;
3234 dst->intercept = from->intercept;
3235 dst->iopm_base_pa = from->iopm_base_pa;
3236 dst->msrpm_base_pa = from->msrpm_base_pa;
3237 dst->tsc_offset = from->tsc_offset;
3238 dst->asid = from->asid;
3239 dst->tlb_ctl = from->tlb_ctl;
3240 dst->int_ctl = from->int_ctl;
3241 dst->int_vector = from->int_vector;
3242 dst->int_state = from->int_state;
3243 dst->exit_code = from->exit_code;
3244 dst->exit_code_hi = from->exit_code_hi;
3245 dst->exit_info_1 = from->exit_info_1;
3246 dst->exit_info_2 = from->exit_info_2;
3247 dst->exit_int_info = from->exit_int_info;
3248 dst->exit_int_info_err = from->exit_int_info_err;
3249 dst->nested_ctl = from->nested_ctl;
3250 dst->event_inj = from->event_inj;
3251 dst->event_inj_err = from->event_inj_err;
3252 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003253 dst->virt_ext = from->virt_ext;
Joerg Roedel0460a972009-08-07 11:49:31 +02003254}
3255
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003256static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003257{
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003258 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003259 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003260 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003261 struct page *page;
Alexander Grafcf74a782008-11-25 20:17:08 +01003262
Joerg Roedel17897f32009-10-09 16:08:29 +02003263 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3264 vmcb->control.exit_info_1,
3265 vmcb->control.exit_info_2,
3266 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003267 vmcb->control.exit_int_info_err,
3268 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003269
Joerg Roedel7597f122010-02-19 16:23:00 +01003270 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003271 if (!nested_vmcb)
3272 return 1;
3273
Joerg Roedel20307532010-11-29 17:51:48 +01003274 /* Exit Guest-Mode */
3275 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003276 svm->nested.vmcb = 0;
3277
Alexander Grafcf74a782008-11-25 20:17:08 +01003278 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003279 disable_gif(svm);
3280
3281 nested_vmcb->save.es = vmcb->save.es;
3282 nested_vmcb->save.cs = vmcb->save.cs;
3283 nested_vmcb->save.ss = vmcb->save.ss;
3284 nested_vmcb->save.ds = vmcb->save.ds;
3285 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3286 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003287 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003288 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003289 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003290 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003291 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003292 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003293 nested_vmcb->save.rip = vmcb->save.rip;
3294 nested_vmcb->save.rsp = vmcb->save.rsp;
3295 nested_vmcb->save.rax = vmcb->save.rax;
3296 nested_vmcb->save.dr7 = vmcb->save.dr7;
3297 nested_vmcb->save.dr6 = vmcb->save.dr6;
3298 nested_vmcb->save.cpl = vmcb->save.cpl;
3299
3300 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3301 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3302 nested_vmcb->control.int_state = vmcb->control.int_state;
3303 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3304 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3305 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3306 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3307 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3308 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003309
3310 if (svm->nrips_enabled)
3311 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003312
3313 /*
3314 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3315 * to make sure that we do not lose injected events. So check event_inj
3316 * here and copy it to exit_int_info if it is valid.
3317 * Exit_int_info and event_inj can't be both valid because the case
3318 * below only happens on a VMRUN instruction intercept which has
3319 * no valid exit_int_info set.
3320 */
3321 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3322 struct vmcb_control_area *nc = &nested_vmcb->control;
3323
3324 nc->exit_int_info = vmcb->control.event_inj;
3325 nc->exit_int_info_err = vmcb->control.event_inj_err;
3326 }
3327
Joerg Roedel33740e42009-08-07 11:49:29 +02003328 nested_vmcb->control.tlb_ctl = 0;
3329 nested_vmcb->control.event_inj = 0;
3330 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003331
3332 /* We always set V_INTR_MASKING and remember the old value in hflags */
3333 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3334 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3335
Alexander Grafcf74a782008-11-25 20:17:08 +01003336 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003337 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003338
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003339 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003340 kvm_clear_exception_queue(&svm->vcpu);
3341 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003342
Joerg Roedel4b161842010-09-10 17:31:03 +02003343 svm->nested.nested_cr3 = 0;
3344
Alexander Grafcf74a782008-11-25 20:17:08 +01003345 /* Restore selected save entries */
3346 svm->vmcb->save.es = hsave->save.es;
3347 svm->vmcb->save.cs = hsave->save.cs;
3348 svm->vmcb->save.ss = hsave->save.ss;
3349 svm->vmcb->save.ds = hsave->save.ds;
3350 svm->vmcb->save.gdtr = hsave->save.gdtr;
3351 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003352 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003353 svm_set_efer(&svm->vcpu, hsave->save.efer);
3354 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3355 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3356 if (npt_enabled) {
3357 svm->vmcb->save.cr3 = hsave->save.cr3;
3358 svm->vcpu.arch.cr3 = hsave->save.cr3;
3359 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003360 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003361 }
3362 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
3363 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
3364 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
3365 svm->vmcb->save.dr7 = 0;
3366 svm->vmcb->save.cpl = 0;
3367 svm->vmcb->control.exit_int_info = 0;
3368
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003369 mark_all_dirty(svm->vmcb);
3370
Joerg Roedel7597f122010-02-19 16:23:00 +01003371 nested_svm_unmap(page);
Alexander Grafcf74a782008-11-25 20:17:08 +01003372
Joerg Roedel4b161842010-09-10 17:31:03 +02003373 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003374 kvm_mmu_reset_context(&svm->vcpu);
3375 kvm_mmu_load(&svm->vcpu);
3376
3377 return 0;
3378}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003379
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003380static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003381{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003382 /*
3383 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003384 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003385 * the kvm msr permission bitmap may contain zero bits
3386 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003387 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003388
Joerg Roedel323c3d82010-03-01 15:34:37 +01003389 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3390 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003391
Joerg Roedel323c3d82010-03-01 15:34:37 +01003392 for (i = 0; i < MSRPM_OFFSETS; i++) {
3393 u32 value, p;
3394 u64 offset;
3395
3396 if (msrpm_offsets[i] == 0xffffffff)
3397 break;
3398
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003399 p = msrpm_offsets[i];
3400 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003401
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003402 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003403 return false;
3404
3405 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3406 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003407
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003408 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003409
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003410 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003411}
3412
Joerg Roedel52c65a302010-08-02 16:46:44 +02003413static bool nested_vmcb_checks(struct vmcb *vmcb)
3414{
3415 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3416 return false;
3417
Joerg Roedeldbe77582010-08-02 16:46:45 +02003418 if (vmcb->control.asid == 0)
3419 return false;
3420
Tom Lendackycea3a192017-12-04 10:57:24 -06003421 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3422 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003423 return false;
3424
Joerg Roedel52c65a302010-08-02 16:46:44 +02003425 return true;
3426}
3427
Ladi Prosekc2634062017-10-11 16:54:44 +02003428static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
3429 struct vmcb *nested_vmcb, struct page *page)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003430{
Avi Kivityf6e78472010-08-02 15:30:20 +03003431 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003432 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3433 else
3434 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3435
Tom Lendackycea3a192017-12-04 10:57:24 -06003436 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003437 kvm_mmu_unload(&svm->vcpu);
3438 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3439 nested_svm_init_mmu_context(&svm->vcpu);
3440 }
3441
Alexander Graf3d6368e2008-11-25 20:17:07 +01003442 /* Load the nested guest state */
3443 svm->vmcb->save.es = nested_vmcb->save.es;
3444 svm->vmcb->save.cs = nested_vmcb->save.cs;
3445 svm->vmcb->save.ss = nested_vmcb->save.ss;
3446 svm->vmcb->save.ds = nested_vmcb->save.ds;
3447 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3448 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003449 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003450 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3451 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3452 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3453 if (npt_enabled) {
3454 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3455 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003456 } else
Avi Kivity23902182010-06-10 17:02:16 +03003457 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003458
3459 /* Guest paging mode is active - reset mmu */
3460 kvm_mmu_reset_context(&svm->vcpu);
3461
Joerg Roedeldefbba52009-08-07 11:49:30 +02003462 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003463 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
3464 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
3465 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003466
Alexander Graf3d6368e2008-11-25 20:17:07 +01003467 /* In case we don't even reach vcpu_run, the fields are not updated */
3468 svm->vmcb->save.rax = nested_vmcb->save.rax;
3469 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3470 svm->vmcb->save.rip = nested_vmcb->save.rip;
3471 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3472 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3473 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3474
Joerg Roedelf7138532010-03-01 15:34:40 +01003475 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003476 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003477
Joerg Roedelaad42c62009-08-07 11:49:34 +02003478 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003479 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003480 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003481 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3482 svm->nested.intercept = nested_vmcb->control.intercept;
3483
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003484 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003485 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003486 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3487 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3488 else
3489 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3490
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003491 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3492 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003493 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3494 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003495 }
3496
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003497 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003498 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003499
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003500 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3501 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3502
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003503 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003504 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3505 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003506 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3507 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3508
Joerg Roedel7597f122010-02-19 16:23:00 +01003509 nested_svm_unmap(page);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003510
Joerg Roedel20307532010-11-29 17:51:48 +01003511 /* Enter Guest-Mode */
3512 enter_guest_mode(&svm->vcpu);
3513
Joerg Roedel384c6362010-11-30 18:03:56 +01003514 /*
3515 * Merge guest and host intercepts - must be called with vcpu in
3516 * guest-mode to take affect here
3517 */
3518 recalc_intercepts(svm);
3519
Joerg Roedel06fc77722010-02-19 16:23:07 +01003520 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003521
Joerg Roedel2af91942009-08-07 11:49:28 +02003522 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003523
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003524 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003525}
3526
3527static bool nested_svm_vmrun(struct vcpu_svm *svm)
3528{
3529 struct vmcb *nested_vmcb;
3530 struct vmcb *hsave = svm->nested.hsave;
3531 struct vmcb *vmcb = svm->vmcb;
3532 struct page *page;
3533 u64 vmcb_gpa;
3534
3535 vmcb_gpa = svm->vmcb->save.rax;
3536
3537 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
3538 if (!nested_vmcb)
3539 return false;
3540
3541 if (!nested_vmcb_checks(nested_vmcb)) {
3542 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3543 nested_vmcb->control.exit_code_hi = 0;
3544 nested_vmcb->control.exit_info_1 = 0;
3545 nested_vmcb->control.exit_info_2 = 0;
3546
3547 nested_svm_unmap(page);
3548
3549 return false;
3550 }
3551
3552 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3553 nested_vmcb->save.rip,
3554 nested_vmcb->control.int_ctl,
3555 nested_vmcb->control.event_inj,
3556 nested_vmcb->control.nested_ctl);
3557
3558 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3559 nested_vmcb->control.intercept_cr >> 16,
3560 nested_vmcb->control.intercept_exceptions,
3561 nested_vmcb->control.intercept);
3562
3563 /* Clear internal status */
3564 kvm_clear_exception_queue(&svm->vcpu);
3565 kvm_clear_interrupt_queue(&svm->vcpu);
3566
3567 /*
3568 * Save the old vmcb, so we don't need to pick what we save, but can
3569 * restore everything when a VMEXIT occurs
3570 */
3571 hsave->save.es = vmcb->save.es;
3572 hsave->save.cs = vmcb->save.cs;
3573 hsave->save.ss = vmcb->save.ss;
3574 hsave->save.ds = vmcb->save.ds;
3575 hsave->save.gdtr = vmcb->save.gdtr;
3576 hsave->save.idtr = vmcb->save.idtr;
3577 hsave->save.efer = svm->vcpu.arch.efer;
3578 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3579 hsave->save.cr4 = svm->vcpu.arch.cr4;
3580 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3581 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3582 hsave->save.rsp = vmcb->save.rsp;
3583 hsave->save.rax = vmcb->save.rax;
3584 if (npt_enabled)
3585 hsave->save.cr3 = vmcb->save.cr3;
3586 else
3587 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3588
3589 copy_vmcb_control_area(hsave, vmcb);
3590
3591 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, page);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003592
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003593 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003594}
3595
Joerg Roedel9966bf62009-08-07 11:49:40 +02003596static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003597{
3598 to_vmcb->save.fs = from_vmcb->save.fs;
3599 to_vmcb->save.gs = from_vmcb->save.gs;
3600 to_vmcb->save.tr = from_vmcb->save.tr;
3601 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3602 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3603 to_vmcb->save.star = from_vmcb->save.star;
3604 to_vmcb->save.lstar = from_vmcb->save.lstar;
3605 to_vmcb->save.cstar = from_vmcb->save.cstar;
3606 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3607 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3608 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3609 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003610}
3611
Avi Kivity851ba692009-08-24 11:10:17 +03003612static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003613{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003614 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003615 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003616 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003617
Alexander Graf55426752008-11-25 20:17:06 +01003618 if (nested_svm_check_permissions(svm))
3619 return 1;
3620
Joerg Roedel7597f122010-02-19 16:23:00 +01003621 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003622 if (!nested_vmcb)
3623 return 1;
3624
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003625 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003626 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003627
Joerg Roedel9966bf62009-08-07 11:49:40 +02003628 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003629 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003630
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003631 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003632}
3633
Avi Kivity851ba692009-08-24 11:10:17 +03003634static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003635{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003636 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003637 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003638 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003639
Alexander Graf55426752008-11-25 20:17:06 +01003640 if (nested_svm_check_permissions(svm))
3641 return 1;
3642
Joerg Roedel7597f122010-02-19 16:23:00 +01003643 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003644 if (!nested_vmcb)
3645 return 1;
3646
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003647 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003648 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003649
Joerg Roedel9966bf62009-08-07 11:49:40 +02003650 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003651 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003652
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003653 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003654}
3655
Avi Kivity851ba692009-08-24 11:10:17 +03003656static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003657{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003658 if (nested_svm_check_permissions(svm))
3659 return 1;
3660
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003661 /* Save rip after vmrun instruction */
3662 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003663
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003664 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003665 return 1;
3666
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003667 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003668 goto failed;
3669
3670 return 1;
3671
3672failed:
3673
3674 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3675 svm->vmcb->control.exit_code_hi = 0;
3676 svm->vmcb->control.exit_info_1 = 0;
3677 svm->vmcb->control.exit_info_2 = 0;
3678
3679 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003680
3681 return 1;
3682}
3683
Avi Kivity851ba692009-08-24 11:10:17 +03003684static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003685{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003686 int ret;
3687
Alexander Graf1371d902008-11-25 20:17:04 +01003688 if (nested_svm_check_permissions(svm))
3689 return 1;
3690
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003691 /*
3692 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003693 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003694 */
3695 if (vgif_enabled(svm))
3696 clr_intercept(svm, INTERCEPT_STGI);
3697
Alexander Graf1371d902008-11-25 20:17:04 +01003698 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003699 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003700 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003701
Joerg Roedel2af91942009-08-07 11:49:28 +02003702 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003703
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003704 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003705}
3706
Avi Kivity851ba692009-08-24 11:10:17 +03003707static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003708{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003709 int ret;
3710
Alexander Graf1371d902008-11-25 20:17:04 +01003711 if (nested_svm_check_permissions(svm))
3712 return 1;
3713
3714 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003715 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003716
Joerg Roedel2af91942009-08-07 11:49:28 +02003717 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003718
3719 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003720 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3721 svm_clear_vintr(svm);
3722 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3723 mark_dirty(svm->vmcb, VMCB_INTR);
3724 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003725
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003726 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003727}
3728
Avi Kivity851ba692009-08-24 11:10:17 +03003729static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003730{
3731 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003732
David Kaplan668f1982015-02-20 16:02:10 -06003733 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3734 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003735
Alexander Grafff092382009-06-15 15:21:24 +02003736 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
David Kaplan668f1982015-02-20 16:02:10 -06003737 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Alexander Grafff092382009-06-15 15:21:24 +02003738
3739 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003740 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003741}
3742
Joerg Roedel532a46b2009-10-09 16:08:32 +02003743static int skinit_interception(struct vcpu_svm *svm)
3744{
David Kaplan668f1982015-02-20 16:02:10 -06003745 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003746
3747 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3748 return 1;
3749}
3750
David Kaplandab429a2015-03-02 13:43:37 -06003751static int wbinvd_interception(struct vcpu_svm *svm)
3752{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003753 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003754}
3755
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003756static int xsetbv_interception(struct vcpu_svm *svm)
3757{
3758 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3759 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3760
3761 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3762 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003763 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003764 }
3765
3766 return 1;
3767}
3768
Avi Kivity851ba692009-08-24 11:10:17 +03003769static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003770{
Izik Eidus37817f22008-03-24 23:14:53 +02003771 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003772 int reason;
3773 int int_type = svm->vmcb->control.exit_int_info &
3774 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003775 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003776 uint32_t type =
3777 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3778 uint32_t idt_v =
3779 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003780 bool has_error_code = false;
3781 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003782
3783 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003784
Izik Eidus37817f22008-03-24 23:14:53 +02003785 if (svm->vmcb->control.exit_info_2 &
3786 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003787 reason = TASK_SWITCH_IRET;
3788 else if (svm->vmcb->control.exit_info_2 &
3789 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3790 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003791 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003792 reason = TASK_SWITCH_GATE;
3793 else
3794 reason = TASK_SWITCH_CALL;
3795
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003796 if (reason == TASK_SWITCH_GATE) {
3797 switch (type) {
3798 case SVM_EXITINTINFO_TYPE_NMI:
3799 svm->vcpu.arch.nmi_injected = false;
3800 break;
3801 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003802 if (svm->vmcb->control.exit_info_2 &
3803 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3804 has_error_code = true;
3805 error_code =
3806 (u32)svm->vmcb->control.exit_info_2;
3807 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003808 kvm_clear_exception_queue(&svm->vcpu);
3809 break;
3810 case SVM_EXITINTINFO_TYPE_INTR:
3811 kvm_clear_interrupt_queue(&svm->vcpu);
3812 break;
3813 default:
3814 break;
3815 }
3816 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003817
Gleb Natapov8317c292009-04-12 13:37:02 +03003818 if (reason != TASK_SWITCH_GATE ||
3819 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3820 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003821 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3822 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003823
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003824 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3825 int_vec = -1;
3826
3827 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003828 has_error_code, error_code) == EMULATE_FAIL) {
3829 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3830 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3831 svm->vcpu.run->internal.ndata = 0;
3832 return 0;
3833 }
3834 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003835}
3836
Avi Kivity851ba692009-08-24 11:10:17 +03003837static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003838{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003839 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003840 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003841}
3842
Avi Kivity851ba692009-08-24 11:10:17 +03003843static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003844{
3845 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003846 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003847 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003848 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003849 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003850 return 1;
3851}
3852
Avi Kivity851ba692009-08-24 11:10:17 +03003853static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003854{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003855 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3856 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
3857
3858 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003859 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003860}
3861
Avi Kivity851ba692009-08-24 11:10:17 +03003862static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003863{
Andre Przywara51d8b662010-12-21 11:12:02 +01003864 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003865}
3866
Brijesh Singh7607b712018-02-19 10:14:44 -06003867static int rsm_interception(struct vcpu_svm *svm)
3868{
3869 return x86_emulate_instruction(&svm->vcpu, 0, 0,
3870 rsm_ins_bytes, 2) == EMULATE_DONE;
3871}
3872
Avi Kivity332b56e2011-11-10 14:57:24 +02003873static int rdpmc_interception(struct vcpu_svm *svm)
3874{
3875 int err;
3876
3877 if (!static_cpu_has(X86_FEATURE_NRIPS))
3878 return emulate_on_interception(svm);
3879
3880 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003881 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003882}
3883
Xiubo Li52eb5a62015-03-13 17:39:45 +08003884static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3885 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003886{
3887 unsigned long cr0 = svm->vcpu.arch.cr0;
3888 bool ret = false;
3889 u64 intercept;
3890
3891 intercept = svm->nested.intercept;
3892
3893 if (!is_guest_mode(&svm->vcpu) ||
3894 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3895 return false;
3896
3897 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3898 val &= ~SVM_CR0_SELECTIVE_MASK;
3899
3900 if (cr0 ^ val) {
3901 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3902 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3903 }
3904
3905 return ret;
3906}
3907
Andre Przywara7ff76d52010-12-21 11:12:04 +01003908#define CR_VALID (1ULL << 63)
3909
3910static int cr_interception(struct vcpu_svm *svm)
3911{
3912 int reg, cr;
3913 unsigned long val;
3914 int err;
3915
3916 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3917 return emulate_on_interception(svm);
3918
3919 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3920 return emulate_on_interception(svm);
3921
3922 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06003923 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3924 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3925 else
3926 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01003927
3928 err = 0;
3929 if (cr >= 16) { /* mov to cr */
3930 cr -= 16;
3931 val = kvm_register_read(&svm->vcpu, reg);
3932 switch (cr) {
3933 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02003934 if (!check_selective_cr0_intercepted(svm, val))
3935 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02003936 else
3937 return 1;
3938
Andre Przywara7ff76d52010-12-21 11:12:04 +01003939 break;
3940 case 3:
3941 err = kvm_set_cr3(&svm->vcpu, val);
3942 break;
3943 case 4:
3944 err = kvm_set_cr4(&svm->vcpu, val);
3945 break;
3946 case 8:
3947 err = kvm_set_cr8(&svm->vcpu, val);
3948 break;
3949 default:
3950 WARN(1, "unhandled write to CR%d", cr);
3951 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3952 return 1;
3953 }
3954 } else { /* mov from cr */
3955 switch (cr) {
3956 case 0:
3957 val = kvm_read_cr0(&svm->vcpu);
3958 break;
3959 case 2:
3960 val = svm->vcpu.arch.cr2;
3961 break;
3962 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02003963 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003964 break;
3965 case 4:
3966 val = kvm_read_cr4(&svm->vcpu);
3967 break;
3968 case 8:
3969 val = kvm_get_cr8(&svm->vcpu);
3970 break;
3971 default:
3972 WARN(1, "unhandled read from CR%d", cr);
3973 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3974 return 1;
3975 }
3976 kvm_register_write(&svm->vcpu, reg, val);
3977 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08003978 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003979}
3980
Andre Przywaracae37972010-12-21 11:12:05 +01003981static int dr_interception(struct vcpu_svm *svm)
3982{
3983 int reg, dr;
3984 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01003985
Paolo Bonzinifacb0132014-02-21 10:32:27 +01003986 if (svm->vcpu.guest_debug == 0) {
3987 /*
3988 * No more DR vmexits; force a reload of the debug registers
3989 * and reenter on this instruction. The next vmexit will
3990 * retrieve the full state of the debug registers.
3991 */
3992 clr_dr_intercepts(svm);
3993 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
3994 return 1;
3995 }
3996
Andre Przywaracae37972010-12-21 11:12:05 +01003997 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
3998 return emulate_on_interception(svm);
3999
4000 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4001 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4002
4003 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004004 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4005 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004006 val = kvm_register_read(&svm->vcpu, reg);
4007 kvm_set_dr(&svm->vcpu, dr - 16, val);
4008 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004009 if (!kvm_require_dr(&svm->vcpu, dr))
4010 return 1;
4011 kvm_get_dr(&svm->vcpu, dr, &val);
4012 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004013 }
4014
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004015 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004016}
4017
Avi Kivity851ba692009-08-24 11:10:17 +03004018static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004019{
Avi Kivity851ba692009-08-24 11:10:17 +03004020 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004021 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004022
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004023 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4024 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004025 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004026 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004027 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004028 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004029 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004030 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4031 return 0;
4032}
4033
Tom Lendacky801e4592018-02-21 13:39:51 -06004034static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4035{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004036 msr->data = 0;
4037
4038 switch (msr->index) {
4039 case MSR_F10H_DECFG:
4040 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4041 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4042 break;
4043 default:
4044 return 1;
4045 }
4046
4047 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004048}
4049
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004050static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004051{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004052 struct vcpu_svm *svm = to_svm(vcpu);
4053
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004054 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004055 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004056 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004057 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004058#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004059 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004060 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004061 break;
4062 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004063 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004064 break;
4065 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004066 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004067 break;
4068 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004069 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004070 break;
4071#endif
4072 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004073 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004074 break;
4075 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004076 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004077 break;
4078 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004079 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004080 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004081 case MSR_TSC_AUX:
4082 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4083 return 1;
4084 msr_info->data = svm->tsc_aux;
4085 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004086 /*
4087 * Nobody will change the following 5 values in the VMCB so we can
4088 * safely return them on rdmsr. They will always be 0 until LBRV is
4089 * implemented.
4090 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004091 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004092 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004093 break;
4094 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004095 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004096 break;
4097 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004098 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004099 break;
4100 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004101 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004102 break;
4103 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004104 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004105 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004106 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004107 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004108 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004109 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004110 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004111 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004112 case MSR_IA32_SPEC_CTRL:
4113 if (!msr_info->host_initiated &&
4114 !guest_cpuid_has(vcpu, X86_FEATURE_IBRS))
4115 return 1;
4116
4117 msr_info->data = svm->spec_ctrl;
4118 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004119 case MSR_F15H_IC_CFG: {
4120
4121 int family, model;
4122
4123 family = guest_cpuid_family(vcpu);
4124 model = guest_cpuid_model(vcpu);
4125
4126 if (family < 0 || model < 0)
4127 return kvm_get_msr_common(vcpu, msr_info);
4128
4129 msr_info->data = 0;
4130
4131 if (family == 0x15 &&
4132 (model >= 0x2 && model < 0x20))
4133 msr_info->data = 0x1E;
4134 }
4135 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004136 case MSR_F10H_DECFG:
4137 msr_info->data = svm->msr_decfg;
4138 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004139 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004140 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004141 }
4142 return 0;
4143}
4144
Avi Kivity851ba692009-08-24 11:10:17 +03004145static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004146{
David Kaplan668f1982015-02-20 16:02:10 -06004147 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004148 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004149
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004150 msr_info.index = ecx;
4151 msr_info.host_initiated = false;
4152 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004153 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004154 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004155 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004156 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004157 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004158
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004159 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
4160 msr_info.data & 0xffffffff);
4161 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
4162 msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004163 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004164 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004165 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004166}
4167
Joerg Roedel4a810182010-02-24 18:59:15 +01004168static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4169{
4170 struct vcpu_svm *svm = to_svm(vcpu);
4171 int svm_dis, chg_mask;
4172
4173 if (data & ~SVM_VM_CR_VALID_MASK)
4174 return 1;
4175
4176 chg_mask = SVM_VM_CR_VALID_MASK;
4177
4178 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4179 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4180
4181 svm->nested.vm_cr_msr &= ~chg_mask;
4182 svm->nested.vm_cr_msr |= (data & chg_mask);
4183
4184 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4185
4186 /* check for svm_disable while efer.svme is set */
4187 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4188 return 1;
4189
4190 return 0;
4191}
4192
Will Auld8fe8ab42012-11-29 12:42:12 -08004193static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004194{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004195 struct vcpu_svm *svm = to_svm(vcpu);
4196
Will Auld8fe8ab42012-11-29 12:42:12 -08004197 u32 ecx = msr->index;
4198 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004199 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004200 case MSR_IA32_CR_PAT:
4201 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4202 return 1;
4203 vcpu->arch.pat = data;
4204 svm->vmcb->save.g_pat = data;
4205 mark_dirty(svm->vmcb, VMCB_NPT);
4206 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004207 case MSR_IA32_SPEC_CTRL:
4208 if (!msr->host_initiated &&
4209 !guest_cpuid_has(vcpu, X86_FEATURE_IBRS))
4210 return 1;
4211
4212 /* The STIBP bit doesn't fault even if it's not advertised */
4213 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP))
4214 return 1;
4215
4216 svm->spec_ctrl = data;
4217
4218 if (!data)
4219 break;
4220
4221 /*
4222 * For non-nested:
4223 * When it's written (to non-zero) for the first time, pass
4224 * it through.
4225 *
4226 * For nested:
4227 * The handling of the MSR bitmap for L2 guests is done in
4228 * nested_svm_vmrun_msrpm.
4229 * We update the L1 MSR bit as well since it will end up
4230 * touching the MSR anyway now.
4231 */
4232 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4233 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004234 case MSR_IA32_PRED_CMD:
4235 if (!msr->host_initiated &&
4236 !guest_cpuid_has(vcpu, X86_FEATURE_IBPB))
4237 return 1;
4238
4239 if (data & ~PRED_CMD_IBPB)
4240 return 1;
4241
4242 if (!data)
4243 break;
4244
4245 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4246 if (is_guest_mode(vcpu))
4247 break;
4248 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4249 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004250 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004251 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004252 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004253#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004254 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004255 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004256 break;
4257 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004258 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004259 break;
4260 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004261 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004262 break;
4263 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004264 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004265 break;
4266#endif
4267 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004268 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004269 break;
4270 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004271 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004272 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004273 break;
4274 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004275 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004276 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004277 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004278 case MSR_TSC_AUX:
4279 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4280 return 1;
4281
4282 /*
4283 * This is rare, so we update the MSR here instead of using
4284 * direct_access_msrs. Doing that would require a rdmsr in
4285 * svm_vcpu_put.
4286 */
4287 svm->tsc_aux = data;
4288 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4289 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004290 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004291 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004292 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4293 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004294 break;
4295 }
4296 if (data & DEBUGCTL_RESERVED_BITS)
4297 return 1;
4298
4299 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004300 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004301 if (data & (1ULL<<0))
4302 svm_enable_lbrv(svm);
4303 else
4304 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004305 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004306 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004307 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004308 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004309 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004310 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004311 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004312 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004313 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004314 case MSR_F10H_DECFG: {
4315 struct kvm_msr_entry msr_entry;
4316
4317 msr_entry.index = msr->index;
4318 if (svm_get_msr_feature(&msr_entry))
4319 return 1;
4320
4321 /* Check the supported bits */
4322 if (data & ~msr_entry.data)
4323 return 1;
4324
4325 /* Don't allow the guest to change a bit, #GP */
4326 if (!msr->host_initiated && (data ^ msr_entry.data))
4327 return 1;
4328
4329 svm->msr_decfg = data;
4330 break;
4331 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004332 case MSR_IA32_APICBASE:
4333 if (kvm_vcpu_apicv_active(vcpu))
4334 avic_update_vapic_bar(to_svm(vcpu), data);
4335 /* Follow through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004336 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004337 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004338 }
4339 return 0;
4340}
4341
Avi Kivity851ba692009-08-24 11:10:17 +03004342static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004343{
Will Auld8fe8ab42012-11-29 12:42:12 -08004344 struct msr_data msr;
David Kaplan668f1982015-02-20 16:02:10 -06004345 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
4346 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004347
Will Auld8fe8ab42012-11-29 12:42:12 -08004348 msr.data = data;
4349 msr.index = ecx;
4350 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004351
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004352 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004353 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02004354 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004355 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004356 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004357 } else {
4358 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004359 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02004360 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004361}
4362
Avi Kivity851ba692009-08-24 11:10:17 +03004363static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004364{
Rusty Russelle756fc62007-07-30 20:07:08 +10004365 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004366 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004367 else
Avi Kivity851ba692009-08-24 11:10:17 +03004368 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004369}
4370
Avi Kivity851ba692009-08-24 11:10:17 +03004371static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004372{
Avi Kivity3842d132010-07-27 12:30:24 +03004373 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004374 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004375 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004376 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004377 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004378 return 1;
4379}
4380
Mark Langsdorf565d0992009-10-06 14:25:02 -05004381static int pause_interception(struct vcpu_svm *svm)
4382{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004383 struct kvm_vcpu *vcpu = &svm->vcpu;
4384 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4385
Babu Moger8566ac82018-03-16 16:37:26 -04004386 if (pause_filter_thresh)
4387 grow_ple_window(vcpu);
4388
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004389 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004390 return 1;
4391}
4392
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004393static int nop_interception(struct vcpu_svm *svm)
4394{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004395 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004396}
4397
4398static int monitor_interception(struct vcpu_svm *svm)
4399{
4400 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4401 return nop_interception(svm);
4402}
4403
4404static int mwait_interception(struct vcpu_svm *svm)
4405{
4406 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4407 return nop_interception(svm);
4408}
4409
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004410enum avic_ipi_failure_cause {
4411 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4412 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4413 AVIC_IPI_FAILURE_INVALID_TARGET,
4414 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4415};
4416
4417static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4418{
4419 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4420 u32 icrl = svm->vmcb->control.exit_info_1;
4421 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004422 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004423 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4424
4425 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4426
4427 switch (id) {
4428 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4429 /*
4430 * AVIC hardware handles the generation of
4431 * IPIs when the specified Message Type is Fixed
4432 * (also known as fixed delivery mode) and
4433 * the Trigger Mode is edge-triggered. The hardware
4434 * also supports self and broadcast delivery modes
4435 * specified via the Destination Shorthand(DSH)
4436 * field of the ICRL. Logical and physical APIC ID
4437 * formats are supported. All other IPI types cause
4438 * a #VMEXIT, which needs to emulated.
4439 */
4440 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4441 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4442 break;
4443 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
4444 int i;
4445 struct kvm_vcpu *vcpu;
4446 struct kvm *kvm = svm->vcpu.kvm;
4447 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4448
4449 /*
4450 * At this point, we expect that the AVIC HW has already
4451 * set the appropriate IRR bits on the valid target
4452 * vcpus. So, we just need to kick the appropriate vcpu.
4453 */
4454 kvm_for_each_vcpu(i, vcpu, kvm) {
4455 bool m = kvm_apic_match_dest(vcpu, apic,
4456 icrl & KVM_APIC_SHORT_MASK,
4457 GET_APIC_DEST_FIELD(icrh),
4458 icrl & KVM_APIC_DEST_MASK);
4459
4460 if (m && !avic_vcpu_is_running(vcpu))
4461 kvm_vcpu_wake_up(vcpu);
4462 }
4463 break;
4464 }
4465 case AVIC_IPI_FAILURE_INVALID_TARGET:
4466 break;
4467 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4468 WARN_ONCE(1, "Invalid backing page\n");
4469 break;
4470 default:
4471 pr_err("Unknown IPI interception\n");
4472 }
4473
4474 return 1;
4475}
4476
4477static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4478{
Sean Christopherson81811c12018-03-20 12:17:21 -07004479 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004480 int index;
4481 u32 *logical_apic_id_table;
4482 int dlid = GET_APIC_LOGICAL_ID(ldr);
4483
4484 if (!dlid)
4485 return NULL;
4486
4487 if (flat) { /* flat */
4488 index = ffs(dlid) - 1;
4489 if (index > 7)
4490 return NULL;
4491 } else { /* cluster */
4492 int cluster = (dlid & 0xf0) >> 4;
4493 int apic = ffs(dlid & 0x0f) - 1;
4494
4495 if ((apic < 0) || (apic > 7) ||
4496 (cluster >= 0xf))
4497 return NULL;
4498 index = (cluster << 2) + apic;
4499 }
4500
Sean Christopherson81811c12018-03-20 12:17:21 -07004501 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004502
4503 return &logical_apic_id_table[index];
4504}
4505
4506static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
4507 bool valid)
4508{
4509 bool flat;
4510 u32 *entry, new_entry;
4511
4512 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4513 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4514 if (!entry)
4515 return -EINVAL;
4516
4517 new_entry = READ_ONCE(*entry);
4518 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4519 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
4520 if (valid)
4521 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4522 else
4523 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4524 WRITE_ONCE(*entry, new_entry);
4525
4526 return 0;
4527}
4528
4529static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4530{
4531 int ret;
4532 struct vcpu_svm *svm = to_svm(vcpu);
4533 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
4534
4535 if (!ldr)
4536 return 1;
4537
4538 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
4539 if (ret && svm->ldr_reg) {
4540 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
4541 svm->ldr_reg = 0;
4542 } else {
4543 svm->ldr_reg = ldr;
4544 }
4545 return ret;
4546}
4547
4548static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4549{
4550 u64 *old, *new;
4551 struct vcpu_svm *svm = to_svm(vcpu);
4552 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
4553 u32 id = (apic_id_reg >> 24) & 0xff;
4554
4555 if (vcpu->vcpu_id == id)
4556 return 0;
4557
4558 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4559 new = avic_get_physical_id_entry(vcpu, id);
4560 if (!new || !old)
4561 return 1;
4562
4563 /* We need to move physical_id_entry to new offset */
4564 *new = *old;
4565 *old = 0ULL;
4566 to_svm(vcpu)->avic_physical_id_cache = new;
4567
4568 /*
4569 * Also update the guest physical APIC ID in the logical
4570 * APIC ID table entry if already setup the LDR.
4571 */
4572 if (svm->ldr_reg)
4573 avic_handle_ldr_update(vcpu);
4574
4575 return 0;
4576}
4577
4578static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
4579{
4580 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson81811c12018-03-20 12:17:21 -07004581 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004582 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
4583 u32 mod = (dfr >> 28) & 0xf;
4584
4585 /*
4586 * We assume that all local APICs are using the same type.
4587 * If this changes, we need to flush the AVIC logical
4588 * APID id table.
4589 */
Sean Christopherson81811c12018-03-20 12:17:21 -07004590 if (kvm_svm->ldr_mode == mod)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004591 return 0;
4592
Sean Christopherson81811c12018-03-20 12:17:21 -07004593 clear_page(page_address(kvm_svm->avic_logical_id_table_page));
4594 kvm_svm->ldr_mode = mod;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004595
4596 if (svm->ldr_reg)
4597 avic_handle_ldr_update(vcpu);
4598 return 0;
4599}
4600
4601static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4602{
4603 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4604 u32 offset = svm->vmcb->control.exit_info_1 &
4605 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4606
4607 switch (offset) {
4608 case APIC_ID:
4609 if (avic_handle_apic_id_update(&svm->vcpu))
4610 return 0;
4611 break;
4612 case APIC_LDR:
4613 if (avic_handle_ldr_update(&svm->vcpu))
4614 return 0;
4615 break;
4616 case APIC_DFR:
4617 avic_handle_dfr_update(&svm->vcpu);
4618 break;
4619 default:
4620 break;
4621 }
4622
4623 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4624
4625 return 1;
4626}
4627
4628static bool is_avic_unaccelerated_access_trap(u32 offset)
4629{
4630 bool ret = false;
4631
4632 switch (offset) {
4633 case APIC_ID:
4634 case APIC_EOI:
4635 case APIC_RRR:
4636 case APIC_LDR:
4637 case APIC_DFR:
4638 case APIC_SPIV:
4639 case APIC_ESR:
4640 case APIC_ICR:
4641 case APIC_LVTT:
4642 case APIC_LVTTHMR:
4643 case APIC_LVTPC:
4644 case APIC_LVT0:
4645 case APIC_LVT1:
4646 case APIC_LVTERR:
4647 case APIC_TMICT:
4648 case APIC_TDCR:
4649 ret = true;
4650 break;
4651 default:
4652 break;
4653 }
4654 return ret;
4655}
4656
4657static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4658{
4659 int ret = 0;
4660 u32 offset = svm->vmcb->control.exit_info_1 &
4661 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4662 u32 vector = svm->vmcb->control.exit_info_2 &
4663 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4664 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4665 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4666 bool trap = is_avic_unaccelerated_access_trap(offset);
4667
4668 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4669 trap, write, vector);
4670 if (trap) {
4671 /* Handling Trap */
4672 WARN_ONCE(!write, "svm: Handling trap read.\n");
4673 ret = avic_unaccel_trap_write(svm);
4674 } else {
4675 /* Handling Fault */
4676 ret = (emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
4677 }
4678
4679 return ret;
4680}
4681
Mathias Krause09941fb2012-08-30 01:30:20 +02004682static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004683 [SVM_EXIT_READ_CR0] = cr_interception,
4684 [SVM_EXIT_READ_CR3] = cr_interception,
4685 [SVM_EXIT_READ_CR4] = cr_interception,
4686 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004687 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004688 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004689 [SVM_EXIT_WRITE_CR3] = cr_interception,
4690 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004691 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004692 [SVM_EXIT_READ_DR0] = dr_interception,
4693 [SVM_EXIT_READ_DR1] = dr_interception,
4694 [SVM_EXIT_READ_DR2] = dr_interception,
4695 [SVM_EXIT_READ_DR3] = dr_interception,
4696 [SVM_EXIT_READ_DR4] = dr_interception,
4697 [SVM_EXIT_READ_DR5] = dr_interception,
4698 [SVM_EXIT_READ_DR6] = dr_interception,
4699 [SVM_EXIT_READ_DR7] = dr_interception,
4700 [SVM_EXIT_WRITE_DR0] = dr_interception,
4701 [SVM_EXIT_WRITE_DR1] = dr_interception,
4702 [SVM_EXIT_WRITE_DR2] = dr_interception,
4703 [SVM_EXIT_WRITE_DR3] = dr_interception,
4704 [SVM_EXIT_WRITE_DR4] = dr_interception,
4705 [SVM_EXIT_WRITE_DR5] = dr_interception,
4706 [SVM_EXIT_WRITE_DR6] = dr_interception,
4707 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004708 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4709 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004710 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004711 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004712 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004713 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004714 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004715 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004716 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004717 [SVM_EXIT_SMI] = nop_on_interception,
4718 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004719 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004720 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004721 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004722 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004723 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004724 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004725 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004726 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004727 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004728 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004729 [SVM_EXIT_MSR] = msr_interception,
4730 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004731 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004732 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004733 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004734 [SVM_EXIT_VMLOAD] = vmload_interception,
4735 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004736 [SVM_EXIT_STGI] = stgi_interception,
4737 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004738 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004739 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004740 [SVM_EXIT_MONITOR] = monitor_interception,
4741 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004742 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004743 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004744 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004745 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4746 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004747};
4748
Joe Perchesae8cc052011-04-24 22:00:50 -07004749static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004750{
4751 struct vcpu_svm *svm = to_svm(vcpu);
4752 struct vmcb_control_area *control = &svm->vmcb->control;
4753 struct vmcb_save_area *save = &svm->vmcb->save;
4754
4755 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004756 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4757 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4758 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4759 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4760 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4761 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4762 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004763 pr_err("%-20s%d\n", "pause filter threshold:",
4764 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004765 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4766 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4767 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4768 pr_err("%-20s%d\n", "asid:", control->asid);
4769 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4770 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4771 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4772 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4773 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4774 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4775 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4776 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4777 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4778 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4779 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004780 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004781 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4782 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004783 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004784 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004785 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4786 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4787 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004788 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004789 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4790 "es:",
4791 save->es.selector, save->es.attrib,
4792 save->es.limit, save->es.base);
4793 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4794 "cs:",
4795 save->cs.selector, save->cs.attrib,
4796 save->cs.limit, save->cs.base);
4797 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4798 "ss:",
4799 save->ss.selector, save->ss.attrib,
4800 save->ss.limit, save->ss.base);
4801 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4802 "ds:",
4803 save->ds.selector, save->ds.attrib,
4804 save->ds.limit, save->ds.base);
4805 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4806 "fs:",
4807 save->fs.selector, save->fs.attrib,
4808 save->fs.limit, save->fs.base);
4809 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4810 "gs:",
4811 save->gs.selector, save->gs.attrib,
4812 save->gs.limit, save->gs.base);
4813 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4814 "gdtr:",
4815 save->gdtr.selector, save->gdtr.attrib,
4816 save->gdtr.limit, save->gdtr.base);
4817 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4818 "ldtr:",
4819 save->ldtr.selector, save->ldtr.attrib,
4820 save->ldtr.limit, save->ldtr.base);
4821 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4822 "idtr:",
4823 save->idtr.selector, save->idtr.attrib,
4824 save->idtr.limit, save->idtr.base);
4825 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4826 "tr:",
4827 save->tr.selector, save->tr.attrib,
4828 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004829 pr_err("cpl: %d efer: %016llx\n",
4830 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004831 pr_err("%-15s %016llx %-13s %016llx\n",
4832 "cr0:", save->cr0, "cr2:", save->cr2);
4833 pr_err("%-15s %016llx %-13s %016llx\n",
4834 "cr3:", save->cr3, "cr4:", save->cr4);
4835 pr_err("%-15s %016llx %-13s %016llx\n",
4836 "dr6:", save->dr6, "dr7:", save->dr7);
4837 pr_err("%-15s %016llx %-13s %016llx\n",
4838 "rip:", save->rip, "rflags:", save->rflags);
4839 pr_err("%-15s %016llx %-13s %016llx\n",
4840 "rsp:", save->rsp, "rax:", save->rax);
4841 pr_err("%-15s %016llx %-13s %016llx\n",
4842 "star:", save->star, "lstar:", save->lstar);
4843 pr_err("%-15s %016llx %-13s %016llx\n",
4844 "cstar:", save->cstar, "sfmask:", save->sfmask);
4845 pr_err("%-15s %016llx %-13s %016llx\n",
4846 "kernel_gs_base:", save->kernel_gs_base,
4847 "sysenter_cs:", save->sysenter_cs);
4848 pr_err("%-15s %016llx %-13s %016llx\n",
4849 "sysenter_esp:", save->sysenter_esp,
4850 "sysenter_eip:", save->sysenter_eip);
4851 pr_err("%-15s %016llx %-13s %016llx\n",
4852 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4853 pr_err("%-15s %016llx %-13s %016llx\n",
4854 "br_from:", save->br_from, "br_to:", save->br_to);
4855 pr_err("%-15s %016llx %-13s %016llx\n",
4856 "excp_from:", save->last_excp_from,
4857 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004858}
4859
Avi Kivity586f9602010-11-18 13:09:54 +02004860static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4861{
4862 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4863
4864 *info1 = control->exit_info_1;
4865 *info2 = control->exit_info_2;
4866}
4867
Avi Kivity851ba692009-08-24 11:10:17 +03004868static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004869{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004870 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004871 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004872 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004873
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004874 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4875
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004876 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004877 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4878 if (npt_enabled)
4879 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004880
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004881 if (unlikely(svm->nested.exit_required)) {
4882 nested_svm_vmexit(svm);
4883 svm->nested.exit_required = false;
4884
4885 return 1;
4886 }
4887
Joerg Roedel20307532010-11-29 17:51:48 +01004888 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004889 int vmexit;
4890
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004891 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4892 svm->vmcb->control.exit_info_1,
4893 svm->vmcb->control.exit_info_2,
4894 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004895 svm->vmcb->control.exit_int_info_err,
4896 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004897
Joerg Roedel410e4d52009-08-07 11:49:44 +02004898 vmexit = nested_svm_exit_special(svm);
4899
4900 if (vmexit == NESTED_EXIT_CONTINUE)
4901 vmexit = nested_svm_exit_handled(svm);
4902
4903 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01004904 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01004905 }
4906
Joerg Roedela5c38322009-08-07 11:49:32 +02004907 svm_complete_interrupts(svm);
4908
Avi Kivity04d2cc72007-09-10 18:10:54 +03004909 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4910 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4911 kvm_run->fail_entry.hardware_entry_failure_reason
4912 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02004913 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4914 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03004915 return 0;
4916 }
4917
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004918 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01004919 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02004920 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4921 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02004922 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08004923 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08004924 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004925 exit_code);
4926
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02004927 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08004928 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04004929 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03004930 kvm_queue_exception(vcpu, UD_VECTOR);
4931 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004932 }
4933
Avi Kivity851ba692009-08-24 11:10:17 +03004934 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004935}
4936
4937static void reload_tss(struct kvm_vcpu *vcpu)
4938{
4939 int cpu = raw_smp_processor_id();
4940
Tejun Heo0fe1e002009-10-29 22:34:14 +09004941 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4942 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004943 load_TR_desc();
4944}
4945
Brijesh Singh70cd94e2017-12-04 10:57:34 -06004946static void pre_sev_run(struct vcpu_svm *svm, int cpu)
4947{
4948 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4949 int asid = sev_get_asid(svm->vcpu.kvm);
4950
4951 /* Assign the asid allocated with this SEV guest */
4952 svm->vmcb->control.asid = asid;
4953
4954 /*
4955 * Flush guest TLB:
4956 *
4957 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
4958 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
4959 */
4960 if (sd->sev_vmcbs[asid] == svm->vmcb &&
4961 svm->last_cpu == cpu)
4962 return;
4963
4964 svm->last_cpu = cpu;
4965 sd->sev_vmcbs[asid] = svm->vmcb;
4966 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
4967 mark_dirty(svm->vmcb, VMCB_ASID);
4968}
4969
Rusty Russelle756fc62007-07-30 20:07:08 +10004970static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004971{
4972 int cpu = raw_smp_processor_id();
4973
Tejun Heo0fe1e002009-10-29 22:34:14 +09004974 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004975
Brijesh Singh70cd94e2017-12-04 10:57:34 -06004976 if (sev_guest(svm->vcpu.kvm))
4977 return pre_sev_run(svm, cpu);
4978
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03004979 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09004980 if (svm->asid_generation != sd->asid_generation)
4981 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004982}
4983
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004984static void svm_inject_nmi(struct kvm_vcpu *vcpu)
4985{
4986 struct vcpu_svm *svm = to_svm(vcpu);
4987
4988 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
4989 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01004990 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004991 ++vcpu->stat.nmi_injections;
4992}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004993
Eddie Dong85f455f2007-07-06 12:20:49 +03004994static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004995{
4996 struct vmcb_control_area *control;
4997
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004998 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10004999 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005000 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005001 control->int_ctl &= ~V_INTR_PRIO_MASK;
5002 control->int_ctl |= V_IRQ_MASK |
5003 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005004 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005005}
5006
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005007static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005008{
5009 struct vcpu_svm *svm = to_svm(vcpu);
5010
Joerg Roedel2af91942009-08-07 11:49:28 +02005011 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005012
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005013 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5014 ++vcpu->stat.irq_injections;
5015
Alexander Graf219b65d2009-06-15 15:21:25 +02005016 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5017 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005018}
5019
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005020static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5021{
5022 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5023}
5024
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005025static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5026{
5027 struct vcpu_svm *svm = to_svm(vcpu);
5028
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005029 if (svm_nested_virtualize_tpr(vcpu) ||
5030 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005031 return;
5032
Radim Krčmář596f3142014-03-11 19:11:18 +01005033 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5034
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005035 if (irr == -1)
5036 return;
5037
5038 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005039 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005040}
5041
Jim Mattson8d860bb2018-05-09 16:56:05 -04005042static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005043{
5044 return;
5045}
5046
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005047static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005048{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005049 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005050}
5051
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005052static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5053{
5054}
5055
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005056static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005057{
5058}
5059
5060/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005061static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5062{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005063 struct vcpu_svm *svm = to_svm(vcpu);
5064 struct vmcb *vmcb = svm->vmcb;
5065
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005066 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005067 return;
5068
5069 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5070 mark_dirty(vmcb, VMCB_INTR);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005071}
5072
Andrey Smetanin63086302015-11-10 15:36:32 +03005073static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005074{
5075 return;
5076}
5077
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005078static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5079{
5080 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5081 smp_mb__after_atomic();
5082
5083 if (avic_vcpu_is_running(vcpu))
5084 wrmsrl(SVM_AVIC_DOORBELL,
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05005085 kvm_cpu_get_apicid(vcpu->cpu));
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005086 else
5087 kvm_vcpu_wake_up(vcpu);
5088}
5089
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005090static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5091{
5092 unsigned long flags;
5093 struct amd_svm_iommu_ir *cur;
5094
5095 spin_lock_irqsave(&svm->ir_list_lock, flags);
5096 list_for_each_entry(cur, &svm->ir_list, node) {
5097 if (cur->data != pi->ir_data)
5098 continue;
5099 list_del(&cur->node);
5100 kfree(cur);
5101 break;
5102 }
5103 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5104}
5105
5106static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5107{
5108 int ret = 0;
5109 unsigned long flags;
5110 struct amd_svm_iommu_ir *ir;
5111
5112 /**
5113 * In some cases, the existing irte is updaed and re-set,
5114 * so we need to check here if it's already been * added
5115 * to the ir_list.
5116 */
5117 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5118 struct kvm *kvm = svm->vcpu.kvm;
5119 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5120 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5121 struct vcpu_svm *prev_svm;
5122
5123 if (!prev_vcpu) {
5124 ret = -EINVAL;
5125 goto out;
5126 }
5127
5128 prev_svm = to_svm(prev_vcpu);
5129 svm_ir_list_del(prev_svm, pi);
5130 }
5131
5132 /**
5133 * Allocating new amd_iommu_pi_data, which will get
5134 * add to the per-vcpu ir_list.
5135 */
5136 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
5137 if (!ir) {
5138 ret = -ENOMEM;
5139 goto out;
5140 }
5141 ir->data = pi->ir_data;
5142
5143 spin_lock_irqsave(&svm->ir_list_lock, flags);
5144 list_add(&ir->node, &svm->ir_list);
5145 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5146out:
5147 return ret;
5148}
5149
5150/**
5151 * Note:
5152 * The HW cannot support posting multicast/broadcast
5153 * interrupts to a vCPU. So, we still use legacy interrupt
5154 * remapping for these kind of interrupts.
5155 *
5156 * For lowest-priority interrupts, we only support
5157 * those with single CPU as the destination, e.g. user
5158 * configures the interrupts via /proc/irq or uses
5159 * irqbalance to make the interrupts single-CPU.
5160 */
5161static int
5162get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5163 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5164{
5165 struct kvm_lapic_irq irq;
5166 struct kvm_vcpu *vcpu = NULL;
5167
5168 kvm_set_msi_irq(kvm, e, &irq);
5169
5170 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
5171 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5172 __func__, irq.vector);
5173 return -1;
5174 }
5175
5176 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5177 irq.vector);
5178 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005179 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005180 vcpu_info->vector = irq.vector;
5181
5182 return 0;
5183}
5184
5185/*
5186 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5187 *
5188 * @kvm: kvm
5189 * @host_irq: host irq of the interrupt
5190 * @guest_irq: gsi of the interrupt
5191 * @set: set or unset PI
5192 * returns 0 on success, < 0 on failure
5193 */
5194static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5195 uint32_t guest_irq, bool set)
5196{
5197 struct kvm_kernel_irq_routing_entry *e;
5198 struct kvm_irq_routing_table *irq_rt;
5199 int idx, ret = -EINVAL;
5200
5201 if (!kvm_arch_has_assigned_device(kvm) ||
5202 !irq_remapping_cap(IRQ_POSTING_CAP))
5203 return 0;
5204
5205 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5206 __func__, host_irq, guest_irq, set);
5207
5208 idx = srcu_read_lock(&kvm->irq_srcu);
5209 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5210 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5211
5212 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5213 struct vcpu_data vcpu_info;
5214 struct vcpu_svm *svm = NULL;
5215
5216 if (e->type != KVM_IRQ_ROUTING_MSI)
5217 continue;
5218
5219 /**
5220 * Here, we setup with legacy mode in the following cases:
5221 * 1. When cannot target interrupt to a specific vcpu.
5222 * 2. Unsetting posted interrupt.
5223 * 3. APIC virtialization is disabled for the vcpu.
5224 */
5225 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5226 kvm_vcpu_apicv_active(&svm->vcpu)) {
5227 struct amd_iommu_pi_data pi;
5228
5229 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005230 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5231 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005232 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005233 svm->vcpu.vcpu_id);
5234 pi.is_guest_mode = true;
5235 pi.vcpu_data = &vcpu_info;
5236 ret = irq_set_vcpu_affinity(host_irq, &pi);
5237
5238 /**
5239 * Here, we successfully setting up vcpu affinity in
5240 * IOMMU guest mode. Now, we need to store the posted
5241 * interrupt information in a per-vcpu ir_list so that
5242 * we can reference to them directly when we update vcpu
5243 * scheduling information in IOMMU irte.
5244 */
5245 if (!ret && pi.is_guest_mode)
5246 svm_ir_list_add(svm, &pi);
5247 } else {
5248 /* Use legacy mode in IRTE */
5249 struct amd_iommu_pi_data pi;
5250
5251 /**
5252 * Here, pi is used to:
5253 * - Tell IOMMU to use legacy mode for this interrupt.
5254 * - Retrieve ga_tag of prior interrupt remapping data.
5255 */
5256 pi.is_guest_mode = false;
5257 ret = irq_set_vcpu_affinity(host_irq, &pi);
5258
5259 /**
5260 * Check if the posted interrupt was previously
5261 * setup with the guest_mode by checking if the ga_tag
5262 * was cached. If so, we need to clean up the per-vcpu
5263 * ir_list.
5264 */
5265 if (!ret && pi.prev_ga_tag) {
5266 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5267 struct kvm_vcpu *vcpu;
5268
5269 vcpu = kvm_get_vcpu_by_id(kvm, id);
5270 if (vcpu)
5271 svm_ir_list_del(to_svm(vcpu), &pi);
5272 }
5273 }
5274
5275 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005276 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5277 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005278 vcpu_info.pi_desc_addr, set);
5279 }
5280
5281 if (ret < 0) {
5282 pr_err("%s: failed to update PI IRTE\n", __func__);
5283 goto out;
5284 }
5285 }
5286
5287 ret = 0;
5288out:
5289 srcu_read_unlock(&kvm->irq_srcu, idx);
5290 return ret;
5291}
5292
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005293static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005294{
5295 struct vcpu_svm *svm = to_svm(vcpu);
5296 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005297 int ret;
5298 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5299 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5300 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5301
5302 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005303}
5304
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005305static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5306{
5307 struct vcpu_svm *svm = to_svm(vcpu);
5308
5309 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5310}
5311
5312static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5313{
5314 struct vcpu_svm *svm = to_svm(vcpu);
5315
5316 if (masked) {
5317 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005318 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005319 } else {
5320 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005321 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005322 }
5323}
5324
Gleb Natapov78646122009-03-23 12:12:11 +02005325static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5326{
5327 struct vcpu_svm *svm = to_svm(vcpu);
5328 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005329 int ret;
5330
5331 if (!gif_set(svm) ||
5332 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5333 return 0;
5334
Avi Kivityf6e78472010-08-02 15:30:20 +03005335 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005336
Joerg Roedel20307532010-11-29 17:51:48 +01005337 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005338 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5339
5340 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005341}
5342
Jan Kiszkac9a79532014-03-07 20:03:15 +01005343static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005344{
Alexander Graf219b65d2009-06-15 15:21:25 +02005345 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005346
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005347 if (kvm_vcpu_apicv_active(vcpu))
5348 return;
5349
Joerg Roedele0231712010-02-24 18:59:10 +01005350 /*
5351 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5352 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5353 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005354 * we'll get the vintr intercept. However, if the vGIF feature is
5355 * enabled, the STGI interception will not occur. Enable the irq
5356 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005357 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005358 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005359 svm_set_vintr(svm);
5360 svm_inject_irq(svm, 0x0);
5361 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005362}
5363
Jan Kiszkac9a79532014-03-07 20:03:15 +01005364static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005365{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005366 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005367
Gleb Natapov44c11432009-05-11 13:35:52 +03005368 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5369 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005370 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005371
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005372 if (!gif_set(svm)) {
5373 if (vgif_enabled(svm))
5374 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005375 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005376 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005377
5378 if (svm->nested.exit_required)
5379 return; /* we're not going to run the guest yet */
5380
Joerg Roedele0231712010-02-24 18:59:10 +01005381 /*
5382 * Something prevents NMI from been injected. Single step over possible
5383 * problem (IRET or exception injection or interrupt shadow)
5384 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005385 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005386 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005387 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005388}
5389
Izik Eiduscbc94022007-10-25 00:29:55 +02005390static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5391{
5392 return 0;
5393}
5394
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005395static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5396{
5397 return 0;
5398}
5399
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005400static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005401{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005402 struct vcpu_svm *svm = to_svm(vcpu);
5403
5404 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5405 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5406 else
5407 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005408}
5409
Avi Kivity04d2cc72007-09-10 18:10:54 +03005410static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5411{
5412}
5413
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005414static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5415{
5416 struct vcpu_svm *svm = to_svm(vcpu);
5417
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005418 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005419 return;
5420
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005421 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005422 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005423 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005424 }
5425}
5426
Joerg Roedel649d6862008-04-16 16:51:15 +02005427static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5428{
5429 struct vcpu_svm *svm = to_svm(vcpu);
5430 u64 cr8;
5431
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005432 if (svm_nested_virtualize_tpr(vcpu) ||
5433 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005434 return;
5435
Joerg Roedel649d6862008-04-16 16:51:15 +02005436 cr8 = kvm_get_cr8(vcpu);
5437 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5438 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5439}
5440
Gleb Natapov9222be12009-04-23 17:14:37 +03005441static void svm_complete_interrupts(struct vcpu_svm *svm)
5442{
5443 u8 vector;
5444 int type;
5445 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005446 unsigned int3_injected = svm->int3_injected;
5447
5448 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005449
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005450 /*
5451 * If we've made progress since setting HF_IRET_MASK, we've
5452 * executed an IRET and can allow NMI injection.
5453 */
5454 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5455 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005456 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005457 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5458 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005459
Gleb Natapov9222be12009-04-23 17:14:37 +03005460 svm->vcpu.arch.nmi_injected = false;
5461 kvm_clear_exception_queue(&svm->vcpu);
5462 kvm_clear_interrupt_queue(&svm->vcpu);
5463
5464 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5465 return;
5466
Avi Kivity3842d132010-07-27 12:30:24 +03005467 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5468
Gleb Natapov9222be12009-04-23 17:14:37 +03005469 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5470 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5471
5472 switch (type) {
5473 case SVM_EXITINTINFO_TYPE_NMI:
5474 svm->vcpu.arch.nmi_injected = true;
5475 break;
5476 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005477 /*
5478 * In case of software exceptions, do not reinject the vector,
5479 * but re-execute the instruction instead. Rewind RIP first
5480 * if we emulated INT3 before.
5481 */
5482 if (kvm_exception_is_soft(vector)) {
5483 if (vector == BP_VECTOR && int3_injected &&
5484 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5485 kvm_rip_write(&svm->vcpu,
5486 kvm_rip_read(&svm->vcpu) -
5487 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005488 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005489 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005490 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5491 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005492 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005493
5494 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005495 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005496 break;
5497 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005498 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005499 break;
5500 default:
5501 break;
5502 }
5503}
5504
Avi Kivityb463a6f2010-07-20 15:06:17 +03005505static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5506{
5507 struct vcpu_svm *svm = to_svm(vcpu);
5508 struct vmcb_control_area *control = &svm->vmcb->control;
5509
5510 control->exit_int_info = control->event_inj;
5511 control->exit_int_info_err = control->event_inj_err;
5512 control->event_inj = 0;
5513 svm_complete_interrupts(svm);
5514}
5515
Avi Kivity851ba692009-08-24 11:10:17 +03005516static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005517{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005518 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005519
Joerg Roedel2041a062010-04-22 12:33:08 +02005520 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5521 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5522 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5523
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005524 /*
5525 * A vmexit emulation is required before the vcpu can be executed
5526 * again.
5527 */
5528 if (unlikely(svm->nested.exit_required))
5529 return;
5530
Ladi Proseka12713c2017-06-21 09:07:00 +02005531 /*
5532 * Disable singlestep if we're injecting an interrupt/exception.
5533 * We don't want our modified rflags to be pushed on the stack where
5534 * we might not be able to easily reset them if we disabled NMI
5535 * singlestep later.
5536 */
5537 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5538 /*
5539 * Event injection happens before external interrupts cause a
5540 * vmexit and interrupts are disabled here, so smp_send_reschedule
5541 * is enough to force an immediate vmexit.
5542 */
5543 disable_nmi_singlestep(svm);
5544 smp_send_reschedule(vcpu->cpu);
5545 }
5546
Rusty Russelle756fc62007-07-30 20:07:08 +10005547 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005548
Joerg Roedel649d6862008-04-16 16:51:15 +02005549 sync_lapic_to_cr8(vcpu);
5550
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005551 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005552
Avi Kivity04d2cc72007-09-10 18:10:54 +03005553 clgi();
5554
5555 local_irq_enable();
Avi Kivity36241b82006-12-22 01:05:20 -08005556
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005557 /*
5558 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5559 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5560 * is no need to worry about the conditional branch over the wrmsr
5561 * being speculatively taken.
5562 */
5563 if (svm->spec_ctrl)
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005564 native_wrmsrl(MSR_IA32_SPEC_CTRL, svm->spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005565
Avi Kivity6aa8b732006-12-10 02:21:36 -08005566 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005567 "push %%" _ASM_BP "; \n\t"
5568 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5569 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5570 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5571 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5572 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5573 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005574#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005575 "mov %c[r8](%[svm]), %%r8 \n\t"
5576 "mov %c[r9](%[svm]), %%r9 \n\t"
5577 "mov %c[r10](%[svm]), %%r10 \n\t"
5578 "mov %c[r11](%[svm]), %%r11 \n\t"
5579 "mov %c[r12](%[svm]), %%r12 \n\t"
5580 "mov %c[r13](%[svm]), %%r13 \n\t"
5581 "mov %c[r14](%[svm]), %%r14 \n\t"
5582 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005583#endif
5584
Avi Kivity6aa8b732006-12-10 02:21:36 -08005585 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005586 "push %%" _ASM_AX " \n\t"
5587 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005588 __ex(SVM_VMLOAD) "\n\t"
5589 __ex(SVM_VMRUN) "\n\t"
5590 __ex(SVM_VMSAVE) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005591 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005592
5593 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005594 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5595 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5596 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5597 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5598 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5599 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005600#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005601 "mov %%r8, %c[r8](%[svm]) \n\t"
5602 "mov %%r9, %c[r9](%[svm]) \n\t"
5603 "mov %%r10, %c[r10](%[svm]) \n\t"
5604 "mov %%r11, %c[r11](%[svm]) \n\t"
5605 "mov %%r12, %c[r12](%[svm]) \n\t"
5606 "mov %%r13, %c[r13](%[svm]) \n\t"
5607 "mov %%r14, %c[r14](%[svm]) \n\t"
5608 "mov %%r15, %c[r15](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005609#endif
Jim Mattson0cb5b302018-01-03 14:31:38 -08005610 /*
5611 * Clear host registers marked as clobbered to prevent
5612 * speculative use.
5613 */
5614 "xor %%" _ASM_BX ", %%" _ASM_BX " \n\t"
5615 "xor %%" _ASM_CX ", %%" _ASM_CX " \n\t"
5616 "xor %%" _ASM_DX ", %%" _ASM_DX " \n\t"
5617 "xor %%" _ASM_SI ", %%" _ASM_SI " \n\t"
5618 "xor %%" _ASM_DI ", %%" _ASM_DI " \n\t"
5619#ifdef CONFIG_X86_64
5620 "xor %%r8, %%r8 \n\t"
5621 "xor %%r9, %%r9 \n\t"
5622 "xor %%r10, %%r10 \n\t"
5623 "xor %%r11, %%r11 \n\t"
5624 "xor %%r12, %%r12 \n\t"
5625 "xor %%r13, %%r13 \n\t"
5626 "xor %%r14, %%r14 \n\t"
5627 "xor %%r15, %%r15 \n\t"
5628#endif
Avi Kivity74547662012-09-16 15:10:59 +03005629 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005630 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005631 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005632 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005633 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5634 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5635 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5636 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5637 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5638 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005639#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005640 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5641 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5642 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5643 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5644 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5645 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5646 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5647 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005648#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005649 : "cc", "memory"
5650#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005651 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005652 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005653#else
5654 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005655#endif
5656 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005657
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005658 /*
5659 * We do not use IBRS in the kernel. If this vCPU has used the
5660 * SPEC_CTRL MSR it may have left it on; save the value and
5661 * turn it off. This is much more efficient than blindly adding
5662 * it to the atomic save/restore list. Especially as the former
5663 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5664 *
5665 * For non-nested case:
5666 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5667 * save it.
5668 *
5669 * For nested case:
5670 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5671 * save it.
5672 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005673 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005674 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005675
5676 if (svm->spec_ctrl)
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005677 native_wrmsrl(MSR_IA32_SPEC_CTRL, 0);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005678
David Woodhouse117cc7a2018-01-12 11:11:27 +00005679 /* Eliminate branch target predictions from guest mode */
5680 vmexit_fill_RSB();
5681
Avi Kivity82ca2d12010-10-21 12:20:34 +02005682#ifdef CONFIG_X86_64
5683 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5684#else
Avi Kivitydacccfd2010-10-21 12:20:33 +02005685 loadsegment(fs, svm->host.fs);
Avi Kivity831ca602011-03-08 16:09:51 +02005686#ifndef CONFIG_X86_32_LAZY_GS
5687 loadsegment(gs, svm->host.gs);
5688#endif
Avi Kivity9581d442010-10-19 16:46:55 +02005689#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005690
5691 reload_tss(vcpu);
5692
Avi Kivity56ba47d2007-11-07 17:14:18 +02005693 local_irq_disable();
5694
Avi Kivity13c34e02010-10-21 12:20:31 +02005695 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5696 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5697 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5698 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5699
Joerg Roedel3781c012011-01-14 16:45:02 +01005700 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005701 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005702
5703 stgi();
5704
5705 /* Any pending NMI will happen here */
5706
5707 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005708 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005709
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005710 sync_cr8_to_lapic(vcpu);
5711
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005712 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005713
Joerg Roedel38e5e922010-12-03 15:25:16 +01005714 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5715
Gleb Natapov631bc482010-10-14 11:22:52 +02005716 /* if exit due to PF check for async PF */
5717 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005718 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005719
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005720 if (npt_enabled) {
5721 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5722 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5723 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005724
5725 /*
5726 * We need to handle MC intercepts here before the vcpu has a chance to
5727 * change the physical cpu
5728 */
5729 if (unlikely(svm->vmcb->control.exit_code ==
5730 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5731 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005732
5733 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005734}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005735STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005736
Avi Kivity6aa8b732006-12-10 02:21:36 -08005737static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5738{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005739 struct vcpu_svm *svm = to_svm(vcpu);
5740
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005741 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005742 mark_dirty(svm->vmcb, VMCB_CR);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005743 svm_flush_tlb(vcpu, true);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005744}
5745
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005746static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5747{
5748 struct vcpu_svm *svm = to_svm(vcpu);
5749
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005750 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005751 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005752
5753 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005754 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005755 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005756
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005757 svm_flush_tlb(vcpu, true);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005758}
5759
Avi Kivity6aa8b732006-12-10 02:21:36 -08005760static int is_disabled(void)
5761{
Joerg Roedel6031a612007-06-22 12:29:50 +03005762 u64 vm_cr;
5763
5764 rdmsrl(MSR_VM_CR, vm_cr);
5765 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5766 return 1;
5767
Avi Kivity6aa8b732006-12-10 02:21:36 -08005768 return 0;
5769}
5770
Ingo Molnar102d8322007-02-19 14:37:47 +02005771static void
5772svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5773{
5774 /*
5775 * Patch in the VMMCALL instruction:
5776 */
5777 hypercall[0] = 0x0f;
5778 hypercall[1] = 0x01;
5779 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005780}
5781
Yang, Sheng002c7f72007-07-31 14:23:01 +03005782static void svm_check_processor_compat(void *rtn)
5783{
5784 *(int *)rtn = 0;
5785}
5786
Avi Kivity774ead32007-12-26 13:57:04 +02005787static bool svm_cpu_has_accelerated_tpr(void)
5788{
5789 return false;
5790}
5791
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005792static bool svm_has_high_real_mode_segbase(void)
5793{
5794 return true;
5795}
5796
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005797static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5798{
5799 return 0;
5800}
5801
Sheng Yang0e851882009-12-18 16:48:46 +08005802static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5803{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005804 struct vcpu_svm *svm = to_svm(vcpu);
5805
5806 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005807 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005808
5809 if (!kvm_vcpu_apicv_active(vcpu))
5810 return;
5811
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005812 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005813}
5814
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005815static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5816{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005817 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005818 case 0x1:
5819 if (avic)
5820 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5821 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005822 case 0x80000001:
5823 if (nested)
5824 entry->ecx |= (1 << 2); /* Set SVM bit */
5825 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005826 case 0x8000000A:
5827 entry->eax = 1; /* SVM revision 1 */
5828 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5829 ASID emulation to nested SVM */
5830 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005831 entry->edx = 0; /* Per default do not support any
5832 additional features */
5833
5834 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005835 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005836 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005837
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005838 /* Support NPT for the guest if enabled */
5839 if (npt_enabled)
5840 entry->edx |= SVM_FEATURE_NPT;
5841
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005842 break;
Brijesh Singh8765d752017-12-04 10:57:25 -06005843 case 0x8000001F:
5844 /* Support memory encryption cpuid if host supports it */
5845 if (boot_cpu_has(X86_FEATURE_SEV))
5846 cpuid(0x8000001f, &entry->eax, &entry->ebx,
5847 &entry->ecx, &entry->edx);
5848
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005849 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005850}
5851
Sheng Yang17cc3932010-01-05 19:02:27 +08005852static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005853{
Sheng Yang17cc3932010-01-05 19:02:27 +08005854 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005855}
5856
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005857static bool svm_rdtscp_supported(void)
5858{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005859 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005860}
5861
Mao, Junjiead756a12012-07-02 01:18:48 +00005862static bool svm_invpcid_supported(void)
5863{
5864 return false;
5865}
5866
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005867static bool svm_mpx_supported(void)
5868{
5869 return false;
5870}
5871
Wanpeng Li55412b22014-12-02 19:21:30 +08005872static bool svm_xsaves_supported(void)
5873{
5874 return false;
5875}
5876
Paolo Bonzini66336ca2016-07-12 10:36:41 +02005877static bool svm_umip_emulated(void)
5878{
5879 return false;
5880}
5881
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005882static bool svm_has_wbinvd_exit(void)
5883{
5884 return true;
5885}
5886
Joerg Roedel80612522011-04-04 12:39:33 +02005887#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005888 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005889#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005890 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005891#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005892 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005893
Mathias Krause09941fb2012-08-30 01:30:20 +02005894static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005895 u32 exit_code;
5896 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005897} x86_intercept_map[] = {
5898 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5899 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5900 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5901 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5902 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02005903 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5904 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02005905 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5906 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5907 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5908 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5909 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5910 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5911 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5912 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02005913 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
5914 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
5915 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
5916 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
5917 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
5918 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
5919 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
5920 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005921 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
5922 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
5923 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02005924 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
5925 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
5926 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
5927 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
5928 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
5929 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
5930 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
5931 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
5932 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02005933 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
5934 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
5935 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
5936 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
5937 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
5938 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
5939 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02005940 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
5941 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
5942 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
5943 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005944};
5945
Joerg Roedel80612522011-04-04 12:39:33 +02005946#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005947#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005948#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005949
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005950static int svm_check_intercept(struct kvm_vcpu *vcpu,
5951 struct x86_instruction_info *info,
5952 enum x86_intercept_stage stage)
5953{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005954 struct vcpu_svm *svm = to_svm(vcpu);
5955 int vmexit, ret = X86EMUL_CONTINUE;
5956 struct __x86_intercept icpt_info;
5957 struct vmcb *vmcb = svm->vmcb;
5958
5959 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
5960 goto out;
5961
5962 icpt_info = x86_intercept_map[info->intercept];
5963
Avi Kivity40e19b52011-04-21 12:35:41 +03005964 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005965 goto out;
5966
5967 switch (icpt_info.exit_code) {
5968 case SVM_EXIT_READ_CR0:
5969 if (info->intercept == x86_intercept_cr_read)
5970 icpt_info.exit_code += info->modrm_reg;
5971 break;
5972 case SVM_EXIT_WRITE_CR0: {
5973 unsigned long cr0, val;
5974 u64 intercept;
5975
5976 if (info->intercept == x86_intercept_cr_write)
5977 icpt_info.exit_code += info->modrm_reg;
5978
Jan Kiszka62baf442014-06-29 21:55:53 +02005979 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
5980 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005981 break;
5982
5983 intercept = svm->nested.intercept;
5984
5985 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
5986 break;
5987
5988 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
5989 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
5990
5991 if (info->intercept == x86_intercept_lmsw) {
5992 cr0 &= 0xfUL;
5993 val &= 0xfUL;
5994 /* lmsw can't clear PE - catch this here */
5995 if (cr0 & X86_CR0_PE)
5996 val |= X86_CR0_PE;
5997 }
5998
5999 if (cr0 ^ val)
6000 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6001
6002 break;
6003 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006004 case SVM_EXIT_READ_DR0:
6005 case SVM_EXIT_WRITE_DR0:
6006 icpt_info.exit_code += info->modrm_reg;
6007 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006008 case SVM_EXIT_MSR:
6009 if (info->intercept == x86_intercept_wrmsr)
6010 vmcb->control.exit_info_1 = 1;
6011 else
6012 vmcb->control.exit_info_1 = 0;
6013 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006014 case SVM_EXIT_PAUSE:
6015 /*
6016 * We get this for NOP only, but pause
6017 * is rep not, check this here
6018 */
6019 if (info->rep_prefix != REPE_PREFIX)
6020 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006021 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006022 case SVM_EXIT_IOIO: {
6023 u64 exit_info;
6024 u32 bytes;
6025
Joerg Roedelf6511932011-04-04 12:39:35 +02006026 if (info->intercept == x86_intercept_in ||
6027 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006028 exit_info = ((info->src_val & 0xffff) << 16) |
6029 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006030 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006031 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006032 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006033 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006034 }
6035
6036 if (info->intercept == x86_intercept_outs ||
6037 info->intercept == x86_intercept_ins)
6038 exit_info |= SVM_IOIO_STR_MASK;
6039
6040 if (info->rep_prefix)
6041 exit_info |= SVM_IOIO_REP_MASK;
6042
6043 bytes = min(bytes, 4u);
6044
6045 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6046
6047 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6048
6049 vmcb->control.exit_info_1 = exit_info;
6050 vmcb->control.exit_info_2 = info->next_rip;
6051
6052 break;
6053 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006054 default:
6055 break;
6056 }
6057
Bandan Dasf1047652015-06-11 02:05:33 -04006058 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6059 if (static_cpu_has(X86_FEATURE_NRIPS))
6060 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006061 vmcb->control.exit_code = icpt_info.exit_code;
6062 vmexit = nested_svm_exit_handled(svm);
6063
6064 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6065 : X86EMUL_CONTINUE;
6066
6067out:
6068 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006069}
6070
Yang Zhanga547c6d2013-04-11 19:25:10 +08006071static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
6072{
6073 local_irq_enable();
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006074 /*
6075 * We must have an instruction with interrupts enabled, so
6076 * the timer interrupt isn't delayed by the interrupt shadow.
6077 */
6078 asm("nop");
6079 local_irq_disable();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006080}
6081
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006082static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6083{
Babu Moger8566ac82018-03-16 16:37:26 -04006084 if (pause_filter_thresh)
6085 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006086}
6087
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006088static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6089{
6090 if (avic_handle_apic_id_update(vcpu) != 0)
6091 return;
6092 if (avic_handle_dfr_update(vcpu) != 0)
6093 return;
6094 avic_handle_ldr_update(vcpu);
6095}
6096
Borislav Petkov74f16902017-03-26 23:51:24 +02006097static void svm_setup_mce(struct kvm_vcpu *vcpu)
6098{
6099 /* [63:9] are reserved. */
6100 vcpu->arch.mcg_cap &= 0x1ff;
6101}
6102
Ladi Prosek72d7b372017-10-11 16:54:41 +02006103static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6104{
Ladi Prosek05cade72017-10-11 16:54:45 +02006105 struct vcpu_svm *svm = to_svm(vcpu);
6106
6107 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6108 if (!gif_set(svm))
6109 return 0;
6110
6111 if (is_guest_mode(&svm->vcpu) &&
6112 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6113 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6114 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6115 svm->nested.exit_required = true;
6116 return 0;
6117 }
6118
Ladi Prosek72d7b372017-10-11 16:54:41 +02006119 return 1;
6120}
6121
Ladi Prosek0234bf82017-10-11 16:54:40 +02006122static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6123{
Ladi Prosek05cade72017-10-11 16:54:45 +02006124 struct vcpu_svm *svm = to_svm(vcpu);
6125 int ret;
6126
6127 if (is_guest_mode(vcpu)) {
6128 /* FED8h - SVM Guest */
6129 put_smstate(u64, smstate, 0x7ed8, 1);
6130 /* FEE0h - SVM Guest VMCB Physical Address */
6131 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6132
6133 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6134 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6135 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6136
6137 ret = nested_svm_vmexit(svm);
6138 if (ret)
6139 return ret;
6140 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006141 return 0;
6142}
6143
6144static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
6145{
Ladi Prosek05cade72017-10-11 16:54:45 +02006146 struct vcpu_svm *svm = to_svm(vcpu);
6147 struct vmcb *nested_vmcb;
6148 struct page *page;
6149 struct {
6150 u64 guest;
6151 u64 vmcb;
6152 } svm_state_save;
6153 int ret;
6154
6155 ret = kvm_vcpu_read_guest(vcpu, smbase + 0xfed8, &svm_state_save,
6156 sizeof(svm_state_save));
6157 if (ret)
6158 return ret;
6159
6160 if (svm_state_save.guest) {
6161 vcpu->arch.hflags &= ~HF_SMM_MASK;
6162 nested_vmcb = nested_svm_map(svm, svm_state_save.vmcb, &page);
6163 if (nested_vmcb)
6164 enter_svm_guest_mode(svm, svm_state_save.vmcb, nested_vmcb, page);
6165 else
6166 ret = 1;
6167 vcpu->arch.hflags |= HF_SMM_MASK;
6168 }
6169 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006170}
6171
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006172static int enable_smi_window(struct kvm_vcpu *vcpu)
6173{
6174 struct vcpu_svm *svm = to_svm(vcpu);
6175
6176 if (!gif_set(svm)) {
6177 if (vgif_enabled(svm))
6178 set_intercept(svm, INTERCEPT_STGI);
6179 /* STGI will cause a vm exit */
6180 return 1;
6181 }
6182 return 0;
6183}
6184
Brijesh Singh1654efc2017-12-04 10:57:34 -06006185static int sev_asid_new(void)
6186{
6187 int pos;
6188
6189 /*
6190 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6191 */
6192 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
6193 if (pos >= max_sev_asid)
6194 return -EBUSY;
6195
6196 set_bit(pos, sev_asid_bitmap);
6197 return pos + 1;
6198}
6199
6200static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6201{
Sean Christopherson81811c12018-03-20 12:17:21 -07006202 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006203 int asid, ret;
6204
6205 ret = -EBUSY;
6206 asid = sev_asid_new();
6207 if (asid < 0)
6208 return ret;
6209
6210 ret = sev_platform_init(&argp->error);
6211 if (ret)
6212 goto e_free;
6213
6214 sev->active = true;
6215 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006216 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006217
6218 return 0;
6219
6220e_free:
6221 __sev_asid_free(asid);
6222 return ret;
6223}
6224
Brijesh Singh59414c92017-12-04 10:57:35 -06006225static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6226{
6227 struct sev_data_activate *data;
6228 int asid = sev_get_asid(kvm);
6229 int ret;
6230
6231 wbinvd_on_all_cpus();
6232
6233 ret = sev_guest_df_flush(error);
6234 if (ret)
6235 return ret;
6236
6237 data = kzalloc(sizeof(*data), GFP_KERNEL);
6238 if (!data)
6239 return -ENOMEM;
6240
6241 /* activate ASID on the given handle */
6242 data->handle = handle;
6243 data->asid = asid;
6244 ret = sev_guest_activate(data, error);
6245 kfree(data);
6246
6247 return ret;
6248}
6249
Brijesh Singh89c50582017-12-04 10:57:35 -06006250static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006251{
6252 struct fd f;
6253 int ret;
6254
6255 f = fdget(fd);
6256 if (!f.file)
6257 return -EBADF;
6258
6259 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6260
6261 fdput(f);
6262 return ret;
6263}
6264
Brijesh Singh89c50582017-12-04 10:57:35 -06006265static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6266{
Sean Christopherson81811c12018-03-20 12:17:21 -07006267 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006268
6269 return __sev_issue_cmd(sev->fd, id, data, error);
6270}
6271
Brijesh Singh59414c92017-12-04 10:57:35 -06006272static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6273{
Sean Christopherson81811c12018-03-20 12:17:21 -07006274 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006275 struct sev_data_launch_start *start;
6276 struct kvm_sev_launch_start params;
6277 void *dh_blob, *session_blob;
6278 int *error = &argp->error;
6279 int ret;
6280
6281 if (!sev_guest(kvm))
6282 return -ENOTTY;
6283
6284 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6285 return -EFAULT;
6286
6287 start = kzalloc(sizeof(*start), GFP_KERNEL);
6288 if (!start)
6289 return -ENOMEM;
6290
6291 dh_blob = NULL;
6292 if (params.dh_uaddr) {
6293 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6294 if (IS_ERR(dh_blob)) {
6295 ret = PTR_ERR(dh_blob);
6296 goto e_free;
6297 }
6298
6299 start->dh_cert_address = __sme_set(__pa(dh_blob));
6300 start->dh_cert_len = params.dh_len;
6301 }
6302
6303 session_blob = NULL;
6304 if (params.session_uaddr) {
6305 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6306 if (IS_ERR(session_blob)) {
6307 ret = PTR_ERR(session_blob);
6308 goto e_free_dh;
6309 }
6310
6311 start->session_address = __sme_set(__pa(session_blob));
6312 start->session_len = params.session_len;
6313 }
6314
6315 start->handle = params.handle;
6316 start->policy = params.policy;
6317
6318 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006319 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006320 if (ret)
6321 goto e_free_session;
6322
6323 /* Bind ASID to this guest */
6324 ret = sev_bind_asid(kvm, start->handle, error);
6325 if (ret)
6326 goto e_free_session;
6327
6328 /* return handle to userspace */
6329 params.handle = start->handle;
6330 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6331 sev_unbind_asid(kvm, start->handle);
6332 ret = -EFAULT;
6333 goto e_free_session;
6334 }
6335
6336 sev->handle = start->handle;
6337 sev->fd = argp->sev_fd;
6338
6339e_free_session:
6340 kfree(session_blob);
6341e_free_dh:
6342 kfree(dh_blob);
6343e_free:
6344 kfree(start);
6345 return ret;
6346}
6347
Brijesh Singh89c50582017-12-04 10:57:35 -06006348static int get_num_contig_pages(int idx, struct page **inpages,
6349 unsigned long npages)
6350{
6351 unsigned long paddr, next_paddr;
6352 int i = idx + 1, pages = 1;
6353
6354 /* find the number of contiguous pages starting from idx */
6355 paddr = __sme_page_pa(inpages[idx]);
6356 while (i < npages) {
6357 next_paddr = __sme_page_pa(inpages[i++]);
6358 if ((paddr + PAGE_SIZE) == next_paddr) {
6359 pages++;
6360 paddr = next_paddr;
6361 continue;
6362 }
6363 break;
6364 }
6365
6366 return pages;
6367}
6368
6369static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6370{
6371 unsigned long vaddr, vaddr_end, next_vaddr, npages, size;
Sean Christopherson81811c12018-03-20 12:17:21 -07006372 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006373 struct kvm_sev_launch_update_data params;
6374 struct sev_data_launch_update_data *data;
6375 struct page **inpages;
6376 int i, ret, pages;
6377
6378 if (!sev_guest(kvm))
6379 return -ENOTTY;
6380
6381 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6382 return -EFAULT;
6383
6384 data = kzalloc(sizeof(*data), GFP_KERNEL);
6385 if (!data)
6386 return -ENOMEM;
6387
6388 vaddr = params.uaddr;
6389 size = params.len;
6390 vaddr_end = vaddr + size;
6391
6392 /* Lock the user memory. */
6393 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6394 if (!inpages) {
6395 ret = -ENOMEM;
6396 goto e_free;
6397 }
6398
6399 /*
6400 * The LAUNCH_UPDATE command will perform in-place encryption of the
6401 * memory content (i.e it will write the same memory region with C=1).
6402 * It's possible that the cache may contain the data with C=0, i.e.,
6403 * unencrypted so invalidate it first.
6404 */
6405 sev_clflush_pages(inpages, npages);
6406
6407 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6408 int offset, len;
6409
6410 /*
6411 * If the user buffer is not page-aligned, calculate the offset
6412 * within the page.
6413 */
6414 offset = vaddr & (PAGE_SIZE - 1);
6415
6416 /* Calculate the number of pages that can be encrypted in one go. */
6417 pages = get_num_contig_pages(i, inpages, npages);
6418
6419 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6420
6421 data->handle = sev->handle;
6422 data->len = len;
6423 data->address = __sme_page_pa(inpages[i]) + offset;
6424 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6425 if (ret)
6426 goto e_unpin;
6427
6428 size -= len;
6429 next_vaddr = vaddr + len;
6430 }
6431
6432e_unpin:
6433 /* content of memory is updated, mark pages dirty */
6434 for (i = 0; i < npages; i++) {
6435 set_page_dirty_lock(inpages[i]);
6436 mark_page_accessed(inpages[i]);
6437 }
6438 /* unlock the user pages */
6439 sev_unpin_memory(kvm, inpages, npages);
6440e_free:
6441 kfree(data);
6442 return ret;
6443}
6444
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006445static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6446{
Brijesh Singh3e233382018-02-23 12:36:50 -06006447 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006448 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006449 struct sev_data_launch_measure *data;
6450 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006451 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006452 void *blob = NULL;
6453 int ret;
6454
6455 if (!sev_guest(kvm))
6456 return -ENOTTY;
6457
Brijesh Singh3e233382018-02-23 12:36:50 -06006458 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006459 return -EFAULT;
6460
6461 data = kzalloc(sizeof(*data), GFP_KERNEL);
6462 if (!data)
6463 return -ENOMEM;
6464
6465 /* User wants to query the blob length */
6466 if (!params.len)
6467 goto cmd;
6468
Brijesh Singh3e233382018-02-23 12:36:50 -06006469 p = (void __user *)(uintptr_t)params.uaddr;
6470 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006471 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6472 ret = -EINVAL;
6473 goto e_free;
6474 }
6475
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006476 ret = -ENOMEM;
6477 blob = kmalloc(params.len, GFP_KERNEL);
6478 if (!blob)
6479 goto e_free;
6480
6481 data->address = __psp_pa(blob);
6482 data->len = params.len;
6483 }
6484
6485cmd:
6486 data->handle = sev->handle;
6487 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6488
6489 /*
6490 * If we query the session length, FW responded with expected data.
6491 */
6492 if (!params.len)
6493 goto done;
6494
6495 if (ret)
6496 goto e_free_blob;
6497
6498 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006499 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006500 ret = -EFAULT;
6501 }
6502
6503done:
6504 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006505 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006506 ret = -EFAULT;
6507e_free_blob:
6508 kfree(blob);
6509e_free:
6510 kfree(data);
6511 return ret;
6512}
6513
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006514static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6515{
Sean Christopherson81811c12018-03-20 12:17:21 -07006516 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006517 struct sev_data_launch_finish *data;
6518 int ret;
6519
6520 if (!sev_guest(kvm))
6521 return -ENOTTY;
6522
6523 data = kzalloc(sizeof(*data), GFP_KERNEL);
6524 if (!data)
6525 return -ENOMEM;
6526
6527 data->handle = sev->handle;
6528 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6529
6530 kfree(data);
6531 return ret;
6532}
6533
Brijesh Singh255d9e72017-12-04 10:57:37 -06006534static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6535{
Sean Christopherson81811c12018-03-20 12:17:21 -07006536 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006537 struct kvm_sev_guest_status params;
6538 struct sev_data_guest_status *data;
6539 int ret;
6540
6541 if (!sev_guest(kvm))
6542 return -ENOTTY;
6543
6544 data = kzalloc(sizeof(*data), GFP_KERNEL);
6545 if (!data)
6546 return -ENOMEM;
6547
6548 data->handle = sev->handle;
6549 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6550 if (ret)
6551 goto e_free;
6552
6553 params.policy = data->policy;
6554 params.state = data->state;
6555 params.handle = data->handle;
6556
6557 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6558 ret = -EFAULT;
6559e_free:
6560 kfree(data);
6561 return ret;
6562}
6563
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006564static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6565 unsigned long dst, int size,
6566 int *error, bool enc)
6567{
Sean Christopherson81811c12018-03-20 12:17:21 -07006568 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006569 struct sev_data_dbg *data;
6570 int ret;
6571
6572 data = kzalloc(sizeof(*data), GFP_KERNEL);
6573 if (!data)
6574 return -ENOMEM;
6575
6576 data->handle = sev->handle;
6577 data->dst_addr = dst;
6578 data->src_addr = src;
6579 data->len = size;
6580
6581 ret = sev_issue_cmd(kvm,
6582 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6583 data, error);
6584 kfree(data);
6585 return ret;
6586}
6587
6588static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6589 unsigned long dst_paddr, int sz, int *err)
6590{
6591 int offset;
6592
6593 /*
6594 * Its safe to read more than we are asked, caller should ensure that
6595 * destination has enough space.
6596 */
6597 src_paddr = round_down(src_paddr, 16);
6598 offset = src_paddr & 15;
6599 sz = round_up(sz + offset, 16);
6600
6601 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6602}
6603
6604static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6605 unsigned long __user dst_uaddr,
6606 unsigned long dst_paddr,
6607 int size, int *err)
6608{
6609 struct page *tpage = NULL;
6610 int ret, offset;
6611
6612 /* if inputs are not 16-byte then use intermediate buffer */
6613 if (!IS_ALIGNED(dst_paddr, 16) ||
6614 !IS_ALIGNED(paddr, 16) ||
6615 !IS_ALIGNED(size, 16)) {
6616 tpage = (void *)alloc_page(GFP_KERNEL);
6617 if (!tpage)
6618 return -ENOMEM;
6619
6620 dst_paddr = __sme_page_pa(tpage);
6621 }
6622
6623 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6624 if (ret)
6625 goto e_free;
6626
6627 if (tpage) {
6628 offset = paddr & 15;
6629 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6630 page_address(tpage) + offset, size))
6631 ret = -EFAULT;
6632 }
6633
6634e_free:
6635 if (tpage)
6636 __free_page(tpage);
6637
6638 return ret;
6639}
6640
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006641static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6642 unsigned long __user vaddr,
6643 unsigned long dst_paddr,
6644 unsigned long __user dst_vaddr,
6645 int size, int *error)
6646{
6647 struct page *src_tpage = NULL;
6648 struct page *dst_tpage = NULL;
6649 int ret, len = size;
6650
6651 /* If source buffer is not aligned then use an intermediate buffer */
6652 if (!IS_ALIGNED(vaddr, 16)) {
6653 src_tpage = alloc_page(GFP_KERNEL);
6654 if (!src_tpage)
6655 return -ENOMEM;
6656
6657 if (copy_from_user(page_address(src_tpage),
6658 (void __user *)(uintptr_t)vaddr, size)) {
6659 __free_page(src_tpage);
6660 return -EFAULT;
6661 }
6662
6663 paddr = __sme_page_pa(src_tpage);
6664 }
6665
6666 /*
6667 * If destination buffer or length is not aligned then do read-modify-write:
6668 * - decrypt destination in an intermediate buffer
6669 * - copy the source buffer in an intermediate buffer
6670 * - use the intermediate buffer as source buffer
6671 */
6672 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6673 int dst_offset;
6674
6675 dst_tpage = alloc_page(GFP_KERNEL);
6676 if (!dst_tpage) {
6677 ret = -ENOMEM;
6678 goto e_free;
6679 }
6680
6681 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6682 __sme_page_pa(dst_tpage), size, error);
6683 if (ret)
6684 goto e_free;
6685
6686 /*
6687 * If source is kernel buffer then use memcpy() otherwise
6688 * copy_from_user().
6689 */
6690 dst_offset = dst_paddr & 15;
6691
6692 if (src_tpage)
6693 memcpy(page_address(dst_tpage) + dst_offset,
6694 page_address(src_tpage), size);
6695 else {
6696 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6697 (void __user *)(uintptr_t)vaddr, size)) {
6698 ret = -EFAULT;
6699 goto e_free;
6700 }
6701 }
6702
6703 paddr = __sme_page_pa(dst_tpage);
6704 dst_paddr = round_down(dst_paddr, 16);
6705 len = round_up(size, 16);
6706 }
6707
6708 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6709
6710e_free:
6711 if (src_tpage)
6712 __free_page(src_tpage);
6713 if (dst_tpage)
6714 __free_page(dst_tpage);
6715 return ret;
6716}
6717
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006718static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6719{
6720 unsigned long vaddr, vaddr_end, next_vaddr;
6721 unsigned long dst_vaddr, dst_vaddr_end;
6722 struct page **src_p, **dst_p;
6723 struct kvm_sev_dbg debug;
6724 unsigned long n;
6725 int ret, size;
6726
6727 if (!sev_guest(kvm))
6728 return -ENOTTY;
6729
6730 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6731 return -EFAULT;
6732
6733 vaddr = debug.src_uaddr;
6734 size = debug.len;
6735 vaddr_end = vaddr + size;
6736 dst_vaddr = debug.dst_uaddr;
6737 dst_vaddr_end = dst_vaddr + size;
6738
6739 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6740 int len, s_off, d_off;
6741
6742 /* lock userspace source and destination page */
6743 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6744 if (!src_p)
6745 return -EFAULT;
6746
6747 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6748 if (!dst_p) {
6749 sev_unpin_memory(kvm, src_p, n);
6750 return -EFAULT;
6751 }
6752
6753 /*
6754 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6755 * memory content (i.e it will write the same memory region with C=1).
6756 * It's possible that the cache may contain the data with C=0, i.e.,
6757 * unencrypted so invalidate it first.
6758 */
6759 sev_clflush_pages(src_p, 1);
6760 sev_clflush_pages(dst_p, 1);
6761
6762 /*
6763 * Since user buffer may not be page aligned, calculate the
6764 * offset within the page.
6765 */
6766 s_off = vaddr & ~PAGE_MASK;
6767 d_off = dst_vaddr & ~PAGE_MASK;
6768 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6769
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006770 if (dec)
6771 ret = __sev_dbg_decrypt_user(kvm,
6772 __sme_page_pa(src_p[0]) + s_off,
6773 dst_vaddr,
6774 __sme_page_pa(dst_p[0]) + d_off,
6775 len, &argp->error);
6776 else
6777 ret = __sev_dbg_encrypt_user(kvm,
6778 __sme_page_pa(src_p[0]) + s_off,
6779 vaddr,
6780 __sme_page_pa(dst_p[0]) + d_off,
6781 dst_vaddr,
6782 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006783
6784 sev_unpin_memory(kvm, src_p, 1);
6785 sev_unpin_memory(kvm, dst_p, 1);
6786
6787 if (ret)
6788 goto err;
6789
6790 next_vaddr = vaddr + len;
6791 dst_vaddr = dst_vaddr + len;
6792 size -= len;
6793 }
6794err:
6795 return ret;
6796}
6797
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006798static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6799{
Sean Christopherson81811c12018-03-20 12:17:21 -07006800 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006801 struct sev_data_launch_secret *data;
6802 struct kvm_sev_launch_secret params;
6803 struct page **pages;
6804 void *blob, *hdr;
6805 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006806 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006807
6808 if (!sev_guest(kvm))
6809 return -ENOTTY;
6810
6811 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6812 return -EFAULT;
6813
6814 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
6815 if (!pages)
6816 return -ENOMEM;
6817
6818 /*
6819 * The secret must be copied into contiguous memory region, lets verify
6820 * that userspace memory pages are contiguous before we issue command.
6821 */
6822 if (get_num_contig_pages(0, pages, n) != n) {
6823 ret = -EINVAL;
6824 goto e_unpin_memory;
6825 }
6826
6827 ret = -ENOMEM;
6828 data = kzalloc(sizeof(*data), GFP_KERNEL);
6829 if (!data)
6830 goto e_unpin_memory;
6831
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006832 offset = params.guest_uaddr & (PAGE_SIZE - 1);
6833 data->guest_address = __sme_page_pa(pages[0]) + offset;
6834 data->guest_len = params.guest_len;
6835
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006836 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
6837 if (IS_ERR(blob)) {
6838 ret = PTR_ERR(blob);
6839 goto e_free;
6840 }
6841
6842 data->trans_address = __psp_pa(blob);
6843 data->trans_len = params.trans_len;
6844
6845 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
6846 if (IS_ERR(hdr)) {
6847 ret = PTR_ERR(hdr);
6848 goto e_free_blob;
6849 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006850 data->hdr_address = __psp_pa(hdr);
6851 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006852
6853 data->handle = sev->handle;
6854 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
6855
6856 kfree(hdr);
6857
6858e_free_blob:
6859 kfree(blob);
6860e_free:
6861 kfree(data);
6862e_unpin_memory:
6863 sev_unpin_memory(kvm, pages, n);
6864 return ret;
6865}
6866
Brijesh Singh1654efc2017-12-04 10:57:34 -06006867static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
6868{
6869 struct kvm_sev_cmd sev_cmd;
6870 int r;
6871
6872 if (!svm_sev_enabled())
6873 return -ENOTTY;
6874
6875 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
6876 return -EFAULT;
6877
6878 mutex_lock(&kvm->lock);
6879
6880 switch (sev_cmd.id) {
6881 case KVM_SEV_INIT:
6882 r = sev_guest_init(kvm, &sev_cmd);
6883 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06006884 case KVM_SEV_LAUNCH_START:
6885 r = sev_launch_start(kvm, &sev_cmd);
6886 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06006887 case KVM_SEV_LAUNCH_UPDATE_DATA:
6888 r = sev_launch_update_data(kvm, &sev_cmd);
6889 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006890 case KVM_SEV_LAUNCH_MEASURE:
6891 r = sev_launch_measure(kvm, &sev_cmd);
6892 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006893 case KVM_SEV_LAUNCH_FINISH:
6894 r = sev_launch_finish(kvm, &sev_cmd);
6895 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006896 case KVM_SEV_GUEST_STATUS:
6897 r = sev_guest_status(kvm, &sev_cmd);
6898 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006899 case KVM_SEV_DBG_DECRYPT:
6900 r = sev_dbg_crypt(kvm, &sev_cmd, true);
6901 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006902 case KVM_SEV_DBG_ENCRYPT:
6903 r = sev_dbg_crypt(kvm, &sev_cmd, false);
6904 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006905 case KVM_SEV_LAUNCH_SECRET:
6906 r = sev_launch_secret(kvm, &sev_cmd);
6907 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006908 default:
6909 r = -EINVAL;
6910 goto out;
6911 }
6912
6913 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
6914 r = -EFAULT;
6915
6916out:
6917 mutex_unlock(&kvm->lock);
6918 return r;
6919}
6920
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006921static int svm_register_enc_region(struct kvm *kvm,
6922 struct kvm_enc_region *range)
6923{
Sean Christopherson81811c12018-03-20 12:17:21 -07006924 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006925 struct enc_region *region;
6926 int ret = 0;
6927
6928 if (!sev_guest(kvm))
6929 return -ENOTTY;
6930
Dan Carpenter86bf20c2018-05-19 09:01:36 +03006931 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
6932 return -EINVAL;
6933
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006934 region = kzalloc(sizeof(*region), GFP_KERNEL);
6935 if (!region)
6936 return -ENOMEM;
6937
6938 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
6939 if (!region->pages) {
6940 ret = -ENOMEM;
6941 goto e_free;
6942 }
6943
6944 /*
6945 * The guest may change the memory encryption attribute from C=0 -> C=1
6946 * or vice versa for this memory range. Lets make sure caches are
6947 * flushed to ensure that guest data gets written into memory with
6948 * correct C-bit.
6949 */
6950 sev_clflush_pages(region->pages, region->npages);
6951
6952 region->uaddr = range->addr;
6953 region->size = range->size;
6954
6955 mutex_lock(&kvm->lock);
6956 list_add_tail(&region->list, &sev->regions_list);
6957 mutex_unlock(&kvm->lock);
6958
6959 return ret;
6960
6961e_free:
6962 kfree(region);
6963 return ret;
6964}
6965
6966static struct enc_region *
6967find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
6968{
Sean Christopherson81811c12018-03-20 12:17:21 -07006969 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006970 struct list_head *head = &sev->regions_list;
6971 struct enc_region *i;
6972
6973 list_for_each_entry(i, head, list) {
6974 if (i->uaddr == range->addr &&
6975 i->size == range->size)
6976 return i;
6977 }
6978
6979 return NULL;
6980}
6981
6982
6983static int svm_unregister_enc_region(struct kvm *kvm,
6984 struct kvm_enc_region *range)
6985{
6986 struct enc_region *region;
6987 int ret;
6988
6989 mutex_lock(&kvm->lock);
6990
6991 if (!sev_guest(kvm)) {
6992 ret = -ENOTTY;
6993 goto failed;
6994 }
6995
6996 region = find_enc_region(kvm, range);
6997 if (!region) {
6998 ret = -EINVAL;
6999 goto failed;
7000 }
7001
7002 __unregister_enc_region_locked(kvm, region);
7003
7004 mutex_unlock(&kvm->lock);
7005 return 0;
7006
7007failed:
7008 mutex_unlock(&kvm->lock);
7009 return ret;
7010}
7011
Kees Cook404f6aa2016-08-08 16:29:06 -07007012static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007013 .cpu_has_kvm_support = has_svm,
7014 .disabled_by_bios = is_disabled,
7015 .hardware_setup = svm_hardware_setup,
7016 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007017 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007018 .hardware_enable = svm_hardware_enable,
7019 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007020 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Paolo Bonzini6d396b52015-04-01 14:25:33 +02007021 .cpu_has_high_real_mode_segbase = svm_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007022
7023 .vcpu_create = svm_create_vcpu,
7024 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007025 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007026
Sean Christopherson434a1e92018-03-20 12:17:18 -07007027 .vm_alloc = svm_vm_alloc,
7028 .vm_free = svm_vm_free,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007029 .vm_init = avic_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007030 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007031
Avi Kivity04d2cc72007-09-10 18:10:54 +03007032 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007033 .vcpu_load = svm_vcpu_load,
7034 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007035 .vcpu_blocking = svm_vcpu_blocking,
7036 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007037
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007038 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007039 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007040 .get_msr = svm_get_msr,
7041 .set_msr = svm_set_msr,
7042 .get_segment_base = svm_get_segment_base,
7043 .get_segment = svm_get_segment,
7044 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007045 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007046 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007047 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007048 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007049 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007050 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007051 .set_cr3 = svm_set_cr3,
7052 .set_cr4 = svm_set_cr4,
7053 .set_efer = svm_set_efer,
7054 .get_idt = svm_get_idt,
7055 .set_idt = svm_set_idt,
7056 .get_gdt = svm_get_gdt,
7057 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007058 .get_dr6 = svm_get_dr6,
7059 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007060 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007061 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007062 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007063 .get_rflags = svm_get_rflags,
7064 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007065
Avi Kivity6aa8b732006-12-10 02:21:36 -08007066 .tlb_flush = svm_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007067
Avi Kivity6aa8b732006-12-10 02:21:36 -08007068 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007069 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007070 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007071 .set_interrupt_shadow = svm_set_interrupt_shadow,
7072 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007073 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007074 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007075 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007076 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007077 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007078 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007079 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007080 .get_nmi_mask = svm_get_nmi_mask,
7081 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007082 .enable_nmi_window = enable_nmi_window,
7083 .enable_irq_window = enable_irq_window,
7084 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007085 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007086 .get_enable_apicv = svm_get_enable_apicv,
7087 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007088 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007089 .hwapic_irr_update = svm_hwapic_irr_update,
7090 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007091 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007092 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007093
7094 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007095 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007096 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007097 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007098
Avi Kivity586f9602010-11-18 13:09:54 +02007099 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007100
Sheng Yang17cc3932010-01-05 19:02:27 +08007101 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007102
7103 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007104
7105 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007106 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007107 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007108 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007109 .umip_emulated = svm_umip_emulated,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007110
7111 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007112
7113 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007114
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007115 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007116 .write_tsc_offset = svm_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007117
7118 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007119
7120 .check_intercept = svm_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +08007121 .handle_external_intr = svm_handle_external_intr,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007122
7123 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007124
7125 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007126 .deliver_posted_interrupt = svm_deliver_avic_intr,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007127 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007128 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007129
Ladi Prosek72d7b372017-10-11 16:54:41 +02007130 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007131 .pre_enter_smm = svm_pre_enter_smm,
7132 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007133 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007134
7135 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007136 .mem_enc_reg_region = svm_register_enc_region,
7137 .mem_enc_unreg_region = svm_unregister_enc_region,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007138};
7139
7140static int __init svm_init(void)
7141{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007142 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007143 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007144}
7145
7146static void __exit svm_exit(void)
7147{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007148 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007149}
7150
7151module_init(svm_init)
7152module_exit(svm_exit)