blob: 1a7a811118a81a31f5e896db085d5670cad7a75e [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * AMD SVM support
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02007 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08008 *
9 * Authors:
10 * Yaniv Kamay <yaniv@qumranet.com>
11 * Avi Kivity <avi@qumranet.com>
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
16 */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050017
18#define pr_fmt(fmt) "SVM: " fmt
19
Avi Kivityedf88412007-12-16 11:02:48 +020020#include <linux/kvm_host.h>
21
Eddie Dong85f455f2007-07-06 12:20:49 +030022#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080023#include "mmu.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030024#include "kvm_cache_regs.h"
Gleb Natapovfe4c7b12009-03-23 11:23:18 +020025#include "x86.h"
Julian Stecklina66f7b722012-12-05 15:26:19 +010026#include "cpuid.h"
Wei Huang25462f72015-06-19 15:45:05 +020027#include "pmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040028
Avi Kivity6aa8b732006-12-10 02:21:36 -080029#include <linux/module.h>
Josh Triplettae759542012-03-28 11:32:28 -070030#include <linux/mod_devicetable.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020031#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <linux/vmalloc.h>
33#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040034#include <linux/sched.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040035#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -050037#include <linux/amd-iommu.h>
38#include <linux/hashtable.h>
Josh Poimboeufc207aee2017-06-28 10:11:06 -050039#include <linux/frame.h>
Brijesh Singhe9df0942017-12-04 10:57:33 -060040#include <linux/psp-sev.h>
Brijesh Singh1654efc2017-12-04 10:57:34 -060041#include <linux/file.h>
Brijesh Singh89c50582017-12-04 10:57:35 -060042#include <linux/pagemap.h>
43#include <linux/swap.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080044
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -050045#include <asm/apic.h>
Joerg Roedel1018faa2012-02-29 14:57:32 +010046#include <asm/perf_event.h>
Joerg Roedel67ec6602010-05-17 14:43:35 +020047#include <asm/tlbflush.h>
Avi Kivitye4956062007-06-28 14:15:57 -040048#include <asm/desc.h>
Paolo Bonzinifacb0132014-02-21 10:32:27 +010049#include <asm/debugreg.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020050#include <asm/kvm_para.h>
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -050051#include <asm/irq_remapping.h>
Thomas Gleixner28a27752018-04-29 15:01:37 +020052#include <asm/spec-ctrl.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080053
Eduardo Habkost63d11422008-11-17 19:03:20 -020054#include <asm/virtext.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030055#include "trace.h"
Eduardo Habkost63d11422008-11-17 19:03:20 -020056
Avi Kivity4ecac3f2008-05-13 13:23:38 +030057#define __ex(x) __kvm_handle_fault_on_reboot(x)
58
Avi Kivity6aa8b732006-12-10 02:21:36 -080059MODULE_AUTHOR("Qumranet");
60MODULE_LICENSE("GPL");
61
Josh Triplettae759542012-03-28 11:32:28 -070062static const struct x86_cpu_id svm_cpu_id[] = {
63 X86_FEATURE_MATCH(X86_FEATURE_SVM),
64 {}
65};
66MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
67
Avi Kivity6aa8b732006-12-10 02:21:36 -080068#define IOPM_ALLOC_ORDER 2
69#define MSRPM_ALLOC_ORDER 1
70
Avi Kivity6aa8b732006-12-10 02:21:36 -080071#define SEG_TYPE_LDT 2
72#define SEG_TYPE_BUSY_TSS16 3
73
Andre Przywara6bc31bd2010-04-11 23:07:28 +020074#define SVM_FEATURE_NPT (1 << 0)
75#define SVM_FEATURE_LBRV (1 << 1)
76#define SVM_FEATURE_SVML (1 << 2)
77#define SVM_FEATURE_NRIP (1 << 3)
Andre Przywaraddce97a2010-12-21 11:12:03 +010078#define SVM_FEATURE_TSC_RATE (1 << 4)
79#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
80#define SVM_FEATURE_FLUSH_ASID (1 << 6)
81#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020082#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030083
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -050084#define SVM_AVIC_DOORBELL 0xc001011b
85
Joerg Roedel410e4d52009-08-07 11:49:44 +020086#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
87#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
88#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
89
Joerg Roedel24e09cb2008-02-13 18:58:47 +010090#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
91
Joerg Roedelfbc0db72011-03-25 09:44:46 +010092#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010093#define TSC_RATIO_MIN 0x0000000000000001ULL
94#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010095
Dan Carpenter5446a972016-05-23 13:20:10 +030096#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050097
98/*
99 * 0xff is broadcast, so the max index allowed for physical APIC ID
100 * table is 0xfe. APIC IDs above 0xff are reserved.
101 */
102#define AVIC_MAX_PHYSICAL_ID_COUNT 255
103
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500104#define AVIC_UNACCEL_ACCESS_WRITE_MASK 1
105#define AVIC_UNACCEL_ACCESS_OFFSET_MASK 0xFF0
106#define AVIC_UNACCEL_ACCESS_VECTOR_MASK 0xFFFFFFFF
107
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500108/* AVIC GATAG is encoded using VM and VCPU IDs */
109#define AVIC_VCPU_ID_BITS 8
110#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1)
111
112#define AVIC_VM_ID_BITS 24
113#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS)
114#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1)
115
116#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \
117 (y & AVIC_VCPU_ID_MASK))
118#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK)
119#define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK)
120
Joerg Roedel67ec6602010-05-17 14:43:35 +0200121static bool erratum_383_found __read_mostly;
122
Avi Kivity6c8166a2009-05-31 18:15:37 +0300123static const u32 host_save_user_msrs[] = {
124#ifdef CONFIG_X86_64
125 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
126 MSR_FS_BASE,
127#endif
128 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Paolo Bonzini46896c72015-11-12 14:49:16 +0100129 MSR_TSC_AUX,
Avi Kivity6c8166a2009-05-31 18:15:37 +0300130};
131
132#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
133
Sean Christopherson81811c12018-03-20 12:17:21 -0700134struct kvm_sev_info {
135 bool active; /* SEV enabled guest */
136 unsigned int asid; /* ASID used for this guest */
137 unsigned int handle; /* SEV firmware handle */
138 int fd; /* SEV device fd */
139 unsigned long pages_locked; /* Number of pages locked */
140 struct list_head regions_list; /* List of registered regions */
141};
142
143struct kvm_svm {
144 struct kvm kvm;
145
146 /* Struct members for AVIC */
147 u32 avic_vm_id;
148 u32 ldr_mode;
149 struct page *avic_logical_id_table_page;
150 struct page *avic_physical_id_table_page;
151 struct hlist_node hnode;
152
153 struct kvm_sev_info sev_info;
154};
155
Avi Kivity6c8166a2009-05-31 18:15:37 +0300156struct kvm_vcpu;
157
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200158struct nested_state {
159 struct vmcb *hsave;
160 u64 hsave_msr;
Joerg Roedel4a810182010-02-24 18:59:15 +0100161 u64 vm_cr_msr;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200162 u64 vmcb;
163
164 /* These are the merged vectors */
165 u32 *msrpm;
166
167 /* gpa pointers to the real vectors */
168 u64 vmcb_msrpm;
Joerg Roedelce2ac082010-03-01 15:34:39 +0100169 u64 vmcb_iopm;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200170
Joerg Roedelcd3ff652009-10-09 16:08:26 +0200171 /* A VMEXIT is required but not yet emulated */
172 bool exit_required;
173
Joerg Roedelaad42c62009-08-07 11:49:34 +0200174 /* cache for intercepts of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100175 u32 intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100176 u32 intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200177 u32 intercept_exceptions;
178 u64 intercept;
179
Joerg Roedel5bd2edc2010-09-10 17:31:02 +0200180 /* Nested Paging related state */
181 u64 nested_cr3;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200182};
183
Joerg Roedel323c3d82010-03-01 15:34:37 +0100184#define MSRPM_OFFSETS 16
185static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
186
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500187/*
188 * Set osvw_len to higher value when updated Revision Guides
189 * are published and we know what the new status bits are
190 */
191static uint64_t osvw_len = 4, osvw_status;
192
Avi Kivity6c8166a2009-05-31 18:15:37 +0300193struct vcpu_svm {
194 struct kvm_vcpu vcpu;
195 struct vmcb *vmcb;
196 unsigned long vmcb_pa;
197 struct svm_cpu_data *svm_data;
198 uint64_t asid_generation;
199 uint64_t sysenter_esp;
200 uint64_t sysenter_eip;
Paolo Bonzini46896c72015-11-12 14:49:16 +0100201 uint64_t tsc_aux;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300202
Tom Lendackyd1d93fa2018-02-24 00:18:20 +0100203 u64 msr_decfg;
204
Avi Kivity6c8166a2009-05-31 18:15:37 +0300205 u64 next_rip;
206
207 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
Avi Kivityafe9e662010-10-21 12:20:32 +0200208 struct {
Avi Kivitydacccfd2010-10-21 12:20:33 +0200209 u16 fs;
210 u16 gs;
211 u16 ldt;
Avi Kivityafe9e662010-10-21 12:20:32 +0200212 u64 gs_base;
213 } host;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300214
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100215 u64 spec_ctrl;
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;
1765 int first, last;
1766
1767 /* Calculate number of pages. */
1768 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1769 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1770 npages = (last - first + 1);
1771
1772 locked = sev->pages_locked + npages;
1773 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1774 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1775 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1776 return NULL;
1777 }
1778
1779 /* Avoid using vmalloc for smaller buffers. */
1780 size = npages * sizeof(struct page *);
1781 if (size > PAGE_SIZE)
1782 pages = vmalloc(size);
1783 else
1784 pages = kmalloc(size, GFP_KERNEL);
1785
1786 if (!pages)
1787 return NULL;
1788
1789 /* Pin the user virtual address. */
1790 npinned = get_user_pages_fast(uaddr, npages, write ? FOLL_WRITE : 0, pages);
1791 if (npinned != npages) {
1792 pr_err("SEV: Failure locking %lu pages.\n", npages);
1793 goto err;
1794 }
1795
1796 *n = npages;
1797 sev->pages_locked = locked;
1798
1799 return pages;
1800
1801err:
1802 if (npinned > 0)
1803 release_pages(pages, npinned);
1804
1805 kvfree(pages);
1806 return NULL;
1807}
1808
1809static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1810 unsigned long npages)
1811{
Sean Christopherson81811c12018-03-20 12:17:21 -07001812 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001813
1814 release_pages(pages, npages);
1815 kvfree(pages);
1816 sev->pages_locked -= npages;
1817}
1818
1819static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1820{
1821 uint8_t *page_virtual;
1822 unsigned long i;
1823
1824 if (npages == 0 || pages == NULL)
1825 return;
1826
1827 for (i = 0; i < npages; i++) {
1828 page_virtual = kmap_atomic(pages[i]);
1829 clflush_cache_range(page_virtual, PAGE_SIZE);
1830 kunmap_atomic(page_virtual);
1831 }
1832}
1833
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001834static void __unregister_enc_region_locked(struct kvm *kvm,
1835 struct enc_region *region)
1836{
1837 /*
1838 * The guest may change the memory encryption attribute from C=0 -> C=1
1839 * or vice versa for this memory range. Lets make sure caches are
1840 * flushed to ensure that guest data gets written into memory with
1841 * correct C-bit.
1842 */
1843 sev_clflush_pages(region->pages, region->npages);
1844
1845 sev_unpin_memory(kvm, region->pages, region->npages);
1846 list_del(&region->list);
1847 kfree(region);
1848}
1849
Sean Christopherson434a1e92018-03-20 12:17:18 -07001850static struct kvm *svm_vm_alloc(void)
1851{
Sean Christopherson81811c12018-03-20 12:17:21 -07001852 struct kvm_svm *kvm_svm = kzalloc(sizeof(struct kvm_svm), GFP_KERNEL);
1853 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001854}
1855
1856static void svm_vm_free(struct kvm *kvm)
1857{
Sean Christopherson81811c12018-03-20 12:17:21 -07001858 kfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001859}
1860
Brijesh Singh1654efc2017-12-04 10:57:34 -06001861static void sev_vm_destroy(struct kvm *kvm)
1862{
Sean Christopherson81811c12018-03-20 12:17:21 -07001863 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001864 struct list_head *head = &sev->regions_list;
1865 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001866
Brijesh Singh1654efc2017-12-04 10:57:34 -06001867 if (!sev_guest(kvm))
1868 return;
1869
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001870 mutex_lock(&kvm->lock);
1871
1872 /*
1873 * if userspace was terminated before unregistering the memory regions
1874 * then lets unpin all the registered memory.
1875 */
1876 if (!list_empty(head)) {
1877 list_for_each_safe(pos, q, head) {
1878 __unregister_enc_region_locked(kvm,
1879 list_entry(pos, struct enc_region, list));
1880 }
1881 }
1882
1883 mutex_unlock(&kvm->lock);
1884
Brijesh Singh59414c92017-12-04 10:57:35 -06001885 sev_unbind_asid(kvm, sev->handle);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001886 sev_asid_free(kvm);
1887}
1888
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001889static void avic_vm_destroy(struct kvm *kvm)
1890{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001891 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001892 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001893
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001894 if (!avic)
1895 return;
1896
Sean Christopherson81811c12018-03-20 12:17:21 -07001897 if (kvm_svm->avic_logical_id_table_page)
1898 __free_page(kvm_svm->avic_logical_id_table_page);
1899 if (kvm_svm->avic_physical_id_table_page)
1900 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001901
1902 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001903 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001904 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001905}
1906
Brijesh Singh1654efc2017-12-04 10:57:34 -06001907static void svm_vm_destroy(struct kvm *kvm)
1908{
1909 avic_vm_destroy(kvm);
1910 sev_vm_destroy(kvm);
1911}
1912
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001913static int avic_vm_init(struct kvm *kvm)
1914{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001915 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001916 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07001917 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
1918 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001919 struct page *p_page;
1920 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001921 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001922
1923 if (!avic)
1924 return 0;
1925
1926 /* Allocating physical APIC ID table (4KB) */
1927 p_page = alloc_page(GFP_KERNEL);
1928 if (!p_page)
1929 goto free_avic;
1930
Sean Christopherson81811c12018-03-20 12:17:21 -07001931 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001932 clear_page(page_address(p_page));
1933
1934 /* Allocating logical APIC ID table (4KB) */
1935 l_page = alloc_page(GFP_KERNEL);
1936 if (!l_page)
1937 goto free_avic;
1938
Sean Christopherson81811c12018-03-20 12:17:21 -07001939 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001940 clear_page(page_address(l_page));
1941
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001942 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001943 again:
1944 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1945 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1946 next_vm_id_wrapped = 1;
1947 goto again;
1948 }
1949 /* Is it still in use? Only possible if wrapped at least once */
1950 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07001951 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
1952 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001953 goto again;
1954 }
1955 }
Sean Christopherson81811c12018-03-20 12:17:21 -07001956 kvm_svm->avic_vm_id = vm_id;
1957 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001958 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1959
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001960 return 0;
1961
1962free_avic:
1963 avic_vm_destroy(kvm);
1964 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001965}
1966
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001967static inline int
1968avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001969{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001970 int ret = 0;
1971 unsigned long flags;
1972 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001973 struct vcpu_svm *svm = to_svm(vcpu);
1974
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001975 if (!kvm_arch_has_assigned_device(vcpu->kvm))
1976 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001977
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001978 /*
1979 * Here, we go through the per-vcpu ir_list to update all existing
1980 * interrupt remapping table entry targeting this vcpu.
1981 */
1982 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001983
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001984 if (list_empty(&svm->ir_list))
1985 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001986
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001987 list_for_each_entry(ir, &svm->ir_list, node) {
1988 ret = amd_iommu_update_ga(cpu, r, ir->data);
1989 if (ret)
1990 break;
1991 }
1992out:
1993 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
1994 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001995}
1996
1997static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1998{
1999 u64 entry;
2000 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002001 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002002 struct vcpu_svm *svm = to_svm(vcpu);
2003
2004 if (!kvm_vcpu_apicv_active(vcpu))
2005 return;
2006
2007 if (WARN_ON(h_physical_id >= AVIC_MAX_PHYSICAL_ID_COUNT))
2008 return;
2009
2010 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2011 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2012
2013 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2014 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2015
2016 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2017 if (svm->avic_is_running)
2018 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2019
2020 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002021 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2022 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002023}
2024
2025static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2026{
2027 u64 entry;
2028 struct vcpu_svm *svm = to_svm(vcpu);
2029
2030 if (!kvm_vcpu_apicv_active(vcpu))
2031 return;
2032
2033 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002034 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2035 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2036
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002037 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2038 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002039}
2040
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002041/**
2042 * This function is called during VCPU halt/unhalt.
2043 */
2044static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2045{
2046 struct vcpu_svm *svm = to_svm(vcpu);
2047
2048 svm->avic_is_running = is_run;
2049 if (is_run)
2050 avic_vcpu_load(vcpu, vcpu->cpu);
2051 else
2052 avic_vcpu_put(vcpu);
2053}
2054
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002055static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002056{
2057 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002058 u32 dummy;
2059 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002060
Wanpeng Li518e7b92018-02-28 14:03:31 +08002061 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002062 svm->spec_ctrl = 0;
2063
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002064 if (!init_event) {
2065 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2066 MSR_IA32_APICBASE_ENABLE;
2067 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2068 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2069 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002070 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002071
Yu Zhange911eb32017-08-24 20:27:52 +08002072 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002073 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002074
2075 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2076 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002077}
2078
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002079static int avic_init_vcpu(struct vcpu_svm *svm)
2080{
2081 int ret;
2082
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002083 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002084 return 0;
2085
2086 ret = avic_init_backing_page(&svm->vcpu);
2087 if (ret)
2088 return ret;
2089
2090 INIT_LIST_HEAD(&svm->ir_list);
2091 spin_lock_init(&svm->ir_list_lock);
2092
2093 return ret;
2094}
2095
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002096static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002097{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002098 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002099 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002100 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002101 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002102 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002103 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002104
Rusty Russellc16f8622007-07-30 21:12:19 +10002105 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002106 if (!svm) {
2107 err = -ENOMEM;
2108 goto out;
2109 }
2110
2111 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
2112 if (err)
2113 goto free_svm;
2114
Joerg Roedelf65c2292008-02-13 18:58:46 +01002115 err = -ENOMEM;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002116 page = alloc_page(GFP_KERNEL);
2117 if (!page)
2118 goto uninit;
2119
Joerg Roedelf65c2292008-02-13 18:58:46 +01002120 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2121 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002122 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002123
2124 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2125 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002126 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002127
Alexander Grafb286d5d2008-11-25 20:17:05 +01002128 hsave_page = alloc_page(GFP_KERNEL);
2129 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002130 goto free_page3;
2131
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002132 err = avic_init_vcpu(svm);
2133 if (err)
2134 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002135
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002136 /* We initialize this flag to true to make sure that the is_running
2137 * bit would be set the first time the vcpu is loaded.
2138 */
2139 svm->avic_is_running = true;
2140
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002141 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002142
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002143 svm->msrpm = page_address(msrpm_pages);
2144 svm_vcpu_init_msrpm(svm->msrpm);
2145
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002146 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002147 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002148
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002149 svm->vmcb = page_address(page);
2150 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002151 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002152 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002153 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002154
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002155 svm_init_osvw(&svm->vcpu);
2156
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002157 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08002158
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002159free_page4:
2160 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002161free_page3:
2162 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2163free_page2:
2164 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2165free_page1:
2166 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002167uninit:
2168 kvm_vcpu_uninit(&svm->vcpu);
2169free_svm:
Rusty Russella4770342007-08-01 14:46:11 +10002170 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002171out:
2172 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002173}
2174
2175static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2176{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002177 struct vcpu_svm *svm = to_svm(vcpu);
2178
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002179 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002180 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002181 __free_page(virt_to_page(svm->nested.hsave));
2182 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002183 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10002184 kmem_cache_free(kvm_vcpu_cache, svm);
Ashok Raj15d45072018-02-01 22:59:43 +01002185 /*
2186 * The vmcb page can be recycled, causing a false negative in
2187 * svm_vcpu_load(). So do a full IBPB now.
2188 */
2189 indirect_branch_prediction_barrier();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002190}
2191
Avi Kivity15ad7142007-07-11 18:17:21 +03002192static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002193{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002194 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002195 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002196 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002197
Avi Kivity0cc50642007-03-25 12:07:27 +02002198 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002199 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002200 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002201 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002202
Avi Kivity82ca2d12010-10-21 12:20:34 +02002203#ifdef CONFIG_X86_64
2204 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2205#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002206 savesegment(fs, svm->host.fs);
2207 savesegment(gs, svm->host.gs);
2208 svm->host.ldt = kvm_read_ldt();
2209
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002210 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002211 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002212
Haozhong Zhangad7218832015-10-20 15:39:02 +08002213 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2214 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2215 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2216 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2217 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2218 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002219 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002220 /* This assumes that the kernel never uses MSR_TSC_AUX */
2221 if (static_cpu_has(X86_FEATURE_RDTSCP))
2222 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002223
Ashok Raj15d45072018-02-01 22:59:43 +01002224 if (sd->current_vmcb != svm->vmcb) {
2225 sd->current_vmcb = svm->vmcb;
2226 indirect_branch_prediction_barrier();
2227 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002228 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002229}
2230
2231static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2232{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002233 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002234 int i;
2235
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002236 avic_vcpu_put(vcpu);
2237
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002238 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002239 kvm_load_ldt(svm->host.ldt);
2240#ifdef CONFIG_X86_64
2241 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002242 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002243 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002244#else
Avi Kivity831ca602011-03-08 16:09:51 +02002245#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002246 loadsegment(gs, svm->host.gs);
2247#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002248#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002249 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002250 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002251}
2252
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002253static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2254{
2255 avic_set_running(vcpu, false);
2256}
2257
2258static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2259{
2260 avic_set_running(vcpu, true);
2261}
2262
Avi Kivity6aa8b732006-12-10 02:21:36 -08002263static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2264{
Ladi Prosek9b611742017-06-21 09:06:59 +02002265 struct vcpu_svm *svm = to_svm(vcpu);
2266 unsigned long rflags = svm->vmcb->save.rflags;
2267
2268 if (svm->nmi_singlestep) {
2269 /* Hide our flags if they were not set by the guest */
2270 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2271 rflags &= ~X86_EFLAGS_TF;
2272 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2273 rflags &= ~X86_EFLAGS_RF;
2274 }
2275 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002276}
2277
2278static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2279{
Ladi Prosek9b611742017-06-21 09:06:59 +02002280 if (to_svm(vcpu)->nmi_singlestep)
2281 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2282
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002283 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002284 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002285 * (caused by either a task switch or an inter-privilege IRET),
2286 * so we do not need to update the CPL here.
2287 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002288 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002289}
2290
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002291static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2292{
2293 switch (reg) {
2294 case VCPU_EXREG_PDPTR:
2295 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002296 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002297 break;
2298 default:
2299 BUG();
2300 }
2301}
2302
Alexander Graff0b85052008-11-25 20:17:01 +01002303static void svm_set_vintr(struct vcpu_svm *svm)
2304{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002305 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002306}
2307
2308static void svm_clear_vintr(struct vcpu_svm *svm)
2309{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002310 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002311}
2312
Avi Kivity6aa8b732006-12-10 02:21:36 -08002313static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2314{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002315 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002316
2317 switch (seg) {
2318 case VCPU_SREG_CS: return &save->cs;
2319 case VCPU_SREG_DS: return &save->ds;
2320 case VCPU_SREG_ES: return &save->es;
2321 case VCPU_SREG_FS: return &save->fs;
2322 case VCPU_SREG_GS: return &save->gs;
2323 case VCPU_SREG_SS: return &save->ss;
2324 case VCPU_SREG_TR: return &save->tr;
2325 case VCPU_SREG_LDTR: return &save->ldtr;
2326 }
2327 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002328 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002329}
2330
2331static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2332{
2333 struct vmcb_seg *s = svm_seg(vcpu, seg);
2334
2335 return s->base;
2336}
2337
2338static void svm_get_segment(struct kvm_vcpu *vcpu,
2339 struct kvm_segment *var, int seg)
2340{
2341 struct vmcb_seg *s = svm_seg(vcpu, seg);
2342
2343 var->base = s->base;
2344 var->limit = s->limit;
2345 var->selector = s->selector;
2346 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2347 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2348 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2349 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2350 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2351 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2352 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302353
2354 /*
2355 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2356 * However, the SVM spec states that the G bit is not observed by the
2357 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2358 * So let's synthesize a legal G bit for all segments, this helps
2359 * running KVM nested. It also helps cross-vendor migration, because
2360 * Intel's vmentry has a check on the 'G' bit.
2361 */
2362 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002363
Joerg Roedele0231712010-02-24 18:59:10 +01002364 /*
2365 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002366 * for cross vendor migration purposes by "not present"
2367 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002368 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002369
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002370 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002371 case VCPU_SREG_TR:
2372 /*
2373 * Work around a bug where the busy flag in the tr selector
2374 * isn't exposed
2375 */
Amit Shahc0d09822008-10-27 09:04:18 +00002376 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002377 break;
2378 case VCPU_SREG_DS:
2379 case VCPU_SREG_ES:
2380 case VCPU_SREG_FS:
2381 case VCPU_SREG_GS:
2382 /*
2383 * The accessed bit must always be set in the segment
2384 * descriptor cache, although it can be cleared in the
2385 * descriptor, the cached bit always remains at 1. Since
2386 * Intel has a check on this, set it here to support
2387 * cross-vendor migration.
2388 */
2389 if (!var->unusable)
2390 var->type |= 0x1;
2391 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002392 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002393 /*
2394 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002395 * descriptor is left as 1, although the whole segment has
2396 * been made unusable. Clear it here to pass an Intel VMX
2397 * entry check when cross vendor migrating.
2398 */
2399 if (var->unusable)
2400 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002401 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002402 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002403 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002404 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002405}
2406
Izik Eidus2e4d2652008-03-24 19:38:34 +02002407static int svm_get_cpl(struct kvm_vcpu *vcpu)
2408{
2409 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2410
2411 return save->cpl;
2412}
2413
Gleb Natapov89a27f42010-02-16 10:51:48 +02002414static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002415{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002416 struct vcpu_svm *svm = to_svm(vcpu);
2417
Gleb Natapov89a27f42010-02-16 10:51:48 +02002418 dt->size = svm->vmcb->save.idtr.limit;
2419 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002420}
2421
Gleb Natapov89a27f42010-02-16 10:51:48 +02002422static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002423{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002424 struct vcpu_svm *svm = to_svm(vcpu);
2425
Gleb Natapov89a27f42010-02-16 10:51:48 +02002426 svm->vmcb->save.idtr.limit = dt->size;
2427 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002428 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002429}
2430
Gleb Natapov89a27f42010-02-16 10:51:48 +02002431static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002432{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002433 struct vcpu_svm *svm = to_svm(vcpu);
2434
Gleb Natapov89a27f42010-02-16 10:51:48 +02002435 dt->size = svm->vmcb->save.gdtr.limit;
2436 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002437}
2438
Gleb Natapov89a27f42010-02-16 10:51:48 +02002439static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002440{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002441 struct vcpu_svm *svm = to_svm(vcpu);
2442
Gleb Natapov89a27f42010-02-16 10:51:48 +02002443 svm->vmcb->save.gdtr.limit = dt->size;
2444 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002445 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002446}
2447
Avi Kivitye8467fd2009-12-29 18:43:06 +02002448static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2449{
2450}
2451
Avi Kivityaff48ba2010-12-05 18:56:11 +02002452static void svm_decache_cr3(struct kvm_vcpu *vcpu)
2453{
2454}
2455
Anthony Liguori25c4c272007-04-27 09:29:21 +03002456static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002457{
2458}
2459
Avi Kivityd2251572010-01-06 10:55:27 +02002460static void update_cr0_intercept(struct vcpu_svm *svm)
2461{
2462 ulong gcr0 = svm->vcpu.arch.cr0;
2463 u64 *hcr0 = &svm->vmcb->save.cr0;
2464
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002465 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2466 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002467
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002468 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002469
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002470 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002471 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2472 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002473 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002474 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2475 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002476 }
2477}
2478
Avi Kivity6aa8b732006-12-10 02:21:36 -08002479static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2480{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002481 struct vcpu_svm *svm = to_svm(vcpu);
2482
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002483#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002484 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002485 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002486 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002487 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002488 }
2489
Mike Dayd77c26f2007-10-08 09:02:08 -04002490 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002491 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002492 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002493 }
2494 }
2495#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002496 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002497
2498 if (!npt_enabled)
2499 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002500
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002501 /*
2502 * re-enable caching here because the QEMU bios
2503 * does not do it - this results in some delay at
2504 * reboot
2505 */
2506 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2507 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002508 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002509 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002510 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002511}
2512
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002513static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002514{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002515 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002516 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2517
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002518 if (cr4 & X86_CR4_VMXE)
2519 return 1;
2520
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002521 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002522 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002523
Joerg Roedelec077262008-04-09 14:15:28 +02002524 vcpu->arch.cr4 = cr4;
2525 if (!npt_enabled)
2526 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002527 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002528 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002529 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002530 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002531}
2532
2533static void svm_set_segment(struct kvm_vcpu *vcpu,
2534 struct kvm_segment *var, int seg)
2535{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002536 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002537 struct vmcb_seg *s = svm_seg(vcpu, seg);
2538
2539 s->base = var->base;
2540 s->limit = var->limit;
2541 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002542 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2543 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2544 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2545 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2546 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2547 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2548 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2549 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002550
2551 /*
2552 * This is always accurate, except if SYSRET returned to a segment
2553 * with SS.DPL != 3. Intel does not have this quirk, and always
2554 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2555 * would entail passing the CPL to userspace and back.
2556 */
2557 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002558 /* This is symmetric with svm_get_segment() */
2559 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002560
Joerg Roedel060d0c92010-12-03 11:45:57 +01002561 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002562}
2563
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002564static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002565{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002566 struct vcpu_svm *svm = to_svm(vcpu);
2567
Joerg Roedel18c918c2010-11-30 18:03:59 +01002568 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002569
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002570 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002571 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002572 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002573 } else
2574 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002575}
2576
Tejun Heo0fe1e002009-10-29 22:34:14 +09002577static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002578{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002579 if (sd->next_asid > sd->max_asid) {
2580 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002581 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002582 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002583 }
2584
Tejun Heo0fe1e002009-10-29 22:34:14 +09002585 svm->asid_generation = sd->asid_generation;
2586 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002587
2588 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002589}
2590
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002591static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2592{
2593 return to_svm(vcpu)->vmcb->save.dr6;
2594}
2595
2596static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2597{
2598 struct vcpu_svm *svm = to_svm(vcpu);
2599
2600 svm->vmcb->save.dr6 = value;
2601 mark_dirty(svm->vmcb, VMCB_DR);
2602}
2603
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002604static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2605{
2606 struct vcpu_svm *svm = to_svm(vcpu);
2607
2608 get_debugreg(vcpu->arch.db[0], 0);
2609 get_debugreg(vcpu->arch.db[1], 1);
2610 get_debugreg(vcpu->arch.db[2], 2);
2611 get_debugreg(vcpu->arch.db[3], 3);
2612 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2613 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2614
2615 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2616 set_dr_intercepts(svm);
2617}
2618
Gleb Natapov020df072010-04-13 10:05:23 +03002619static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002620{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002621 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002622
Gleb Natapov020df072010-04-13 10:05:23 +03002623 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002624 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002625}
2626
Avi Kivity851ba692009-08-24 11:10:17 +03002627static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002628{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002629 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002630 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002631
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002632 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002633 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2634 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002635 svm->vmcb->control.insn_len);
2636}
2637
2638static int npf_interception(struct vcpu_svm *svm)
2639{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002640 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002641 u64 error_code = svm->vmcb->control.exit_info_1;
2642
2643 trace_kvm_page_fault(fault_address, error_code);
2644 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002645 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2646 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002647 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002648}
2649
Avi Kivity851ba692009-08-24 11:10:17 +03002650static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002651{
Avi Kivity851ba692009-08-24 11:10:17 +03002652 struct kvm_run *kvm_run = svm->vcpu.run;
2653
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002654 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002655 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002656 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002657 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2658 return 1;
2659 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002660
Jan Kiszka6be7d302009-10-18 13:24:54 +02002661 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002662 disable_nmi_singlestep(svm);
Gleb Natapov44c11432009-05-11 13:35:52 +03002663 }
2664
2665 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002666 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002667 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2668 kvm_run->debug.arch.pc =
2669 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2670 kvm_run->debug.arch.exception = DB_VECTOR;
2671 return 0;
2672 }
2673
2674 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002675}
2676
Avi Kivity851ba692009-08-24 11:10:17 +03002677static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002678{
Avi Kivity851ba692009-08-24 11:10:17 +03002679 struct kvm_run *kvm_run = svm->vcpu.run;
2680
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002681 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2682 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2683 kvm_run->debug.arch.exception = BP_VECTOR;
2684 return 0;
2685}
2686
Avi Kivity851ba692009-08-24 11:10:17 +03002687static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002688{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002689 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002690}
2691
Eric Northup54a20552015-11-03 18:03:53 +01002692static int ac_interception(struct vcpu_svm *svm)
2693{
2694 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2695 return 1;
2696}
2697
Liran Alon97184202018-03-12 13:12:52 +02002698static int gp_interception(struct vcpu_svm *svm)
2699{
2700 struct kvm_vcpu *vcpu = &svm->vcpu;
2701 u32 error_code = svm->vmcb->control.exit_info_1;
2702 int er;
2703
2704 WARN_ON_ONCE(!enable_vmware_backdoor);
2705
2706 er = emulate_instruction(vcpu,
2707 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
2708 if (er == EMULATE_USER_EXIT)
2709 return 0;
2710 else if (er != EMULATE_DONE)
2711 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2712 return 1;
2713}
2714
Joerg Roedel67ec6602010-05-17 14:43:35 +02002715static bool is_erratum_383(void)
2716{
2717 int err, i;
2718 u64 value;
2719
2720 if (!erratum_383_found)
2721 return false;
2722
2723 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2724 if (err)
2725 return false;
2726
2727 /* Bit 62 may or may not be set for this mce */
2728 value &= ~(1ULL << 62);
2729
2730 if (value != 0xb600000000010015ULL)
2731 return false;
2732
2733 /* Clear MCi_STATUS registers */
2734 for (i = 0; i < 6; ++i)
2735 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2736
2737 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2738 if (!err) {
2739 u32 low, high;
2740
2741 value &= ~(1ULL << 2);
2742 low = lower_32_bits(value);
2743 high = upper_32_bits(value);
2744
2745 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2746 }
2747
2748 /* Flush tlb to evict multi-match entries */
2749 __flush_tlb_all();
2750
2751 return true;
2752}
2753
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002754static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002755{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002756 if (is_erratum_383()) {
2757 /*
2758 * Erratum 383 triggered. Guest state is corrupt so kill the
2759 * guest.
2760 */
2761 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2762
Avi Kivitya8eeb042010-05-10 12:34:53 +03002763 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002764
2765 return;
2766 }
2767
Joerg Roedel53371b52008-04-09 14:15:30 +02002768 /*
2769 * On an #MC intercept the MCE handler is not called automatically in
2770 * the host. So do it by hand here.
2771 */
2772 asm volatile (
2773 "int $0x12\n");
2774 /* not sure if we ever come back to this point */
2775
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002776 return;
2777}
2778
2779static int mc_interception(struct vcpu_svm *svm)
2780{
Joerg Roedel53371b52008-04-09 14:15:30 +02002781 return 1;
2782}
2783
Avi Kivity851ba692009-08-24 11:10:17 +03002784static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002785{
Avi Kivity851ba692009-08-24 11:10:17 +03002786 struct kvm_run *kvm_run = svm->vcpu.run;
2787
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002788 /*
2789 * VMCB is undefined after a SHUTDOWN intercept
2790 * so reinitialize it.
2791 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002792 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002793 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002794
2795 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2796 return 0;
2797}
2798
Avi Kivity851ba692009-08-24 11:10:17 +03002799static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002800{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002801 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002802 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002803 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002804 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002805
Rusty Russelle756fc62007-07-30 20:07:08 +10002806 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002807 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002808 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002809 if (string)
Andre Przywara51d8b662010-12-21 11:12:02 +01002810 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002811
Avi Kivity039576c2007-03-20 12:46:50 +02002812 port = io_info >> 16;
2813 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002814 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002815
Sean Christophersondca7f122018-03-08 08:57:27 -08002816 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002817}
2818
Avi Kivity851ba692009-08-24 11:10:17 +03002819static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002820{
2821 return 1;
2822}
2823
Avi Kivity851ba692009-08-24 11:10:17 +03002824static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002825{
2826 ++svm->vcpu.stat.irq_exits;
2827 return 1;
2828}
2829
Avi Kivity851ba692009-08-24 11:10:17 +03002830static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002831{
2832 return 1;
2833}
2834
Avi Kivity851ba692009-08-24 11:10:17 +03002835static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002836{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002837 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002838 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002839}
2840
Avi Kivity851ba692009-08-24 11:10:17 +03002841static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002842{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002843 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002844 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002845}
2846
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002847static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2848{
2849 struct vcpu_svm *svm = to_svm(vcpu);
2850
2851 return svm->nested.nested_cr3;
2852}
2853
Avi Kivitye4e517b2011-07-28 11:36:17 +03002854static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2855{
2856 struct vcpu_svm *svm = to_svm(vcpu);
2857 u64 cr3 = svm->nested.nested_cr3;
2858 u64 pdpte;
2859 int ret;
2860
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002861 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002862 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002863 if (ret)
2864 return 0;
2865 return pdpte;
2866}
2867
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002868static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2869 unsigned long root)
2870{
2871 struct vcpu_svm *svm = to_svm(vcpu);
2872
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002873 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002874 mark_dirty(svm->vmcb, VMCB_NPT);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002875 svm_flush_tlb(vcpu, true);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002876}
2877
Avi Kivity6389ee92010-11-29 16:12:30 +02002878static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2879 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002880{
2881 struct vcpu_svm *svm = to_svm(vcpu);
2882
Paolo Bonzini5e352512014-09-02 13:18:37 +02002883 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2884 /*
2885 * TODO: track the cause of the nested page fault, and
2886 * correctly fill in the high bits of exit_info_1.
2887 */
2888 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2889 svm->vmcb->control.exit_code_hi = 0;
2890 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2891 svm->vmcb->control.exit_info_2 = fault->address;
2892 }
2893
2894 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2895 svm->vmcb->control.exit_info_1 |= fault->error_code;
2896
2897 /*
2898 * The present bit is always zero for page structure faults on real
2899 * hardware.
2900 */
2901 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2902 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002903
2904 nested_svm_vmexit(svm);
2905}
2906
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002907static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002908{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002909 WARN_ON(mmu_is_nested(vcpu));
2910 kvm_init_shadow_mmu(vcpu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002911 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2912 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03002913 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
Joerg Roedel4b161842010-09-10 17:31:03 +02002914 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
Yu Zhang855feb62017-08-24 20:27:55 +08002915 vcpu->arch.mmu.shadow_root_level = get_npt_level(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08002916 reset_shadow_zero_bits_mask(vcpu, &vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002917 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002918}
2919
2920static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2921{
2922 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
2923}
2924
Alexander Grafc0725422008-11-25 20:17:03 +01002925static int nested_svm_check_permissions(struct vcpu_svm *svm)
2926{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002927 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2928 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01002929 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2930 return 1;
2931 }
2932
2933 if (svm->vmcb->save.cpl) {
2934 kvm_inject_gp(&svm->vcpu, 0);
2935 return 1;
2936 }
2937
Dan Carpentere9196ce2017-05-18 10:39:53 +03002938 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01002939}
2940
Alexander Grafcf74a782008-11-25 20:17:08 +01002941static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2942 bool has_error_code, u32 error_code)
2943{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002944 int vmexit;
2945
Joerg Roedel20307532010-11-29 17:51:48 +01002946 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02002947 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01002948
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002949 vmexit = nested_svm_intercept(svm);
2950 if (vmexit != NESTED_EXIT_DONE)
2951 return 0;
2952
Joerg Roedel0295ad72009-08-07 11:49:37 +02002953 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2954 svm->vmcb->control.exit_code_hi = 0;
2955 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002956
2957 /*
2958 * FIXME: we should not write CR2 when L1 intercepts an L2 #PF exception.
2959 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2960 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6 can be
2961 * written only when inject_pending_event runs (DR6 would written here
2962 * too). This should be conditional on a new capability---if the
2963 * capability is disabled, kvm_multiple_exception would write the
2964 * ancillary information to CR2 or DR6, for backwards ABI-compatibility.
2965 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002966 if (svm->vcpu.arch.exception.nested_apf)
2967 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
2968 else
2969 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02002970
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002971 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002972 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01002973}
2974
Joerg Roedel8fe54652010-02-19 16:23:01 +01002975/* This function returns true if it is save to enable the irq window */
2976static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002977{
Joerg Roedel20307532010-11-29 17:51:48 +01002978 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002979 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002980
Joerg Roedel26666952009-08-07 11:49:46 +02002981 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
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_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002985 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01002986
Gleb Natapova0a07cd2010-09-20 10:15:32 +02002987 /*
2988 * if vmexit was already requested (by intercepted exception
2989 * for instance) do not overwrite it with "external interrupt"
2990 * vmexit.
2991 */
2992 if (svm->nested.exit_required)
2993 return false;
2994
Joerg Roedel197717d2010-02-24 18:59:19 +01002995 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
2996 svm->vmcb->control.exit_info_1 = 0;
2997 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02002998
Joerg Roedelcd3ff652009-10-09 16:08:26 +02002999 if (svm->nested.intercept & 1ULL) {
3000 /*
3001 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003002 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003003 * #vmexit emulation might sleep. Only signal request for
3004 * the #vmexit here.
3005 */
3006 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003007 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003008 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003009 }
3010
Joerg Roedel8fe54652010-02-19 16:23:01 +01003011 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003012}
3013
Joerg Roedel887f5002010-02-24 18:59:12 +01003014/* This function returns true if it is save to enable the nmi window */
3015static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3016{
Joerg Roedel20307532010-11-29 17:51:48 +01003017 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003018 return true;
3019
3020 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3021 return true;
3022
3023 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3024 svm->nested.exit_required = true;
3025
3026 return false;
3027}
3028
Joerg Roedel7597f122010-02-19 16:23:00 +01003029static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003030{
3031 struct page *page;
3032
Joerg Roedel6c3bd3d2010-02-19 16:23:04 +01003033 might_sleep();
3034
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003035 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003036 if (is_error_page(page))
3037 goto error;
3038
Joerg Roedel7597f122010-02-19 16:23:00 +01003039 *_page = page;
3040
3041 return kmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003042
3043error:
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003044 kvm_inject_gp(&svm->vcpu, 0);
3045
3046 return NULL;
3047}
3048
Joerg Roedel7597f122010-02-19 16:23:00 +01003049static void nested_svm_unmap(struct page *page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003050{
Joerg Roedel7597f122010-02-19 16:23:00 +01003051 kunmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003052 kvm_release_page_dirty(page);
3053}
3054
Joerg Roedelce2ac082010-03-01 15:34:39 +01003055static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003056{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003057 unsigned port, size, iopm_len;
3058 u16 val, mask;
3059 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003060 u64 gpa;
3061
3062 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3063 return NESTED_EXIT_HOST;
3064
3065 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003066 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3067 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003068 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003069 start_bit = port % 8;
3070 iopm_len = (start_bit + size > 8) ? 2 : 1;
3071 mask = (0xf >> (4 - size)) << start_bit;
3072 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003073
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003074 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003075 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003076
Jan Kiszka9bf41832014-06-30 10:54:17 +02003077 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003078}
3079
Joerg Roedeld2477822010-03-01 15:34:34 +01003080static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003081{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003082 u32 offset, msr, value;
3083 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003084
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003085 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003086 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003087
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003088 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3089 offset = svm_msrpm_offset(msr);
3090 write = svm->vmcb->control.exit_info_1 & 1;
3091 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003092
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003093 if (offset == MSR_INVALID)
3094 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003095
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003096 /* Offset is in 32 bit units but need in 8 bit units */
3097 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003098
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003099 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003100 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003101
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003102 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003103}
3104
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003105/* DB exceptions for our internal use must not cause vmexit */
3106static int nested_svm_intercept_db(struct vcpu_svm *svm)
3107{
3108 unsigned long dr6;
3109
3110 /* if we're not singlestepping, it's not ours */
3111 if (!svm->nmi_singlestep)
3112 return NESTED_EXIT_DONE;
3113
3114 /* if it's not a singlestep exception, it's not ours */
3115 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3116 return NESTED_EXIT_DONE;
3117 if (!(dr6 & DR6_BS))
3118 return NESTED_EXIT_DONE;
3119
3120 /* if the guest is singlestepping, it should get the vmexit */
3121 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3122 disable_nmi_singlestep(svm);
3123 return NESTED_EXIT_DONE;
3124 }
3125
3126 /* it's ours, the nested hypervisor must not see this one */
3127 return NESTED_EXIT_HOST;
3128}
3129
Joerg Roedel410e4d52009-08-07 11:49:44 +02003130static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003131{
Alexander Grafcf74a782008-11-25 20:17:08 +01003132 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003133
Joerg Roedel410e4d52009-08-07 11:49:44 +02003134 switch (exit_code) {
3135 case SVM_EXIT_INTR:
3136 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003137 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003138 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003139 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003140 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003141 if (npt_enabled)
3142 return NESTED_EXIT_HOST;
3143 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003144 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003145 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003146 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003147 return NESTED_EXIT_HOST;
3148 break;
3149 default:
3150 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003151 }
3152
Joerg Roedel410e4d52009-08-07 11:49:44 +02003153 return NESTED_EXIT_CONTINUE;
3154}
3155
3156/*
3157 * If this function returns true, this #vmexit was already handled
3158 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003159static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003160{
3161 u32 exit_code = svm->vmcb->control.exit_code;
3162 int vmexit = NESTED_EXIT_HOST;
3163
Alexander Grafcf74a782008-11-25 20:17:08 +01003164 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003165 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003166 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003167 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003168 case SVM_EXIT_IOIO:
3169 vmexit = nested_svm_intercept_ioio(svm);
3170 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003171 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3172 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3173 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003174 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003175 break;
3176 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003177 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3178 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3179 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003180 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003181 break;
3182 }
3183 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3184 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003185 if (svm->nested.intercept_exceptions & excp_bits) {
3186 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3187 vmexit = nested_svm_intercept_db(svm);
3188 else
3189 vmexit = NESTED_EXIT_DONE;
3190 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003191 /* async page fault always cause vmexit */
3192 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003193 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003194 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003195 break;
3196 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003197 case SVM_EXIT_ERR: {
3198 vmexit = NESTED_EXIT_DONE;
3199 break;
3200 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003201 default: {
3202 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003203 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003204 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003205 }
3206 }
3207
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003208 return vmexit;
3209}
3210
3211static int nested_svm_exit_handled(struct vcpu_svm *svm)
3212{
3213 int vmexit;
3214
3215 vmexit = nested_svm_intercept(svm);
3216
3217 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003218 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003219
3220 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003221}
3222
Joerg Roedel0460a972009-08-07 11:49:31 +02003223static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3224{
3225 struct vmcb_control_area *dst = &dst_vmcb->control;
3226 struct vmcb_control_area *from = &from_vmcb->control;
3227
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003228 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003229 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003230 dst->intercept_exceptions = from->intercept_exceptions;
3231 dst->intercept = from->intercept;
3232 dst->iopm_base_pa = from->iopm_base_pa;
3233 dst->msrpm_base_pa = from->msrpm_base_pa;
3234 dst->tsc_offset = from->tsc_offset;
3235 dst->asid = from->asid;
3236 dst->tlb_ctl = from->tlb_ctl;
3237 dst->int_ctl = from->int_ctl;
3238 dst->int_vector = from->int_vector;
3239 dst->int_state = from->int_state;
3240 dst->exit_code = from->exit_code;
3241 dst->exit_code_hi = from->exit_code_hi;
3242 dst->exit_info_1 = from->exit_info_1;
3243 dst->exit_info_2 = from->exit_info_2;
3244 dst->exit_int_info = from->exit_int_info;
3245 dst->exit_int_info_err = from->exit_int_info_err;
3246 dst->nested_ctl = from->nested_ctl;
3247 dst->event_inj = from->event_inj;
3248 dst->event_inj_err = from->event_inj_err;
3249 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003250 dst->virt_ext = from->virt_ext;
Joerg Roedel0460a972009-08-07 11:49:31 +02003251}
3252
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003253static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003254{
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003255 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003256 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003257 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003258 struct page *page;
Alexander Grafcf74a782008-11-25 20:17:08 +01003259
Joerg Roedel17897f32009-10-09 16:08:29 +02003260 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3261 vmcb->control.exit_info_1,
3262 vmcb->control.exit_info_2,
3263 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003264 vmcb->control.exit_int_info_err,
3265 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003266
Joerg Roedel7597f122010-02-19 16:23:00 +01003267 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003268 if (!nested_vmcb)
3269 return 1;
3270
Joerg Roedel20307532010-11-29 17:51:48 +01003271 /* Exit Guest-Mode */
3272 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003273 svm->nested.vmcb = 0;
3274
Alexander Grafcf74a782008-11-25 20:17:08 +01003275 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003276 disable_gif(svm);
3277
3278 nested_vmcb->save.es = vmcb->save.es;
3279 nested_vmcb->save.cs = vmcb->save.cs;
3280 nested_vmcb->save.ss = vmcb->save.ss;
3281 nested_vmcb->save.ds = vmcb->save.ds;
3282 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3283 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003284 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003285 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003286 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003287 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003288 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003289 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003290 nested_vmcb->save.rip = vmcb->save.rip;
3291 nested_vmcb->save.rsp = vmcb->save.rsp;
3292 nested_vmcb->save.rax = vmcb->save.rax;
3293 nested_vmcb->save.dr7 = vmcb->save.dr7;
3294 nested_vmcb->save.dr6 = vmcb->save.dr6;
3295 nested_vmcb->save.cpl = vmcb->save.cpl;
3296
3297 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3298 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3299 nested_vmcb->control.int_state = vmcb->control.int_state;
3300 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3301 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3302 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3303 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3304 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3305 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003306
3307 if (svm->nrips_enabled)
3308 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003309
3310 /*
3311 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3312 * to make sure that we do not lose injected events. So check event_inj
3313 * here and copy it to exit_int_info if it is valid.
3314 * Exit_int_info and event_inj can't be both valid because the case
3315 * below only happens on a VMRUN instruction intercept which has
3316 * no valid exit_int_info set.
3317 */
3318 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3319 struct vmcb_control_area *nc = &nested_vmcb->control;
3320
3321 nc->exit_int_info = vmcb->control.event_inj;
3322 nc->exit_int_info_err = vmcb->control.event_inj_err;
3323 }
3324
Joerg Roedel33740e42009-08-07 11:49:29 +02003325 nested_vmcb->control.tlb_ctl = 0;
3326 nested_vmcb->control.event_inj = 0;
3327 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003328
3329 /* We always set V_INTR_MASKING and remember the old value in hflags */
3330 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3331 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3332
Alexander Grafcf74a782008-11-25 20:17:08 +01003333 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003334 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003335
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003336 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003337 kvm_clear_exception_queue(&svm->vcpu);
3338 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003339
Joerg Roedel4b161842010-09-10 17:31:03 +02003340 svm->nested.nested_cr3 = 0;
3341
Alexander Grafcf74a782008-11-25 20:17:08 +01003342 /* Restore selected save entries */
3343 svm->vmcb->save.es = hsave->save.es;
3344 svm->vmcb->save.cs = hsave->save.cs;
3345 svm->vmcb->save.ss = hsave->save.ss;
3346 svm->vmcb->save.ds = hsave->save.ds;
3347 svm->vmcb->save.gdtr = hsave->save.gdtr;
3348 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003349 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003350 svm_set_efer(&svm->vcpu, hsave->save.efer);
3351 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3352 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3353 if (npt_enabled) {
3354 svm->vmcb->save.cr3 = hsave->save.cr3;
3355 svm->vcpu.arch.cr3 = hsave->save.cr3;
3356 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003357 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003358 }
3359 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
3360 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
3361 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
3362 svm->vmcb->save.dr7 = 0;
3363 svm->vmcb->save.cpl = 0;
3364 svm->vmcb->control.exit_int_info = 0;
3365
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003366 mark_all_dirty(svm->vmcb);
3367
Joerg Roedel7597f122010-02-19 16:23:00 +01003368 nested_svm_unmap(page);
Alexander Grafcf74a782008-11-25 20:17:08 +01003369
Joerg Roedel4b161842010-09-10 17:31:03 +02003370 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003371 kvm_mmu_reset_context(&svm->vcpu);
3372 kvm_mmu_load(&svm->vcpu);
3373
3374 return 0;
3375}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003376
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003377static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003378{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003379 /*
3380 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003381 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003382 * the kvm msr permission bitmap may contain zero bits
3383 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003384 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003385
Joerg Roedel323c3d82010-03-01 15:34:37 +01003386 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3387 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003388
Joerg Roedel323c3d82010-03-01 15:34:37 +01003389 for (i = 0; i < MSRPM_OFFSETS; i++) {
3390 u32 value, p;
3391 u64 offset;
3392
3393 if (msrpm_offsets[i] == 0xffffffff)
3394 break;
3395
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003396 p = msrpm_offsets[i];
3397 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003398
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003399 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003400 return false;
3401
3402 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3403 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003404
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003405 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003406
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003407 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003408}
3409
Joerg Roedel52c65a302010-08-02 16:46:44 +02003410static bool nested_vmcb_checks(struct vmcb *vmcb)
3411{
3412 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3413 return false;
3414
Joerg Roedeldbe77582010-08-02 16:46:45 +02003415 if (vmcb->control.asid == 0)
3416 return false;
3417
Tom Lendackycea3a192017-12-04 10:57:24 -06003418 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3419 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003420 return false;
3421
Joerg Roedel52c65a302010-08-02 16:46:44 +02003422 return true;
3423}
3424
Ladi Prosekc2634062017-10-11 16:54:44 +02003425static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
3426 struct vmcb *nested_vmcb, struct page *page)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003427{
Avi Kivityf6e78472010-08-02 15:30:20 +03003428 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003429 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3430 else
3431 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3432
Tom Lendackycea3a192017-12-04 10:57:24 -06003433 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003434 kvm_mmu_unload(&svm->vcpu);
3435 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3436 nested_svm_init_mmu_context(&svm->vcpu);
3437 }
3438
Alexander Graf3d6368e2008-11-25 20:17:07 +01003439 /* Load the nested guest state */
3440 svm->vmcb->save.es = nested_vmcb->save.es;
3441 svm->vmcb->save.cs = nested_vmcb->save.cs;
3442 svm->vmcb->save.ss = nested_vmcb->save.ss;
3443 svm->vmcb->save.ds = nested_vmcb->save.ds;
3444 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3445 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003446 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003447 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3448 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3449 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3450 if (npt_enabled) {
3451 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3452 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003453 } else
Avi Kivity23902182010-06-10 17:02:16 +03003454 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003455
3456 /* Guest paging mode is active - reset mmu */
3457 kvm_mmu_reset_context(&svm->vcpu);
3458
Joerg Roedeldefbba52009-08-07 11:49:30 +02003459 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003460 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
3461 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
3462 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003463
Alexander Graf3d6368e2008-11-25 20:17:07 +01003464 /* In case we don't even reach vcpu_run, the fields are not updated */
3465 svm->vmcb->save.rax = nested_vmcb->save.rax;
3466 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3467 svm->vmcb->save.rip = nested_vmcb->save.rip;
3468 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3469 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3470 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3471
Joerg Roedelf7138532010-03-01 15:34:40 +01003472 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003473 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003474
Joerg Roedelaad42c62009-08-07 11:49:34 +02003475 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003476 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003477 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003478 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3479 svm->nested.intercept = nested_vmcb->control.intercept;
3480
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003481 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003482 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003483 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3484 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3485 else
3486 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3487
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003488 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3489 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003490 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3491 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003492 }
3493
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003494 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003495 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003496
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003497 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3498 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3499
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003500 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003501 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3502 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003503 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3504 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3505
Joerg Roedel7597f122010-02-19 16:23:00 +01003506 nested_svm_unmap(page);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003507
Joerg Roedel20307532010-11-29 17:51:48 +01003508 /* Enter Guest-Mode */
3509 enter_guest_mode(&svm->vcpu);
3510
Joerg Roedel384c6362010-11-30 18:03:56 +01003511 /*
3512 * Merge guest and host intercepts - must be called with vcpu in
3513 * guest-mode to take affect here
3514 */
3515 recalc_intercepts(svm);
3516
Joerg Roedel06fc77722010-02-19 16:23:07 +01003517 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003518
Joerg Roedel2af91942009-08-07 11:49:28 +02003519 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003520
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003521 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003522}
3523
3524static bool nested_svm_vmrun(struct vcpu_svm *svm)
3525{
3526 struct vmcb *nested_vmcb;
3527 struct vmcb *hsave = svm->nested.hsave;
3528 struct vmcb *vmcb = svm->vmcb;
3529 struct page *page;
3530 u64 vmcb_gpa;
3531
3532 vmcb_gpa = svm->vmcb->save.rax;
3533
3534 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
3535 if (!nested_vmcb)
3536 return false;
3537
3538 if (!nested_vmcb_checks(nested_vmcb)) {
3539 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3540 nested_vmcb->control.exit_code_hi = 0;
3541 nested_vmcb->control.exit_info_1 = 0;
3542 nested_vmcb->control.exit_info_2 = 0;
3543
3544 nested_svm_unmap(page);
3545
3546 return false;
3547 }
3548
3549 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3550 nested_vmcb->save.rip,
3551 nested_vmcb->control.int_ctl,
3552 nested_vmcb->control.event_inj,
3553 nested_vmcb->control.nested_ctl);
3554
3555 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3556 nested_vmcb->control.intercept_cr >> 16,
3557 nested_vmcb->control.intercept_exceptions,
3558 nested_vmcb->control.intercept);
3559
3560 /* Clear internal status */
3561 kvm_clear_exception_queue(&svm->vcpu);
3562 kvm_clear_interrupt_queue(&svm->vcpu);
3563
3564 /*
3565 * Save the old vmcb, so we don't need to pick what we save, but can
3566 * restore everything when a VMEXIT occurs
3567 */
3568 hsave->save.es = vmcb->save.es;
3569 hsave->save.cs = vmcb->save.cs;
3570 hsave->save.ss = vmcb->save.ss;
3571 hsave->save.ds = vmcb->save.ds;
3572 hsave->save.gdtr = vmcb->save.gdtr;
3573 hsave->save.idtr = vmcb->save.idtr;
3574 hsave->save.efer = svm->vcpu.arch.efer;
3575 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3576 hsave->save.cr4 = svm->vcpu.arch.cr4;
3577 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3578 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3579 hsave->save.rsp = vmcb->save.rsp;
3580 hsave->save.rax = vmcb->save.rax;
3581 if (npt_enabled)
3582 hsave->save.cr3 = vmcb->save.cr3;
3583 else
3584 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3585
3586 copy_vmcb_control_area(hsave, vmcb);
3587
3588 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, page);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003589
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003590 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003591}
3592
Joerg Roedel9966bf62009-08-07 11:49:40 +02003593static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003594{
3595 to_vmcb->save.fs = from_vmcb->save.fs;
3596 to_vmcb->save.gs = from_vmcb->save.gs;
3597 to_vmcb->save.tr = from_vmcb->save.tr;
3598 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3599 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3600 to_vmcb->save.star = from_vmcb->save.star;
3601 to_vmcb->save.lstar = from_vmcb->save.lstar;
3602 to_vmcb->save.cstar = from_vmcb->save.cstar;
3603 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3604 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3605 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3606 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003607}
3608
Avi Kivity851ba692009-08-24 11:10:17 +03003609static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003610{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003611 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003612 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003613 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003614
Alexander Graf55426752008-11-25 20:17:06 +01003615 if (nested_svm_check_permissions(svm))
3616 return 1;
3617
Joerg Roedel7597f122010-02-19 16:23:00 +01003618 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003619 if (!nested_vmcb)
3620 return 1;
3621
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003622 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003623 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003624
Joerg Roedel9966bf62009-08-07 11:49:40 +02003625 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003626 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003627
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003628 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003629}
3630
Avi Kivity851ba692009-08-24 11:10:17 +03003631static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003632{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003633 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003634 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003635 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003636
Alexander Graf55426752008-11-25 20:17:06 +01003637 if (nested_svm_check_permissions(svm))
3638 return 1;
3639
Joerg Roedel7597f122010-02-19 16:23:00 +01003640 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003641 if (!nested_vmcb)
3642 return 1;
3643
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003644 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003645 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003646
Joerg Roedel9966bf62009-08-07 11:49:40 +02003647 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003648 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003649
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003650 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003651}
3652
Avi Kivity851ba692009-08-24 11:10:17 +03003653static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003654{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003655 if (nested_svm_check_permissions(svm))
3656 return 1;
3657
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003658 /* Save rip after vmrun instruction */
3659 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003660
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003661 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003662 return 1;
3663
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003664 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003665 goto failed;
3666
3667 return 1;
3668
3669failed:
3670
3671 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3672 svm->vmcb->control.exit_code_hi = 0;
3673 svm->vmcb->control.exit_info_1 = 0;
3674 svm->vmcb->control.exit_info_2 = 0;
3675
3676 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003677
3678 return 1;
3679}
3680
Avi Kivity851ba692009-08-24 11:10:17 +03003681static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003682{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003683 int ret;
3684
Alexander Graf1371d902008-11-25 20:17:04 +01003685 if (nested_svm_check_permissions(svm))
3686 return 1;
3687
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003688 /*
3689 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003690 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003691 */
3692 if (vgif_enabled(svm))
3693 clr_intercept(svm, INTERCEPT_STGI);
3694
Alexander Graf1371d902008-11-25 20:17:04 +01003695 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003696 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003697 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003698
Joerg Roedel2af91942009-08-07 11:49:28 +02003699 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003700
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003701 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003702}
3703
Avi Kivity851ba692009-08-24 11:10:17 +03003704static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003705{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003706 int ret;
3707
Alexander Graf1371d902008-11-25 20:17:04 +01003708 if (nested_svm_check_permissions(svm))
3709 return 1;
3710
3711 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003712 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003713
Joerg Roedel2af91942009-08-07 11:49:28 +02003714 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003715
3716 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003717 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3718 svm_clear_vintr(svm);
3719 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3720 mark_dirty(svm->vmcb, VMCB_INTR);
3721 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003722
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003723 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003724}
3725
Avi Kivity851ba692009-08-24 11:10:17 +03003726static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003727{
3728 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003729
David Kaplan668f1982015-02-20 16:02:10 -06003730 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3731 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003732
Alexander Grafff092382009-06-15 15:21:24 +02003733 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
David Kaplan668f1982015-02-20 16:02:10 -06003734 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Alexander Grafff092382009-06-15 15:21:24 +02003735
3736 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003737 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003738}
3739
Joerg Roedel532a46b2009-10-09 16:08:32 +02003740static int skinit_interception(struct vcpu_svm *svm)
3741{
David Kaplan668f1982015-02-20 16:02:10 -06003742 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003743
3744 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3745 return 1;
3746}
3747
David Kaplandab429a2015-03-02 13:43:37 -06003748static int wbinvd_interception(struct vcpu_svm *svm)
3749{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003750 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003751}
3752
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003753static int xsetbv_interception(struct vcpu_svm *svm)
3754{
3755 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3756 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3757
3758 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3759 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003760 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003761 }
3762
3763 return 1;
3764}
3765
Avi Kivity851ba692009-08-24 11:10:17 +03003766static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003767{
Izik Eidus37817f22008-03-24 23:14:53 +02003768 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003769 int reason;
3770 int int_type = svm->vmcb->control.exit_int_info &
3771 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003772 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003773 uint32_t type =
3774 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3775 uint32_t idt_v =
3776 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003777 bool has_error_code = false;
3778 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003779
3780 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003781
Izik Eidus37817f22008-03-24 23:14:53 +02003782 if (svm->vmcb->control.exit_info_2 &
3783 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003784 reason = TASK_SWITCH_IRET;
3785 else if (svm->vmcb->control.exit_info_2 &
3786 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3787 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003788 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003789 reason = TASK_SWITCH_GATE;
3790 else
3791 reason = TASK_SWITCH_CALL;
3792
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003793 if (reason == TASK_SWITCH_GATE) {
3794 switch (type) {
3795 case SVM_EXITINTINFO_TYPE_NMI:
3796 svm->vcpu.arch.nmi_injected = false;
3797 break;
3798 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003799 if (svm->vmcb->control.exit_info_2 &
3800 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3801 has_error_code = true;
3802 error_code =
3803 (u32)svm->vmcb->control.exit_info_2;
3804 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003805 kvm_clear_exception_queue(&svm->vcpu);
3806 break;
3807 case SVM_EXITINTINFO_TYPE_INTR:
3808 kvm_clear_interrupt_queue(&svm->vcpu);
3809 break;
3810 default:
3811 break;
3812 }
3813 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003814
Gleb Natapov8317c292009-04-12 13:37:02 +03003815 if (reason != TASK_SWITCH_GATE ||
3816 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3817 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003818 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3819 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003820
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003821 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3822 int_vec = -1;
3823
3824 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003825 has_error_code, error_code) == EMULATE_FAIL) {
3826 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3827 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3828 svm->vcpu.run->internal.ndata = 0;
3829 return 0;
3830 }
3831 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003832}
3833
Avi Kivity851ba692009-08-24 11:10:17 +03003834static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003835{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003836 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003837 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003838}
3839
Avi Kivity851ba692009-08-24 11:10:17 +03003840static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003841{
3842 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003843 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003844 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003845 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003846 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003847 return 1;
3848}
3849
Avi Kivity851ba692009-08-24 11:10:17 +03003850static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003851{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003852 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3853 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
3854
3855 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003856 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003857}
3858
Avi Kivity851ba692009-08-24 11:10:17 +03003859static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003860{
Andre Przywara51d8b662010-12-21 11:12:02 +01003861 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003862}
3863
Brijesh Singh7607b712018-02-19 10:14:44 -06003864static int rsm_interception(struct vcpu_svm *svm)
3865{
3866 return x86_emulate_instruction(&svm->vcpu, 0, 0,
3867 rsm_ins_bytes, 2) == EMULATE_DONE;
3868}
3869
Avi Kivity332b56e2011-11-10 14:57:24 +02003870static int rdpmc_interception(struct vcpu_svm *svm)
3871{
3872 int err;
3873
3874 if (!static_cpu_has(X86_FEATURE_NRIPS))
3875 return emulate_on_interception(svm);
3876
3877 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003878 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003879}
3880
Xiubo Li52eb5a62015-03-13 17:39:45 +08003881static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3882 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003883{
3884 unsigned long cr0 = svm->vcpu.arch.cr0;
3885 bool ret = false;
3886 u64 intercept;
3887
3888 intercept = svm->nested.intercept;
3889
3890 if (!is_guest_mode(&svm->vcpu) ||
3891 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3892 return false;
3893
3894 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3895 val &= ~SVM_CR0_SELECTIVE_MASK;
3896
3897 if (cr0 ^ val) {
3898 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3899 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3900 }
3901
3902 return ret;
3903}
3904
Andre Przywara7ff76d52010-12-21 11:12:04 +01003905#define CR_VALID (1ULL << 63)
3906
3907static int cr_interception(struct vcpu_svm *svm)
3908{
3909 int reg, cr;
3910 unsigned long val;
3911 int err;
3912
3913 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3914 return emulate_on_interception(svm);
3915
3916 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3917 return emulate_on_interception(svm);
3918
3919 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06003920 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3921 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3922 else
3923 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01003924
3925 err = 0;
3926 if (cr >= 16) { /* mov to cr */
3927 cr -= 16;
3928 val = kvm_register_read(&svm->vcpu, reg);
3929 switch (cr) {
3930 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02003931 if (!check_selective_cr0_intercepted(svm, val))
3932 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02003933 else
3934 return 1;
3935
Andre Przywara7ff76d52010-12-21 11:12:04 +01003936 break;
3937 case 3:
3938 err = kvm_set_cr3(&svm->vcpu, val);
3939 break;
3940 case 4:
3941 err = kvm_set_cr4(&svm->vcpu, val);
3942 break;
3943 case 8:
3944 err = kvm_set_cr8(&svm->vcpu, val);
3945 break;
3946 default:
3947 WARN(1, "unhandled write to CR%d", cr);
3948 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3949 return 1;
3950 }
3951 } else { /* mov from cr */
3952 switch (cr) {
3953 case 0:
3954 val = kvm_read_cr0(&svm->vcpu);
3955 break;
3956 case 2:
3957 val = svm->vcpu.arch.cr2;
3958 break;
3959 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02003960 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003961 break;
3962 case 4:
3963 val = kvm_read_cr4(&svm->vcpu);
3964 break;
3965 case 8:
3966 val = kvm_get_cr8(&svm->vcpu);
3967 break;
3968 default:
3969 WARN(1, "unhandled read from CR%d", cr);
3970 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3971 return 1;
3972 }
3973 kvm_register_write(&svm->vcpu, reg, val);
3974 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08003975 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003976}
3977
Andre Przywaracae37972010-12-21 11:12:05 +01003978static int dr_interception(struct vcpu_svm *svm)
3979{
3980 int reg, dr;
3981 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01003982
Paolo Bonzinifacb0132014-02-21 10:32:27 +01003983 if (svm->vcpu.guest_debug == 0) {
3984 /*
3985 * No more DR vmexits; force a reload of the debug registers
3986 * and reenter on this instruction. The next vmexit will
3987 * retrieve the full state of the debug registers.
3988 */
3989 clr_dr_intercepts(svm);
3990 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
3991 return 1;
3992 }
3993
Andre Przywaracae37972010-12-21 11:12:05 +01003994 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
3995 return emulate_on_interception(svm);
3996
3997 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
3998 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
3999
4000 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004001 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4002 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004003 val = kvm_register_read(&svm->vcpu, reg);
4004 kvm_set_dr(&svm->vcpu, dr - 16, val);
4005 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004006 if (!kvm_require_dr(&svm->vcpu, dr))
4007 return 1;
4008 kvm_get_dr(&svm->vcpu, dr, &val);
4009 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004010 }
4011
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004012 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004013}
4014
Avi Kivity851ba692009-08-24 11:10:17 +03004015static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004016{
Avi Kivity851ba692009-08-24 11:10:17 +03004017 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004018 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004019
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004020 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4021 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004022 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004023 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004024 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004025 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004026 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004027 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4028 return 0;
4029}
4030
Tom Lendacky801e4592018-02-21 13:39:51 -06004031static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4032{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004033 msr->data = 0;
4034
4035 switch (msr->index) {
4036 case MSR_F10H_DECFG:
4037 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4038 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4039 break;
4040 default:
4041 return 1;
4042 }
4043
4044 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004045}
4046
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004047static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004048{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004049 struct vcpu_svm *svm = to_svm(vcpu);
4050
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004051 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004052 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004053 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004054 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004055#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004056 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004057 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004058 break;
4059 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004060 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004061 break;
4062 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004063 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004064 break;
4065 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004066 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004067 break;
4068#endif
4069 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004070 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004071 break;
4072 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004073 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004074 break;
4075 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004076 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004077 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004078 case MSR_TSC_AUX:
4079 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4080 return 1;
4081 msr_info->data = svm->tsc_aux;
4082 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004083 /*
4084 * Nobody will change the following 5 values in the VMCB so we can
4085 * safely return them on rdmsr. They will always be 0 until LBRV is
4086 * implemented.
4087 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004088 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004089 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004090 break;
4091 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004092 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004093 break;
4094 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004095 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004096 break;
4097 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004098 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004099 break;
4100 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004101 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004102 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004103 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004104 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004105 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004106 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004107 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004108 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004109 case MSR_IA32_SPEC_CTRL:
4110 if (!msr_info->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004111 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004112 return 1;
4113
4114 msr_info->data = svm->spec_ctrl;
4115 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004116 case MSR_F15H_IC_CFG: {
4117
4118 int family, model;
4119
4120 family = guest_cpuid_family(vcpu);
4121 model = guest_cpuid_model(vcpu);
4122
4123 if (family < 0 || model < 0)
4124 return kvm_get_msr_common(vcpu, msr_info);
4125
4126 msr_info->data = 0;
4127
4128 if (family == 0x15 &&
4129 (model >= 0x2 && model < 0x20))
4130 msr_info->data = 0x1E;
4131 }
4132 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004133 case MSR_F10H_DECFG:
4134 msr_info->data = svm->msr_decfg;
4135 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004136 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004137 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004138 }
4139 return 0;
4140}
4141
Avi Kivity851ba692009-08-24 11:10:17 +03004142static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004143{
David Kaplan668f1982015-02-20 16:02:10 -06004144 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004145 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004146
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004147 msr_info.index = ecx;
4148 msr_info.host_initiated = false;
4149 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004150 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004151 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004152 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004153 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004154 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004155
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004156 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
4157 msr_info.data & 0xffffffff);
4158 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
4159 msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004160 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004161 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004162 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004163}
4164
Joerg Roedel4a810182010-02-24 18:59:15 +01004165static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4166{
4167 struct vcpu_svm *svm = to_svm(vcpu);
4168 int svm_dis, chg_mask;
4169
4170 if (data & ~SVM_VM_CR_VALID_MASK)
4171 return 1;
4172
4173 chg_mask = SVM_VM_CR_VALID_MASK;
4174
4175 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4176 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4177
4178 svm->nested.vm_cr_msr &= ~chg_mask;
4179 svm->nested.vm_cr_msr |= (data & chg_mask);
4180
4181 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4182
4183 /* check for svm_disable while efer.svme is set */
4184 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4185 return 1;
4186
4187 return 0;
4188}
4189
Will Auld8fe8ab42012-11-29 12:42:12 -08004190static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004191{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004192 struct vcpu_svm *svm = to_svm(vcpu);
4193
Will Auld8fe8ab42012-11-29 12:42:12 -08004194 u32 ecx = msr->index;
4195 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004196 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004197 case MSR_IA32_CR_PAT:
4198 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4199 return 1;
4200 vcpu->arch.pat = data;
4201 svm->vmcb->save.g_pat = data;
4202 mark_dirty(svm->vmcb, VMCB_NPT);
4203 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004204 case MSR_IA32_SPEC_CTRL:
4205 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004206 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004207 return 1;
4208
4209 /* The STIBP bit doesn't fault even if it's not advertised */
4210 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP))
4211 return 1;
4212
4213 svm->spec_ctrl = data;
4214
4215 if (!data)
4216 break;
4217
4218 /*
4219 * For non-nested:
4220 * When it's written (to non-zero) for the first time, pass
4221 * it through.
4222 *
4223 * For nested:
4224 * The handling of the MSR bitmap for L2 guests is done in
4225 * nested_svm_vmrun_msrpm.
4226 * We update the L1 MSR bit as well since it will end up
4227 * touching the MSR anyway now.
4228 */
4229 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4230 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004231 case MSR_IA32_PRED_CMD:
4232 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004233 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004234 return 1;
4235
4236 if (data & ~PRED_CMD_IBPB)
4237 return 1;
4238
4239 if (!data)
4240 break;
4241
4242 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4243 if (is_guest_mode(vcpu))
4244 break;
4245 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4246 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004247 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004248 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004249 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004250#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004251 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004252 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004253 break;
4254 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004255 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004256 break;
4257 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004258 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004259 break;
4260 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004261 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004262 break;
4263#endif
4264 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004265 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004266 break;
4267 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004268 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004269 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004270 break;
4271 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004272 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004273 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004274 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004275 case MSR_TSC_AUX:
4276 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4277 return 1;
4278
4279 /*
4280 * This is rare, so we update the MSR here instead of using
4281 * direct_access_msrs. Doing that would require a rdmsr in
4282 * svm_vcpu_put.
4283 */
4284 svm->tsc_aux = data;
4285 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4286 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004287 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004288 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004289 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4290 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004291 break;
4292 }
4293 if (data & DEBUGCTL_RESERVED_BITS)
4294 return 1;
4295
4296 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004297 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004298 if (data & (1ULL<<0))
4299 svm_enable_lbrv(svm);
4300 else
4301 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004302 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004303 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004304 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004305 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004306 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004307 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004308 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004309 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004310 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004311 case MSR_F10H_DECFG: {
4312 struct kvm_msr_entry msr_entry;
4313
4314 msr_entry.index = msr->index;
4315 if (svm_get_msr_feature(&msr_entry))
4316 return 1;
4317
4318 /* Check the supported bits */
4319 if (data & ~msr_entry.data)
4320 return 1;
4321
4322 /* Don't allow the guest to change a bit, #GP */
4323 if (!msr->host_initiated && (data ^ msr_entry.data))
4324 return 1;
4325
4326 svm->msr_decfg = data;
4327 break;
4328 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004329 case MSR_IA32_APICBASE:
4330 if (kvm_vcpu_apicv_active(vcpu))
4331 avic_update_vapic_bar(to_svm(vcpu), data);
4332 /* Follow through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004333 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004334 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004335 }
4336 return 0;
4337}
4338
Avi Kivity851ba692009-08-24 11:10:17 +03004339static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004340{
Will Auld8fe8ab42012-11-29 12:42:12 -08004341 struct msr_data msr;
David Kaplan668f1982015-02-20 16:02:10 -06004342 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
4343 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004344
Will Auld8fe8ab42012-11-29 12:42:12 -08004345 msr.data = data;
4346 msr.index = ecx;
4347 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004348
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004349 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004350 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02004351 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004352 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004353 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004354 } else {
4355 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004356 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02004357 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004358}
4359
Avi Kivity851ba692009-08-24 11:10:17 +03004360static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004361{
Rusty Russelle756fc62007-07-30 20:07:08 +10004362 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004363 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004364 else
Avi Kivity851ba692009-08-24 11:10:17 +03004365 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004366}
4367
Avi Kivity851ba692009-08-24 11:10:17 +03004368static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004369{
Avi Kivity3842d132010-07-27 12:30:24 +03004370 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004371 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004372 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004373 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004374 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004375 return 1;
4376}
4377
Mark Langsdorf565d0992009-10-06 14:25:02 -05004378static int pause_interception(struct vcpu_svm *svm)
4379{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004380 struct kvm_vcpu *vcpu = &svm->vcpu;
4381 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4382
Babu Moger8566ac82018-03-16 16:37:26 -04004383 if (pause_filter_thresh)
4384 grow_ple_window(vcpu);
4385
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004386 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004387 return 1;
4388}
4389
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004390static int nop_interception(struct vcpu_svm *svm)
4391{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004392 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004393}
4394
4395static int monitor_interception(struct vcpu_svm *svm)
4396{
4397 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4398 return nop_interception(svm);
4399}
4400
4401static int mwait_interception(struct vcpu_svm *svm)
4402{
4403 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4404 return nop_interception(svm);
4405}
4406
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004407enum avic_ipi_failure_cause {
4408 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4409 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4410 AVIC_IPI_FAILURE_INVALID_TARGET,
4411 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4412};
4413
4414static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4415{
4416 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4417 u32 icrl = svm->vmcb->control.exit_info_1;
4418 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004419 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004420 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4421
4422 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4423
4424 switch (id) {
4425 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4426 /*
4427 * AVIC hardware handles the generation of
4428 * IPIs when the specified Message Type is Fixed
4429 * (also known as fixed delivery mode) and
4430 * the Trigger Mode is edge-triggered. The hardware
4431 * also supports self and broadcast delivery modes
4432 * specified via the Destination Shorthand(DSH)
4433 * field of the ICRL. Logical and physical APIC ID
4434 * formats are supported. All other IPI types cause
4435 * a #VMEXIT, which needs to emulated.
4436 */
4437 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4438 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4439 break;
4440 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
4441 int i;
4442 struct kvm_vcpu *vcpu;
4443 struct kvm *kvm = svm->vcpu.kvm;
4444 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4445
4446 /*
4447 * At this point, we expect that the AVIC HW has already
4448 * set the appropriate IRR bits on the valid target
4449 * vcpus. So, we just need to kick the appropriate vcpu.
4450 */
4451 kvm_for_each_vcpu(i, vcpu, kvm) {
4452 bool m = kvm_apic_match_dest(vcpu, apic,
4453 icrl & KVM_APIC_SHORT_MASK,
4454 GET_APIC_DEST_FIELD(icrh),
4455 icrl & KVM_APIC_DEST_MASK);
4456
4457 if (m && !avic_vcpu_is_running(vcpu))
4458 kvm_vcpu_wake_up(vcpu);
4459 }
4460 break;
4461 }
4462 case AVIC_IPI_FAILURE_INVALID_TARGET:
4463 break;
4464 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4465 WARN_ONCE(1, "Invalid backing page\n");
4466 break;
4467 default:
4468 pr_err("Unknown IPI interception\n");
4469 }
4470
4471 return 1;
4472}
4473
4474static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4475{
Sean Christopherson81811c12018-03-20 12:17:21 -07004476 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004477 int index;
4478 u32 *logical_apic_id_table;
4479 int dlid = GET_APIC_LOGICAL_ID(ldr);
4480
4481 if (!dlid)
4482 return NULL;
4483
4484 if (flat) { /* flat */
4485 index = ffs(dlid) - 1;
4486 if (index > 7)
4487 return NULL;
4488 } else { /* cluster */
4489 int cluster = (dlid & 0xf0) >> 4;
4490 int apic = ffs(dlid & 0x0f) - 1;
4491
4492 if ((apic < 0) || (apic > 7) ||
4493 (cluster >= 0xf))
4494 return NULL;
4495 index = (cluster << 2) + apic;
4496 }
4497
Sean Christopherson81811c12018-03-20 12:17:21 -07004498 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004499
4500 return &logical_apic_id_table[index];
4501}
4502
4503static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
4504 bool valid)
4505{
4506 bool flat;
4507 u32 *entry, new_entry;
4508
4509 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4510 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4511 if (!entry)
4512 return -EINVAL;
4513
4514 new_entry = READ_ONCE(*entry);
4515 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4516 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
4517 if (valid)
4518 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4519 else
4520 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4521 WRITE_ONCE(*entry, new_entry);
4522
4523 return 0;
4524}
4525
4526static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4527{
4528 int ret;
4529 struct vcpu_svm *svm = to_svm(vcpu);
4530 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
4531
4532 if (!ldr)
4533 return 1;
4534
4535 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
4536 if (ret && svm->ldr_reg) {
4537 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
4538 svm->ldr_reg = 0;
4539 } else {
4540 svm->ldr_reg = ldr;
4541 }
4542 return ret;
4543}
4544
4545static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4546{
4547 u64 *old, *new;
4548 struct vcpu_svm *svm = to_svm(vcpu);
4549 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
4550 u32 id = (apic_id_reg >> 24) & 0xff;
4551
4552 if (vcpu->vcpu_id == id)
4553 return 0;
4554
4555 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4556 new = avic_get_physical_id_entry(vcpu, id);
4557 if (!new || !old)
4558 return 1;
4559
4560 /* We need to move physical_id_entry to new offset */
4561 *new = *old;
4562 *old = 0ULL;
4563 to_svm(vcpu)->avic_physical_id_cache = new;
4564
4565 /*
4566 * Also update the guest physical APIC ID in the logical
4567 * APIC ID table entry if already setup the LDR.
4568 */
4569 if (svm->ldr_reg)
4570 avic_handle_ldr_update(vcpu);
4571
4572 return 0;
4573}
4574
4575static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
4576{
4577 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson81811c12018-03-20 12:17:21 -07004578 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004579 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
4580 u32 mod = (dfr >> 28) & 0xf;
4581
4582 /*
4583 * We assume that all local APICs are using the same type.
4584 * If this changes, we need to flush the AVIC logical
4585 * APID id table.
4586 */
Sean Christopherson81811c12018-03-20 12:17:21 -07004587 if (kvm_svm->ldr_mode == mod)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004588 return 0;
4589
Sean Christopherson81811c12018-03-20 12:17:21 -07004590 clear_page(page_address(kvm_svm->avic_logical_id_table_page));
4591 kvm_svm->ldr_mode = mod;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004592
4593 if (svm->ldr_reg)
4594 avic_handle_ldr_update(vcpu);
4595 return 0;
4596}
4597
4598static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4599{
4600 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4601 u32 offset = svm->vmcb->control.exit_info_1 &
4602 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4603
4604 switch (offset) {
4605 case APIC_ID:
4606 if (avic_handle_apic_id_update(&svm->vcpu))
4607 return 0;
4608 break;
4609 case APIC_LDR:
4610 if (avic_handle_ldr_update(&svm->vcpu))
4611 return 0;
4612 break;
4613 case APIC_DFR:
4614 avic_handle_dfr_update(&svm->vcpu);
4615 break;
4616 default:
4617 break;
4618 }
4619
4620 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4621
4622 return 1;
4623}
4624
4625static bool is_avic_unaccelerated_access_trap(u32 offset)
4626{
4627 bool ret = false;
4628
4629 switch (offset) {
4630 case APIC_ID:
4631 case APIC_EOI:
4632 case APIC_RRR:
4633 case APIC_LDR:
4634 case APIC_DFR:
4635 case APIC_SPIV:
4636 case APIC_ESR:
4637 case APIC_ICR:
4638 case APIC_LVTT:
4639 case APIC_LVTTHMR:
4640 case APIC_LVTPC:
4641 case APIC_LVT0:
4642 case APIC_LVT1:
4643 case APIC_LVTERR:
4644 case APIC_TMICT:
4645 case APIC_TDCR:
4646 ret = true;
4647 break;
4648 default:
4649 break;
4650 }
4651 return ret;
4652}
4653
4654static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4655{
4656 int ret = 0;
4657 u32 offset = svm->vmcb->control.exit_info_1 &
4658 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4659 u32 vector = svm->vmcb->control.exit_info_2 &
4660 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4661 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4662 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4663 bool trap = is_avic_unaccelerated_access_trap(offset);
4664
4665 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4666 trap, write, vector);
4667 if (trap) {
4668 /* Handling Trap */
4669 WARN_ONCE(!write, "svm: Handling trap read.\n");
4670 ret = avic_unaccel_trap_write(svm);
4671 } else {
4672 /* Handling Fault */
4673 ret = (emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
4674 }
4675
4676 return ret;
4677}
4678
Mathias Krause09941fb2012-08-30 01:30:20 +02004679static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004680 [SVM_EXIT_READ_CR0] = cr_interception,
4681 [SVM_EXIT_READ_CR3] = cr_interception,
4682 [SVM_EXIT_READ_CR4] = cr_interception,
4683 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004684 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004685 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004686 [SVM_EXIT_WRITE_CR3] = cr_interception,
4687 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004688 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004689 [SVM_EXIT_READ_DR0] = dr_interception,
4690 [SVM_EXIT_READ_DR1] = dr_interception,
4691 [SVM_EXIT_READ_DR2] = dr_interception,
4692 [SVM_EXIT_READ_DR3] = dr_interception,
4693 [SVM_EXIT_READ_DR4] = dr_interception,
4694 [SVM_EXIT_READ_DR5] = dr_interception,
4695 [SVM_EXIT_READ_DR6] = dr_interception,
4696 [SVM_EXIT_READ_DR7] = dr_interception,
4697 [SVM_EXIT_WRITE_DR0] = dr_interception,
4698 [SVM_EXIT_WRITE_DR1] = dr_interception,
4699 [SVM_EXIT_WRITE_DR2] = dr_interception,
4700 [SVM_EXIT_WRITE_DR3] = dr_interception,
4701 [SVM_EXIT_WRITE_DR4] = dr_interception,
4702 [SVM_EXIT_WRITE_DR5] = dr_interception,
4703 [SVM_EXIT_WRITE_DR6] = dr_interception,
4704 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004705 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4706 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004707 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004708 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004709 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004710 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004711 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004712 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004713 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004714 [SVM_EXIT_SMI] = nop_on_interception,
4715 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004716 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004717 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004718 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004719 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004720 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004721 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004722 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004723 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004724 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004725 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004726 [SVM_EXIT_MSR] = msr_interception,
4727 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004728 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004729 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004730 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004731 [SVM_EXIT_VMLOAD] = vmload_interception,
4732 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004733 [SVM_EXIT_STGI] = stgi_interception,
4734 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004735 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004736 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004737 [SVM_EXIT_MONITOR] = monitor_interception,
4738 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004739 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004740 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004741 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004742 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4743 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004744};
4745
Joe Perchesae8cc052011-04-24 22:00:50 -07004746static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004747{
4748 struct vcpu_svm *svm = to_svm(vcpu);
4749 struct vmcb_control_area *control = &svm->vmcb->control;
4750 struct vmcb_save_area *save = &svm->vmcb->save;
4751
4752 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004753 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4754 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4755 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4756 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4757 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4758 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4759 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004760 pr_err("%-20s%d\n", "pause filter threshold:",
4761 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004762 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4763 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4764 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4765 pr_err("%-20s%d\n", "asid:", control->asid);
4766 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4767 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4768 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4769 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4770 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4771 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4772 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4773 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4774 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4775 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4776 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004777 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004778 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4779 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004780 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004781 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004782 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4783 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4784 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004785 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004786 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4787 "es:",
4788 save->es.selector, save->es.attrib,
4789 save->es.limit, save->es.base);
4790 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4791 "cs:",
4792 save->cs.selector, save->cs.attrib,
4793 save->cs.limit, save->cs.base);
4794 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4795 "ss:",
4796 save->ss.selector, save->ss.attrib,
4797 save->ss.limit, save->ss.base);
4798 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4799 "ds:",
4800 save->ds.selector, save->ds.attrib,
4801 save->ds.limit, save->ds.base);
4802 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4803 "fs:",
4804 save->fs.selector, save->fs.attrib,
4805 save->fs.limit, save->fs.base);
4806 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4807 "gs:",
4808 save->gs.selector, save->gs.attrib,
4809 save->gs.limit, save->gs.base);
4810 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4811 "gdtr:",
4812 save->gdtr.selector, save->gdtr.attrib,
4813 save->gdtr.limit, save->gdtr.base);
4814 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4815 "ldtr:",
4816 save->ldtr.selector, save->ldtr.attrib,
4817 save->ldtr.limit, save->ldtr.base);
4818 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4819 "idtr:",
4820 save->idtr.selector, save->idtr.attrib,
4821 save->idtr.limit, save->idtr.base);
4822 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4823 "tr:",
4824 save->tr.selector, save->tr.attrib,
4825 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004826 pr_err("cpl: %d efer: %016llx\n",
4827 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004828 pr_err("%-15s %016llx %-13s %016llx\n",
4829 "cr0:", save->cr0, "cr2:", save->cr2);
4830 pr_err("%-15s %016llx %-13s %016llx\n",
4831 "cr3:", save->cr3, "cr4:", save->cr4);
4832 pr_err("%-15s %016llx %-13s %016llx\n",
4833 "dr6:", save->dr6, "dr7:", save->dr7);
4834 pr_err("%-15s %016llx %-13s %016llx\n",
4835 "rip:", save->rip, "rflags:", save->rflags);
4836 pr_err("%-15s %016llx %-13s %016llx\n",
4837 "rsp:", save->rsp, "rax:", save->rax);
4838 pr_err("%-15s %016llx %-13s %016llx\n",
4839 "star:", save->star, "lstar:", save->lstar);
4840 pr_err("%-15s %016llx %-13s %016llx\n",
4841 "cstar:", save->cstar, "sfmask:", save->sfmask);
4842 pr_err("%-15s %016llx %-13s %016llx\n",
4843 "kernel_gs_base:", save->kernel_gs_base,
4844 "sysenter_cs:", save->sysenter_cs);
4845 pr_err("%-15s %016llx %-13s %016llx\n",
4846 "sysenter_esp:", save->sysenter_esp,
4847 "sysenter_eip:", save->sysenter_eip);
4848 pr_err("%-15s %016llx %-13s %016llx\n",
4849 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4850 pr_err("%-15s %016llx %-13s %016llx\n",
4851 "br_from:", save->br_from, "br_to:", save->br_to);
4852 pr_err("%-15s %016llx %-13s %016llx\n",
4853 "excp_from:", save->last_excp_from,
4854 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004855}
4856
Avi Kivity586f9602010-11-18 13:09:54 +02004857static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4858{
4859 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4860
4861 *info1 = control->exit_info_1;
4862 *info2 = control->exit_info_2;
4863}
4864
Avi Kivity851ba692009-08-24 11:10:17 +03004865static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004866{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004867 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004868 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004869 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004870
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004871 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4872
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004873 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004874 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4875 if (npt_enabled)
4876 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004877
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004878 if (unlikely(svm->nested.exit_required)) {
4879 nested_svm_vmexit(svm);
4880 svm->nested.exit_required = false;
4881
4882 return 1;
4883 }
4884
Joerg Roedel20307532010-11-29 17:51:48 +01004885 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004886 int vmexit;
4887
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004888 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4889 svm->vmcb->control.exit_info_1,
4890 svm->vmcb->control.exit_info_2,
4891 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004892 svm->vmcb->control.exit_int_info_err,
4893 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004894
Joerg Roedel410e4d52009-08-07 11:49:44 +02004895 vmexit = nested_svm_exit_special(svm);
4896
4897 if (vmexit == NESTED_EXIT_CONTINUE)
4898 vmexit = nested_svm_exit_handled(svm);
4899
4900 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01004901 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01004902 }
4903
Joerg Roedela5c38322009-08-07 11:49:32 +02004904 svm_complete_interrupts(svm);
4905
Avi Kivity04d2cc72007-09-10 18:10:54 +03004906 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4907 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4908 kvm_run->fail_entry.hardware_entry_failure_reason
4909 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02004910 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4911 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03004912 return 0;
4913 }
4914
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004915 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01004916 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02004917 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4918 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02004919 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08004920 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08004921 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004922 exit_code);
4923
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02004924 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08004925 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04004926 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03004927 kvm_queue_exception(vcpu, UD_VECTOR);
4928 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004929 }
4930
Avi Kivity851ba692009-08-24 11:10:17 +03004931 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004932}
4933
4934static void reload_tss(struct kvm_vcpu *vcpu)
4935{
4936 int cpu = raw_smp_processor_id();
4937
Tejun Heo0fe1e002009-10-29 22:34:14 +09004938 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4939 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004940 load_TR_desc();
4941}
4942
Brijesh Singh70cd94e2017-12-04 10:57:34 -06004943static void pre_sev_run(struct vcpu_svm *svm, int cpu)
4944{
4945 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4946 int asid = sev_get_asid(svm->vcpu.kvm);
4947
4948 /* Assign the asid allocated with this SEV guest */
4949 svm->vmcb->control.asid = asid;
4950
4951 /*
4952 * Flush guest TLB:
4953 *
4954 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
4955 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
4956 */
4957 if (sd->sev_vmcbs[asid] == svm->vmcb &&
4958 svm->last_cpu == cpu)
4959 return;
4960
4961 svm->last_cpu = cpu;
4962 sd->sev_vmcbs[asid] = svm->vmcb;
4963 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
4964 mark_dirty(svm->vmcb, VMCB_ASID);
4965}
4966
Rusty Russelle756fc62007-07-30 20:07:08 +10004967static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004968{
4969 int cpu = raw_smp_processor_id();
4970
Tejun Heo0fe1e002009-10-29 22:34:14 +09004971 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004972
Brijesh Singh70cd94e2017-12-04 10:57:34 -06004973 if (sev_guest(svm->vcpu.kvm))
4974 return pre_sev_run(svm, cpu);
4975
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03004976 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09004977 if (svm->asid_generation != sd->asid_generation)
4978 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004979}
4980
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004981static void svm_inject_nmi(struct kvm_vcpu *vcpu)
4982{
4983 struct vcpu_svm *svm = to_svm(vcpu);
4984
4985 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
4986 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01004987 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004988 ++vcpu->stat.nmi_injections;
4989}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004990
Eddie Dong85f455f2007-07-06 12:20:49 +03004991static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004992{
4993 struct vmcb_control_area *control;
4994
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004995 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10004996 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03004997 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004998 control->int_ctl &= ~V_INTR_PRIO_MASK;
4999 control->int_ctl |= V_IRQ_MASK |
5000 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005001 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005002}
5003
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005004static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005005{
5006 struct vcpu_svm *svm = to_svm(vcpu);
5007
Joerg Roedel2af91942009-08-07 11:49:28 +02005008 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005009
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005010 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5011 ++vcpu->stat.irq_injections;
5012
Alexander Graf219b65d2009-06-15 15:21:25 +02005013 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5014 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005015}
5016
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005017static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5018{
5019 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5020}
5021
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005022static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5023{
5024 struct vcpu_svm *svm = to_svm(vcpu);
5025
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005026 if (svm_nested_virtualize_tpr(vcpu) ||
5027 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005028 return;
5029
Radim Krčmář596f3142014-03-11 19:11:18 +01005030 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5031
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005032 if (irr == -1)
5033 return;
5034
5035 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005036 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005037}
5038
Yang Zhang8d146952013-01-25 10:18:50 +08005039static void svm_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
5040{
5041 return;
5042}
5043
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005044static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005045{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005046 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005047}
5048
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005049static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5050{
5051}
5052
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005053static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005054{
5055}
5056
5057/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005058static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5059{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005060 struct vcpu_svm *svm = to_svm(vcpu);
5061 struct vmcb *vmcb = svm->vmcb;
5062
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005063 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005064 return;
5065
5066 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5067 mark_dirty(vmcb, VMCB_INTR);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005068}
5069
Andrey Smetanin63086302015-11-10 15:36:32 +03005070static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005071{
5072 return;
5073}
5074
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005075static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5076{
5077 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5078 smp_mb__after_atomic();
5079
5080 if (avic_vcpu_is_running(vcpu))
5081 wrmsrl(SVM_AVIC_DOORBELL,
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05005082 kvm_cpu_get_apicid(vcpu->cpu));
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005083 else
5084 kvm_vcpu_wake_up(vcpu);
5085}
5086
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005087static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5088{
5089 unsigned long flags;
5090 struct amd_svm_iommu_ir *cur;
5091
5092 spin_lock_irqsave(&svm->ir_list_lock, flags);
5093 list_for_each_entry(cur, &svm->ir_list, node) {
5094 if (cur->data != pi->ir_data)
5095 continue;
5096 list_del(&cur->node);
5097 kfree(cur);
5098 break;
5099 }
5100 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5101}
5102
5103static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5104{
5105 int ret = 0;
5106 unsigned long flags;
5107 struct amd_svm_iommu_ir *ir;
5108
5109 /**
5110 * In some cases, the existing irte is updaed and re-set,
5111 * so we need to check here if it's already been * added
5112 * to the ir_list.
5113 */
5114 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5115 struct kvm *kvm = svm->vcpu.kvm;
5116 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5117 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5118 struct vcpu_svm *prev_svm;
5119
5120 if (!prev_vcpu) {
5121 ret = -EINVAL;
5122 goto out;
5123 }
5124
5125 prev_svm = to_svm(prev_vcpu);
5126 svm_ir_list_del(prev_svm, pi);
5127 }
5128
5129 /**
5130 * Allocating new amd_iommu_pi_data, which will get
5131 * add to the per-vcpu ir_list.
5132 */
5133 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
5134 if (!ir) {
5135 ret = -ENOMEM;
5136 goto out;
5137 }
5138 ir->data = pi->ir_data;
5139
5140 spin_lock_irqsave(&svm->ir_list_lock, flags);
5141 list_add(&ir->node, &svm->ir_list);
5142 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5143out:
5144 return ret;
5145}
5146
5147/**
5148 * Note:
5149 * The HW cannot support posting multicast/broadcast
5150 * interrupts to a vCPU. So, we still use legacy interrupt
5151 * remapping for these kind of interrupts.
5152 *
5153 * For lowest-priority interrupts, we only support
5154 * those with single CPU as the destination, e.g. user
5155 * configures the interrupts via /proc/irq or uses
5156 * irqbalance to make the interrupts single-CPU.
5157 */
5158static int
5159get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5160 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5161{
5162 struct kvm_lapic_irq irq;
5163 struct kvm_vcpu *vcpu = NULL;
5164
5165 kvm_set_msi_irq(kvm, e, &irq);
5166
5167 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
5168 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5169 __func__, irq.vector);
5170 return -1;
5171 }
5172
5173 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5174 irq.vector);
5175 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005176 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005177 vcpu_info->vector = irq.vector;
5178
5179 return 0;
5180}
5181
5182/*
5183 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5184 *
5185 * @kvm: kvm
5186 * @host_irq: host irq of the interrupt
5187 * @guest_irq: gsi of the interrupt
5188 * @set: set or unset PI
5189 * returns 0 on success, < 0 on failure
5190 */
5191static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5192 uint32_t guest_irq, bool set)
5193{
5194 struct kvm_kernel_irq_routing_entry *e;
5195 struct kvm_irq_routing_table *irq_rt;
5196 int idx, ret = -EINVAL;
5197
5198 if (!kvm_arch_has_assigned_device(kvm) ||
5199 !irq_remapping_cap(IRQ_POSTING_CAP))
5200 return 0;
5201
5202 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5203 __func__, host_irq, guest_irq, set);
5204
5205 idx = srcu_read_lock(&kvm->irq_srcu);
5206 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5207 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5208
5209 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5210 struct vcpu_data vcpu_info;
5211 struct vcpu_svm *svm = NULL;
5212
5213 if (e->type != KVM_IRQ_ROUTING_MSI)
5214 continue;
5215
5216 /**
5217 * Here, we setup with legacy mode in the following cases:
5218 * 1. When cannot target interrupt to a specific vcpu.
5219 * 2. Unsetting posted interrupt.
5220 * 3. APIC virtialization is disabled for the vcpu.
5221 */
5222 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5223 kvm_vcpu_apicv_active(&svm->vcpu)) {
5224 struct amd_iommu_pi_data pi;
5225
5226 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005227 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5228 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005229 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005230 svm->vcpu.vcpu_id);
5231 pi.is_guest_mode = true;
5232 pi.vcpu_data = &vcpu_info;
5233 ret = irq_set_vcpu_affinity(host_irq, &pi);
5234
5235 /**
5236 * Here, we successfully setting up vcpu affinity in
5237 * IOMMU guest mode. Now, we need to store the posted
5238 * interrupt information in a per-vcpu ir_list so that
5239 * we can reference to them directly when we update vcpu
5240 * scheduling information in IOMMU irte.
5241 */
5242 if (!ret && pi.is_guest_mode)
5243 svm_ir_list_add(svm, &pi);
5244 } else {
5245 /* Use legacy mode in IRTE */
5246 struct amd_iommu_pi_data pi;
5247
5248 /**
5249 * Here, pi is used to:
5250 * - Tell IOMMU to use legacy mode for this interrupt.
5251 * - Retrieve ga_tag of prior interrupt remapping data.
5252 */
5253 pi.is_guest_mode = false;
5254 ret = irq_set_vcpu_affinity(host_irq, &pi);
5255
5256 /**
5257 * Check if the posted interrupt was previously
5258 * setup with the guest_mode by checking if the ga_tag
5259 * was cached. If so, we need to clean up the per-vcpu
5260 * ir_list.
5261 */
5262 if (!ret && pi.prev_ga_tag) {
5263 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5264 struct kvm_vcpu *vcpu;
5265
5266 vcpu = kvm_get_vcpu_by_id(kvm, id);
5267 if (vcpu)
5268 svm_ir_list_del(to_svm(vcpu), &pi);
5269 }
5270 }
5271
5272 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005273 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5274 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005275 vcpu_info.pi_desc_addr, set);
5276 }
5277
5278 if (ret < 0) {
5279 pr_err("%s: failed to update PI IRTE\n", __func__);
5280 goto out;
5281 }
5282 }
5283
5284 ret = 0;
5285out:
5286 srcu_read_unlock(&kvm->irq_srcu, idx);
5287 return ret;
5288}
5289
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005290static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005291{
5292 struct vcpu_svm *svm = to_svm(vcpu);
5293 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005294 int ret;
5295 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5296 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5297 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5298
5299 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005300}
5301
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005302static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5303{
5304 struct vcpu_svm *svm = to_svm(vcpu);
5305
5306 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5307}
5308
5309static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5310{
5311 struct vcpu_svm *svm = to_svm(vcpu);
5312
5313 if (masked) {
5314 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005315 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005316 } else {
5317 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005318 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005319 }
5320}
5321
Gleb Natapov78646122009-03-23 12:12:11 +02005322static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5323{
5324 struct vcpu_svm *svm = to_svm(vcpu);
5325 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005326 int ret;
5327
5328 if (!gif_set(svm) ||
5329 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5330 return 0;
5331
Avi Kivityf6e78472010-08-02 15:30:20 +03005332 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005333
Joerg Roedel20307532010-11-29 17:51:48 +01005334 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005335 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5336
5337 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005338}
5339
Jan Kiszkac9a79532014-03-07 20:03:15 +01005340static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005341{
Alexander Graf219b65d2009-06-15 15:21:25 +02005342 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005343
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005344 if (kvm_vcpu_apicv_active(vcpu))
5345 return;
5346
Joerg Roedele0231712010-02-24 18:59:10 +01005347 /*
5348 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5349 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5350 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005351 * we'll get the vintr intercept. However, if the vGIF feature is
5352 * enabled, the STGI interception will not occur. Enable the irq
5353 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005354 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005355 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005356 svm_set_vintr(svm);
5357 svm_inject_irq(svm, 0x0);
5358 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005359}
5360
Jan Kiszkac9a79532014-03-07 20:03:15 +01005361static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005362{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005363 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005364
Gleb Natapov44c11432009-05-11 13:35:52 +03005365 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5366 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005367 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005368
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005369 if (!gif_set(svm)) {
5370 if (vgif_enabled(svm))
5371 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005372 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005373 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005374
5375 if (svm->nested.exit_required)
5376 return; /* we're not going to run the guest yet */
5377
Joerg Roedele0231712010-02-24 18:59:10 +01005378 /*
5379 * Something prevents NMI from been injected. Single step over possible
5380 * problem (IRET or exception injection or interrupt shadow)
5381 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005382 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005383 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005384 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005385}
5386
Izik Eiduscbc94022007-10-25 00:29:55 +02005387static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5388{
5389 return 0;
5390}
5391
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005392static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5393{
5394 return 0;
5395}
5396
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005397static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005398{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005399 struct vcpu_svm *svm = to_svm(vcpu);
5400
5401 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5402 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5403 else
5404 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005405}
5406
Avi Kivity04d2cc72007-09-10 18:10:54 +03005407static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5408{
5409}
5410
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005411static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5412{
5413 struct vcpu_svm *svm = to_svm(vcpu);
5414
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005415 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005416 return;
5417
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005418 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005419 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005420 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005421 }
5422}
5423
Joerg Roedel649d6862008-04-16 16:51:15 +02005424static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5425{
5426 struct vcpu_svm *svm = to_svm(vcpu);
5427 u64 cr8;
5428
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005429 if (svm_nested_virtualize_tpr(vcpu) ||
5430 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005431 return;
5432
Joerg Roedel649d6862008-04-16 16:51:15 +02005433 cr8 = kvm_get_cr8(vcpu);
5434 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5435 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5436}
5437
Gleb Natapov9222be12009-04-23 17:14:37 +03005438static void svm_complete_interrupts(struct vcpu_svm *svm)
5439{
5440 u8 vector;
5441 int type;
5442 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005443 unsigned int3_injected = svm->int3_injected;
5444
5445 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005446
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005447 /*
5448 * If we've made progress since setting HF_IRET_MASK, we've
5449 * executed an IRET and can allow NMI injection.
5450 */
5451 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5452 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005453 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005454 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5455 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005456
Gleb Natapov9222be12009-04-23 17:14:37 +03005457 svm->vcpu.arch.nmi_injected = false;
5458 kvm_clear_exception_queue(&svm->vcpu);
5459 kvm_clear_interrupt_queue(&svm->vcpu);
5460
5461 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5462 return;
5463
Avi Kivity3842d132010-07-27 12:30:24 +03005464 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5465
Gleb Natapov9222be12009-04-23 17:14:37 +03005466 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5467 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5468
5469 switch (type) {
5470 case SVM_EXITINTINFO_TYPE_NMI:
5471 svm->vcpu.arch.nmi_injected = true;
5472 break;
5473 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005474 /*
5475 * In case of software exceptions, do not reinject the vector,
5476 * but re-execute the instruction instead. Rewind RIP first
5477 * if we emulated INT3 before.
5478 */
5479 if (kvm_exception_is_soft(vector)) {
5480 if (vector == BP_VECTOR && int3_injected &&
5481 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5482 kvm_rip_write(&svm->vcpu,
5483 kvm_rip_read(&svm->vcpu) -
5484 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005485 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005486 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005487 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5488 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005489 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005490
5491 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005492 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005493 break;
5494 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005495 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005496 break;
5497 default:
5498 break;
5499 }
5500}
5501
Avi Kivityb463a6f2010-07-20 15:06:17 +03005502static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5503{
5504 struct vcpu_svm *svm = to_svm(vcpu);
5505 struct vmcb_control_area *control = &svm->vmcb->control;
5506
5507 control->exit_int_info = control->event_inj;
5508 control->exit_int_info_err = control->event_inj_err;
5509 control->event_inj = 0;
5510 svm_complete_interrupts(svm);
5511}
5512
Avi Kivity851ba692009-08-24 11:10:17 +03005513static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005514{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005515 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005516
Joerg Roedel2041a062010-04-22 12:33:08 +02005517 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5518 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5519 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5520
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005521 /*
5522 * A vmexit emulation is required before the vcpu can be executed
5523 * again.
5524 */
5525 if (unlikely(svm->nested.exit_required))
5526 return;
5527
Ladi Proseka12713c2017-06-21 09:07:00 +02005528 /*
5529 * Disable singlestep if we're injecting an interrupt/exception.
5530 * We don't want our modified rflags to be pushed on the stack where
5531 * we might not be able to easily reset them if we disabled NMI
5532 * singlestep later.
5533 */
5534 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5535 /*
5536 * Event injection happens before external interrupts cause a
5537 * vmexit and interrupts are disabled here, so smp_send_reschedule
5538 * is enough to force an immediate vmexit.
5539 */
5540 disable_nmi_singlestep(svm);
5541 smp_send_reschedule(vcpu->cpu);
5542 }
5543
Rusty Russelle756fc62007-07-30 20:07:08 +10005544 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005545
Joerg Roedel649d6862008-04-16 16:51:15 +02005546 sync_lapic_to_cr8(vcpu);
5547
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005548 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005549
Avi Kivity04d2cc72007-09-10 18:10:54 +03005550 clgi();
5551
5552 local_irq_enable();
Avi Kivity36241b82006-12-22 01:05:20 -08005553
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005554 /*
5555 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5556 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5557 * is no need to worry about the conditional branch over the wrmsr
5558 * being speculatively taken.
5559 */
Konrad Rzeszutek Wilk5cf68752018-04-25 22:04:19 -04005560 x86_spec_ctrl_set_guest(svm->spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005561
Avi Kivity6aa8b732006-12-10 02:21:36 -08005562 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005563 "push %%" _ASM_BP "; \n\t"
5564 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5565 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5566 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5567 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5568 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5569 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005570#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005571 "mov %c[r8](%[svm]), %%r8 \n\t"
5572 "mov %c[r9](%[svm]), %%r9 \n\t"
5573 "mov %c[r10](%[svm]), %%r10 \n\t"
5574 "mov %c[r11](%[svm]), %%r11 \n\t"
5575 "mov %c[r12](%[svm]), %%r12 \n\t"
5576 "mov %c[r13](%[svm]), %%r13 \n\t"
5577 "mov %c[r14](%[svm]), %%r14 \n\t"
5578 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005579#endif
5580
Avi Kivity6aa8b732006-12-10 02:21:36 -08005581 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005582 "push %%" _ASM_AX " \n\t"
5583 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005584 __ex(SVM_VMLOAD) "\n\t"
5585 __ex(SVM_VMRUN) "\n\t"
5586 __ex(SVM_VMSAVE) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005587 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005588
5589 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005590 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5591 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5592 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5593 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5594 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5595 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005596#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005597 "mov %%r8, %c[r8](%[svm]) \n\t"
5598 "mov %%r9, %c[r9](%[svm]) \n\t"
5599 "mov %%r10, %c[r10](%[svm]) \n\t"
5600 "mov %%r11, %c[r11](%[svm]) \n\t"
5601 "mov %%r12, %c[r12](%[svm]) \n\t"
5602 "mov %%r13, %c[r13](%[svm]) \n\t"
5603 "mov %%r14, %c[r14](%[svm]) \n\t"
5604 "mov %%r15, %c[r15](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005605#endif
Jim Mattson0cb5b302018-01-03 14:31:38 -08005606 /*
5607 * Clear host registers marked as clobbered to prevent
5608 * speculative use.
5609 */
5610 "xor %%" _ASM_BX ", %%" _ASM_BX " \n\t"
5611 "xor %%" _ASM_CX ", %%" _ASM_CX " \n\t"
5612 "xor %%" _ASM_DX ", %%" _ASM_DX " \n\t"
5613 "xor %%" _ASM_SI ", %%" _ASM_SI " \n\t"
5614 "xor %%" _ASM_DI ", %%" _ASM_DI " \n\t"
5615#ifdef CONFIG_X86_64
5616 "xor %%r8, %%r8 \n\t"
5617 "xor %%r9, %%r9 \n\t"
5618 "xor %%r10, %%r10 \n\t"
5619 "xor %%r11, %%r11 \n\t"
5620 "xor %%r12, %%r12 \n\t"
5621 "xor %%r13, %%r13 \n\t"
5622 "xor %%r14, %%r14 \n\t"
5623 "xor %%r15, %%r15 \n\t"
5624#endif
Avi Kivity74547662012-09-16 15:10:59 +03005625 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005626 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005627 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005628 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005629 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5630 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5631 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5632 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5633 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5634 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005635#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005636 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5637 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5638 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5639 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5640 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5641 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5642 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5643 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005644#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005645 : "cc", "memory"
5646#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005647 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005648 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005649#else
5650 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005651#endif
5652 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005653
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005654 /* Eliminate branch target predictions from guest mode */
5655 vmexit_fill_RSB();
5656
5657#ifdef CONFIG_X86_64
5658 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5659#else
5660 loadsegment(fs, svm->host.fs);
5661#ifndef CONFIG_X86_32_LAZY_GS
5662 loadsegment(gs, svm->host.gs);
5663#endif
5664#endif
5665
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005666 /*
5667 * We do not use IBRS in the kernel. If this vCPU has used the
5668 * SPEC_CTRL MSR it may have left it on; save the value and
5669 * turn it off. This is much more efficient than blindly adding
5670 * it to the atomic save/restore list. Especially as the former
5671 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5672 *
5673 * For non-nested case:
5674 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5675 * save it.
5676 *
5677 * For nested case:
5678 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5679 * save it.
5680 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005681 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005682 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005683
Konrad Rzeszutek Wilk5cf68752018-04-25 22:04:19 -04005684 x86_spec_ctrl_restore_host(svm->spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005685
Avi Kivity6aa8b732006-12-10 02:21:36 -08005686 reload_tss(vcpu);
5687
Avi Kivity56ba47d2007-11-07 17:14:18 +02005688 local_irq_disable();
5689
Avi Kivity13c34e02010-10-21 12:20:31 +02005690 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5691 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5692 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5693 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5694
Joerg Roedel3781c012011-01-14 16:45:02 +01005695 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005696 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005697
5698 stgi();
5699
5700 /* Any pending NMI will happen here */
5701
5702 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005703 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005704
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005705 sync_cr8_to_lapic(vcpu);
5706
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005707 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005708
Joerg Roedel38e5e922010-12-03 15:25:16 +01005709 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5710
Gleb Natapov631bc482010-10-14 11:22:52 +02005711 /* if exit due to PF check for async PF */
5712 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005713 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005714
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005715 if (npt_enabled) {
5716 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5717 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5718 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005719
5720 /*
5721 * We need to handle MC intercepts here before the vcpu has a chance to
5722 * change the physical cpu
5723 */
5724 if (unlikely(svm->vmcb->control.exit_code ==
5725 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5726 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005727
5728 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005729}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005730STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005731
Avi Kivity6aa8b732006-12-10 02:21:36 -08005732static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5733{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005734 struct vcpu_svm *svm = to_svm(vcpu);
5735
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005736 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005737 mark_dirty(svm->vmcb, VMCB_CR);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005738 svm_flush_tlb(vcpu, true);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005739}
5740
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005741static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5742{
5743 struct vcpu_svm *svm = to_svm(vcpu);
5744
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005745 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005746 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005747
5748 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005749 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005750 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005751
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005752 svm_flush_tlb(vcpu, true);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005753}
5754
Avi Kivity6aa8b732006-12-10 02:21:36 -08005755static int is_disabled(void)
5756{
Joerg Roedel6031a612007-06-22 12:29:50 +03005757 u64 vm_cr;
5758
5759 rdmsrl(MSR_VM_CR, vm_cr);
5760 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5761 return 1;
5762
Avi Kivity6aa8b732006-12-10 02:21:36 -08005763 return 0;
5764}
5765
Ingo Molnar102d8322007-02-19 14:37:47 +02005766static void
5767svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5768{
5769 /*
5770 * Patch in the VMMCALL instruction:
5771 */
5772 hypercall[0] = 0x0f;
5773 hypercall[1] = 0x01;
5774 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005775}
5776
Yang, Sheng002c7f72007-07-31 14:23:01 +03005777static void svm_check_processor_compat(void *rtn)
5778{
5779 *(int *)rtn = 0;
5780}
5781
Avi Kivity774ead32007-12-26 13:57:04 +02005782static bool svm_cpu_has_accelerated_tpr(void)
5783{
5784 return false;
5785}
5786
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005787static bool svm_has_high_real_mode_segbase(void)
5788{
5789 return true;
5790}
5791
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005792static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5793{
5794 return 0;
5795}
5796
Sheng Yang0e851882009-12-18 16:48:46 +08005797static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5798{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005799 struct vcpu_svm *svm = to_svm(vcpu);
5800
5801 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005802 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005803
5804 if (!kvm_vcpu_apicv_active(vcpu))
5805 return;
5806
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005807 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005808}
5809
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005810static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5811{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005812 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005813 case 0x1:
5814 if (avic)
5815 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5816 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005817 case 0x80000001:
5818 if (nested)
5819 entry->ecx |= (1 << 2); /* Set SVM bit */
5820 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005821 case 0x8000000A:
5822 entry->eax = 1; /* SVM revision 1 */
5823 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5824 ASID emulation to nested SVM */
5825 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005826 entry->edx = 0; /* Per default do not support any
5827 additional features */
5828
5829 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005830 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005831 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005832
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005833 /* Support NPT for the guest if enabled */
5834 if (npt_enabled)
5835 entry->edx |= SVM_FEATURE_NPT;
5836
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005837 break;
Brijesh Singh8765d752017-12-04 10:57:25 -06005838 case 0x8000001F:
5839 /* Support memory encryption cpuid if host supports it */
5840 if (boot_cpu_has(X86_FEATURE_SEV))
5841 cpuid(0x8000001f, &entry->eax, &entry->ebx,
5842 &entry->ecx, &entry->edx);
5843
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005844 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005845}
5846
Sheng Yang17cc3932010-01-05 19:02:27 +08005847static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005848{
Sheng Yang17cc3932010-01-05 19:02:27 +08005849 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005850}
5851
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005852static bool svm_rdtscp_supported(void)
5853{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005854 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005855}
5856
Mao, Junjiead756a12012-07-02 01:18:48 +00005857static bool svm_invpcid_supported(void)
5858{
5859 return false;
5860}
5861
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005862static bool svm_mpx_supported(void)
5863{
5864 return false;
5865}
5866
Wanpeng Li55412b22014-12-02 19:21:30 +08005867static bool svm_xsaves_supported(void)
5868{
5869 return false;
5870}
5871
Paolo Bonzini66336ca2016-07-12 10:36:41 +02005872static bool svm_umip_emulated(void)
5873{
5874 return false;
5875}
5876
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005877static bool svm_has_wbinvd_exit(void)
5878{
5879 return true;
5880}
5881
Joerg Roedel80612522011-04-04 12:39:33 +02005882#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005883 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005884#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005885 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005886#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005887 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005888
Mathias Krause09941fb2012-08-30 01:30:20 +02005889static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005890 u32 exit_code;
5891 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005892} x86_intercept_map[] = {
5893 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5894 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5895 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5896 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5897 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02005898 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5899 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02005900 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5901 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5902 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5903 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5904 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5905 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5906 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5907 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02005908 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
5909 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
5910 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
5911 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
5912 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
5913 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
5914 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
5915 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005916 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
5917 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
5918 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02005919 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
5920 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
5921 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
5922 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
5923 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
5924 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
5925 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
5926 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
5927 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02005928 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
5929 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
5930 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
5931 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
5932 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
5933 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
5934 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02005935 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
5936 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
5937 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
5938 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005939};
5940
Joerg Roedel80612522011-04-04 12:39:33 +02005941#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005942#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005943#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005944
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005945static int svm_check_intercept(struct kvm_vcpu *vcpu,
5946 struct x86_instruction_info *info,
5947 enum x86_intercept_stage stage)
5948{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005949 struct vcpu_svm *svm = to_svm(vcpu);
5950 int vmexit, ret = X86EMUL_CONTINUE;
5951 struct __x86_intercept icpt_info;
5952 struct vmcb *vmcb = svm->vmcb;
5953
5954 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
5955 goto out;
5956
5957 icpt_info = x86_intercept_map[info->intercept];
5958
Avi Kivity40e19b52011-04-21 12:35:41 +03005959 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005960 goto out;
5961
5962 switch (icpt_info.exit_code) {
5963 case SVM_EXIT_READ_CR0:
5964 if (info->intercept == x86_intercept_cr_read)
5965 icpt_info.exit_code += info->modrm_reg;
5966 break;
5967 case SVM_EXIT_WRITE_CR0: {
5968 unsigned long cr0, val;
5969 u64 intercept;
5970
5971 if (info->intercept == x86_intercept_cr_write)
5972 icpt_info.exit_code += info->modrm_reg;
5973
Jan Kiszka62baf442014-06-29 21:55:53 +02005974 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
5975 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005976 break;
5977
5978 intercept = svm->nested.intercept;
5979
5980 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
5981 break;
5982
5983 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
5984 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
5985
5986 if (info->intercept == x86_intercept_lmsw) {
5987 cr0 &= 0xfUL;
5988 val &= 0xfUL;
5989 /* lmsw can't clear PE - catch this here */
5990 if (cr0 & X86_CR0_PE)
5991 val |= X86_CR0_PE;
5992 }
5993
5994 if (cr0 ^ val)
5995 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
5996
5997 break;
5998 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02005999 case SVM_EXIT_READ_DR0:
6000 case SVM_EXIT_WRITE_DR0:
6001 icpt_info.exit_code += info->modrm_reg;
6002 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006003 case SVM_EXIT_MSR:
6004 if (info->intercept == x86_intercept_wrmsr)
6005 vmcb->control.exit_info_1 = 1;
6006 else
6007 vmcb->control.exit_info_1 = 0;
6008 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006009 case SVM_EXIT_PAUSE:
6010 /*
6011 * We get this for NOP only, but pause
6012 * is rep not, check this here
6013 */
6014 if (info->rep_prefix != REPE_PREFIX)
6015 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006016 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006017 case SVM_EXIT_IOIO: {
6018 u64 exit_info;
6019 u32 bytes;
6020
Joerg Roedelf6511932011-04-04 12:39:35 +02006021 if (info->intercept == x86_intercept_in ||
6022 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006023 exit_info = ((info->src_val & 0xffff) << 16) |
6024 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006025 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006026 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006027 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006028 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006029 }
6030
6031 if (info->intercept == x86_intercept_outs ||
6032 info->intercept == x86_intercept_ins)
6033 exit_info |= SVM_IOIO_STR_MASK;
6034
6035 if (info->rep_prefix)
6036 exit_info |= SVM_IOIO_REP_MASK;
6037
6038 bytes = min(bytes, 4u);
6039
6040 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6041
6042 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6043
6044 vmcb->control.exit_info_1 = exit_info;
6045 vmcb->control.exit_info_2 = info->next_rip;
6046
6047 break;
6048 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006049 default:
6050 break;
6051 }
6052
Bandan Dasf1047652015-06-11 02:05:33 -04006053 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6054 if (static_cpu_has(X86_FEATURE_NRIPS))
6055 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006056 vmcb->control.exit_code = icpt_info.exit_code;
6057 vmexit = nested_svm_exit_handled(svm);
6058
6059 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6060 : X86EMUL_CONTINUE;
6061
6062out:
6063 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006064}
6065
Yang Zhanga547c6d2013-04-11 19:25:10 +08006066static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
6067{
6068 local_irq_enable();
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006069 /*
6070 * We must have an instruction with interrupts enabled, so
6071 * the timer interrupt isn't delayed by the interrupt shadow.
6072 */
6073 asm("nop");
6074 local_irq_disable();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006075}
6076
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006077static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6078{
Babu Moger8566ac82018-03-16 16:37:26 -04006079 if (pause_filter_thresh)
6080 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006081}
6082
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006083static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6084{
6085 if (avic_handle_apic_id_update(vcpu) != 0)
6086 return;
6087 if (avic_handle_dfr_update(vcpu) != 0)
6088 return;
6089 avic_handle_ldr_update(vcpu);
6090}
6091
Borislav Petkov74f16902017-03-26 23:51:24 +02006092static void svm_setup_mce(struct kvm_vcpu *vcpu)
6093{
6094 /* [63:9] are reserved. */
6095 vcpu->arch.mcg_cap &= 0x1ff;
6096}
6097
Ladi Prosek72d7b372017-10-11 16:54:41 +02006098static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6099{
Ladi Prosek05cade72017-10-11 16:54:45 +02006100 struct vcpu_svm *svm = to_svm(vcpu);
6101
6102 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6103 if (!gif_set(svm))
6104 return 0;
6105
6106 if (is_guest_mode(&svm->vcpu) &&
6107 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6108 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6109 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6110 svm->nested.exit_required = true;
6111 return 0;
6112 }
6113
Ladi Prosek72d7b372017-10-11 16:54:41 +02006114 return 1;
6115}
6116
Ladi Prosek0234bf82017-10-11 16:54:40 +02006117static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6118{
Ladi Prosek05cade72017-10-11 16:54:45 +02006119 struct vcpu_svm *svm = to_svm(vcpu);
6120 int ret;
6121
6122 if (is_guest_mode(vcpu)) {
6123 /* FED8h - SVM Guest */
6124 put_smstate(u64, smstate, 0x7ed8, 1);
6125 /* FEE0h - SVM Guest VMCB Physical Address */
6126 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6127
6128 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6129 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6130 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6131
6132 ret = nested_svm_vmexit(svm);
6133 if (ret)
6134 return ret;
6135 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006136 return 0;
6137}
6138
6139static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
6140{
Ladi Prosek05cade72017-10-11 16:54:45 +02006141 struct vcpu_svm *svm = to_svm(vcpu);
6142 struct vmcb *nested_vmcb;
6143 struct page *page;
6144 struct {
6145 u64 guest;
6146 u64 vmcb;
6147 } svm_state_save;
6148 int ret;
6149
6150 ret = kvm_vcpu_read_guest(vcpu, smbase + 0xfed8, &svm_state_save,
6151 sizeof(svm_state_save));
6152 if (ret)
6153 return ret;
6154
6155 if (svm_state_save.guest) {
6156 vcpu->arch.hflags &= ~HF_SMM_MASK;
6157 nested_vmcb = nested_svm_map(svm, svm_state_save.vmcb, &page);
6158 if (nested_vmcb)
6159 enter_svm_guest_mode(svm, svm_state_save.vmcb, nested_vmcb, page);
6160 else
6161 ret = 1;
6162 vcpu->arch.hflags |= HF_SMM_MASK;
6163 }
6164 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006165}
6166
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006167static int enable_smi_window(struct kvm_vcpu *vcpu)
6168{
6169 struct vcpu_svm *svm = to_svm(vcpu);
6170
6171 if (!gif_set(svm)) {
6172 if (vgif_enabled(svm))
6173 set_intercept(svm, INTERCEPT_STGI);
6174 /* STGI will cause a vm exit */
6175 return 1;
6176 }
6177 return 0;
6178}
6179
Brijesh Singh1654efc2017-12-04 10:57:34 -06006180static int sev_asid_new(void)
6181{
6182 int pos;
6183
6184 /*
6185 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6186 */
6187 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
6188 if (pos >= max_sev_asid)
6189 return -EBUSY;
6190
6191 set_bit(pos, sev_asid_bitmap);
6192 return pos + 1;
6193}
6194
6195static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6196{
Sean Christopherson81811c12018-03-20 12:17:21 -07006197 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006198 int asid, ret;
6199
6200 ret = -EBUSY;
6201 asid = sev_asid_new();
6202 if (asid < 0)
6203 return ret;
6204
6205 ret = sev_platform_init(&argp->error);
6206 if (ret)
6207 goto e_free;
6208
6209 sev->active = true;
6210 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006211 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006212
6213 return 0;
6214
6215e_free:
6216 __sev_asid_free(asid);
6217 return ret;
6218}
6219
Brijesh Singh59414c92017-12-04 10:57:35 -06006220static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6221{
6222 struct sev_data_activate *data;
6223 int asid = sev_get_asid(kvm);
6224 int ret;
6225
6226 wbinvd_on_all_cpus();
6227
6228 ret = sev_guest_df_flush(error);
6229 if (ret)
6230 return ret;
6231
6232 data = kzalloc(sizeof(*data), GFP_KERNEL);
6233 if (!data)
6234 return -ENOMEM;
6235
6236 /* activate ASID on the given handle */
6237 data->handle = handle;
6238 data->asid = asid;
6239 ret = sev_guest_activate(data, error);
6240 kfree(data);
6241
6242 return ret;
6243}
6244
Brijesh Singh89c50582017-12-04 10:57:35 -06006245static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006246{
6247 struct fd f;
6248 int ret;
6249
6250 f = fdget(fd);
6251 if (!f.file)
6252 return -EBADF;
6253
6254 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6255
6256 fdput(f);
6257 return ret;
6258}
6259
Brijesh Singh89c50582017-12-04 10:57:35 -06006260static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6261{
Sean Christopherson81811c12018-03-20 12:17:21 -07006262 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006263
6264 return __sev_issue_cmd(sev->fd, id, data, error);
6265}
6266
Brijesh Singh59414c92017-12-04 10:57:35 -06006267static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6268{
Sean Christopherson81811c12018-03-20 12:17:21 -07006269 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006270 struct sev_data_launch_start *start;
6271 struct kvm_sev_launch_start params;
6272 void *dh_blob, *session_blob;
6273 int *error = &argp->error;
6274 int ret;
6275
6276 if (!sev_guest(kvm))
6277 return -ENOTTY;
6278
6279 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6280 return -EFAULT;
6281
6282 start = kzalloc(sizeof(*start), GFP_KERNEL);
6283 if (!start)
6284 return -ENOMEM;
6285
6286 dh_blob = NULL;
6287 if (params.dh_uaddr) {
6288 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6289 if (IS_ERR(dh_blob)) {
6290 ret = PTR_ERR(dh_blob);
6291 goto e_free;
6292 }
6293
6294 start->dh_cert_address = __sme_set(__pa(dh_blob));
6295 start->dh_cert_len = params.dh_len;
6296 }
6297
6298 session_blob = NULL;
6299 if (params.session_uaddr) {
6300 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6301 if (IS_ERR(session_blob)) {
6302 ret = PTR_ERR(session_blob);
6303 goto e_free_dh;
6304 }
6305
6306 start->session_address = __sme_set(__pa(session_blob));
6307 start->session_len = params.session_len;
6308 }
6309
6310 start->handle = params.handle;
6311 start->policy = params.policy;
6312
6313 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006314 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006315 if (ret)
6316 goto e_free_session;
6317
6318 /* Bind ASID to this guest */
6319 ret = sev_bind_asid(kvm, start->handle, error);
6320 if (ret)
6321 goto e_free_session;
6322
6323 /* return handle to userspace */
6324 params.handle = start->handle;
6325 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6326 sev_unbind_asid(kvm, start->handle);
6327 ret = -EFAULT;
6328 goto e_free_session;
6329 }
6330
6331 sev->handle = start->handle;
6332 sev->fd = argp->sev_fd;
6333
6334e_free_session:
6335 kfree(session_blob);
6336e_free_dh:
6337 kfree(dh_blob);
6338e_free:
6339 kfree(start);
6340 return ret;
6341}
6342
Brijesh Singh89c50582017-12-04 10:57:35 -06006343static int get_num_contig_pages(int idx, struct page **inpages,
6344 unsigned long npages)
6345{
6346 unsigned long paddr, next_paddr;
6347 int i = idx + 1, pages = 1;
6348
6349 /* find the number of contiguous pages starting from idx */
6350 paddr = __sme_page_pa(inpages[idx]);
6351 while (i < npages) {
6352 next_paddr = __sme_page_pa(inpages[i++]);
6353 if ((paddr + PAGE_SIZE) == next_paddr) {
6354 pages++;
6355 paddr = next_paddr;
6356 continue;
6357 }
6358 break;
6359 }
6360
6361 return pages;
6362}
6363
6364static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6365{
6366 unsigned long vaddr, vaddr_end, next_vaddr, npages, size;
Sean Christopherson81811c12018-03-20 12:17:21 -07006367 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006368 struct kvm_sev_launch_update_data params;
6369 struct sev_data_launch_update_data *data;
6370 struct page **inpages;
6371 int i, ret, pages;
6372
6373 if (!sev_guest(kvm))
6374 return -ENOTTY;
6375
6376 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6377 return -EFAULT;
6378
6379 data = kzalloc(sizeof(*data), GFP_KERNEL);
6380 if (!data)
6381 return -ENOMEM;
6382
6383 vaddr = params.uaddr;
6384 size = params.len;
6385 vaddr_end = vaddr + size;
6386
6387 /* Lock the user memory. */
6388 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6389 if (!inpages) {
6390 ret = -ENOMEM;
6391 goto e_free;
6392 }
6393
6394 /*
6395 * The LAUNCH_UPDATE command will perform in-place encryption of the
6396 * memory content (i.e it will write the same memory region with C=1).
6397 * It's possible that the cache may contain the data with C=0, i.e.,
6398 * unencrypted so invalidate it first.
6399 */
6400 sev_clflush_pages(inpages, npages);
6401
6402 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6403 int offset, len;
6404
6405 /*
6406 * If the user buffer is not page-aligned, calculate the offset
6407 * within the page.
6408 */
6409 offset = vaddr & (PAGE_SIZE - 1);
6410
6411 /* Calculate the number of pages that can be encrypted in one go. */
6412 pages = get_num_contig_pages(i, inpages, npages);
6413
6414 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6415
6416 data->handle = sev->handle;
6417 data->len = len;
6418 data->address = __sme_page_pa(inpages[i]) + offset;
6419 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6420 if (ret)
6421 goto e_unpin;
6422
6423 size -= len;
6424 next_vaddr = vaddr + len;
6425 }
6426
6427e_unpin:
6428 /* content of memory is updated, mark pages dirty */
6429 for (i = 0; i < npages; i++) {
6430 set_page_dirty_lock(inpages[i]);
6431 mark_page_accessed(inpages[i]);
6432 }
6433 /* unlock the user pages */
6434 sev_unpin_memory(kvm, inpages, npages);
6435e_free:
6436 kfree(data);
6437 return ret;
6438}
6439
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006440static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6441{
Brijesh Singh3e233382018-02-23 12:36:50 -06006442 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006443 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006444 struct sev_data_launch_measure *data;
6445 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006446 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006447 void *blob = NULL;
6448 int ret;
6449
6450 if (!sev_guest(kvm))
6451 return -ENOTTY;
6452
Brijesh Singh3e233382018-02-23 12:36:50 -06006453 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006454 return -EFAULT;
6455
6456 data = kzalloc(sizeof(*data), GFP_KERNEL);
6457 if (!data)
6458 return -ENOMEM;
6459
6460 /* User wants to query the blob length */
6461 if (!params.len)
6462 goto cmd;
6463
Brijesh Singh3e233382018-02-23 12:36:50 -06006464 p = (void __user *)(uintptr_t)params.uaddr;
6465 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006466 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6467 ret = -EINVAL;
6468 goto e_free;
6469 }
6470
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006471 ret = -ENOMEM;
6472 blob = kmalloc(params.len, GFP_KERNEL);
6473 if (!blob)
6474 goto e_free;
6475
6476 data->address = __psp_pa(blob);
6477 data->len = params.len;
6478 }
6479
6480cmd:
6481 data->handle = sev->handle;
6482 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6483
6484 /*
6485 * If we query the session length, FW responded with expected data.
6486 */
6487 if (!params.len)
6488 goto done;
6489
6490 if (ret)
6491 goto e_free_blob;
6492
6493 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006494 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006495 ret = -EFAULT;
6496 }
6497
6498done:
6499 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006500 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006501 ret = -EFAULT;
6502e_free_blob:
6503 kfree(blob);
6504e_free:
6505 kfree(data);
6506 return ret;
6507}
6508
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006509static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6510{
Sean Christopherson81811c12018-03-20 12:17:21 -07006511 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006512 struct sev_data_launch_finish *data;
6513 int ret;
6514
6515 if (!sev_guest(kvm))
6516 return -ENOTTY;
6517
6518 data = kzalloc(sizeof(*data), GFP_KERNEL);
6519 if (!data)
6520 return -ENOMEM;
6521
6522 data->handle = sev->handle;
6523 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6524
6525 kfree(data);
6526 return ret;
6527}
6528
Brijesh Singh255d9e72017-12-04 10:57:37 -06006529static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6530{
Sean Christopherson81811c12018-03-20 12:17:21 -07006531 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006532 struct kvm_sev_guest_status params;
6533 struct sev_data_guest_status *data;
6534 int ret;
6535
6536 if (!sev_guest(kvm))
6537 return -ENOTTY;
6538
6539 data = kzalloc(sizeof(*data), GFP_KERNEL);
6540 if (!data)
6541 return -ENOMEM;
6542
6543 data->handle = sev->handle;
6544 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6545 if (ret)
6546 goto e_free;
6547
6548 params.policy = data->policy;
6549 params.state = data->state;
6550 params.handle = data->handle;
6551
6552 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6553 ret = -EFAULT;
6554e_free:
6555 kfree(data);
6556 return ret;
6557}
6558
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006559static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6560 unsigned long dst, int size,
6561 int *error, bool enc)
6562{
Sean Christopherson81811c12018-03-20 12:17:21 -07006563 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006564 struct sev_data_dbg *data;
6565 int ret;
6566
6567 data = kzalloc(sizeof(*data), GFP_KERNEL);
6568 if (!data)
6569 return -ENOMEM;
6570
6571 data->handle = sev->handle;
6572 data->dst_addr = dst;
6573 data->src_addr = src;
6574 data->len = size;
6575
6576 ret = sev_issue_cmd(kvm,
6577 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6578 data, error);
6579 kfree(data);
6580 return ret;
6581}
6582
6583static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6584 unsigned long dst_paddr, int sz, int *err)
6585{
6586 int offset;
6587
6588 /*
6589 * Its safe to read more than we are asked, caller should ensure that
6590 * destination has enough space.
6591 */
6592 src_paddr = round_down(src_paddr, 16);
6593 offset = src_paddr & 15;
6594 sz = round_up(sz + offset, 16);
6595
6596 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6597}
6598
6599static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6600 unsigned long __user dst_uaddr,
6601 unsigned long dst_paddr,
6602 int size, int *err)
6603{
6604 struct page *tpage = NULL;
6605 int ret, offset;
6606
6607 /* if inputs are not 16-byte then use intermediate buffer */
6608 if (!IS_ALIGNED(dst_paddr, 16) ||
6609 !IS_ALIGNED(paddr, 16) ||
6610 !IS_ALIGNED(size, 16)) {
6611 tpage = (void *)alloc_page(GFP_KERNEL);
6612 if (!tpage)
6613 return -ENOMEM;
6614
6615 dst_paddr = __sme_page_pa(tpage);
6616 }
6617
6618 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6619 if (ret)
6620 goto e_free;
6621
6622 if (tpage) {
6623 offset = paddr & 15;
6624 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6625 page_address(tpage) + offset, size))
6626 ret = -EFAULT;
6627 }
6628
6629e_free:
6630 if (tpage)
6631 __free_page(tpage);
6632
6633 return ret;
6634}
6635
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006636static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6637 unsigned long __user vaddr,
6638 unsigned long dst_paddr,
6639 unsigned long __user dst_vaddr,
6640 int size, int *error)
6641{
6642 struct page *src_tpage = NULL;
6643 struct page *dst_tpage = NULL;
6644 int ret, len = size;
6645
6646 /* If source buffer is not aligned then use an intermediate buffer */
6647 if (!IS_ALIGNED(vaddr, 16)) {
6648 src_tpage = alloc_page(GFP_KERNEL);
6649 if (!src_tpage)
6650 return -ENOMEM;
6651
6652 if (copy_from_user(page_address(src_tpage),
6653 (void __user *)(uintptr_t)vaddr, size)) {
6654 __free_page(src_tpage);
6655 return -EFAULT;
6656 }
6657
6658 paddr = __sme_page_pa(src_tpage);
6659 }
6660
6661 /*
6662 * If destination buffer or length is not aligned then do read-modify-write:
6663 * - decrypt destination in an intermediate buffer
6664 * - copy the source buffer in an intermediate buffer
6665 * - use the intermediate buffer as source buffer
6666 */
6667 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6668 int dst_offset;
6669
6670 dst_tpage = alloc_page(GFP_KERNEL);
6671 if (!dst_tpage) {
6672 ret = -ENOMEM;
6673 goto e_free;
6674 }
6675
6676 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6677 __sme_page_pa(dst_tpage), size, error);
6678 if (ret)
6679 goto e_free;
6680
6681 /*
6682 * If source is kernel buffer then use memcpy() otherwise
6683 * copy_from_user().
6684 */
6685 dst_offset = dst_paddr & 15;
6686
6687 if (src_tpage)
6688 memcpy(page_address(dst_tpage) + dst_offset,
6689 page_address(src_tpage), size);
6690 else {
6691 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6692 (void __user *)(uintptr_t)vaddr, size)) {
6693 ret = -EFAULT;
6694 goto e_free;
6695 }
6696 }
6697
6698 paddr = __sme_page_pa(dst_tpage);
6699 dst_paddr = round_down(dst_paddr, 16);
6700 len = round_up(size, 16);
6701 }
6702
6703 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6704
6705e_free:
6706 if (src_tpage)
6707 __free_page(src_tpage);
6708 if (dst_tpage)
6709 __free_page(dst_tpage);
6710 return ret;
6711}
6712
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006713static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6714{
6715 unsigned long vaddr, vaddr_end, next_vaddr;
6716 unsigned long dst_vaddr, dst_vaddr_end;
6717 struct page **src_p, **dst_p;
6718 struct kvm_sev_dbg debug;
6719 unsigned long n;
6720 int ret, size;
6721
6722 if (!sev_guest(kvm))
6723 return -ENOTTY;
6724
6725 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6726 return -EFAULT;
6727
6728 vaddr = debug.src_uaddr;
6729 size = debug.len;
6730 vaddr_end = vaddr + size;
6731 dst_vaddr = debug.dst_uaddr;
6732 dst_vaddr_end = dst_vaddr + size;
6733
6734 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6735 int len, s_off, d_off;
6736
6737 /* lock userspace source and destination page */
6738 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6739 if (!src_p)
6740 return -EFAULT;
6741
6742 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6743 if (!dst_p) {
6744 sev_unpin_memory(kvm, src_p, n);
6745 return -EFAULT;
6746 }
6747
6748 /*
6749 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6750 * memory content (i.e it will write the same memory region with C=1).
6751 * It's possible that the cache may contain the data with C=0, i.e.,
6752 * unencrypted so invalidate it first.
6753 */
6754 sev_clflush_pages(src_p, 1);
6755 sev_clflush_pages(dst_p, 1);
6756
6757 /*
6758 * Since user buffer may not be page aligned, calculate the
6759 * offset within the page.
6760 */
6761 s_off = vaddr & ~PAGE_MASK;
6762 d_off = dst_vaddr & ~PAGE_MASK;
6763 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6764
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006765 if (dec)
6766 ret = __sev_dbg_decrypt_user(kvm,
6767 __sme_page_pa(src_p[0]) + s_off,
6768 dst_vaddr,
6769 __sme_page_pa(dst_p[0]) + d_off,
6770 len, &argp->error);
6771 else
6772 ret = __sev_dbg_encrypt_user(kvm,
6773 __sme_page_pa(src_p[0]) + s_off,
6774 vaddr,
6775 __sme_page_pa(dst_p[0]) + d_off,
6776 dst_vaddr,
6777 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006778
6779 sev_unpin_memory(kvm, src_p, 1);
6780 sev_unpin_memory(kvm, dst_p, 1);
6781
6782 if (ret)
6783 goto err;
6784
6785 next_vaddr = vaddr + len;
6786 dst_vaddr = dst_vaddr + len;
6787 size -= len;
6788 }
6789err:
6790 return ret;
6791}
6792
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006793static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6794{
Sean Christopherson81811c12018-03-20 12:17:21 -07006795 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006796 struct sev_data_launch_secret *data;
6797 struct kvm_sev_launch_secret params;
6798 struct page **pages;
6799 void *blob, *hdr;
6800 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006801 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006802
6803 if (!sev_guest(kvm))
6804 return -ENOTTY;
6805
6806 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6807 return -EFAULT;
6808
6809 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
6810 if (!pages)
6811 return -ENOMEM;
6812
6813 /*
6814 * The secret must be copied into contiguous memory region, lets verify
6815 * that userspace memory pages are contiguous before we issue command.
6816 */
6817 if (get_num_contig_pages(0, pages, n) != n) {
6818 ret = -EINVAL;
6819 goto e_unpin_memory;
6820 }
6821
6822 ret = -ENOMEM;
6823 data = kzalloc(sizeof(*data), GFP_KERNEL);
6824 if (!data)
6825 goto e_unpin_memory;
6826
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006827 offset = params.guest_uaddr & (PAGE_SIZE - 1);
6828 data->guest_address = __sme_page_pa(pages[0]) + offset;
6829 data->guest_len = params.guest_len;
6830
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006831 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
6832 if (IS_ERR(blob)) {
6833 ret = PTR_ERR(blob);
6834 goto e_free;
6835 }
6836
6837 data->trans_address = __psp_pa(blob);
6838 data->trans_len = params.trans_len;
6839
6840 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
6841 if (IS_ERR(hdr)) {
6842 ret = PTR_ERR(hdr);
6843 goto e_free_blob;
6844 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006845 data->hdr_address = __psp_pa(hdr);
6846 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006847
6848 data->handle = sev->handle;
6849 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
6850
6851 kfree(hdr);
6852
6853e_free_blob:
6854 kfree(blob);
6855e_free:
6856 kfree(data);
6857e_unpin_memory:
6858 sev_unpin_memory(kvm, pages, n);
6859 return ret;
6860}
6861
Brijesh Singh1654efc2017-12-04 10:57:34 -06006862static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
6863{
6864 struct kvm_sev_cmd sev_cmd;
6865 int r;
6866
6867 if (!svm_sev_enabled())
6868 return -ENOTTY;
6869
6870 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
6871 return -EFAULT;
6872
6873 mutex_lock(&kvm->lock);
6874
6875 switch (sev_cmd.id) {
6876 case KVM_SEV_INIT:
6877 r = sev_guest_init(kvm, &sev_cmd);
6878 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06006879 case KVM_SEV_LAUNCH_START:
6880 r = sev_launch_start(kvm, &sev_cmd);
6881 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06006882 case KVM_SEV_LAUNCH_UPDATE_DATA:
6883 r = sev_launch_update_data(kvm, &sev_cmd);
6884 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006885 case KVM_SEV_LAUNCH_MEASURE:
6886 r = sev_launch_measure(kvm, &sev_cmd);
6887 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006888 case KVM_SEV_LAUNCH_FINISH:
6889 r = sev_launch_finish(kvm, &sev_cmd);
6890 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006891 case KVM_SEV_GUEST_STATUS:
6892 r = sev_guest_status(kvm, &sev_cmd);
6893 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006894 case KVM_SEV_DBG_DECRYPT:
6895 r = sev_dbg_crypt(kvm, &sev_cmd, true);
6896 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006897 case KVM_SEV_DBG_ENCRYPT:
6898 r = sev_dbg_crypt(kvm, &sev_cmd, false);
6899 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006900 case KVM_SEV_LAUNCH_SECRET:
6901 r = sev_launch_secret(kvm, &sev_cmd);
6902 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006903 default:
6904 r = -EINVAL;
6905 goto out;
6906 }
6907
6908 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
6909 r = -EFAULT;
6910
6911out:
6912 mutex_unlock(&kvm->lock);
6913 return r;
6914}
6915
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006916static int svm_register_enc_region(struct kvm *kvm,
6917 struct kvm_enc_region *range)
6918{
Sean Christopherson81811c12018-03-20 12:17:21 -07006919 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006920 struct enc_region *region;
6921 int ret = 0;
6922
6923 if (!sev_guest(kvm))
6924 return -ENOTTY;
6925
6926 region = kzalloc(sizeof(*region), GFP_KERNEL);
6927 if (!region)
6928 return -ENOMEM;
6929
6930 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
6931 if (!region->pages) {
6932 ret = -ENOMEM;
6933 goto e_free;
6934 }
6935
6936 /*
6937 * The guest may change the memory encryption attribute from C=0 -> C=1
6938 * or vice versa for this memory range. Lets make sure caches are
6939 * flushed to ensure that guest data gets written into memory with
6940 * correct C-bit.
6941 */
6942 sev_clflush_pages(region->pages, region->npages);
6943
6944 region->uaddr = range->addr;
6945 region->size = range->size;
6946
6947 mutex_lock(&kvm->lock);
6948 list_add_tail(&region->list, &sev->regions_list);
6949 mutex_unlock(&kvm->lock);
6950
6951 return ret;
6952
6953e_free:
6954 kfree(region);
6955 return ret;
6956}
6957
6958static struct enc_region *
6959find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
6960{
Sean Christopherson81811c12018-03-20 12:17:21 -07006961 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006962 struct list_head *head = &sev->regions_list;
6963 struct enc_region *i;
6964
6965 list_for_each_entry(i, head, list) {
6966 if (i->uaddr == range->addr &&
6967 i->size == range->size)
6968 return i;
6969 }
6970
6971 return NULL;
6972}
6973
6974
6975static int svm_unregister_enc_region(struct kvm *kvm,
6976 struct kvm_enc_region *range)
6977{
6978 struct enc_region *region;
6979 int ret;
6980
6981 mutex_lock(&kvm->lock);
6982
6983 if (!sev_guest(kvm)) {
6984 ret = -ENOTTY;
6985 goto failed;
6986 }
6987
6988 region = find_enc_region(kvm, range);
6989 if (!region) {
6990 ret = -EINVAL;
6991 goto failed;
6992 }
6993
6994 __unregister_enc_region_locked(kvm, region);
6995
6996 mutex_unlock(&kvm->lock);
6997 return 0;
6998
6999failed:
7000 mutex_unlock(&kvm->lock);
7001 return ret;
7002}
7003
Kees Cook404f6aa2016-08-08 16:29:06 -07007004static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007005 .cpu_has_kvm_support = has_svm,
7006 .disabled_by_bios = is_disabled,
7007 .hardware_setup = svm_hardware_setup,
7008 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007009 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007010 .hardware_enable = svm_hardware_enable,
7011 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007012 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Paolo Bonzini6d396b52015-04-01 14:25:33 +02007013 .cpu_has_high_real_mode_segbase = svm_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007014
7015 .vcpu_create = svm_create_vcpu,
7016 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007017 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007018
Sean Christopherson434a1e92018-03-20 12:17:18 -07007019 .vm_alloc = svm_vm_alloc,
7020 .vm_free = svm_vm_free,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007021 .vm_init = avic_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007022 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007023
Avi Kivity04d2cc72007-09-10 18:10:54 +03007024 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007025 .vcpu_load = svm_vcpu_load,
7026 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007027 .vcpu_blocking = svm_vcpu_blocking,
7028 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007029
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007030 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007031 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007032 .get_msr = svm_get_msr,
7033 .set_msr = svm_set_msr,
7034 .get_segment_base = svm_get_segment_base,
7035 .get_segment = svm_get_segment,
7036 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007037 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007038 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007039 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007040 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007041 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007042 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007043 .set_cr3 = svm_set_cr3,
7044 .set_cr4 = svm_set_cr4,
7045 .set_efer = svm_set_efer,
7046 .get_idt = svm_get_idt,
7047 .set_idt = svm_set_idt,
7048 .get_gdt = svm_get_gdt,
7049 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007050 .get_dr6 = svm_get_dr6,
7051 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007052 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007053 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007054 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007055 .get_rflags = svm_get_rflags,
7056 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007057
Avi Kivity6aa8b732006-12-10 02:21:36 -08007058 .tlb_flush = svm_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007059
Avi Kivity6aa8b732006-12-10 02:21:36 -08007060 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007061 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007062 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007063 .set_interrupt_shadow = svm_set_interrupt_shadow,
7064 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007065 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007066 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007067 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007068 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007069 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007070 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007071 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007072 .get_nmi_mask = svm_get_nmi_mask,
7073 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007074 .enable_nmi_window = enable_nmi_window,
7075 .enable_irq_window = enable_irq_window,
7076 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +08007077 .set_virtual_x2apic_mode = svm_set_virtual_x2apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007078 .get_enable_apicv = svm_get_enable_apicv,
7079 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007080 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007081 .hwapic_irr_update = svm_hwapic_irr_update,
7082 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007083 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007084 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007085
7086 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007087 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007088 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007089 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007090
Avi Kivity586f9602010-11-18 13:09:54 +02007091 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007092
Sheng Yang17cc3932010-01-05 19:02:27 +08007093 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007094
7095 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007096
7097 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007098 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007099 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007100 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007101 .umip_emulated = svm_umip_emulated,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007102
7103 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007104
7105 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007106
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007107 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007108 .write_tsc_offset = svm_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007109
7110 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007111
7112 .check_intercept = svm_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +08007113 .handle_external_intr = svm_handle_external_intr,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007114
7115 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007116
7117 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007118 .deliver_posted_interrupt = svm_deliver_avic_intr,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007119 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007120 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007121
Ladi Prosek72d7b372017-10-11 16:54:41 +02007122 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007123 .pre_enter_smm = svm_pre_enter_smm,
7124 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007125 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007126
7127 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007128 .mem_enc_reg_region = svm_register_enc_region,
7129 .mem_enc_unreg_region = svm_unregister_enc_region,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007130};
7131
7132static int __init svm_init(void)
7133{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007134 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007135 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007136}
7137
7138static void __exit svm_exit(void)
7139{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007140 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007141}
7142
7143module_init(svm_init)
7144module_exit(svm_exit)