blob: 14cca8c601a912a6155511f775f397a3c84d6ddc [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>
Avi Kivity6aa8b732006-12-10 02:21:36 -080040
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -050041#include <asm/apic.h>
Joerg Roedel1018faa2012-02-29 14:57:32 +010042#include <asm/perf_event.h>
Joerg Roedel67ec6602010-05-17 14:43:35 +020043#include <asm/tlbflush.h>
Avi Kivitye4956062007-06-28 14:15:57 -040044#include <asm/desc.h>
Paolo Bonzinifacb0132014-02-21 10:32:27 +010045#include <asm/debugreg.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020046#include <asm/kvm_para.h>
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -050047#include <asm/irq_remapping.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080048
Eduardo Habkost63d11422008-11-17 19:03:20 -020049#include <asm/virtext.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030050#include "trace.h"
Eduardo Habkost63d11422008-11-17 19:03:20 -020051
Avi Kivity4ecac3f2008-05-13 13:23:38 +030052#define __ex(x) __kvm_handle_fault_on_reboot(x)
53
Avi Kivity6aa8b732006-12-10 02:21:36 -080054MODULE_AUTHOR("Qumranet");
55MODULE_LICENSE("GPL");
56
Josh Triplettae759542012-03-28 11:32:28 -070057static const struct x86_cpu_id svm_cpu_id[] = {
58 X86_FEATURE_MATCH(X86_FEATURE_SVM),
59 {}
60};
61MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
62
Avi Kivity6aa8b732006-12-10 02:21:36 -080063#define IOPM_ALLOC_ORDER 2
64#define MSRPM_ALLOC_ORDER 1
65
Avi Kivity6aa8b732006-12-10 02:21:36 -080066#define SEG_TYPE_LDT 2
67#define SEG_TYPE_BUSY_TSS16 3
68
Andre Przywara6bc31bd2010-04-11 23:07:28 +020069#define SVM_FEATURE_NPT (1 << 0)
70#define SVM_FEATURE_LBRV (1 << 1)
71#define SVM_FEATURE_SVML (1 << 2)
72#define SVM_FEATURE_NRIP (1 << 3)
Andre Przywaraddce97a2010-12-21 11:12:03 +010073#define SVM_FEATURE_TSC_RATE (1 << 4)
74#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
75#define SVM_FEATURE_FLUSH_ASID (1 << 6)
76#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020077#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030078
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -050079#define SVM_AVIC_DOORBELL 0xc001011b
80
Joerg Roedel410e4d52009-08-07 11:49:44 +020081#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
82#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
83#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
84
Joerg Roedel24e09cb2008-02-13 18:58:47 +010085#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
86
Joerg Roedelfbc0db72011-03-25 09:44:46 +010087#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010088#define TSC_RATIO_MIN 0x0000000000000001ULL
89#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010090
Dan Carpenter5446a972016-05-23 13:20:10 +030091#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050092
93/*
94 * 0xff is broadcast, so the max index allowed for physical APIC ID
95 * table is 0xfe. APIC IDs above 0xff are reserved.
96 */
97#define AVIC_MAX_PHYSICAL_ID_COUNT 255
98
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -050099#define AVIC_UNACCEL_ACCESS_WRITE_MASK 1
100#define AVIC_UNACCEL_ACCESS_OFFSET_MASK 0xFF0
101#define AVIC_UNACCEL_ACCESS_VECTOR_MASK 0xFFFFFFFF
102
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500103/* AVIC GATAG is encoded using VM and VCPU IDs */
104#define AVIC_VCPU_ID_BITS 8
105#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1)
106
107#define AVIC_VM_ID_BITS 24
108#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS)
109#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1)
110
111#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \
112 (y & AVIC_VCPU_ID_MASK))
113#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK)
114#define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK)
115
Joerg Roedel67ec6602010-05-17 14:43:35 +0200116static bool erratum_383_found __read_mostly;
117
Avi Kivity6c8166a2009-05-31 18:15:37 +0300118static const u32 host_save_user_msrs[] = {
119#ifdef CONFIG_X86_64
120 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
121 MSR_FS_BASE,
122#endif
123 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Paolo Bonzini46896c72015-11-12 14:49:16 +0100124 MSR_TSC_AUX,
Avi Kivity6c8166a2009-05-31 18:15:37 +0300125};
126
127#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
128
129struct kvm_vcpu;
130
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200131struct nested_state {
132 struct vmcb *hsave;
133 u64 hsave_msr;
Joerg Roedel4a810182010-02-24 18:59:15 +0100134 u64 vm_cr_msr;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200135 u64 vmcb;
136
137 /* These are the merged vectors */
138 u32 *msrpm;
139
140 /* gpa pointers to the real vectors */
141 u64 vmcb_msrpm;
Joerg Roedelce2ac082010-03-01 15:34:39 +0100142 u64 vmcb_iopm;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200143
Joerg Roedelcd3ff652009-10-09 16:08:26 +0200144 /* A VMEXIT is required but not yet emulated */
145 bool exit_required;
146
Joerg Roedelaad42c62009-08-07 11:49:34 +0200147 /* cache for intercepts of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100148 u32 intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100149 u32 intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200150 u32 intercept_exceptions;
151 u64 intercept;
152
Joerg Roedel5bd2edc2010-09-10 17:31:02 +0200153 /* Nested Paging related state */
154 u64 nested_cr3;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200155};
156
Joerg Roedel323c3d82010-03-01 15:34:37 +0100157#define MSRPM_OFFSETS 16
158static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
159
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500160/*
161 * Set osvw_len to higher value when updated Revision Guides
162 * are published and we know what the new status bits are
163 */
164static uint64_t osvw_len = 4, osvw_status;
165
Avi Kivity6c8166a2009-05-31 18:15:37 +0300166struct vcpu_svm {
167 struct kvm_vcpu vcpu;
168 struct vmcb *vmcb;
169 unsigned long vmcb_pa;
170 struct svm_cpu_data *svm_data;
171 uint64_t asid_generation;
172 uint64_t sysenter_esp;
173 uint64_t sysenter_eip;
Paolo Bonzini46896c72015-11-12 14:49:16 +0100174 uint64_t tsc_aux;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300175
176 u64 next_rip;
177
178 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
Avi Kivityafe9e662010-10-21 12:20:32 +0200179 struct {
Avi Kivitydacccfd2010-10-21 12:20:33 +0200180 u16 fs;
181 u16 gs;
182 u16 ldt;
Avi Kivityafe9e662010-10-21 12:20:32 +0200183 u64 gs_base;
184 } host;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300185
186 u32 *msrpm;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300187
Avi Kivitybd3d1ec2011-02-03 15:29:52 +0200188 ulong nmi_iret_rip;
189
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200190 struct nested_state nested;
Jan Kiszka6be7d302009-10-18 13:24:54 +0200191
192 bool nmi_singlestep;
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200193 u64 nmi_singlestep_guest_rflags;
Jan Kiszka66b71382010-02-23 17:47:56 +0100194
195 unsigned int3_injected;
196 unsigned long int3_rip;
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100197
Joerg Roedel6092d3d2015-10-14 15:10:54 +0200198 /* cached guest cpuid flags for faster access */
199 bool nrips_enabled : 1;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500200
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500201 u32 ldr_reg;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500202 struct page *avic_backing_page;
203 u64 *avic_physical_id_cache;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -0500204 bool avic_is_running;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500205
206 /*
207 * Per-vcpu list of struct amd_svm_iommu_ir:
208 * This is used mainly to store interrupt remapping information used
209 * when update the vcpu affinity. This avoids the need to scan for
210 * IRTE and try to match ga_tag in the IOMMU driver.
211 */
212 struct list_head ir_list;
213 spinlock_t ir_list_lock;
214};
215
216/*
217 * This is a wrapper of struct amd_iommu_ir_data.
218 */
219struct amd_svm_iommu_ir {
220 struct list_head node; /* Used by SVM for per-vcpu ir_list */
221 void *data; /* Storing pointer to struct amd_ir_data */
Avi Kivity6c8166a2009-05-31 18:15:37 +0300222};
223
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500224#define AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK (0xFF)
225#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
226
227#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
228#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
229#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
230#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
231
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100232static DEFINE_PER_CPU(u64, current_tsc_ratio);
233#define TSC_RATIO_DEFAULT 0x0100000000ULL
234
Joerg Roedel455716f2010-03-01 15:34:35 +0100235#define MSR_INVALID 0xffffffffU
236
Mathias Krause09941fb2012-08-30 01:30:20 +0200237static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100238 u32 index; /* Index of the MSR */
239 bool always; /* True if intercept is always on */
240} direct_access_msrs[] = {
Brian Gerst8c065852010-07-17 09:03:26 -0400241 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100242 { .index = MSR_IA32_SYSENTER_CS, .always = true },
243#ifdef CONFIG_X86_64
244 { .index = MSR_GS_BASE, .always = true },
245 { .index = MSR_FS_BASE, .always = true },
246 { .index = MSR_KERNEL_GS_BASE, .always = true },
247 { .index = MSR_LSTAR, .always = true },
248 { .index = MSR_CSTAR, .always = true },
249 { .index = MSR_SYSCALL_MASK, .always = true },
250#endif
251 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
252 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
253 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
254 { .index = MSR_IA32_LASTINTTOIP, .always = false },
255 { .index = MSR_INVALID, .always = false },
Avi Kivity6aa8b732006-12-10 02:21:36 -0800256};
257
258/* enable NPT for AMD64 and X86 with PAE */
259#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
260static bool npt_enabled = true;
261#else
Joerg Roedele0231712010-02-24 18:59:10 +0100262static bool npt_enabled;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800263#endif
264
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100265/* allow nested paging (virtualized MMU) for all guests */
266static int npt = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800267module_param(npt, int, S_IRUGO);
268
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100269/* allow nested virtualization in KVM/SVM */
270static int nested = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800271module_param(nested, int, S_IRUGO);
272
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500273/* enable / disable AVIC */
274static int avic;
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500275#ifdef CONFIG_X86_LOCAL_APIC
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500276module_param(avic, int, S_IRUGO);
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500277#endif
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500278
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500279/* enable/disable Virtual VMLOAD VMSAVE */
280static int vls = true;
281module_param(vls, int, 0444);
282
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500283/* enable/disable Virtual GIF */
284static int vgif = true;
285module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500286
Paolo Bonzini79a80592015-09-21 07:46:55 +0200287static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -0800288static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa);
Joerg Roedela5c38322009-08-07 11:49:32 +0200289static void svm_complete_interrupts(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800290
Joerg Roedel410e4d52009-08-07 11:49:44 +0200291static int nested_svm_exit_handled(struct vcpu_svm *svm);
Joerg Roedelb8e88bc2010-02-19 16:23:02 +0100292static int nested_svm_intercept(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800293static int nested_svm_vmexit(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800294static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
295 bool has_error_code, u32 error_code);
296
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100297enum {
Joerg Roedel116a0a22010-12-03 11:45:49 +0100298 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
299 pause filter count */
Joerg Roedelf56838e2010-12-03 11:45:50 +0100300 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
Joerg Roedeld48086d2010-12-03 11:45:51 +0100301 VMCB_ASID, /* ASID */
Joerg Roedeldecdbf62010-12-03 11:45:52 +0100302 VMCB_INTR, /* int_ctl, int_vector */
Joerg Roedelb2747162010-12-03 11:45:53 +0100303 VMCB_NPT, /* npt_en, nCR3, gPAT */
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100304 VMCB_CR, /* CR0, CR3, CR4, EFER */
Joerg Roedel72214b92010-12-03 11:45:55 +0100305 VMCB_DR, /* DR6, DR7 */
Joerg Roedel17a703c2010-12-03 11:45:56 +0100306 VMCB_DT, /* GDT, IDT */
Joerg Roedel060d0c92010-12-03 11:45:57 +0100307 VMCB_SEG, /* CS, DS, SS, ES, CPL */
Joerg Roedel0574dec2010-12-03 11:45:58 +0100308 VMCB_CR2, /* CR2 only */
Joerg Roedelb53ba3f2010-12-03 11:45:59 +0100309 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500310 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
311 * AVIC PHYSICAL_TABLE pointer,
312 * AVIC LOGICAL_TABLE pointer
313 */
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100314 VMCB_DIRTY_MAX,
315};
316
Joerg Roedel0574dec2010-12-03 11:45:58 +0100317/* TPR and CR2 are always written before VMRUN */
318#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100319
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500320#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
321
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100322static inline void mark_all_dirty(struct vmcb *vmcb)
323{
324 vmcb->control.clean = 0;
325}
326
327static inline void mark_all_clean(struct vmcb *vmcb)
328{
329 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
330 & ~VMCB_ALWAYS_DIRTY_MASK;
331}
332
333static inline void mark_dirty(struct vmcb *vmcb, int bit)
334{
335 vmcb->control.clean &= ~(1 << bit);
336}
337
Avi Kivity6aa8b732006-12-10 02:21:36 -0800338static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
339{
340 return container_of(vcpu, struct vcpu_svm, vcpu);
341}
342
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500343static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
344{
345 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
346 mark_dirty(svm->vmcb, VMCB_AVIC);
347}
348
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -0500349static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
350{
351 struct vcpu_svm *svm = to_svm(vcpu);
352 u64 *entry = svm->avic_physical_id_cache;
353
354 if (!entry)
355 return false;
356
357 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
358}
359
Joerg Roedel384c6362010-11-30 18:03:56 +0100360static void recalc_intercepts(struct vcpu_svm *svm)
361{
362 struct vmcb_control_area *c, *h;
363 struct nested_state *g;
Liran Alonac9b3052017-11-06 16:15:10 +0200364 u32 h_intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100365
Joerg Roedel116a0a22010-12-03 11:45:49 +0100366 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
367
Joerg Roedel384c6362010-11-30 18:03:56 +0100368 if (!is_guest_mode(&svm->vcpu))
369 return;
370
371 c = &svm->vmcb->control;
372 h = &svm->nested.hsave->control;
373 g = &svm->nested;
374
Liran Alonac9b3052017-11-06 16:15:10 +0200375 /* No need to intercept #UD if L1 doesn't intercept it */
376 h_intercept_exceptions =
377 h->intercept_exceptions & ~(1U << UD_VECTOR);
378
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100379 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100380 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Liran Alonac9b3052017-11-06 16:15:10 +0200381 c->intercept_exceptions =
382 h_intercept_exceptions | g->intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100383 c->intercept = h->intercept | g->intercept;
384}
385
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100386static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
387{
388 if (is_guest_mode(&svm->vcpu))
389 return svm->nested.hsave;
390 else
391 return svm->vmcb;
392}
393
394static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
395{
396 struct vmcb *vmcb = get_host_vmcb(svm);
397
398 vmcb->control.intercept_cr |= (1U << bit);
399
400 recalc_intercepts(svm);
401}
402
403static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
404{
405 struct vmcb *vmcb = get_host_vmcb(svm);
406
407 vmcb->control.intercept_cr &= ~(1U << bit);
408
409 recalc_intercepts(svm);
410}
411
412static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
413{
414 struct vmcb *vmcb = get_host_vmcb(svm);
415
416 return vmcb->control.intercept_cr & (1U << bit);
417}
418
Paolo Bonzini5315c712014-03-03 13:08:29 +0100419static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100420{
421 struct vmcb *vmcb = get_host_vmcb(svm);
422
Paolo Bonzini5315c712014-03-03 13:08:29 +0100423 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
424 | (1 << INTERCEPT_DR1_READ)
425 | (1 << INTERCEPT_DR2_READ)
426 | (1 << INTERCEPT_DR3_READ)
427 | (1 << INTERCEPT_DR4_READ)
428 | (1 << INTERCEPT_DR5_READ)
429 | (1 << INTERCEPT_DR6_READ)
430 | (1 << INTERCEPT_DR7_READ)
431 | (1 << INTERCEPT_DR0_WRITE)
432 | (1 << INTERCEPT_DR1_WRITE)
433 | (1 << INTERCEPT_DR2_WRITE)
434 | (1 << INTERCEPT_DR3_WRITE)
435 | (1 << INTERCEPT_DR4_WRITE)
436 | (1 << INTERCEPT_DR5_WRITE)
437 | (1 << INTERCEPT_DR6_WRITE)
438 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100439
440 recalc_intercepts(svm);
441}
442
Paolo Bonzini5315c712014-03-03 13:08:29 +0100443static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100444{
445 struct vmcb *vmcb = get_host_vmcb(svm);
446
Paolo Bonzini5315c712014-03-03 13:08:29 +0100447 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100448
449 recalc_intercepts(svm);
450}
451
Joerg Roedel18c918c2010-11-30 18:03:59 +0100452static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
453{
454 struct vmcb *vmcb = get_host_vmcb(svm);
455
456 vmcb->control.intercept_exceptions |= (1U << bit);
457
458 recalc_intercepts(svm);
459}
460
461static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
462{
463 struct vmcb *vmcb = get_host_vmcb(svm);
464
465 vmcb->control.intercept_exceptions &= ~(1U << bit);
466
467 recalc_intercepts(svm);
468}
469
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100470static inline void set_intercept(struct vcpu_svm *svm, int bit)
471{
472 struct vmcb *vmcb = get_host_vmcb(svm);
473
474 vmcb->control.intercept |= (1ULL << bit);
475
476 recalc_intercepts(svm);
477}
478
479static inline void clr_intercept(struct vcpu_svm *svm, int bit)
480{
481 struct vmcb *vmcb = get_host_vmcb(svm);
482
483 vmcb->control.intercept &= ~(1ULL << bit);
484
485 recalc_intercepts(svm);
486}
487
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500488static inline bool vgif_enabled(struct vcpu_svm *svm)
489{
490 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
491}
492
Joerg Roedel2af91942009-08-07 11:49:28 +0200493static inline void enable_gif(struct vcpu_svm *svm)
494{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500495 if (vgif_enabled(svm))
496 svm->vmcb->control.int_ctl |= V_GIF_MASK;
497 else
498 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200499}
500
501static inline void disable_gif(struct vcpu_svm *svm)
502{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500503 if (vgif_enabled(svm))
504 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
505 else
506 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200507}
508
509static inline bool gif_set(struct vcpu_svm *svm)
510{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500511 if (vgif_enabled(svm))
512 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
513 else
514 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200515}
516
Avi Kivity6aa8b732006-12-10 02:21:36 -0800517static unsigned long iopm_base;
518
519struct kvm_ldttss_desc {
520 u16 limit0;
521 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100522 unsigned base1:8, type:5, dpl:2, p:1;
523 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800524 u32 base3;
525 u32 zero1;
526} __attribute__((packed));
527
528struct svm_cpu_data {
529 int cpu;
530
Avi Kivity5008fdf2007-04-02 13:05:50 +0300531 u64 asid_generation;
532 u32 max_asid;
533 u32 next_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800534 struct kvm_ldttss_desc *tss_desc;
535
536 struct page *save_area;
537};
538
539static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
540
541struct svm_init_data {
542 int cpu;
543 int r;
544};
545
Mathias Krause09941fb2012-08-30 01:30:20 +0200546static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800547
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200548#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800549#define MSRS_RANGE_SIZE 2048
550#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
551
Joerg Roedel455716f2010-03-01 15:34:35 +0100552static u32 svm_msrpm_offset(u32 msr)
553{
554 u32 offset;
555 int i;
556
557 for (i = 0; i < NUM_MSR_MAPS; i++) {
558 if (msr < msrpm_ranges[i] ||
559 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
560 continue;
561
562 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
563 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
564
565 /* Now we have the u8 offset - but need the u32 offset */
566 return offset / 4;
567 }
568
569 /* MSR not in any range */
570 return MSR_INVALID;
571}
572
Avi Kivity6aa8b732006-12-10 02:21:36 -0800573#define MAX_INST_SIZE 15
574
Avi Kivity6aa8b732006-12-10 02:21:36 -0800575static inline void clgi(void)
576{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300577 asm volatile (__ex(SVM_CLGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800578}
579
580static inline void stgi(void)
581{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300582 asm volatile (__ex(SVM_STGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800583}
584
585static inline void invlpga(unsigned long addr, u32 asid)
586{
Joerg Roedele0231712010-02-24 18:59:10 +0100587 asm volatile (__ex(SVM_INVLPGA) : : "a"(addr), "c"(asid));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800588}
589
Yu Zhang855feb62017-08-24 20:27:55 +0800590static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200591{
592#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800593 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200594#else
595 return PT32E_ROOT_LEVEL;
596#endif
597}
598
Avi Kivity6aa8b732006-12-10 02:21:36 -0800599static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
600{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000601 vcpu->arch.efer = efer;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100602 if (!npt_enabled && !(efer & EFER_LMA))
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -0600603 efer &= ~EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800604
Alexander Graf9962d032008-11-25 20:17:02 +0100605 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100606 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800607}
608
Avi Kivity6aa8b732006-12-10 02:21:36 -0800609static int is_external_interrupt(u32 info)
610{
611 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
612 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
613}
614
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200615static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400616{
617 struct vcpu_svm *svm = to_svm(vcpu);
618 u32 ret = 0;
619
620 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200621 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
622 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400623}
624
625static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
626{
627 struct vcpu_svm *svm = to_svm(vcpu);
628
629 if (mask == 0)
630 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
631 else
632 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
633
634}
635
Avi Kivity6aa8b732006-12-10 02:21:36 -0800636static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
637{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400638 struct vcpu_svm *svm = to_svm(vcpu);
639
Bandan Dasf1047652015-06-11 02:05:33 -0400640 if (svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200641 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200642 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400643 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200644
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400645 if (!svm->next_rip) {
Andre Przywara51d8b662010-12-21 11:12:02 +0100646 if (emulate_instruction(vcpu, EMULTYPE_SKIP) !=
Gleb Natapovf629cf82009-05-11 13:35:49 +0300647 EMULATE_DONE)
648 printk(KERN_DEBUG "%s: NOP\n", __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800649 return;
650 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300651 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
652 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
653 __func__, kvm_rip_read(vcpu), svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800654
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300655 kvm_rip_write(vcpu, svm->next_rip);
Glauber Costa2809f5d2009-05-12 16:21:05 -0400656 svm_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800657}
658
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700659static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100660{
661 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700662 unsigned nr = vcpu->arch.exception.nr;
663 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700664 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700665 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100666
Joerg Roedele0231712010-02-24 18:59:10 +0100667 /*
668 * If we are within a nested VM we'd better #VMEXIT and let the guest
669 * handle the exception
670 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200671 if (!reinject &&
672 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100673 return;
674
Avi Kivity2a6b20b2010-11-09 16:15:42 +0200675 if (nr == BP_VECTOR && !static_cpu_has(X86_FEATURE_NRIPS)) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100676 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
677
678 /*
679 * For guest debugging where we have to reinject #BP if some
680 * INT3 is guest-owned:
681 * Emulate nRIP by moving RIP forward. Will fail if injection
682 * raises a fault that is not intercepted. Still better than
683 * failing in all cases.
684 */
685 skip_emulated_instruction(&svm->vcpu);
686 rip = kvm_rip_read(&svm->vcpu);
687 svm->int3_rip = rip + svm->vmcb->save.cs.base;
688 svm->int3_injected = rip - old_rip;
689 }
690
Jan Kiszka116a4752010-02-23 17:47:54 +0100691 svm->vmcb->control.event_inj = nr
692 | SVM_EVTINJ_VALID
693 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
694 | SVM_EVTINJ_TYPE_EXEPT;
695 svm->vmcb->control.event_inj_err = error_code;
696}
697
Joerg Roedel67ec6602010-05-17 14:43:35 +0200698static void svm_init_erratum_383(void)
699{
700 u32 low, high;
701 int err;
702 u64 val;
703
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100704 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200705 return;
706
707 /* Use _safe variants to not break nested virtualization */
708 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
709 if (err)
710 return;
711
712 val |= (1ULL << 47);
713
714 low = lower_32_bits(val);
715 high = upper_32_bits(val);
716
717 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
718
719 erratum_383_found = true;
720}
721
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500722static void svm_init_osvw(struct kvm_vcpu *vcpu)
723{
724 /*
725 * Guests should see errata 400 and 415 as fixed (assuming that
726 * HLT and IO instructions are intercepted).
727 */
728 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
729 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
730
731 /*
732 * By increasing VCPU's osvw.length to 3 we are telling the guest that
733 * all osvw.status bits inside that length, including bit 0 (which is
734 * reserved for erratum 298), are valid. However, if host processor's
735 * osvw_len is 0 then osvw_status[0] carries no information. We need to
736 * be conservative here and therefore we tell the guest that erratum 298
737 * is present (because we really don't know).
738 */
739 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
740 vcpu->arch.osvw.status |= 1;
741}
742
Avi Kivity6aa8b732006-12-10 02:21:36 -0800743static int has_svm(void)
744{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200745 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800746
Eduardo Habkost63d11422008-11-17 19:03:20 -0200747 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800748 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800749 return 0;
750 }
751
Avi Kivity6aa8b732006-12-10 02:21:36 -0800752 return 1;
753}
754
Radim Krčmář13a34e02014-08-28 15:13:03 +0200755static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800756{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100757 /* Make sure we clean up behind us */
758 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
759 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
760
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200761 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100762
763 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800764}
765
Radim Krčmář13a34e02014-08-28 15:13:03 +0200766static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800767{
768
Tejun Heo0fe1e002009-10-29 22:34:14 +0900769 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800770 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800771 struct desc_struct *gdt;
772 int me = raw_smp_processor_id();
773
Alexander Graf10474ae2009-09-15 11:37:46 +0200774 rdmsrl(MSR_EFER, efer);
775 if (efer & EFER_SVME)
776 return -EBUSY;
777
Avi Kivity6aa8b732006-12-10 02:21:36 -0800778 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200779 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200780 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800781 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900782 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900783 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200784 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200785 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800786 }
787
Tejun Heo0fe1e002009-10-29 22:34:14 +0900788 sd->asid_generation = 1;
789 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
790 sd->next_asid = sd->max_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800791
Thomas Garnier45fc8752017-03-14 10:05:08 -0700792 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900793 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800794
Alexander Graf9962d032008-11-25 20:17:02 +0100795 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800796
Linus Torvaldsd0316552009-12-14 09:58:24 -0800797 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200798
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100799 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
800 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500801 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100802 }
803
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500804
805 /*
806 * Get OSVW bits.
807 *
808 * Note that it is possible to have a system with mixed processor
809 * revisions and therefore different OSVW bits. If bits are not the same
810 * on different processors then choose the worst case (i.e. if erratum
811 * is present on one processor and not on another then assume that the
812 * erratum is present everywhere).
813 */
814 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
815 uint64_t len, status = 0;
816 int err;
817
818 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
819 if (!err)
820 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
821 &err);
822
823 if (err)
824 osvw_status = osvw_len = 0;
825 else {
826 if (len < osvw_len)
827 osvw_len = len;
828 osvw_status |= status;
829 osvw_status &= (1ULL << osvw_len) - 1;
830 }
831 } else
832 osvw_status = osvw_len = 0;
833
Joerg Roedel67ec6602010-05-17 14:43:35 +0200834 svm_init_erratum_383();
835
Joerg Roedel1018faa2012-02-29 14:57:32 +0100836 amd_pmu_enable_virt();
837
Alexander Graf10474ae2009-09-15 11:37:46 +0200838 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800839}
840
Joerg Roedel0da1db752008-07-02 16:02:11 +0200841static void svm_cpu_uninit(int cpu)
842{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900843 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200844
Tejun Heo0fe1e002009-10-29 22:34:14 +0900845 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200846 return;
847
848 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900849 __free_page(sd->save_area);
850 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200851}
852
Avi Kivity6aa8b732006-12-10 02:21:36 -0800853static int svm_cpu_init(int cpu)
854{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900855 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800856 int r;
857
Tejun Heo0fe1e002009-10-29 22:34:14 +0900858 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
859 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800860 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900861 sd->cpu = cpu;
862 sd->save_area = alloc_page(GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800863 r = -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900864 if (!sd->save_area)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800865 goto err_1;
866
Tejun Heo0fe1e002009-10-29 22:34:14 +0900867 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800868
869 return 0;
870
871err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +0900872 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800873 return r;
874
875}
876
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100877static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800878{
879 int i;
880
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100881 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
882 if (direct_access_msrs[i].index == index)
883 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800884
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100885 return false;
886}
887
Avi Kivity6aa8b732006-12-10 02:21:36 -0800888static void set_msr_interception(u32 *msrpm, unsigned msr,
889 int read, int write)
890{
Joerg Roedel455716f2010-03-01 15:34:35 +0100891 u8 bit_read, bit_write;
892 unsigned long tmp;
893 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800894
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100895 /*
896 * If this warning triggers extend the direct_access_msrs list at the
897 * beginning of the file
898 */
899 WARN_ON(!valid_msr_intercept(msr));
900
Joerg Roedel455716f2010-03-01 15:34:35 +0100901 offset = svm_msrpm_offset(msr);
902 bit_read = 2 * (msr & 0x0f);
903 bit_write = 2 * (msr & 0x0f) + 1;
904 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800905
Joerg Roedel455716f2010-03-01 15:34:35 +0100906 BUG_ON(offset == MSR_INVALID);
907
908 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
909 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
910
911 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800912}
913
Joerg Roedelf65c2292008-02-13 18:58:46 +0100914static void svm_vcpu_init_msrpm(u32 *msrpm)
915{
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100916 int i;
917
Joerg Roedelf65c2292008-02-13 18:58:46 +0100918 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
919
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100920 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
921 if (!direct_access_msrs[i].always)
922 continue;
923
924 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
925 }
Joerg Roedelf65c2292008-02-13 18:58:46 +0100926}
927
Joerg Roedel323c3d82010-03-01 15:34:37 +0100928static void add_msr_offset(u32 offset)
929{
930 int i;
931
932 for (i = 0; i < MSRPM_OFFSETS; ++i) {
933
934 /* Offset already in list? */
935 if (msrpm_offsets[i] == offset)
936 return;
937
938 /* Slot used by another offset? */
939 if (msrpm_offsets[i] != MSR_INVALID)
940 continue;
941
942 /* Add offset to list */
943 msrpm_offsets[i] = offset;
944
945 return;
946 }
947
948 /*
949 * If this BUG triggers the msrpm_offsets table has an overflow. Just
950 * increase MSRPM_OFFSETS in this case.
951 */
952 BUG();
953}
954
955static void init_msrpm_offsets(void)
956{
957 int i;
958
959 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
960
961 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
962 u32 offset;
963
964 offset = svm_msrpm_offset(direct_access_msrs[i].index);
965 BUG_ON(offset == MSR_INVALID);
966
967 add_msr_offset(offset);
968 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800969}
970
Joerg Roedel24e09cb2008-02-13 18:58:47 +0100971static void svm_enable_lbrv(struct vcpu_svm *svm)
972{
973 u32 *msrpm = svm->msrpm;
974
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500975 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +0100976 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
977 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
978 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
979 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
980}
981
982static void svm_disable_lbrv(struct vcpu_svm *svm)
983{
984 u32 *msrpm = svm->msrpm;
985
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500986 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +0100987 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
988 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
989 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
990 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
991}
992
Ladi Prosek4aebd0e2017-06-21 09:06:57 +0200993static void disable_nmi_singlestep(struct vcpu_svm *svm)
994{
995 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500996
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200997 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
998 /* Clear our flags if they were not set by the guest */
999 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1000 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1001 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1002 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1003 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001004}
1005
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001006/* Note:
1007 * This hash table is used to map VM_ID to a struct kvm_arch,
1008 * when handling AMD IOMMU GALOG notification to schedule in
1009 * a particular vCPU.
1010 */
1011#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001012static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001013static u32 next_vm_id = 0;
1014static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001015static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001016
1017/* Note:
1018 * This function is called from IOMMU driver to notify
1019 * SVM to schedule in a particular vCPU of a particular VM.
1020 */
1021static int avic_ga_log_notifier(u32 ga_tag)
1022{
1023 unsigned long flags;
1024 struct kvm_arch *ka = NULL;
1025 struct kvm_vcpu *vcpu = NULL;
1026 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1027 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1028
1029 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1030
1031 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
1032 hash_for_each_possible(svm_vm_data_hash, ka, hnode, vm_id) {
1033 struct kvm *kvm = container_of(ka, struct kvm, arch);
1034 struct kvm_arch *vm_data = &kvm->arch;
1035
1036 if (vm_data->avic_vm_id != vm_id)
1037 continue;
1038 vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
1039 break;
1040 }
1041 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1042
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001043 /* Note:
1044 * At this point, the IOMMU should have already set the pending
1045 * bit in the vAPIC backing page. So, we just need to schedule
1046 * in the vcpu.
1047 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001048 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001049 kvm_vcpu_wake_up(vcpu);
1050
1051 return 0;
1052}
1053
Avi Kivity6aa8b732006-12-10 02:21:36 -08001054static __init int svm_hardware_setup(void)
1055{
1056 int cpu;
1057 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001058 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001059 int r;
1060
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1062
1063 if (!iopm_pages)
1064 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001065
1066 iopm_va = page_address(iopm_pages);
1067 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001068 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1069
Joerg Roedel323c3d82010-03-01 15:34:37 +01001070 init_msrpm_offsets();
1071
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001072 if (boot_cpu_has(X86_FEATURE_NX))
1073 kvm_enable_efer_bits(EFER_NX);
1074
Alexander Graf1b2fd702009-02-02 16:23:51 +01001075 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1076 kvm_enable_efer_bits(EFER_FFXSR);
1077
Joerg Roedel92a1f122011-03-25 09:44:51 +01001078 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001079 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001080 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1081 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001082 }
1083
Alexander Graf236de052008-11-25 20:17:10 +01001084 if (nested) {
1085 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001086 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001087 }
1088
Zachary Amsden3230bb42009-09-29 11:38:37 -10001089 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001090 r = svm_cpu_init(cpu);
1091 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001092 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001093 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001094
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001095 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001096 npt_enabled = false;
1097
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001098 if (npt_enabled && !npt) {
1099 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1100 npt_enabled = false;
1101 }
1102
Joerg Roedel18552672008-02-07 13:47:41 +01001103 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001104 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001105 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001106 } else
1107 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001108
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001109 if (avic) {
1110 if (!npt_enabled ||
1111 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001112 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001113 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001114 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001115 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001116
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001117 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1118 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001119 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001120
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001121 if (vls) {
1122 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001123 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001124 !IS_ENABLED(CONFIG_X86_64)) {
1125 vls = false;
1126 } else {
1127 pr_info("Virtual VMLOAD VMSAVE supported\n");
1128 }
1129 }
1130
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001131 if (vgif) {
1132 if (!boot_cpu_has(X86_FEATURE_VGIF))
1133 vgif = false;
1134 else
1135 pr_info("Virtual GIF supported\n");
1136 }
1137
Avi Kivity6aa8b732006-12-10 02:21:36 -08001138 return 0;
1139
Joerg Roedelf65c2292008-02-13 18:58:46 +01001140err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001141 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1142 iopm_base = 0;
1143 return r;
1144}
1145
1146static __exit void svm_hardware_unsetup(void)
1147{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001148 int cpu;
1149
Zachary Amsden3230bb42009-09-29 11:38:37 -10001150 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001151 svm_cpu_uninit(cpu);
1152
Avi Kivity6aa8b732006-12-10 02:21:36 -08001153 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001154 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001155}
1156
1157static void init_seg(struct vmcb_seg *seg)
1158{
1159 seg->selector = 0;
1160 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001161 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001162 seg->limit = 0xffff;
1163 seg->base = 0;
1164}
1165
1166static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1167{
1168 seg->selector = 0;
1169 seg->attrib = SVM_SELECTOR_P_MASK | type;
1170 seg->limit = 0xffff;
1171 seg->base = 0;
1172}
1173
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001174static void svm_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1175{
1176 struct vcpu_svm *svm = to_svm(vcpu);
1177 u64 g_tsc_offset = 0;
1178
Joerg Roedel20307532010-11-29 17:51:48 +01001179 if (is_guest_mode(vcpu)) {
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001180 g_tsc_offset = svm->vmcb->control.tsc_offset -
1181 svm->nested.hsave->control.tsc_offset;
1182 svm->nested.hsave->control.tsc_offset = offset;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09001183 } else
1184 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1185 svm->vmcb->control.tsc_offset,
1186 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001187
1188 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001189
1190 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001191}
1192
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001193static void avic_init_vmcb(struct vcpu_svm *svm)
1194{
1195 struct vmcb *vmcb = svm->vmcb;
1196 struct kvm_arch *vm_data = &svm->vcpu.kvm->arch;
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001197 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
1198 phys_addr_t lpa = __sme_set(page_to_phys(vm_data->avic_logical_id_table_page));
1199 phys_addr_t ppa = __sme_set(page_to_phys(vm_data->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001200
1201 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1202 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1203 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1204 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1205 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001206}
1207
Paolo Bonzini56908912015-10-19 11:30:19 +02001208static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001209{
Joerg Roedele6101a92008-02-13 18:58:45 +01001210 struct vmcb_control_area *control = &svm->vmcb->control;
1211 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001212
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001213 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001214
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001215 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1216 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1217 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1218 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1219 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1220 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001221 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1222 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001223
Paolo Bonzini5315c712014-03-03 13:08:29 +01001224 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001225
Joerg Roedel18c918c2010-11-30 18:03:59 +01001226 set_exception_intercept(svm, PF_VECTOR);
1227 set_exception_intercept(svm, UD_VECTOR);
1228 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001229 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001230 set_exception_intercept(svm, DB_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001231
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001232 set_intercept(svm, INTERCEPT_INTR);
1233 set_intercept(svm, INTERCEPT_NMI);
1234 set_intercept(svm, INTERCEPT_SMI);
1235 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001236 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001237 set_intercept(svm, INTERCEPT_CPUID);
1238 set_intercept(svm, INTERCEPT_INVD);
1239 set_intercept(svm, INTERCEPT_HLT);
1240 set_intercept(svm, INTERCEPT_INVLPG);
1241 set_intercept(svm, INTERCEPT_INVLPGA);
1242 set_intercept(svm, INTERCEPT_IOIO_PROT);
1243 set_intercept(svm, INTERCEPT_MSR_PROT);
1244 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1245 set_intercept(svm, INTERCEPT_SHUTDOWN);
1246 set_intercept(svm, INTERCEPT_VMRUN);
1247 set_intercept(svm, INTERCEPT_VMMCALL);
1248 set_intercept(svm, INTERCEPT_VMLOAD);
1249 set_intercept(svm, INTERCEPT_VMSAVE);
1250 set_intercept(svm, INTERCEPT_STGI);
1251 set_intercept(svm, INTERCEPT_CLGI);
1252 set_intercept(svm, INTERCEPT_SKINIT);
1253 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001254 set_intercept(svm, INTERCEPT_XSETBV);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001255
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001256 if (!kvm_mwait_in_guest()) {
1257 set_intercept(svm, INTERCEPT_MONITOR);
1258 set_intercept(svm, INTERCEPT_MWAIT);
1259 }
1260
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001261 control->iopm_base_pa = __sme_set(iopm_base);
1262 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001263 control->int_ctl = V_INTR_MASKING_MASK;
1264
1265 init_seg(&save->es);
1266 init_seg(&save->ss);
1267 init_seg(&save->ds);
1268 init_seg(&save->fs);
1269 init_seg(&save->gs);
1270
1271 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001272 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001273 /* Executable/Readable Code Segment */
1274 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1275 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1276 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001277
1278 save->gdtr.limit = 0xffff;
1279 save->idtr.limit = 0xffff;
1280
1281 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1282 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1283
Paolo Bonzini56908912015-10-19 11:30:19 +02001284 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001285 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001286 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001287 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001288 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001289
Joerg Roedele0231712010-02-24 18:59:10 +01001290 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001291 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001292 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001293 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001294 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001295 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001296
Rusty Russell66aee912007-07-17 23:34:16 +10001297 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001298 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001299
1300 if (npt_enabled) {
1301 /* Setup VMCB for Nested Paging */
1302 control->nested_ctl = 1;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001303 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001304 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001305 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1306 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001307 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001308 save->cr3 = 0;
1309 save->cr4 = 0;
1310 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001311 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001312
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001313 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001314 svm->vcpu.arch.hflags = 0;
1315
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001316 if (boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
Mark Langsdorf565d0992009-10-06 14:25:02 -05001317 control->pause_filter_count = 3000;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001318 set_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001319 }
1320
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001321 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001322 avic_init_vmcb(svm);
1323
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001324 /*
1325 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1326 * in VMCB and clear intercepts to avoid #VMEXIT.
1327 */
1328 if (vls) {
1329 clr_intercept(svm, INTERCEPT_VMLOAD);
1330 clr_intercept(svm, INTERCEPT_VMSAVE);
1331 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1332 }
1333
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001334 if (vgif) {
1335 clr_intercept(svm, INTERCEPT_STGI);
1336 clr_intercept(svm, INTERCEPT_CLGI);
1337 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1338 }
1339
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001340 mark_all_dirty(svm->vmcb);
1341
Joerg Roedel2af91942009-08-07 11:49:28 +02001342 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001343
1344}
1345
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001346static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1347 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001348{
1349 u64 *avic_physical_id_table;
1350 struct kvm_arch *vm_data = &vcpu->kvm->arch;
1351
1352 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1353 return NULL;
1354
1355 avic_physical_id_table = page_address(vm_data->avic_physical_id_table_page);
1356
1357 return &avic_physical_id_table[index];
1358}
1359
1360/**
1361 * Note:
1362 * AVIC hardware walks the nested page table to check permissions,
1363 * but does not use the SPA address specified in the leaf page
1364 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1365 * field of the VMCB. Therefore, we set up the
1366 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1367 */
1368static int avic_init_access_page(struct kvm_vcpu *vcpu)
1369{
1370 struct kvm *kvm = vcpu->kvm;
1371 int ret;
1372
1373 if (kvm->arch.apic_access_page_done)
1374 return 0;
1375
1376 ret = x86_set_memory_region(kvm,
1377 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1378 APIC_DEFAULT_PHYS_BASE,
1379 PAGE_SIZE);
1380 if (ret)
1381 return ret;
1382
1383 kvm->arch.apic_access_page_done = true;
1384 return 0;
1385}
1386
1387static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1388{
1389 int ret;
1390 u64 *entry, new_entry;
1391 int id = vcpu->vcpu_id;
1392 struct vcpu_svm *svm = to_svm(vcpu);
1393
1394 ret = avic_init_access_page(vcpu);
1395 if (ret)
1396 return ret;
1397
1398 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1399 return -EINVAL;
1400
1401 if (!svm->vcpu.arch.apic->regs)
1402 return -EINVAL;
1403
1404 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1405
1406 /* Setting AVIC backing page address in the phy APIC ID table */
1407 entry = avic_get_physical_id_entry(vcpu, id);
1408 if (!entry)
1409 return -EINVAL;
1410
1411 new_entry = READ_ONCE(*entry);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001412 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1413 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1414 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001415 WRITE_ONCE(*entry, new_entry);
1416
1417 svm->avic_physical_id_cache = entry;
1418
1419 return 0;
1420}
1421
1422static void avic_vm_destroy(struct kvm *kvm)
1423{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001424 unsigned long flags;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001425 struct kvm_arch *vm_data = &kvm->arch;
1426
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001427 if (!avic)
1428 return;
1429
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001430 if (vm_data->avic_logical_id_table_page)
1431 __free_page(vm_data->avic_logical_id_table_page);
1432 if (vm_data->avic_physical_id_table_page)
1433 __free_page(vm_data->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001434
1435 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
1436 hash_del(&vm_data->hnode);
1437 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001438}
1439
1440static int avic_vm_init(struct kvm *kvm)
1441{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001442 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001443 int err = -ENOMEM;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001444 struct kvm_arch *vm_data = &kvm->arch;
1445 struct page *p_page;
1446 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001447 struct kvm_arch *ka;
1448 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001449
1450 if (!avic)
1451 return 0;
1452
1453 /* Allocating physical APIC ID table (4KB) */
1454 p_page = alloc_page(GFP_KERNEL);
1455 if (!p_page)
1456 goto free_avic;
1457
1458 vm_data->avic_physical_id_table_page = p_page;
1459 clear_page(page_address(p_page));
1460
1461 /* Allocating logical APIC ID table (4KB) */
1462 l_page = alloc_page(GFP_KERNEL);
1463 if (!l_page)
1464 goto free_avic;
1465
1466 vm_data->avic_logical_id_table_page = l_page;
1467 clear_page(page_address(l_page));
1468
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001469 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001470 again:
1471 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1472 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1473 next_vm_id_wrapped = 1;
1474 goto again;
1475 }
1476 /* Is it still in use? Only possible if wrapped at least once */
1477 if (next_vm_id_wrapped) {
1478 hash_for_each_possible(svm_vm_data_hash, ka, hnode, vm_id) {
1479 struct kvm *k2 = container_of(ka, struct kvm, arch);
1480 struct kvm_arch *vd2 = &k2->arch;
1481 if (vd2->avic_vm_id == vm_id)
1482 goto again;
1483 }
1484 }
1485 vm_data->avic_vm_id = vm_id;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001486 hash_add(svm_vm_data_hash, &vm_data->hnode, vm_data->avic_vm_id);
1487 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1488
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001489 return 0;
1490
1491free_avic:
1492 avic_vm_destroy(kvm);
1493 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001494}
1495
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001496static inline int
1497avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001498{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001499 int ret = 0;
1500 unsigned long flags;
1501 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001502 struct vcpu_svm *svm = to_svm(vcpu);
1503
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001504 if (!kvm_arch_has_assigned_device(vcpu->kvm))
1505 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001506
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001507 /*
1508 * Here, we go through the per-vcpu ir_list to update all existing
1509 * interrupt remapping table entry targeting this vcpu.
1510 */
1511 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001512
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001513 if (list_empty(&svm->ir_list))
1514 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001515
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001516 list_for_each_entry(ir, &svm->ir_list, node) {
1517 ret = amd_iommu_update_ga(cpu, r, ir->data);
1518 if (ret)
1519 break;
1520 }
1521out:
1522 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
1523 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001524}
1525
1526static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1527{
1528 u64 entry;
1529 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05001530 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001531 struct vcpu_svm *svm = to_svm(vcpu);
1532
1533 if (!kvm_vcpu_apicv_active(vcpu))
1534 return;
1535
1536 if (WARN_ON(h_physical_id >= AVIC_MAX_PHYSICAL_ID_COUNT))
1537 return;
1538
1539 entry = READ_ONCE(*(svm->avic_physical_id_cache));
1540 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
1541
1542 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
1543 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
1544
1545 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
1546 if (svm->avic_is_running)
1547 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
1548
1549 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001550 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
1551 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001552}
1553
1554static void avic_vcpu_put(struct kvm_vcpu *vcpu)
1555{
1556 u64 entry;
1557 struct vcpu_svm *svm = to_svm(vcpu);
1558
1559 if (!kvm_vcpu_apicv_active(vcpu))
1560 return;
1561
1562 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001563 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
1564 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
1565
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001566 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
1567 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001568}
1569
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001570/**
1571 * This function is called during VCPU halt/unhalt.
1572 */
1573static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
1574{
1575 struct vcpu_svm *svm = to_svm(vcpu);
1576
1577 svm->avic_is_running = is_run;
1578 if (is_run)
1579 avic_vcpu_load(vcpu, vcpu->cpu);
1580 else
1581 avic_vcpu_put(vcpu);
1582}
1583
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001584static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03001585{
1586 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01001587 u32 dummy;
1588 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001589
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001590 if (!init_event) {
1591 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
1592 MSR_IA32_APICBASE_ENABLE;
1593 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
1594 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
1595 }
Paolo Bonzini56908912015-10-19 11:30:19 +02001596 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02001597
Yu Zhange911eb32017-08-24 20:27:52 +08001598 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Julian Stecklina66f7b722012-12-05 15:26:19 +01001599 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001600
1601 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
1602 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03001603}
1604
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05001605static int avic_init_vcpu(struct vcpu_svm *svm)
1606{
1607 int ret;
1608
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001609 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05001610 return 0;
1611
1612 ret = avic_init_backing_page(&svm->vcpu);
1613 if (ret)
1614 return ret;
1615
1616 INIT_LIST_HEAD(&svm->ir_list);
1617 spin_lock_init(&svm->ir_list_lock);
1618
1619 return ret;
1620}
1621
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001622static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001623{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001624 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001625 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001626 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01001627 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01001628 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001629 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001630
Rusty Russellc16f8622007-07-30 21:12:19 +10001631 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001632 if (!svm) {
1633 err = -ENOMEM;
1634 goto out;
1635 }
1636
1637 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
1638 if (err)
1639 goto free_svm;
1640
Joerg Roedelf65c2292008-02-13 18:58:46 +01001641 err = -ENOMEM;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001642 page = alloc_page(GFP_KERNEL);
1643 if (!page)
1644 goto uninit;
1645
Joerg Roedelf65c2292008-02-13 18:58:46 +01001646 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1647 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001648 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01001649
1650 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1651 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001652 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001653
Alexander Grafb286d5d2008-11-25 20:17:05 +01001654 hsave_page = alloc_page(GFP_KERNEL);
1655 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001656 goto free_page3;
1657
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05001658 err = avic_init_vcpu(svm);
1659 if (err)
1660 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001661
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001662 /* We initialize this flag to true to make sure that the is_running
1663 * bit would be set the first time the vcpu is loaded.
1664 */
1665 svm->avic_is_running = true;
1666
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001667 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01001668
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001669 svm->msrpm = page_address(msrpm_pages);
1670 svm_vcpu_init_msrpm(svm->msrpm);
1671
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001672 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01001673 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01001674
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001675 svm->vmcb = page_address(page);
1676 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001677 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001678 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02001679 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001680
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05001681 svm_init_osvw(&svm->vcpu);
1682
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001683 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08001684
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001685free_page4:
1686 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001687free_page3:
1688 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
1689free_page2:
1690 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
1691free_page1:
1692 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001693uninit:
1694 kvm_vcpu_uninit(&svm->vcpu);
1695free_svm:
Rusty Russella4770342007-08-01 14:46:11 +10001696 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001697out:
1698 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001699}
1700
1701static void svm_free_vcpu(struct kvm_vcpu *vcpu)
1702{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001703 struct vcpu_svm *svm = to_svm(vcpu);
1704
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001705 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01001706 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001707 __free_page(virt_to_page(svm->nested.hsave));
1708 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001709 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10001710 kmem_cache_free(kvm_vcpu_cache, svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001711}
1712
Avi Kivity15ad7142007-07-11 18:17:21 +03001713static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001714{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001715 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03001716 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02001717
Avi Kivity0cc50642007-03-25 12:07:27 +02001718 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03001719 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001720 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02001721 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001722
Avi Kivity82ca2d12010-10-21 12:20:34 +02001723#ifdef CONFIG_X86_64
1724 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
1725#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02001726 savesegment(fs, svm->host.fs);
1727 savesegment(gs, svm->host.gs);
1728 svm->host.ldt = kvm_read_ldt();
1729
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001730 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001731 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001732
Haozhong Zhangad7218832015-10-20 15:39:02 +08001733 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
1734 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
1735 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
1736 __this_cpu_write(current_tsc_ratio, tsc_ratio);
1737 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
1738 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001739 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01001740 /* This assumes that the kernel never uses MSR_TSC_AUX */
1741 if (static_cpu_has(X86_FEATURE_RDTSCP))
1742 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001743
1744 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001745}
1746
1747static void svm_vcpu_put(struct kvm_vcpu *vcpu)
1748{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001749 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001750 int i;
1751
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001752 avic_vcpu_put(vcpu);
1753
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001754 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02001755 kvm_load_ldt(svm->host.ldt);
1756#ifdef CONFIG_X86_64
1757 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07001758 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01001759 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02001760#else
Avi Kivity831ca602011-03-08 16:09:51 +02001761#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02001762 loadsegment(gs, svm->host.gs);
1763#endif
Avi Kivity831ca602011-03-08 16:09:51 +02001764#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001765 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001766 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001767}
1768
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001769static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
1770{
1771 avic_set_running(vcpu, false);
1772}
1773
1774static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
1775{
1776 avic_set_running(vcpu, true);
1777}
1778
Avi Kivity6aa8b732006-12-10 02:21:36 -08001779static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
1780{
Ladi Prosek9b611742017-06-21 09:06:59 +02001781 struct vcpu_svm *svm = to_svm(vcpu);
1782 unsigned long rflags = svm->vmcb->save.rflags;
1783
1784 if (svm->nmi_singlestep) {
1785 /* Hide our flags if they were not set by the guest */
1786 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1787 rflags &= ~X86_EFLAGS_TF;
1788 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1789 rflags &= ~X86_EFLAGS_RF;
1790 }
1791 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001792}
1793
1794static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1795{
Ladi Prosek9b611742017-06-21 09:06:59 +02001796 if (to_svm(vcpu)->nmi_singlestep)
1797 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
1798
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001799 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02001800 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001801 * (caused by either a task switch or an inter-privilege IRET),
1802 * so we do not need to update the CPL here.
1803 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001804 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001805}
1806
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001807static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
1808{
1809 switch (reg) {
1810 case VCPU_EXREG_PDPTR:
1811 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02001812 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001813 break;
1814 default:
1815 BUG();
1816 }
1817}
1818
Alexander Graff0b85052008-11-25 20:17:01 +01001819static void svm_set_vintr(struct vcpu_svm *svm)
1820{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001821 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01001822}
1823
1824static void svm_clear_vintr(struct vcpu_svm *svm)
1825{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001826 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01001827}
1828
Avi Kivity6aa8b732006-12-10 02:21:36 -08001829static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
1830{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001831 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001832
1833 switch (seg) {
1834 case VCPU_SREG_CS: return &save->cs;
1835 case VCPU_SREG_DS: return &save->ds;
1836 case VCPU_SREG_ES: return &save->es;
1837 case VCPU_SREG_FS: return &save->fs;
1838 case VCPU_SREG_GS: return &save->gs;
1839 case VCPU_SREG_SS: return &save->ss;
1840 case VCPU_SREG_TR: return &save->tr;
1841 case VCPU_SREG_LDTR: return &save->ldtr;
1842 }
1843 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00001844 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001845}
1846
1847static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1848{
1849 struct vmcb_seg *s = svm_seg(vcpu, seg);
1850
1851 return s->base;
1852}
1853
1854static void svm_get_segment(struct kvm_vcpu *vcpu,
1855 struct kvm_segment *var, int seg)
1856{
1857 struct vmcb_seg *s = svm_seg(vcpu, seg);
1858
1859 var->base = s->base;
1860 var->limit = s->limit;
1861 var->selector = s->selector;
1862 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
1863 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
1864 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
1865 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
1866 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
1867 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
1868 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05301869
1870 /*
1871 * AMD CPUs circa 2014 track the G bit for all segments except CS.
1872 * However, the SVM spec states that the G bit is not observed by the
1873 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
1874 * So let's synthesize a legal G bit for all segments, this helps
1875 * running KVM nested. It also helps cross-vendor migration, because
1876 * Intel's vmentry has a check on the 'G' bit.
1877 */
1878 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00001879
Joerg Roedele0231712010-02-24 18:59:10 +01001880 /*
1881 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02001882 * for cross vendor migration purposes by "not present"
1883 */
Gioh Kim8eae9572017-05-30 15:24:45 +02001884 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02001885
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001886 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001887 case VCPU_SREG_TR:
1888 /*
1889 * Work around a bug where the busy flag in the tr selector
1890 * isn't exposed
1891 */
Amit Shahc0d09822008-10-27 09:04:18 +00001892 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001893 break;
1894 case VCPU_SREG_DS:
1895 case VCPU_SREG_ES:
1896 case VCPU_SREG_FS:
1897 case VCPU_SREG_GS:
1898 /*
1899 * The accessed bit must always be set in the segment
1900 * descriptor cache, although it can be cleared in the
1901 * descriptor, the cached bit always remains at 1. Since
1902 * Intel has a check on this, set it here to support
1903 * cross-vendor migration.
1904 */
1905 if (!var->unusable)
1906 var->type |= 0x1;
1907 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02001908 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01001909 /*
1910 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02001911 * descriptor is left as 1, although the whole segment has
1912 * been made unusable. Clear it here to pass an Intel VMX
1913 * entry check when cross vendor migrating.
1914 */
1915 if (var->unusable)
1916 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02001917 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02001918 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02001919 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001920 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001921}
1922
Izik Eidus2e4d2652008-03-24 19:38:34 +02001923static int svm_get_cpl(struct kvm_vcpu *vcpu)
1924{
1925 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
1926
1927 return save->cpl;
1928}
1929
Gleb Natapov89a27f42010-02-16 10:51:48 +02001930static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001931{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001932 struct vcpu_svm *svm = to_svm(vcpu);
1933
Gleb Natapov89a27f42010-02-16 10:51:48 +02001934 dt->size = svm->vmcb->save.idtr.limit;
1935 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001936}
1937
Gleb Natapov89a27f42010-02-16 10:51:48 +02001938static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001939{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001940 struct vcpu_svm *svm = to_svm(vcpu);
1941
Gleb Natapov89a27f42010-02-16 10:51:48 +02001942 svm->vmcb->save.idtr.limit = dt->size;
1943 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01001944 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001945}
1946
Gleb Natapov89a27f42010-02-16 10:51:48 +02001947static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001948{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001949 struct vcpu_svm *svm = to_svm(vcpu);
1950
Gleb Natapov89a27f42010-02-16 10:51:48 +02001951 dt->size = svm->vmcb->save.gdtr.limit;
1952 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001953}
1954
Gleb Natapov89a27f42010-02-16 10:51:48 +02001955static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001956{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001957 struct vcpu_svm *svm = to_svm(vcpu);
1958
Gleb Natapov89a27f42010-02-16 10:51:48 +02001959 svm->vmcb->save.gdtr.limit = dt->size;
1960 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01001961 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001962}
1963
Avi Kivitye8467fd2009-12-29 18:43:06 +02001964static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
1965{
1966}
1967
Avi Kivityaff48ba2010-12-05 18:56:11 +02001968static void svm_decache_cr3(struct kvm_vcpu *vcpu)
1969{
1970}
1971
Anthony Liguori25c4c272007-04-27 09:29:21 +03001972static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001973{
1974}
1975
Avi Kivityd2251572010-01-06 10:55:27 +02001976static void update_cr0_intercept(struct vcpu_svm *svm)
1977{
1978 ulong gcr0 = svm->vcpu.arch.cr0;
1979 u64 *hcr0 = &svm->vmcb->save.cr0;
1980
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001981 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
1982 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02001983
Joerg Roedeldcca1a62010-12-03 11:45:54 +01001984 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02001985
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001986 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001987 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
1988 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02001989 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001990 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1991 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02001992 }
1993}
1994
Avi Kivity6aa8b732006-12-10 02:21:36 -08001995static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1996{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001997 struct vcpu_svm *svm = to_svm(vcpu);
1998
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001999#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002000 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002001 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002002 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002003 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002004 }
2005
Mike Dayd77c26f2007-10-08 09:02:08 -04002006 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002007 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002008 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002009 }
2010 }
2011#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002012 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002013
2014 if (!npt_enabled)
2015 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002016
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002017 /*
2018 * re-enable caching here because the QEMU bios
2019 * does not do it - this results in some delay at
2020 * reboot
2021 */
2022 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2023 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002024 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002025 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002026 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002027}
2028
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002029static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002030{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002031 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002032 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2033
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002034 if (cr4 & X86_CR4_VMXE)
2035 return 1;
2036
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002037 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002038 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002039
Joerg Roedelec077262008-04-09 14:15:28 +02002040 vcpu->arch.cr4 = cr4;
2041 if (!npt_enabled)
2042 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002043 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002044 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002045 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002046 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002047}
2048
2049static void svm_set_segment(struct kvm_vcpu *vcpu,
2050 struct kvm_segment *var, int seg)
2051{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002052 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002053 struct vmcb_seg *s = svm_seg(vcpu, seg);
2054
2055 s->base = var->base;
2056 s->limit = var->limit;
2057 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002058 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2059 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2060 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2061 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2062 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2063 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2064 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2065 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002066
2067 /*
2068 * This is always accurate, except if SYSRET returned to a segment
2069 * with SS.DPL != 3. Intel does not have this quirk, and always
2070 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2071 * would entail passing the CPL to userspace and back.
2072 */
2073 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002074 /* This is symmetric with svm_get_segment() */
2075 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002076
Joerg Roedel060d0c92010-12-03 11:45:57 +01002077 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002078}
2079
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002080static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002081{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002082 struct vcpu_svm *svm = to_svm(vcpu);
2083
Joerg Roedel18c918c2010-11-30 18:03:59 +01002084 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002085
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002086 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002087 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002088 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002089 } else
2090 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002091}
2092
Tejun Heo0fe1e002009-10-29 22:34:14 +09002093static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002094{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002095 if (sd->next_asid > sd->max_asid) {
2096 ++sd->asid_generation;
2097 sd->next_asid = 1;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002098 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002099 }
2100
Tejun Heo0fe1e002009-10-29 22:34:14 +09002101 svm->asid_generation = sd->asid_generation;
2102 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002103
2104 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002105}
2106
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002107static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2108{
2109 return to_svm(vcpu)->vmcb->save.dr6;
2110}
2111
2112static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2113{
2114 struct vcpu_svm *svm = to_svm(vcpu);
2115
2116 svm->vmcb->save.dr6 = value;
2117 mark_dirty(svm->vmcb, VMCB_DR);
2118}
2119
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002120static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2121{
2122 struct vcpu_svm *svm = to_svm(vcpu);
2123
2124 get_debugreg(vcpu->arch.db[0], 0);
2125 get_debugreg(vcpu->arch.db[1], 1);
2126 get_debugreg(vcpu->arch.db[2], 2);
2127 get_debugreg(vcpu->arch.db[3], 3);
2128 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2129 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2130
2131 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2132 set_dr_intercepts(svm);
2133}
2134
Gleb Natapov020df072010-04-13 10:05:23 +03002135static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002136{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002137 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002138
Gleb Natapov020df072010-04-13 10:05:23 +03002139 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002140 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002141}
2142
Avi Kivity851ba692009-08-24 11:10:17 +03002143static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002144{
Gleb Natapov631bc482010-10-14 11:22:52 +02002145 u64 fault_address = svm->vmcb->control.exit_info_2;
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002146 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002147
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002148 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Andre Przywaradc25e892010-12-21 11:12:07 +01002149 svm->vmcb->control.insn_bytes,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002150 svm->vmcb->control.insn_len);
2151}
2152
2153static int npf_interception(struct vcpu_svm *svm)
2154{
2155 u64 fault_address = svm->vmcb->control.exit_info_2;
2156 u64 error_code = svm->vmcb->control.exit_info_1;
2157
2158 trace_kvm_page_fault(fault_address, error_code);
2159 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
2160 svm->vmcb->control.insn_bytes,
2161 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002162}
2163
Avi Kivity851ba692009-08-24 11:10:17 +03002164static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002165{
Avi Kivity851ba692009-08-24 11:10:17 +03002166 struct kvm_run *kvm_run = svm->vcpu.run;
2167
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002168 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002169 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002170 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002171 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2172 return 1;
2173 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002174
Jan Kiszka6be7d302009-10-18 13:24:54 +02002175 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002176 disable_nmi_singlestep(svm);
Gleb Natapov44c11432009-05-11 13:35:52 +03002177 }
2178
2179 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002180 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002181 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2182 kvm_run->debug.arch.pc =
2183 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2184 kvm_run->debug.arch.exception = DB_VECTOR;
2185 return 0;
2186 }
2187
2188 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002189}
2190
Avi Kivity851ba692009-08-24 11:10:17 +03002191static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002192{
Avi Kivity851ba692009-08-24 11:10:17 +03002193 struct kvm_run *kvm_run = svm->vcpu.run;
2194
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002195 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2196 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2197 kvm_run->debug.arch.exception = BP_VECTOR;
2198 return 0;
2199}
2200
Avi Kivity851ba692009-08-24 11:10:17 +03002201static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002202{
2203 int er;
2204
Liran Alonac9b3052017-11-06 16:15:10 +02002205 WARN_ON_ONCE(is_guest_mode(&svm->vcpu));
Andre Przywara51d8b662010-12-21 11:12:02 +01002206 er = emulate_instruction(&svm->vcpu, EMULTYPE_TRAP_UD);
Liran Alon61cb57c2017-11-05 16:56:32 +02002207 if (er == EMULATE_USER_EXIT)
2208 return 0;
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002209 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002210 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002211 return 1;
2212}
2213
Eric Northup54a20552015-11-03 18:03:53 +01002214static int ac_interception(struct vcpu_svm *svm)
2215{
2216 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2217 return 1;
2218}
2219
Joerg Roedel67ec6602010-05-17 14:43:35 +02002220static bool is_erratum_383(void)
2221{
2222 int err, i;
2223 u64 value;
2224
2225 if (!erratum_383_found)
2226 return false;
2227
2228 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2229 if (err)
2230 return false;
2231
2232 /* Bit 62 may or may not be set for this mce */
2233 value &= ~(1ULL << 62);
2234
2235 if (value != 0xb600000000010015ULL)
2236 return false;
2237
2238 /* Clear MCi_STATUS registers */
2239 for (i = 0; i < 6; ++i)
2240 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2241
2242 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2243 if (!err) {
2244 u32 low, high;
2245
2246 value &= ~(1ULL << 2);
2247 low = lower_32_bits(value);
2248 high = upper_32_bits(value);
2249
2250 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2251 }
2252
2253 /* Flush tlb to evict multi-match entries */
2254 __flush_tlb_all();
2255
2256 return true;
2257}
2258
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002259static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002260{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002261 if (is_erratum_383()) {
2262 /*
2263 * Erratum 383 triggered. Guest state is corrupt so kill the
2264 * guest.
2265 */
2266 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2267
Avi Kivitya8eeb042010-05-10 12:34:53 +03002268 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002269
2270 return;
2271 }
2272
Joerg Roedel53371b52008-04-09 14:15:30 +02002273 /*
2274 * On an #MC intercept the MCE handler is not called automatically in
2275 * the host. So do it by hand here.
2276 */
2277 asm volatile (
2278 "int $0x12\n");
2279 /* not sure if we ever come back to this point */
2280
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002281 return;
2282}
2283
2284static int mc_interception(struct vcpu_svm *svm)
2285{
Joerg Roedel53371b52008-04-09 14:15:30 +02002286 return 1;
2287}
2288
Avi Kivity851ba692009-08-24 11:10:17 +03002289static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002290{
Avi Kivity851ba692009-08-24 11:10:17 +03002291 struct kvm_run *kvm_run = svm->vcpu.run;
2292
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002293 /*
2294 * VMCB is undefined after a SHUTDOWN intercept
2295 * so reinitialize it.
2296 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002297 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002298 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002299
2300 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2301 return 0;
2302}
2303
Avi Kivity851ba692009-08-24 11:10:17 +03002304static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002305{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002306 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002307 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002308 int size, in, string, ret;
Avi Kivity039576c2007-03-20 12:46:50 +02002309 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002310
Rusty Russelle756fc62007-07-30 20:07:08 +10002311 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002312 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002313 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002314 if (string)
Andre Przywara51d8b662010-12-21 11:12:02 +01002315 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002316
Avi Kivity039576c2007-03-20 12:46:50 +02002317 port = io_info >> 16;
2318 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002319 svm->next_rip = svm->vmcb->control.exit_info_2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002320 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002321
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002322 /*
2323 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
2324 * KVM_EXIT_DEBUG here.
2325 */
2326 if (in)
2327 return kvm_fast_pio_in(vcpu, size, port) && ret;
2328 else
2329 return kvm_fast_pio_out(vcpu, size, port) && ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002330}
2331
Avi Kivity851ba692009-08-24 11:10:17 +03002332static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002333{
2334 return 1;
2335}
2336
Avi Kivity851ba692009-08-24 11:10:17 +03002337static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002338{
2339 ++svm->vcpu.stat.irq_exits;
2340 return 1;
2341}
2342
Avi Kivity851ba692009-08-24 11:10:17 +03002343static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002344{
2345 return 1;
2346}
2347
Avi Kivity851ba692009-08-24 11:10:17 +03002348static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002349{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002350 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002351 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002352}
2353
Avi Kivity851ba692009-08-24 11:10:17 +03002354static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002355{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002356 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002357 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002358}
2359
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002360static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2361{
2362 struct vcpu_svm *svm = to_svm(vcpu);
2363
2364 return svm->nested.nested_cr3;
2365}
2366
Avi Kivitye4e517b2011-07-28 11:36:17 +03002367static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2368{
2369 struct vcpu_svm *svm = to_svm(vcpu);
2370 u64 cr3 = svm->nested.nested_cr3;
2371 u64 pdpte;
2372 int ret;
2373
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002374 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002375 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002376 if (ret)
2377 return 0;
2378 return pdpte;
2379}
2380
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002381static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2382 unsigned long root)
2383{
2384 struct vcpu_svm *svm = to_svm(vcpu);
2385
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002386 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002387 mark_dirty(svm->vmcb, VMCB_NPT);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002388 svm_flush_tlb(vcpu, true);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002389}
2390
Avi Kivity6389ee92010-11-29 16:12:30 +02002391static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2392 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002393{
2394 struct vcpu_svm *svm = to_svm(vcpu);
2395
Paolo Bonzini5e352512014-09-02 13:18:37 +02002396 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2397 /*
2398 * TODO: track the cause of the nested page fault, and
2399 * correctly fill in the high bits of exit_info_1.
2400 */
2401 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2402 svm->vmcb->control.exit_code_hi = 0;
2403 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2404 svm->vmcb->control.exit_info_2 = fault->address;
2405 }
2406
2407 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2408 svm->vmcb->control.exit_info_1 |= fault->error_code;
2409
2410 /*
2411 * The present bit is always zero for page structure faults on real
2412 * hardware.
2413 */
2414 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2415 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002416
2417 nested_svm_vmexit(svm);
2418}
2419
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002420static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002421{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002422 WARN_ON(mmu_is_nested(vcpu));
2423 kvm_init_shadow_mmu(vcpu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002424 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2425 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03002426 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
Joerg Roedel4b161842010-09-10 17:31:03 +02002427 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
Yu Zhang855feb62017-08-24 20:27:55 +08002428 vcpu->arch.mmu.shadow_root_level = get_npt_level(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08002429 reset_shadow_zero_bits_mask(vcpu, &vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002430 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002431}
2432
2433static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2434{
2435 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
2436}
2437
Alexander Grafc0725422008-11-25 20:17:03 +01002438static int nested_svm_check_permissions(struct vcpu_svm *svm)
2439{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002440 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2441 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01002442 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2443 return 1;
2444 }
2445
2446 if (svm->vmcb->save.cpl) {
2447 kvm_inject_gp(&svm->vcpu, 0);
2448 return 1;
2449 }
2450
Dan Carpentere9196ce2017-05-18 10:39:53 +03002451 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01002452}
2453
Alexander Grafcf74a782008-11-25 20:17:08 +01002454static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2455 bool has_error_code, u32 error_code)
2456{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002457 int vmexit;
2458
Joerg Roedel20307532010-11-29 17:51:48 +01002459 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02002460 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01002461
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002462 vmexit = nested_svm_intercept(svm);
2463 if (vmexit != NESTED_EXIT_DONE)
2464 return 0;
2465
Joerg Roedel0295ad72009-08-07 11:49:37 +02002466 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2467 svm->vmcb->control.exit_code_hi = 0;
2468 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002469
2470 /*
2471 * FIXME: we should not write CR2 when L1 intercepts an L2 #PF exception.
2472 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2473 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6 can be
2474 * written only when inject_pending_event runs (DR6 would written here
2475 * too). This should be conditional on a new capability---if the
2476 * capability is disabled, kvm_multiple_exception would write the
2477 * ancillary information to CR2 or DR6, for backwards ABI-compatibility.
2478 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002479 if (svm->vcpu.arch.exception.nested_apf)
2480 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
2481 else
2482 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02002483
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002484 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002485 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01002486}
2487
Joerg Roedel8fe54652010-02-19 16:23:01 +01002488/* This function returns true if it is save to enable the irq window */
2489static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002490{
Joerg Roedel20307532010-11-29 17:51:48 +01002491 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002492 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002493
Joerg Roedel26666952009-08-07 11:49:46 +02002494 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002495 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002496
Joerg Roedel26666952009-08-07 11:49:46 +02002497 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002498 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01002499
Gleb Natapova0a07cd2010-09-20 10:15:32 +02002500 /*
2501 * if vmexit was already requested (by intercepted exception
2502 * for instance) do not overwrite it with "external interrupt"
2503 * vmexit.
2504 */
2505 if (svm->nested.exit_required)
2506 return false;
2507
Joerg Roedel197717d2010-02-24 18:59:19 +01002508 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
2509 svm->vmcb->control.exit_info_1 = 0;
2510 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02002511
Joerg Roedelcd3ff652009-10-09 16:08:26 +02002512 if (svm->nested.intercept & 1ULL) {
2513 /*
2514 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08002515 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02002516 * #vmexit emulation might sleep. Only signal request for
2517 * the #vmexit here.
2518 */
2519 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02002520 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01002521 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01002522 }
2523
Joerg Roedel8fe54652010-02-19 16:23:01 +01002524 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002525}
2526
Joerg Roedel887f5002010-02-24 18:59:12 +01002527/* This function returns true if it is save to enable the nmi window */
2528static inline bool nested_svm_nmi(struct vcpu_svm *svm)
2529{
Joerg Roedel20307532010-11-29 17:51:48 +01002530 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01002531 return true;
2532
2533 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
2534 return true;
2535
2536 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
2537 svm->nested.exit_required = true;
2538
2539 return false;
2540}
2541
Joerg Roedel7597f122010-02-19 16:23:00 +01002542static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002543{
2544 struct page *page;
2545
Joerg Roedel6c3bd3d2010-02-19 16:23:04 +01002546 might_sleep();
2547
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002548 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002549 if (is_error_page(page))
2550 goto error;
2551
Joerg Roedel7597f122010-02-19 16:23:00 +01002552 *_page = page;
2553
2554 return kmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002555
2556error:
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002557 kvm_inject_gp(&svm->vcpu, 0);
2558
2559 return NULL;
2560}
2561
Joerg Roedel7597f122010-02-19 16:23:00 +01002562static void nested_svm_unmap(struct page *page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002563{
Joerg Roedel7597f122010-02-19 16:23:00 +01002564 kunmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002565 kvm_release_page_dirty(page);
2566}
2567
Joerg Roedelce2ac082010-03-01 15:34:39 +01002568static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002569{
Jan Kiszka9bf41832014-06-30 10:54:17 +02002570 unsigned port, size, iopm_len;
2571 u16 val, mask;
2572 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002573 u64 gpa;
2574
2575 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
2576 return NESTED_EXIT_HOST;
2577
2578 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02002579 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
2580 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002581 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02002582 start_bit = port % 8;
2583 iopm_len = (start_bit + size > 8) ? 2 : 1;
2584 mask = (0xf >> (4 - size)) << start_bit;
2585 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002586
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002587 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02002588 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002589
Jan Kiszka9bf41832014-06-30 10:54:17 +02002590 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002591}
2592
Joerg Roedeld2477822010-03-01 15:34:34 +01002593static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002594{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002595 u32 offset, msr, value;
2596 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002597
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02002598 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01002599 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02002600
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002601 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
2602 offset = svm_msrpm_offset(msr);
2603 write = svm->vmcb->control.exit_info_1 & 1;
2604 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02002605
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002606 if (offset == MSR_INVALID)
2607 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002608
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002609 /* Offset is in 32 bit units but need in 8 bit units */
2610 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002611
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002612 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002613 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02002614
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002615 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002616}
2617
Ladi Prosekab2f4d732017-06-21 09:06:58 +02002618/* DB exceptions for our internal use must not cause vmexit */
2619static int nested_svm_intercept_db(struct vcpu_svm *svm)
2620{
2621 unsigned long dr6;
2622
2623 /* if we're not singlestepping, it's not ours */
2624 if (!svm->nmi_singlestep)
2625 return NESTED_EXIT_DONE;
2626
2627 /* if it's not a singlestep exception, it's not ours */
2628 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
2629 return NESTED_EXIT_DONE;
2630 if (!(dr6 & DR6_BS))
2631 return NESTED_EXIT_DONE;
2632
2633 /* if the guest is singlestepping, it should get the vmexit */
2634 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
2635 disable_nmi_singlestep(svm);
2636 return NESTED_EXIT_DONE;
2637 }
2638
2639 /* it's ours, the nested hypervisor must not see this one */
2640 return NESTED_EXIT_HOST;
2641}
2642
Joerg Roedel410e4d52009-08-07 11:49:44 +02002643static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002644{
Alexander Grafcf74a782008-11-25 20:17:08 +01002645 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002646
Joerg Roedel410e4d52009-08-07 11:49:44 +02002647 switch (exit_code) {
2648 case SVM_EXIT_INTR:
2649 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02002650 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02002651 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02002652 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01002653 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02002654 if (npt_enabled)
2655 return NESTED_EXIT_HOST;
2656 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02002657 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02002658 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002659 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02002660 return NESTED_EXIT_HOST;
2661 break;
2662 default:
2663 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01002664 }
2665
Joerg Roedel410e4d52009-08-07 11:49:44 +02002666 return NESTED_EXIT_CONTINUE;
2667}
2668
2669/*
2670 * If this function returns true, this #vmexit was already handled
2671 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002672static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02002673{
2674 u32 exit_code = svm->vmcb->control.exit_code;
2675 int vmexit = NESTED_EXIT_HOST;
2676
Alexander Grafcf74a782008-11-25 20:17:08 +01002677 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02002678 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02002679 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02002680 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002681 case SVM_EXIT_IOIO:
2682 vmexit = nested_svm_intercept_ioio(svm);
2683 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002684 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
2685 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
2686 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02002687 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01002688 break;
2689 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01002690 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
2691 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
2692 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02002693 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01002694 break;
2695 }
2696 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
2697 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02002698 if (svm->nested.intercept_exceptions & excp_bits) {
2699 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
2700 vmexit = nested_svm_intercept_db(svm);
2701 else
2702 vmexit = NESTED_EXIT_DONE;
2703 }
Gleb Natapov631bc482010-10-14 11:22:52 +02002704 /* async page fault always cause vmexit */
2705 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002706 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02002707 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01002708 break;
2709 }
Joerg Roedel228070b2010-04-22 12:33:10 +02002710 case SVM_EXIT_ERR: {
2711 vmexit = NESTED_EXIT_DONE;
2712 break;
2713 }
Alexander Grafcf74a782008-11-25 20:17:08 +01002714 default: {
2715 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02002716 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02002717 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01002718 }
2719 }
2720
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002721 return vmexit;
2722}
2723
2724static int nested_svm_exit_handled(struct vcpu_svm *svm)
2725{
2726 int vmexit;
2727
2728 vmexit = nested_svm_intercept(svm);
2729
2730 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02002731 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02002732
2733 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01002734}
2735
Joerg Roedel0460a972009-08-07 11:49:31 +02002736static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
2737{
2738 struct vmcb_control_area *dst = &dst_vmcb->control;
2739 struct vmcb_control_area *from = &from_vmcb->control;
2740
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002741 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01002742 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02002743 dst->intercept_exceptions = from->intercept_exceptions;
2744 dst->intercept = from->intercept;
2745 dst->iopm_base_pa = from->iopm_base_pa;
2746 dst->msrpm_base_pa = from->msrpm_base_pa;
2747 dst->tsc_offset = from->tsc_offset;
2748 dst->asid = from->asid;
2749 dst->tlb_ctl = from->tlb_ctl;
2750 dst->int_ctl = from->int_ctl;
2751 dst->int_vector = from->int_vector;
2752 dst->int_state = from->int_state;
2753 dst->exit_code = from->exit_code;
2754 dst->exit_code_hi = from->exit_code_hi;
2755 dst->exit_info_1 = from->exit_info_1;
2756 dst->exit_info_2 = from->exit_info_2;
2757 dst->exit_int_info = from->exit_int_info;
2758 dst->exit_int_info_err = from->exit_int_info_err;
2759 dst->nested_ctl = from->nested_ctl;
2760 dst->event_inj = from->event_inj;
2761 dst->event_inj_err = from->event_inj_err;
2762 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05002763 dst->virt_ext = from->virt_ext;
Joerg Roedel0460a972009-08-07 11:49:31 +02002764}
2765
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002766static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002767{
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002768 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002769 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02002770 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01002771 struct page *page;
Alexander Grafcf74a782008-11-25 20:17:08 +01002772
Joerg Roedel17897f32009-10-09 16:08:29 +02002773 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
2774 vmcb->control.exit_info_1,
2775 vmcb->control.exit_info_2,
2776 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01002777 vmcb->control.exit_int_info_err,
2778 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02002779
Joerg Roedel7597f122010-02-19 16:23:00 +01002780 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002781 if (!nested_vmcb)
2782 return 1;
2783
Joerg Roedel20307532010-11-29 17:51:48 +01002784 /* Exit Guest-Mode */
2785 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01002786 svm->nested.vmcb = 0;
2787
Alexander Grafcf74a782008-11-25 20:17:08 +01002788 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02002789 disable_gif(svm);
2790
2791 nested_vmcb->save.es = vmcb->save.es;
2792 nested_vmcb->save.cs = vmcb->save.cs;
2793 nested_vmcb->save.ss = vmcb->save.ss;
2794 nested_vmcb->save.ds = vmcb->save.ds;
2795 nested_vmcb->save.gdtr = vmcb->save.gdtr;
2796 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02002797 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01002798 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002799 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02002800 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01002801 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03002802 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02002803 nested_vmcb->save.rip = vmcb->save.rip;
2804 nested_vmcb->save.rsp = vmcb->save.rsp;
2805 nested_vmcb->save.rax = vmcb->save.rax;
2806 nested_vmcb->save.dr7 = vmcb->save.dr7;
2807 nested_vmcb->save.dr6 = vmcb->save.dr6;
2808 nested_vmcb->save.cpl = vmcb->save.cpl;
2809
2810 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
2811 nested_vmcb->control.int_vector = vmcb->control.int_vector;
2812 nested_vmcb->control.int_state = vmcb->control.int_state;
2813 nested_vmcb->control.exit_code = vmcb->control.exit_code;
2814 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
2815 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
2816 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
2817 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
2818 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02002819
2820 if (svm->nrips_enabled)
2821 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02002822
2823 /*
2824 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
2825 * to make sure that we do not lose injected events. So check event_inj
2826 * here and copy it to exit_int_info if it is valid.
2827 * Exit_int_info and event_inj can't be both valid because the case
2828 * below only happens on a VMRUN instruction intercept which has
2829 * no valid exit_int_info set.
2830 */
2831 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
2832 struct vmcb_control_area *nc = &nested_vmcb->control;
2833
2834 nc->exit_int_info = vmcb->control.event_inj;
2835 nc->exit_int_info_err = vmcb->control.event_inj_err;
2836 }
2837
Joerg Roedel33740e42009-08-07 11:49:29 +02002838 nested_vmcb->control.tlb_ctl = 0;
2839 nested_vmcb->control.event_inj = 0;
2840 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01002841
2842 /* We always set V_INTR_MASKING and remember the old value in hflags */
2843 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
2844 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
2845
Alexander Grafcf74a782008-11-25 20:17:08 +01002846 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02002847 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01002848
Alexander Graf219b65d2009-06-15 15:21:25 +02002849 kvm_clear_exception_queue(&svm->vcpu);
2850 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01002851
Joerg Roedel4b161842010-09-10 17:31:03 +02002852 svm->nested.nested_cr3 = 0;
2853
Alexander Grafcf74a782008-11-25 20:17:08 +01002854 /* Restore selected save entries */
2855 svm->vmcb->save.es = hsave->save.es;
2856 svm->vmcb->save.cs = hsave->save.cs;
2857 svm->vmcb->save.ss = hsave->save.ss;
2858 svm->vmcb->save.ds = hsave->save.ds;
2859 svm->vmcb->save.gdtr = hsave->save.gdtr;
2860 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03002861 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01002862 svm_set_efer(&svm->vcpu, hsave->save.efer);
2863 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
2864 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
2865 if (npt_enabled) {
2866 svm->vmcb->save.cr3 = hsave->save.cr3;
2867 svm->vcpu.arch.cr3 = hsave->save.cr3;
2868 } else {
Avi Kivity23902182010-06-10 17:02:16 +03002869 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01002870 }
2871 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
2872 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
2873 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
2874 svm->vmcb->save.dr7 = 0;
2875 svm->vmcb->save.cpl = 0;
2876 svm->vmcb->control.exit_int_info = 0;
2877
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002878 mark_all_dirty(svm->vmcb);
2879
Joerg Roedel7597f122010-02-19 16:23:00 +01002880 nested_svm_unmap(page);
Alexander Grafcf74a782008-11-25 20:17:08 +01002881
Joerg Roedel4b161842010-09-10 17:31:03 +02002882 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01002883 kvm_mmu_reset_context(&svm->vcpu);
2884 kvm_mmu_load(&svm->vcpu);
2885
2886 return 0;
2887}
Alexander Graf3d6368e2008-11-25 20:17:07 +01002888
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002889static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002890{
Joerg Roedel323c3d82010-03-01 15:34:37 +01002891 /*
2892 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08002893 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01002894 * the kvm msr permission bitmap may contain zero bits
2895 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01002896 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002897
Joerg Roedel323c3d82010-03-01 15:34:37 +01002898 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
2899 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002900
Joerg Roedel323c3d82010-03-01 15:34:37 +01002901 for (i = 0; i < MSRPM_OFFSETS; i++) {
2902 u32 value, p;
2903 u64 offset;
2904
2905 if (msrpm_offsets[i] == 0xffffffff)
2906 break;
2907
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002908 p = msrpm_offsets[i];
2909 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002910
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002911 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01002912 return false;
2913
2914 svm->nested.msrpm[p] = svm->msrpm[p] | value;
2915 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002916
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002917 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01002918
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002919 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002920}
2921
Joerg Roedel52c65a302010-08-02 16:46:44 +02002922static bool nested_vmcb_checks(struct vmcb *vmcb)
2923{
2924 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
2925 return false;
2926
Joerg Roedeldbe77582010-08-02 16:46:45 +02002927 if (vmcb->control.asid == 0)
2928 return false;
2929
Joerg Roedel4b161842010-09-10 17:31:03 +02002930 if (vmcb->control.nested_ctl && !npt_enabled)
2931 return false;
2932
Joerg Roedel52c65a302010-08-02 16:46:44 +02002933 return true;
2934}
2935
Ladi Prosekc2634062017-10-11 16:54:44 +02002936static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
2937 struct vmcb *nested_vmcb, struct page *page)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002938{
Avi Kivityf6e78472010-08-02 15:30:20 +03002939 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002940 svm->vcpu.arch.hflags |= HF_HIF_MASK;
2941 else
2942 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
2943
Joerg Roedel4b161842010-09-10 17:31:03 +02002944 if (nested_vmcb->control.nested_ctl) {
2945 kvm_mmu_unload(&svm->vcpu);
2946 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
2947 nested_svm_init_mmu_context(&svm->vcpu);
2948 }
2949
Alexander Graf3d6368e2008-11-25 20:17:07 +01002950 /* Load the nested guest state */
2951 svm->vmcb->save.es = nested_vmcb->save.es;
2952 svm->vmcb->save.cs = nested_vmcb->save.cs;
2953 svm->vmcb->save.ss = nested_vmcb->save.ss;
2954 svm->vmcb->save.ds = nested_vmcb->save.ds;
2955 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
2956 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03002957 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002958 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
2959 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
2960 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
2961 if (npt_enabled) {
2962 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
2963 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01002964 } else
Avi Kivity23902182010-06-10 17:02:16 +03002965 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01002966
2967 /* Guest paging mode is active - reset mmu */
2968 kvm_mmu_reset_context(&svm->vcpu);
2969
Joerg Roedeldefbba52009-08-07 11:49:30 +02002970 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002971 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
2972 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
2973 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01002974
Alexander Graf3d6368e2008-11-25 20:17:07 +01002975 /* In case we don't even reach vcpu_run, the fields are not updated */
2976 svm->vmcb->save.rax = nested_vmcb->save.rax;
2977 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
2978 svm->vmcb->save.rip = nested_vmcb->save.rip;
2979 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
2980 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
2981 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
2982
Joerg Roedelf7138532010-03-01 15:34:40 +01002983 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002984 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002985
Joerg Roedelaad42c62009-08-07 11:49:34 +02002986 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002987 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01002988 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02002989 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
2990 svm->nested.intercept = nested_vmcb->control.intercept;
2991
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002992 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002993 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002994 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
2995 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
2996 else
2997 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
2998
Joerg Roedel88ab24a2010-02-19 16:23:06 +01002999 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3000 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003001 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3002 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003003 }
3004
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003005 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003006 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003007
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003008 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003009 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3010 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
3011 svm->vmcb->control.tsc_offset += nested_vmcb->control.tsc_offset;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003012 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3013 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3014
Joerg Roedel7597f122010-02-19 16:23:00 +01003015 nested_svm_unmap(page);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003016
Joerg Roedel20307532010-11-29 17:51:48 +01003017 /* Enter Guest-Mode */
3018 enter_guest_mode(&svm->vcpu);
3019
Joerg Roedel384c6362010-11-30 18:03:56 +01003020 /*
3021 * Merge guest and host intercepts - must be called with vcpu in
3022 * guest-mode to take affect here
3023 */
3024 recalc_intercepts(svm);
3025
Joerg Roedel06fc77722010-02-19 16:23:07 +01003026 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003027
Joerg Roedel2af91942009-08-07 11:49:28 +02003028 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003029
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003030 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003031}
3032
3033static bool nested_svm_vmrun(struct vcpu_svm *svm)
3034{
3035 struct vmcb *nested_vmcb;
3036 struct vmcb *hsave = svm->nested.hsave;
3037 struct vmcb *vmcb = svm->vmcb;
3038 struct page *page;
3039 u64 vmcb_gpa;
3040
3041 vmcb_gpa = svm->vmcb->save.rax;
3042
3043 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
3044 if (!nested_vmcb)
3045 return false;
3046
3047 if (!nested_vmcb_checks(nested_vmcb)) {
3048 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3049 nested_vmcb->control.exit_code_hi = 0;
3050 nested_vmcb->control.exit_info_1 = 0;
3051 nested_vmcb->control.exit_info_2 = 0;
3052
3053 nested_svm_unmap(page);
3054
3055 return false;
3056 }
3057
3058 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3059 nested_vmcb->save.rip,
3060 nested_vmcb->control.int_ctl,
3061 nested_vmcb->control.event_inj,
3062 nested_vmcb->control.nested_ctl);
3063
3064 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3065 nested_vmcb->control.intercept_cr >> 16,
3066 nested_vmcb->control.intercept_exceptions,
3067 nested_vmcb->control.intercept);
3068
3069 /* Clear internal status */
3070 kvm_clear_exception_queue(&svm->vcpu);
3071 kvm_clear_interrupt_queue(&svm->vcpu);
3072
3073 /*
3074 * Save the old vmcb, so we don't need to pick what we save, but can
3075 * restore everything when a VMEXIT occurs
3076 */
3077 hsave->save.es = vmcb->save.es;
3078 hsave->save.cs = vmcb->save.cs;
3079 hsave->save.ss = vmcb->save.ss;
3080 hsave->save.ds = vmcb->save.ds;
3081 hsave->save.gdtr = vmcb->save.gdtr;
3082 hsave->save.idtr = vmcb->save.idtr;
3083 hsave->save.efer = svm->vcpu.arch.efer;
3084 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3085 hsave->save.cr4 = svm->vcpu.arch.cr4;
3086 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3087 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3088 hsave->save.rsp = vmcb->save.rsp;
3089 hsave->save.rax = vmcb->save.rax;
3090 if (npt_enabled)
3091 hsave->save.cr3 = vmcb->save.cr3;
3092 else
3093 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3094
3095 copy_vmcb_control_area(hsave, vmcb);
3096
3097 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, page);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003098
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003099 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003100}
3101
Joerg Roedel9966bf62009-08-07 11:49:40 +02003102static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003103{
3104 to_vmcb->save.fs = from_vmcb->save.fs;
3105 to_vmcb->save.gs = from_vmcb->save.gs;
3106 to_vmcb->save.tr = from_vmcb->save.tr;
3107 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3108 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3109 to_vmcb->save.star = from_vmcb->save.star;
3110 to_vmcb->save.lstar = from_vmcb->save.lstar;
3111 to_vmcb->save.cstar = from_vmcb->save.cstar;
3112 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3113 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3114 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3115 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003116}
3117
Avi Kivity851ba692009-08-24 11:10:17 +03003118static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003119{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003120 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003121 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003122 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003123
Alexander Graf55426752008-11-25 20:17:06 +01003124 if (nested_svm_check_permissions(svm))
3125 return 1;
3126
Joerg Roedel7597f122010-02-19 16:23:00 +01003127 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003128 if (!nested_vmcb)
3129 return 1;
3130
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003131 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003132 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003133
Joerg Roedel9966bf62009-08-07 11:49:40 +02003134 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003135 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003136
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003137 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003138}
3139
Avi Kivity851ba692009-08-24 11:10:17 +03003140static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003141{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003142 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003143 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003144 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003145
Alexander Graf55426752008-11-25 20:17:06 +01003146 if (nested_svm_check_permissions(svm))
3147 return 1;
3148
Joerg Roedel7597f122010-02-19 16:23:00 +01003149 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003150 if (!nested_vmcb)
3151 return 1;
3152
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003153 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003154 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003155
Joerg Roedel9966bf62009-08-07 11:49:40 +02003156 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003157 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003158
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003159 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003160}
3161
Avi Kivity851ba692009-08-24 11:10:17 +03003162static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003163{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003164 if (nested_svm_check_permissions(svm))
3165 return 1;
3166
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003167 /* Save rip after vmrun instruction */
3168 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003169
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003170 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003171 return 1;
3172
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003173 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003174 goto failed;
3175
3176 return 1;
3177
3178failed:
3179
3180 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3181 svm->vmcb->control.exit_code_hi = 0;
3182 svm->vmcb->control.exit_info_1 = 0;
3183 svm->vmcb->control.exit_info_2 = 0;
3184
3185 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003186
3187 return 1;
3188}
3189
Avi Kivity851ba692009-08-24 11:10:17 +03003190static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003191{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003192 int ret;
3193
Alexander Graf1371d902008-11-25 20:17:04 +01003194 if (nested_svm_check_permissions(svm))
3195 return 1;
3196
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003197 /*
3198 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003199 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003200 */
3201 if (vgif_enabled(svm))
3202 clr_intercept(svm, INTERCEPT_STGI);
3203
Alexander Graf1371d902008-11-25 20:17:04 +01003204 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003205 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003206 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003207
Joerg Roedel2af91942009-08-07 11:49:28 +02003208 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003209
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003210 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003211}
3212
Avi Kivity851ba692009-08-24 11:10:17 +03003213static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003214{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003215 int ret;
3216
Alexander Graf1371d902008-11-25 20:17:04 +01003217 if (nested_svm_check_permissions(svm))
3218 return 1;
3219
3220 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003221 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003222
Joerg Roedel2af91942009-08-07 11:49:28 +02003223 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003224
3225 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003226 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3227 svm_clear_vintr(svm);
3228 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3229 mark_dirty(svm->vmcb, VMCB_INTR);
3230 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003231
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003232 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003233}
3234
Avi Kivity851ba692009-08-24 11:10:17 +03003235static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003236{
3237 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003238
David Kaplan668f1982015-02-20 16:02:10 -06003239 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3240 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003241
Alexander Grafff092382009-06-15 15:21:24 +02003242 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
David Kaplan668f1982015-02-20 16:02:10 -06003243 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Alexander Grafff092382009-06-15 15:21:24 +02003244
3245 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003246 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003247}
3248
Joerg Roedel532a46b2009-10-09 16:08:32 +02003249static int skinit_interception(struct vcpu_svm *svm)
3250{
David Kaplan668f1982015-02-20 16:02:10 -06003251 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003252
3253 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3254 return 1;
3255}
3256
David Kaplandab429a2015-03-02 13:43:37 -06003257static int wbinvd_interception(struct vcpu_svm *svm)
3258{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003259 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003260}
3261
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003262static int xsetbv_interception(struct vcpu_svm *svm)
3263{
3264 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3265 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3266
3267 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3268 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003269 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003270 }
3271
3272 return 1;
3273}
3274
Avi Kivity851ba692009-08-24 11:10:17 +03003275static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003276{
Izik Eidus37817f22008-03-24 23:14:53 +02003277 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003278 int reason;
3279 int int_type = svm->vmcb->control.exit_int_info &
3280 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003281 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003282 uint32_t type =
3283 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3284 uint32_t idt_v =
3285 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003286 bool has_error_code = false;
3287 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003288
3289 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003290
Izik Eidus37817f22008-03-24 23:14:53 +02003291 if (svm->vmcb->control.exit_info_2 &
3292 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003293 reason = TASK_SWITCH_IRET;
3294 else if (svm->vmcb->control.exit_info_2 &
3295 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3296 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003297 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003298 reason = TASK_SWITCH_GATE;
3299 else
3300 reason = TASK_SWITCH_CALL;
3301
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003302 if (reason == TASK_SWITCH_GATE) {
3303 switch (type) {
3304 case SVM_EXITINTINFO_TYPE_NMI:
3305 svm->vcpu.arch.nmi_injected = false;
3306 break;
3307 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003308 if (svm->vmcb->control.exit_info_2 &
3309 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3310 has_error_code = true;
3311 error_code =
3312 (u32)svm->vmcb->control.exit_info_2;
3313 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003314 kvm_clear_exception_queue(&svm->vcpu);
3315 break;
3316 case SVM_EXITINTINFO_TYPE_INTR:
3317 kvm_clear_interrupt_queue(&svm->vcpu);
3318 break;
3319 default:
3320 break;
3321 }
3322 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003323
Gleb Natapov8317c292009-04-12 13:37:02 +03003324 if (reason != TASK_SWITCH_GATE ||
3325 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3326 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003327 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3328 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003329
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003330 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3331 int_vec = -1;
3332
3333 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003334 has_error_code, error_code) == EMULATE_FAIL) {
3335 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3336 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3337 svm->vcpu.run->internal.ndata = 0;
3338 return 0;
3339 }
3340 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003341}
3342
Avi Kivity851ba692009-08-24 11:10:17 +03003343static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003344{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003345 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003346 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003347}
3348
Avi Kivity851ba692009-08-24 11:10:17 +03003349static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003350{
3351 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003352 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003353 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003354 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003355 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003356 return 1;
3357}
3358
Avi Kivity851ba692009-08-24 11:10:17 +03003359static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003360{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003361 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3362 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
3363
3364 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003365 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003366}
3367
Avi Kivity851ba692009-08-24 11:10:17 +03003368static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003369{
Andre Przywara51d8b662010-12-21 11:12:02 +01003370 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003371}
3372
Avi Kivity332b56e2011-11-10 14:57:24 +02003373static int rdpmc_interception(struct vcpu_svm *svm)
3374{
3375 int err;
3376
3377 if (!static_cpu_has(X86_FEATURE_NRIPS))
3378 return emulate_on_interception(svm);
3379
3380 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003381 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003382}
3383
Xiubo Li52eb5a62015-03-13 17:39:45 +08003384static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3385 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003386{
3387 unsigned long cr0 = svm->vcpu.arch.cr0;
3388 bool ret = false;
3389 u64 intercept;
3390
3391 intercept = svm->nested.intercept;
3392
3393 if (!is_guest_mode(&svm->vcpu) ||
3394 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3395 return false;
3396
3397 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3398 val &= ~SVM_CR0_SELECTIVE_MASK;
3399
3400 if (cr0 ^ val) {
3401 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3402 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3403 }
3404
3405 return ret;
3406}
3407
Andre Przywara7ff76d52010-12-21 11:12:04 +01003408#define CR_VALID (1ULL << 63)
3409
3410static int cr_interception(struct vcpu_svm *svm)
3411{
3412 int reg, cr;
3413 unsigned long val;
3414 int err;
3415
3416 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3417 return emulate_on_interception(svm);
3418
3419 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3420 return emulate_on_interception(svm);
3421
3422 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06003423 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3424 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3425 else
3426 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01003427
3428 err = 0;
3429 if (cr >= 16) { /* mov to cr */
3430 cr -= 16;
3431 val = kvm_register_read(&svm->vcpu, reg);
3432 switch (cr) {
3433 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02003434 if (!check_selective_cr0_intercepted(svm, val))
3435 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02003436 else
3437 return 1;
3438
Andre Przywara7ff76d52010-12-21 11:12:04 +01003439 break;
3440 case 3:
3441 err = kvm_set_cr3(&svm->vcpu, val);
3442 break;
3443 case 4:
3444 err = kvm_set_cr4(&svm->vcpu, val);
3445 break;
3446 case 8:
3447 err = kvm_set_cr8(&svm->vcpu, val);
3448 break;
3449 default:
3450 WARN(1, "unhandled write to CR%d", cr);
3451 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3452 return 1;
3453 }
3454 } else { /* mov from cr */
3455 switch (cr) {
3456 case 0:
3457 val = kvm_read_cr0(&svm->vcpu);
3458 break;
3459 case 2:
3460 val = svm->vcpu.arch.cr2;
3461 break;
3462 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02003463 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003464 break;
3465 case 4:
3466 val = kvm_read_cr4(&svm->vcpu);
3467 break;
3468 case 8:
3469 val = kvm_get_cr8(&svm->vcpu);
3470 break;
3471 default:
3472 WARN(1, "unhandled read from CR%d", cr);
3473 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3474 return 1;
3475 }
3476 kvm_register_write(&svm->vcpu, reg, val);
3477 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08003478 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003479}
3480
Andre Przywaracae37972010-12-21 11:12:05 +01003481static int dr_interception(struct vcpu_svm *svm)
3482{
3483 int reg, dr;
3484 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01003485
Paolo Bonzinifacb0132014-02-21 10:32:27 +01003486 if (svm->vcpu.guest_debug == 0) {
3487 /*
3488 * No more DR vmexits; force a reload of the debug registers
3489 * and reenter on this instruction. The next vmexit will
3490 * retrieve the full state of the debug registers.
3491 */
3492 clr_dr_intercepts(svm);
3493 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
3494 return 1;
3495 }
3496
Andre Przywaracae37972010-12-21 11:12:05 +01003497 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
3498 return emulate_on_interception(svm);
3499
3500 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
3501 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
3502
3503 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03003504 if (!kvm_require_dr(&svm->vcpu, dr - 16))
3505 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01003506 val = kvm_register_read(&svm->vcpu, reg);
3507 kvm_set_dr(&svm->vcpu, dr - 16, val);
3508 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03003509 if (!kvm_require_dr(&svm->vcpu, dr))
3510 return 1;
3511 kvm_get_dr(&svm->vcpu, dr, &val);
3512 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01003513 }
3514
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003515 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01003516}
3517
Avi Kivity851ba692009-08-24 11:10:17 +03003518static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01003519{
Avi Kivity851ba692009-08-24 11:10:17 +03003520 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01003521 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03003522
Gleb Natapov0a5fff192009-04-21 17:45:06 +03003523 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
3524 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01003525 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02003526 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01003527 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03003528 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01003529 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01003530 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
3531 return 0;
3532}
3533
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003534static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003535{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003536 struct vcpu_svm *svm = to_svm(vcpu);
3537
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003538 switch (msr_info->index) {
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303539 case MSR_IA32_TSC: {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003540 msr_info->data = svm->vmcb->control.tsc_offset +
Haozhong Zhang35181e82015-10-20 15:39:03 +08003541 kvm_scale_tsc(vcpu, rdtsc());
Joerg Roedelfbc0db72011-03-25 09:44:46 +01003542
Avi Kivity6aa8b732006-12-10 02:21:36 -08003543 break;
3544 }
Brian Gerst8c065852010-07-17 09:03:26 -04003545 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003546 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003547 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08003548#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003549 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003550 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003551 break;
3552 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003553 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003554 break;
3555 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003556 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003557 break;
3558 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003559 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003560 break;
3561#endif
3562 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003563 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003564 break;
3565 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003566 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003567 break;
3568 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003569 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003570 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01003571 case MSR_TSC_AUX:
3572 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
3573 return 1;
3574 msr_info->data = svm->tsc_aux;
3575 break;
Joerg Roedele0231712010-02-24 18:59:10 +01003576 /*
3577 * Nobody will change the following 5 values in the VMCB so we can
3578 * safely return them on rdmsr. They will always be 0 until LBRV is
3579 * implemented.
3580 */
Joerg Roedela2938c82008-02-13 16:30:28 +01003581 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003582 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01003583 break;
3584 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003585 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01003586 break;
3587 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003588 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01003589 break;
3590 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003591 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01003592 break;
3593 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003594 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01003595 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01003596 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003597 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01003598 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01003599 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003600 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01003601 break;
Alexander Grafc8a73f12009-01-05 16:02:47 +01003602 case MSR_IA32_UCODE_REV:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003603 msr_info->data = 0x01000065;
Alexander Grafc8a73f12009-01-05 16:02:47 +01003604 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01003605 case MSR_F15H_IC_CFG: {
3606
3607 int family, model;
3608
3609 family = guest_cpuid_family(vcpu);
3610 model = guest_cpuid_model(vcpu);
3611
3612 if (family < 0 || model < 0)
3613 return kvm_get_msr_common(vcpu, msr_info);
3614
3615 msr_info->data = 0;
3616
3617 if (family == 0x15 &&
3618 (model >= 0x2 && model < 0x20))
3619 msr_info->data = 0x1E;
3620 }
3621 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003622 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003623 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003624 }
3625 return 0;
3626}
3627
Avi Kivity851ba692009-08-24 11:10:17 +03003628static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003629{
David Kaplan668f1982015-02-20 16:02:10 -06003630 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003631 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003632
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003633 msr_info.index = ecx;
3634 msr_info.host_initiated = false;
3635 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02003636 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003637 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003638 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02003639 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003640 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02003641
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003642 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
3643 msr_info.data & 0xffffffff);
3644 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
3645 msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003646 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003647 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003648 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003649}
3650
Joerg Roedel4a810182010-02-24 18:59:15 +01003651static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
3652{
3653 struct vcpu_svm *svm = to_svm(vcpu);
3654 int svm_dis, chg_mask;
3655
3656 if (data & ~SVM_VM_CR_VALID_MASK)
3657 return 1;
3658
3659 chg_mask = SVM_VM_CR_VALID_MASK;
3660
3661 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
3662 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
3663
3664 svm->nested.vm_cr_msr &= ~chg_mask;
3665 svm->nested.vm_cr_msr |= (data & chg_mask);
3666
3667 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
3668
3669 /* check for svm_disable while efer.svme is set */
3670 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
3671 return 1;
3672
3673 return 0;
3674}
3675
Will Auld8fe8ab42012-11-29 12:42:12 -08003676static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003677{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003678 struct vcpu_svm *svm = to_svm(vcpu);
3679
Will Auld8fe8ab42012-11-29 12:42:12 -08003680 u32 ecx = msr->index;
3681 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003682 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02003683 case MSR_IA32_CR_PAT:
3684 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3685 return 1;
3686 vcpu->arch.pat = data;
3687 svm->vmcb->save.g_pat = data;
3688 mark_dirty(svm->vmcb, VMCB_NPT);
3689 break;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10003690 case MSR_IA32_TSC:
Will Auld8fe8ab42012-11-29 12:42:12 -08003691 kvm_write_tsc(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003692 break;
Brian Gerst8c065852010-07-17 09:03:26 -04003693 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003694 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003695 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08003696#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003697 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003698 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003699 break;
3700 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003701 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003702 break;
3703 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003704 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003705 break;
3706 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003707 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003708 break;
3709#endif
3710 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003711 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003712 break;
3713 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02003714 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003715 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003716 break;
3717 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02003718 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003719 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003720 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01003721 case MSR_TSC_AUX:
3722 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
3723 return 1;
3724
3725 /*
3726 * This is rare, so we update the MSR here instead of using
3727 * direct_access_msrs. Doing that would require a rdmsr in
3728 * svm_vcpu_put.
3729 */
3730 svm->tsc_aux = data;
3731 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
3732 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01003733 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02003734 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003735 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
3736 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01003737 break;
3738 }
3739 if (data & DEBUGCTL_RESERVED_BITS)
3740 return 1;
3741
3742 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01003743 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01003744 if (data & (1ULL<<0))
3745 svm_enable_lbrv(svm);
3746 else
3747 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01003748 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01003749 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003750 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01003751 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02003752 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01003753 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02003754 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03003755 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02003756 break;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003757 case MSR_IA32_APICBASE:
3758 if (kvm_vcpu_apicv_active(vcpu))
3759 avic_update_vapic_bar(to_svm(vcpu), data);
3760 /* Follow through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003761 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08003762 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003763 }
3764 return 0;
3765}
3766
Avi Kivity851ba692009-08-24 11:10:17 +03003767static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003768{
Will Auld8fe8ab42012-11-29 12:42:12 -08003769 struct msr_data msr;
David Kaplan668f1982015-02-20 16:02:10 -06003770 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3771 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02003772
Will Auld8fe8ab42012-11-29 12:42:12 -08003773 msr.data = data;
3774 msr.index = ecx;
3775 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02003776
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003777 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03003778 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02003779 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003780 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003781 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02003782 } else {
3783 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003784 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02003785 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003786}
3787
Avi Kivity851ba692009-08-24 11:10:17 +03003788static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003789{
Rusty Russelle756fc62007-07-30 20:07:08 +10003790 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03003791 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003792 else
Avi Kivity851ba692009-08-24 11:10:17 +03003793 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003794}
3795
Avi Kivity851ba692009-08-24 11:10:17 +03003796static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08003797{
Avi Kivity3842d132010-07-27 12:30:24 +03003798 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01003799 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03003800 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003801 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08003802 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08003803 return 1;
3804}
3805
Mark Langsdorf565d0992009-10-06 14:25:02 -05003806static int pause_interception(struct vcpu_svm *svm)
3807{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08003808 struct kvm_vcpu *vcpu = &svm->vcpu;
3809 bool in_kernel = (svm_get_cpl(vcpu) == 0);
3810
3811 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05003812 return 1;
3813}
3814
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04003815static int nop_interception(struct vcpu_svm *svm)
3816{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003817 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04003818}
3819
3820static int monitor_interception(struct vcpu_svm *svm)
3821{
3822 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
3823 return nop_interception(svm);
3824}
3825
3826static int mwait_interception(struct vcpu_svm *svm)
3827{
3828 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
3829 return nop_interception(svm);
3830}
3831
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05003832enum avic_ipi_failure_cause {
3833 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
3834 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
3835 AVIC_IPI_FAILURE_INVALID_TARGET,
3836 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
3837};
3838
3839static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
3840{
3841 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
3842 u32 icrl = svm->vmcb->control.exit_info_1;
3843 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03003844 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05003845 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3846
3847 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
3848
3849 switch (id) {
3850 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
3851 /*
3852 * AVIC hardware handles the generation of
3853 * IPIs when the specified Message Type is Fixed
3854 * (also known as fixed delivery mode) and
3855 * the Trigger Mode is edge-triggered. The hardware
3856 * also supports self and broadcast delivery modes
3857 * specified via the Destination Shorthand(DSH)
3858 * field of the ICRL. Logical and physical APIC ID
3859 * formats are supported. All other IPI types cause
3860 * a #VMEXIT, which needs to emulated.
3861 */
3862 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
3863 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
3864 break;
3865 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
3866 int i;
3867 struct kvm_vcpu *vcpu;
3868 struct kvm *kvm = svm->vcpu.kvm;
3869 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3870
3871 /*
3872 * At this point, we expect that the AVIC HW has already
3873 * set the appropriate IRR bits on the valid target
3874 * vcpus. So, we just need to kick the appropriate vcpu.
3875 */
3876 kvm_for_each_vcpu(i, vcpu, kvm) {
3877 bool m = kvm_apic_match_dest(vcpu, apic,
3878 icrl & KVM_APIC_SHORT_MASK,
3879 GET_APIC_DEST_FIELD(icrh),
3880 icrl & KVM_APIC_DEST_MASK);
3881
3882 if (m && !avic_vcpu_is_running(vcpu))
3883 kvm_vcpu_wake_up(vcpu);
3884 }
3885 break;
3886 }
3887 case AVIC_IPI_FAILURE_INVALID_TARGET:
3888 break;
3889 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
3890 WARN_ONCE(1, "Invalid backing page\n");
3891 break;
3892 default:
3893 pr_err("Unknown IPI interception\n");
3894 }
3895
3896 return 1;
3897}
3898
3899static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
3900{
3901 struct kvm_arch *vm_data = &vcpu->kvm->arch;
3902 int index;
3903 u32 *logical_apic_id_table;
3904 int dlid = GET_APIC_LOGICAL_ID(ldr);
3905
3906 if (!dlid)
3907 return NULL;
3908
3909 if (flat) { /* flat */
3910 index = ffs(dlid) - 1;
3911 if (index > 7)
3912 return NULL;
3913 } else { /* cluster */
3914 int cluster = (dlid & 0xf0) >> 4;
3915 int apic = ffs(dlid & 0x0f) - 1;
3916
3917 if ((apic < 0) || (apic > 7) ||
3918 (cluster >= 0xf))
3919 return NULL;
3920 index = (cluster << 2) + apic;
3921 }
3922
3923 logical_apic_id_table = (u32 *) page_address(vm_data->avic_logical_id_table_page);
3924
3925 return &logical_apic_id_table[index];
3926}
3927
3928static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
3929 bool valid)
3930{
3931 bool flat;
3932 u32 *entry, new_entry;
3933
3934 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
3935 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
3936 if (!entry)
3937 return -EINVAL;
3938
3939 new_entry = READ_ONCE(*entry);
3940 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
3941 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
3942 if (valid)
3943 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
3944 else
3945 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
3946 WRITE_ONCE(*entry, new_entry);
3947
3948 return 0;
3949}
3950
3951static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
3952{
3953 int ret;
3954 struct vcpu_svm *svm = to_svm(vcpu);
3955 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
3956
3957 if (!ldr)
3958 return 1;
3959
3960 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
3961 if (ret && svm->ldr_reg) {
3962 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
3963 svm->ldr_reg = 0;
3964 } else {
3965 svm->ldr_reg = ldr;
3966 }
3967 return ret;
3968}
3969
3970static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
3971{
3972 u64 *old, *new;
3973 struct vcpu_svm *svm = to_svm(vcpu);
3974 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
3975 u32 id = (apic_id_reg >> 24) & 0xff;
3976
3977 if (vcpu->vcpu_id == id)
3978 return 0;
3979
3980 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
3981 new = avic_get_physical_id_entry(vcpu, id);
3982 if (!new || !old)
3983 return 1;
3984
3985 /* We need to move physical_id_entry to new offset */
3986 *new = *old;
3987 *old = 0ULL;
3988 to_svm(vcpu)->avic_physical_id_cache = new;
3989
3990 /*
3991 * Also update the guest physical APIC ID in the logical
3992 * APIC ID table entry if already setup the LDR.
3993 */
3994 if (svm->ldr_reg)
3995 avic_handle_ldr_update(vcpu);
3996
3997 return 0;
3998}
3999
4000static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
4001{
4002 struct vcpu_svm *svm = to_svm(vcpu);
4003 struct kvm_arch *vm_data = &vcpu->kvm->arch;
4004 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
4005 u32 mod = (dfr >> 28) & 0xf;
4006
4007 /*
4008 * We assume that all local APICs are using the same type.
4009 * If this changes, we need to flush the AVIC logical
4010 * APID id table.
4011 */
4012 if (vm_data->ldr_mode == mod)
4013 return 0;
4014
4015 clear_page(page_address(vm_data->avic_logical_id_table_page));
4016 vm_data->ldr_mode = mod;
4017
4018 if (svm->ldr_reg)
4019 avic_handle_ldr_update(vcpu);
4020 return 0;
4021}
4022
4023static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4024{
4025 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4026 u32 offset = svm->vmcb->control.exit_info_1 &
4027 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4028
4029 switch (offset) {
4030 case APIC_ID:
4031 if (avic_handle_apic_id_update(&svm->vcpu))
4032 return 0;
4033 break;
4034 case APIC_LDR:
4035 if (avic_handle_ldr_update(&svm->vcpu))
4036 return 0;
4037 break;
4038 case APIC_DFR:
4039 avic_handle_dfr_update(&svm->vcpu);
4040 break;
4041 default:
4042 break;
4043 }
4044
4045 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4046
4047 return 1;
4048}
4049
4050static bool is_avic_unaccelerated_access_trap(u32 offset)
4051{
4052 bool ret = false;
4053
4054 switch (offset) {
4055 case APIC_ID:
4056 case APIC_EOI:
4057 case APIC_RRR:
4058 case APIC_LDR:
4059 case APIC_DFR:
4060 case APIC_SPIV:
4061 case APIC_ESR:
4062 case APIC_ICR:
4063 case APIC_LVTT:
4064 case APIC_LVTTHMR:
4065 case APIC_LVTPC:
4066 case APIC_LVT0:
4067 case APIC_LVT1:
4068 case APIC_LVTERR:
4069 case APIC_TMICT:
4070 case APIC_TDCR:
4071 ret = true;
4072 break;
4073 default:
4074 break;
4075 }
4076 return ret;
4077}
4078
4079static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4080{
4081 int ret = 0;
4082 u32 offset = svm->vmcb->control.exit_info_1 &
4083 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4084 u32 vector = svm->vmcb->control.exit_info_2 &
4085 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4086 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4087 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4088 bool trap = is_avic_unaccelerated_access_trap(offset);
4089
4090 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4091 trap, write, vector);
4092 if (trap) {
4093 /* Handling Trap */
4094 WARN_ONCE(!write, "svm: Handling trap read.\n");
4095 ret = avic_unaccel_trap_write(svm);
4096 } else {
4097 /* Handling Fault */
4098 ret = (emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
4099 }
4100
4101 return ret;
4102}
4103
Mathias Krause09941fb2012-08-30 01:30:20 +02004104static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004105 [SVM_EXIT_READ_CR0] = cr_interception,
4106 [SVM_EXIT_READ_CR3] = cr_interception,
4107 [SVM_EXIT_READ_CR4] = cr_interception,
4108 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004109 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004110 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004111 [SVM_EXIT_WRITE_CR3] = cr_interception,
4112 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004113 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004114 [SVM_EXIT_READ_DR0] = dr_interception,
4115 [SVM_EXIT_READ_DR1] = dr_interception,
4116 [SVM_EXIT_READ_DR2] = dr_interception,
4117 [SVM_EXIT_READ_DR3] = dr_interception,
4118 [SVM_EXIT_READ_DR4] = dr_interception,
4119 [SVM_EXIT_READ_DR5] = dr_interception,
4120 [SVM_EXIT_READ_DR6] = dr_interception,
4121 [SVM_EXIT_READ_DR7] = dr_interception,
4122 [SVM_EXIT_WRITE_DR0] = dr_interception,
4123 [SVM_EXIT_WRITE_DR1] = dr_interception,
4124 [SVM_EXIT_WRITE_DR2] = dr_interception,
4125 [SVM_EXIT_WRITE_DR3] = dr_interception,
4126 [SVM_EXIT_WRITE_DR4] = dr_interception,
4127 [SVM_EXIT_WRITE_DR5] = dr_interception,
4128 [SVM_EXIT_WRITE_DR6] = dr_interception,
4129 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004130 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4131 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004132 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004133 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004134 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004135 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004136 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004137 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004138 [SVM_EXIT_SMI] = nop_on_interception,
4139 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004140 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004141 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004142 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004143 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004144 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004145 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004146 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004147 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004148 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004149 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004150 [SVM_EXIT_MSR] = msr_interception,
4151 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004152 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004153 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004154 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004155 [SVM_EXIT_VMLOAD] = vmload_interception,
4156 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004157 [SVM_EXIT_STGI] = stgi_interception,
4158 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004159 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004160 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004161 [SVM_EXIT_MONITOR] = monitor_interception,
4162 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004163 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004164 [SVM_EXIT_NPF] = npf_interception,
Paolo Bonzini64d60672015-05-07 11:36:11 +02004165 [SVM_EXIT_RSM] = emulate_on_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004166 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4167 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004168};
4169
Joe Perchesae8cc052011-04-24 22:00:50 -07004170static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004171{
4172 struct vcpu_svm *svm = to_svm(vcpu);
4173 struct vmcb_control_area *control = &svm->vmcb->control;
4174 struct vmcb_save_area *save = &svm->vmcb->save;
4175
4176 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004177 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4178 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4179 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4180 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4181 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4182 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4183 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
4184 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4185 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4186 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4187 pr_err("%-20s%d\n", "asid:", control->asid);
4188 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4189 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4190 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4191 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4192 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4193 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4194 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4195 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4196 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4197 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4198 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004199 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004200 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4201 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004202 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004203 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004204 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4205 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4206 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004207 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004208 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4209 "es:",
4210 save->es.selector, save->es.attrib,
4211 save->es.limit, save->es.base);
4212 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4213 "cs:",
4214 save->cs.selector, save->cs.attrib,
4215 save->cs.limit, save->cs.base);
4216 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4217 "ss:",
4218 save->ss.selector, save->ss.attrib,
4219 save->ss.limit, save->ss.base);
4220 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4221 "ds:",
4222 save->ds.selector, save->ds.attrib,
4223 save->ds.limit, save->ds.base);
4224 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4225 "fs:",
4226 save->fs.selector, save->fs.attrib,
4227 save->fs.limit, save->fs.base);
4228 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4229 "gs:",
4230 save->gs.selector, save->gs.attrib,
4231 save->gs.limit, save->gs.base);
4232 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4233 "gdtr:",
4234 save->gdtr.selector, save->gdtr.attrib,
4235 save->gdtr.limit, save->gdtr.base);
4236 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4237 "ldtr:",
4238 save->ldtr.selector, save->ldtr.attrib,
4239 save->ldtr.limit, save->ldtr.base);
4240 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4241 "idtr:",
4242 save->idtr.selector, save->idtr.attrib,
4243 save->idtr.limit, save->idtr.base);
4244 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4245 "tr:",
4246 save->tr.selector, save->tr.attrib,
4247 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004248 pr_err("cpl: %d efer: %016llx\n",
4249 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004250 pr_err("%-15s %016llx %-13s %016llx\n",
4251 "cr0:", save->cr0, "cr2:", save->cr2);
4252 pr_err("%-15s %016llx %-13s %016llx\n",
4253 "cr3:", save->cr3, "cr4:", save->cr4);
4254 pr_err("%-15s %016llx %-13s %016llx\n",
4255 "dr6:", save->dr6, "dr7:", save->dr7);
4256 pr_err("%-15s %016llx %-13s %016llx\n",
4257 "rip:", save->rip, "rflags:", save->rflags);
4258 pr_err("%-15s %016llx %-13s %016llx\n",
4259 "rsp:", save->rsp, "rax:", save->rax);
4260 pr_err("%-15s %016llx %-13s %016llx\n",
4261 "star:", save->star, "lstar:", save->lstar);
4262 pr_err("%-15s %016llx %-13s %016llx\n",
4263 "cstar:", save->cstar, "sfmask:", save->sfmask);
4264 pr_err("%-15s %016llx %-13s %016llx\n",
4265 "kernel_gs_base:", save->kernel_gs_base,
4266 "sysenter_cs:", save->sysenter_cs);
4267 pr_err("%-15s %016llx %-13s %016llx\n",
4268 "sysenter_esp:", save->sysenter_esp,
4269 "sysenter_eip:", save->sysenter_eip);
4270 pr_err("%-15s %016llx %-13s %016llx\n",
4271 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4272 pr_err("%-15s %016llx %-13s %016llx\n",
4273 "br_from:", save->br_from, "br_to:", save->br_to);
4274 pr_err("%-15s %016llx %-13s %016llx\n",
4275 "excp_from:", save->last_excp_from,
4276 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004277}
4278
Avi Kivity586f9602010-11-18 13:09:54 +02004279static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4280{
4281 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4282
4283 *info1 = control->exit_info_1;
4284 *info2 = control->exit_info_2;
4285}
4286
Avi Kivity851ba692009-08-24 11:10:17 +03004287static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004288{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004289 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004290 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004291 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004292
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004293 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4294
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004295 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004296 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4297 if (npt_enabled)
4298 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004299
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004300 if (unlikely(svm->nested.exit_required)) {
4301 nested_svm_vmexit(svm);
4302 svm->nested.exit_required = false;
4303
4304 return 1;
4305 }
4306
Joerg Roedel20307532010-11-29 17:51:48 +01004307 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004308 int vmexit;
4309
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004310 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4311 svm->vmcb->control.exit_info_1,
4312 svm->vmcb->control.exit_info_2,
4313 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004314 svm->vmcb->control.exit_int_info_err,
4315 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004316
Joerg Roedel410e4d52009-08-07 11:49:44 +02004317 vmexit = nested_svm_exit_special(svm);
4318
4319 if (vmexit == NESTED_EXIT_CONTINUE)
4320 vmexit = nested_svm_exit_handled(svm);
4321
4322 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01004323 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01004324 }
4325
Joerg Roedela5c38322009-08-07 11:49:32 +02004326 svm_complete_interrupts(svm);
4327
Avi Kivity04d2cc72007-09-10 18:10:54 +03004328 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4329 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4330 kvm_run->fail_entry.hardware_entry_failure_reason
4331 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02004332 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4333 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03004334 return 0;
4335 }
4336
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004337 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01004338 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02004339 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4340 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02004341 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08004342 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08004343 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004344 exit_code);
4345
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02004346 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08004347 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04004348 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03004349 kvm_queue_exception(vcpu, UD_VECTOR);
4350 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004351 }
4352
Avi Kivity851ba692009-08-24 11:10:17 +03004353 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004354}
4355
4356static void reload_tss(struct kvm_vcpu *vcpu)
4357{
4358 int cpu = raw_smp_processor_id();
4359
Tejun Heo0fe1e002009-10-29 22:34:14 +09004360 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4361 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004362 load_TR_desc();
4363}
4364
Rusty Russelle756fc62007-07-30 20:07:08 +10004365static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004366{
4367 int cpu = raw_smp_processor_id();
4368
Tejun Heo0fe1e002009-10-29 22:34:14 +09004369 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004370
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03004371 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09004372 if (svm->asid_generation != sd->asid_generation)
4373 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004374}
4375
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004376static void svm_inject_nmi(struct kvm_vcpu *vcpu)
4377{
4378 struct vcpu_svm *svm = to_svm(vcpu);
4379
4380 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
4381 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01004382 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004383 ++vcpu->stat.nmi_injections;
4384}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004385
Eddie Dong85f455f2007-07-06 12:20:49 +03004386static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004387{
4388 struct vmcb_control_area *control;
4389
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004390 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10004391 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03004392 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004393 control->int_ctl &= ~V_INTR_PRIO_MASK;
4394 control->int_ctl |= V_IRQ_MASK |
4395 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004396 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004397}
4398
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004399static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03004400{
4401 struct vcpu_svm *svm = to_svm(vcpu);
4402
Joerg Roedel2af91942009-08-07 11:49:28 +02004403 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01004404
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03004405 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
4406 ++vcpu->stat.irq_injections;
4407
Alexander Graf219b65d2009-06-15 15:21:25 +02004408 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
4409 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03004410}
4411
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05004412static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
4413{
4414 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
4415}
4416
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004417static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
4418{
4419 struct vcpu_svm *svm = to_svm(vcpu);
4420
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05004421 if (svm_nested_virtualize_tpr(vcpu) ||
4422 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01004423 return;
4424
Radim Krčmář596f3142014-03-11 19:11:18 +01004425 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
4426
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004427 if (irr == -1)
4428 return;
4429
4430 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004431 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004432}
4433
Yang Zhang8d146952013-01-25 10:18:50 +08004434static void svm_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
4435{
4436 return;
4437}
4438
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05004439static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08004440{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05004441 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08004442}
4443
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004444static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
4445{
4446}
4447
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02004448static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004449{
4450}
4451
4452/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03004453static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4454{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004455 struct vcpu_svm *svm = to_svm(vcpu);
4456 struct vmcb *vmcb = svm->vmcb;
4457
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05004458 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004459 return;
4460
4461 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
4462 mark_dirty(vmcb, VMCB_INTR);
Yang Zhangc7c9c562013-01-25 10:18:51 +08004463}
4464
Andrey Smetanin63086302015-11-10 15:36:32 +03004465static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08004466{
4467 return;
4468}
4469
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004470static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
4471{
4472 kvm_lapic_set_irr(vec, vcpu->arch.apic);
4473 smp_mb__after_atomic();
4474
4475 if (avic_vcpu_is_running(vcpu))
4476 wrmsrl(SVM_AVIC_DOORBELL,
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05004477 kvm_cpu_get_apicid(vcpu->cpu));
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004478 else
4479 kvm_vcpu_wake_up(vcpu);
4480}
4481
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05004482static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
4483{
4484 unsigned long flags;
4485 struct amd_svm_iommu_ir *cur;
4486
4487 spin_lock_irqsave(&svm->ir_list_lock, flags);
4488 list_for_each_entry(cur, &svm->ir_list, node) {
4489 if (cur->data != pi->ir_data)
4490 continue;
4491 list_del(&cur->node);
4492 kfree(cur);
4493 break;
4494 }
4495 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
4496}
4497
4498static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
4499{
4500 int ret = 0;
4501 unsigned long flags;
4502 struct amd_svm_iommu_ir *ir;
4503
4504 /**
4505 * In some cases, the existing irte is updaed and re-set,
4506 * so we need to check here if it's already been * added
4507 * to the ir_list.
4508 */
4509 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
4510 struct kvm *kvm = svm->vcpu.kvm;
4511 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
4512 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
4513 struct vcpu_svm *prev_svm;
4514
4515 if (!prev_vcpu) {
4516 ret = -EINVAL;
4517 goto out;
4518 }
4519
4520 prev_svm = to_svm(prev_vcpu);
4521 svm_ir_list_del(prev_svm, pi);
4522 }
4523
4524 /**
4525 * Allocating new amd_iommu_pi_data, which will get
4526 * add to the per-vcpu ir_list.
4527 */
4528 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
4529 if (!ir) {
4530 ret = -ENOMEM;
4531 goto out;
4532 }
4533 ir->data = pi->ir_data;
4534
4535 spin_lock_irqsave(&svm->ir_list_lock, flags);
4536 list_add(&ir->node, &svm->ir_list);
4537 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
4538out:
4539 return ret;
4540}
4541
4542/**
4543 * Note:
4544 * The HW cannot support posting multicast/broadcast
4545 * interrupts to a vCPU. So, we still use legacy interrupt
4546 * remapping for these kind of interrupts.
4547 *
4548 * For lowest-priority interrupts, we only support
4549 * those with single CPU as the destination, e.g. user
4550 * configures the interrupts via /proc/irq or uses
4551 * irqbalance to make the interrupts single-CPU.
4552 */
4553static int
4554get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
4555 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
4556{
4557 struct kvm_lapic_irq irq;
4558 struct kvm_vcpu *vcpu = NULL;
4559
4560 kvm_set_msi_irq(kvm, e, &irq);
4561
4562 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
4563 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
4564 __func__, irq.vector);
4565 return -1;
4566 }
4567
4568 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
4569 irq.vector);
4570 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05004571 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05004572 vcpu_info->vector = irq.vector;
4573
4574 return 0;
4575}
4576
4577/*
4578 * svm_update_pi_irte - set IRTE for Posted-Interrupts
4579 *
4580 * @kvm: kvm
4581 * @host_irq: host irq of the interrupt
4582 * @guest_irq: gsi of the interrupt
4583 * @set: set or unset PI
4584 * returns 0 on success, < 0 on failure
4585 */
4586static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
4587 uint32_t guest_irq, bool set)
4588{
4589 struct kvm_kernel_irq_routing_entry *e;
4590 struct kvm_irq_routing_table *irq_rt;
4591 int idx, ret = -EINVAL;
4592
4593 if (!kvm_arch_has_assigned_device(kvm) ||
4594 !irq_remapping_cap(IRQ_POSTING_CAP))
4595 return 0;
4596
4597 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
4598 __func__, host_irq, guest_irq, set);
4599
4600 idx = srcu_read_lock(&kvm->irq_srcu);
4601 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
4602 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
4603
4604 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
4605 struct vcpu_data vcpu_info;
4606 struct vcpu_svm *svm = NULL;
4607
4608 if (e->type != KVM_IRQ_ROUTING_MSI)
4609 continue;
4610
4611 /**
4612 * Here, we setup with legacy mode in the following cases:
4613 * 1. When cannot target interrupt to a specific vcpu.
4614 * 2. Unsetting posted interrupt.
4615 * 3. APIC virtialization is disabled for the vcpu.
4616 */
4617 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
4618 kvm_vcpu_apicv_active(&svm->vcpu)) {
4619 struct amd_iommu_pi_data pi;
4620
4621 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05004622 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
4623 AVIC_HPA_MASK);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05004624 pi.ga_tag = AVIC_GATAG(kvm->arch.avic_vm_id,
4625 svm->vcpu.vcpu_id);
4626 pi.is_guest_mode = true;
4627 pi.vcpu_data = &vcpu_info;
4628 ret = irq_set_vcpu_affinity(host_irq, &pi);
4629
4630 /**
4631 * Here, we successfully setting up vcpu affinity in
4632 * IOMMU guest mode. Now, we need to store the posted
4633 * interrupt information in a per-vcpu ir_list so that
4634 * we can reference to them directly when we update vcpu
4635 * scheduling information in IOMMU irte.
4636 */
4637 if (!ret && pi.is_guest_mode)
4638 svm_ir_list_add(svm, &pi);
4639 } else {
4640 /* Use legacy mode in IRTE */
4641 struct amd_iommu_pi_data pi;
4642
4643 /**
4644 * Here, pi is used to:
4645 * - Tell IOMMU to use legacy mode for this interrupt.
4646 * - Retrieve ga_tag of prior interrupt remapping data.
4647 */
4648 pi.is_guest_mode = false;
4649 ret = irq_set_vcpu_affinity(host_irq, &pi);
4650
4651 /**
4652 * Check if the posted interrupt was previously
4653 * setup with the guest_mode by checking if the ga_tag
4654 * was cached. If so, we need to clean up the per-vcpu
4655 * ir_list.
4656 */
4657 if (!ret && pi.prev_ga_tag) {
4658 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
4659 struct kvm_vcpu *vcpu;
4660
4661 vcpu = kvm_get_vcpu_by_id(kvm, id);
4662 if (vcpu)
4663 svm_ir_list_del(to_svm(vcpu), &pi);
4664 }
4665 }
4666
4667 if (!ret && svm) {
4668 trace_kvm_pi_irte_update(svm->vcpu.vcpu_id,
4669 host_irq, e->gsi,
4670 vcpu_info.vector,
4671 vcpu_info.pi_desc_addr, set);
4672 }
4673
4674 if (ret < 0) {
4675 pr_err("%s: failed to update PI IRTE\n", __func__);
4676 goto out;
4677 }
4678 }
4679
4680 ret = 0;
4681out:
4682 srcu_read_unlock(&kvm->irq_srcu, idx);
4683 return ret;
4684}
4685
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004686static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02004687{
4688 struct vcpu_svm *svm = to_svm(vcpu);
4689 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02004690 int ret;
4691 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
4692 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
4693 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
4694
4695 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02004696}
4697
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004698static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
4699{
4700 struct vcpu_svm *svm = to_svm(vcpu);
4701
4702 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
4703}
4704
4705static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
4706{
4707 struct vcpu_svm *svm = to_svm(vcpu);
4708
4709 if (masked) {
4710 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01004711 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004712 } else {
4713 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01004714 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004715 }
4716}
4717
Gleb Natapov78646122009-03-23 12:12:11 +02004718static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
4719{
4720 struct vcpu_svm *svm = to_svm(vcpu);
4721 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02004722 int ret;
4723
4724 if (!gif_set(svm) ||
4725 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
4726 return 0;
4727
Avi Kivityf6e78472010-08-02 15:30:20 +03004728 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02004729
Joerg Roedel20307532010-11-29 17:51:48 +01004730 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02004731 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
4732
4733 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02004734}
4735
Jan Kiszkac9a79532014-03-07 20:03:15 +01004736static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03004737{
Alexander Graf219b65d2009-06-15 15:21:25 +02004738 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02004739
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004740 if (kvm_vcpu_apicv_active(vcpu))
4741 return;
4742
Joerg Roedele0231712010-02-24 18:59:10 +01004743 /*
4744 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
4745 * 1, because that's a separate STGI/VMRUN intercept. The next time we
4746 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05004747 * we'll get the vintr intercept. However, if the vGIF feature is
4748 * enabled, the STGI interception will not occur. Enable the irq
4749 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01004750 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05004751 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02004752 svm_set_vintr(svm);
4753 svm_inject_irq(svm, 0x0);
4754 }
Gleb Natapov9222be12009-04-23 17:14:37 +03004755}
4756
Jan Kiszkac9a79532014-03-07 20:03:15 +01004757static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004758{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004759 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004760
Gleb Natapov44c11432009-05-11 13:35:52 +03004761 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
4762 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01004763 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03004764
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05004765 if (!gif_set(svm)) {
4766 if (vgif_enabled(svm))
4767 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02004768 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05004769 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02004770
4771 if (svm->nested.exit_required)
4772 return; /* we're not going to run the guest yet */
4773
Joerg Roedele0231712010-02-24 18:59:10 +01004774 /*
4775 * Something prevents NMI from been injected. Single step over possible
4776 * problem (IRET or exception injection or interrupt shadow)
4777 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02004778 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02004779 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03004780 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03004781}
4782
Izik Eiduscbc94022007-10-25 00:29:55 +02004783static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
4784{
4785 return 0;
4786}
4787
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08004788static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03004789{
Joerg Roedel38e5e922010-12-03 15:25:16 +01004790 struct vcpu_svm *svm = to_svm(vcpu);
4791
4792 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
4793 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
4794 else
4795 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03004796}
4797
Avi Kivity04d2cc72007-09-10 18:10:54 +03004798static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
4799{
4800}
4801
Joerg Roedeld7bf8222008-04-16 16:51:17 +02004802static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
4803{
4804 struct vcpu_svm *svm = to_svm(vcpu);
4805
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05004806 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01004807 return;
4808
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004809 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02004810 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03004811 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02004812 }
4813}
4814
Joerg Roedel649d6862008-04-16 16:51:15 +02004815static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
4816{
4817 struct vcpu_svm *svm = to_svm(vcpu);
4818 u64 cr8;
4819
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05004820 if (svm_nested_virtualize_tpr(vcpu) ||
4821 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01004822 return;
4823
Joerg Roedel649d6862008-04-16 16:51:15 +02004824 cr8 = kvm_get_cr8(vcpu);
4825 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
4826 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
4827}
4828
Gleb Natapov9222be12009-04-23 17:14:37 +03004829static void svm_complete_interrupts(struct vcpu_svm *svm)
4830{
4831 u8 vector;
4832 int type;
4833 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01004834 unsigned int3_injected = svm->int3_injected;
4835
4836 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03004837
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02004838 /*
4839 * If we've made progress since setting HF_IRET_MASK, we've
4840 * executed an IRET and can allow NMI injection.
4841 */
4842 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
4843 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03004844 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03004845 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
4846 }
Gleb Natapov44c11432009-05-11 13:35:52 +03004847
Gleb Natapov9222be12009-04-23 17:14:37 +03004848 svm->vcpu.arch.nmi_injected = false;
4849 kvm_clear_exception_queue(&svm->vcpu);
4850 kvm_clear_interrupt_queue(&svm->vcpu);
4851
4852 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
4853 return;
4854
Avi Kivity3842d132010-07-27 12:30:24 +03004855 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
4856
Gleb Natapov9222be12009-04-23 17:14:37 +03004857 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
4858 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
4859
4860 switch (type) {
4861 case SVM_EXITINTINFO_TYPE_NMI:
4862 svm->vcpu.arch.nmi_injected = true;
4863 break;
4864 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01004865 /*
4866 * In case of software exceptions, do not reinject the vector,
4867 * but re-execute the instruction instead. Rewind RIP first
4868 * if we emulated INT3 before.
4869 */
4870 if (kvm_exception_is_soft(vector)) {
4871 if (vector == BP_VECTOR && int3_injected &&
4872 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
4873 kvm_rip_write(&svm->vcpu,
4874 kvm_rip_read(&svm->vcpu) -
4875 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02004876 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01004877 }
Gleb Natapov9222be12009-04-23 17:14:37 +03004878 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
4879 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02004880 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03004881
4882 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02004883 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03004884 break;
4885 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004886 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03004887 break;
4888 default:
4889 break;
4890 }
4891}
4892
Avi Kivityb463a6f2010-07-20 15:06:17 +03004893static void svm_cancel_injection(struct kvm_vcpu *vcpu)
4894{
4895 struct vcpu_svm *svm = to_svm(vcpu);
4896 struct vmcb_control_area *control = &svm->vmcb->control;
4897
4898 control->exit_int_info = control->event_inj;
4899 control->exit_int_info_err = control->event_inj_err;
4900 control->event_inj = 0;
4901 svm_complete_interrupts(svm);
4902}
4903
Avi Kivity851ba692009-08-24 11:10:17 +03004904static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004905{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004906 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03004907
Joerg Roedel2041a062010-04-22 12:33:08 +02004908 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
4909 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
4910 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
4911
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004912 /*
4913 * A vmexit emulation is required before the vcpu can be executed
4914 * again.
4915 */
4916 if (unlikely(svm->nested.exit_required))
4917 return;
4918
Ladi Proseka12713c2017-06-21 09:07:00 +02004919 /*
4920 * Disable singlestep if we're injecting an interrupt/exception.
4921 * We don't want our modified rflags to be pushed on the stack where
4922 * we might not be able to easily reset them if we disabled NMI
4923 * singlestep later.
4924 */
4925 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
4926 /*
4927 * Event injection happens before external interrupts cause a
4928 * vmexit and interrupts are disabled here, so smp_send_reschedule
4929 * is enough to force an immediate vmexit.
4930 */
4931 disable_nmi_singlestep(svm);
4932 smp_send_reschedule(vcpu->cpu);
4933 }
4934
Rusty Russelle756fc62007-07-30 20:07:08 +10004935 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004936
Joerg Roedel649d6862008-04-16 16:51:15 +02004937 sync_lapic_to_cr8(vcpu);
4938
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02004939 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004940
Avi Kivity04d2cc72007-09-10 18:10:54 +03004941 clgi();
4942
4943 local_irq_enable();
Avi Kivity36241b82006-12-22 01:05:20 -08004944
Avi Kivity6aa8b732006-12-10 02:21:36 -08004945 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03004946 "push %%" _ASM_BP "; \n\t"
4947 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
4948 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
4949 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
4950 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
4951 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
4952 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004953#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004954 "mov %c[r8](%[svm]), %%r8 \n\t"
4955 "mov %c[r9](%[svm]), %%r9 \n\t"
4956 "mov %c[r10](%[svm]), %%r10 \n\t"
4957 "mov %c[r11](%[svm]), %%r11 \n\t"
4958 "mov %c[r12](%[svm]), %%r12 \n\t"
4959 "mov %c[r13](%[svm]), %%r13 \n\t"
4960 "mov %c[r14](%[svm]), %%r14 \n\t"
4961 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08004962#endif
4963
Avi Kivity6aa8b732006-12-10 02:21:36 -08004964 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03004965 "push %%" _ASM_AX " \n\t"
4966 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03004967 __ex(SVM_VMLOAD) "\n\t"
4968 __ex(SVM_VMRUN) "\n\t"
4969 __ex(SVM_VMSAVE) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03004970 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08004971
4972 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03004973 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
4974 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
4975 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
4976 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
4977 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
4978 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004979#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004980 "mov %%r8, %c[r8](%[svm]) \n\t"
4981 "mov %%r9, %c[r9](%[svm]) \n\t"
4982 "mov %%r10, %c[r10](%[svm]) \n\t"
4983 "mov %%r11, %c[r11](%[svm]) \n\t"
4984 "mov %%r12, %c[r12](%[svm]) \n\t"
4985 "mov %%r13, %c[r13](%[svm]) \n\t"
4986 "mov %%r14, %c[r14](%[svm]) \n\t"
4987 "mov %%r15, %c[r15](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08004988#endif
Avi Kivity74547662012-09-16 15:10:59 +03004989 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08004990 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004991 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08004992 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004993 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
4994 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
4995 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
4996 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
4997 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
4998 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004999#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005000 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5001 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5002 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5003 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5004 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5005 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5006 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5007 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005008#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005009 : "cc", "memory"
5010#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005011 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005012 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005013#else
5014 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005015#endif
5016 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005017
Avi Kivity82ca2d12010-10-21 12:20:34 +02005018#ifdef CONFIG_X86_64
5019 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5020#else
Avi Kivitydacccfd2010-10-21 12:20:33 +02005021 loadsegment(fs, svm->host.fs);
Avi Kivity831ca602011-03-08 16:09:51 +02005022#ifndef CONFIG_X86_32_LAZY_GS
5023 loadsegment(gs, svm->host.gs);
5024#endif
Avi Kivity9581d442010-10-19 16:46:55 +02005025#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005026
5027 reload_tss(vcpu);
5028
Avi Kivity56ba47d2007-11-07 17:14:18 +02005029 local_irq_disable();
5030
Avi Kivity13c34e02010-10-21 12:20:31 +02005031 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5032 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5033 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5034 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5035
Joerg Roedel3781c012011-01-14 16:45:02 +01005036 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
5037 kvm_before_handle_nmi(&svm->vcpu);
5038
5039 stgi();
5040
5041 /* Any pending NMI will happen here */
5042
5043 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
5044 kvm_after_handle_nmi(&svm->vcpu);
5045
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005046 sync_cr8_to_lapic(vcpu);
5047
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005048 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005049
Joerg Roedel38e5e922010-12-03 15:25:16 +01005050 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5051
Gleb Natapov631bc482010-10-14 11:22:52 +02005052 /* if exit due to PF check for async PF */
5053 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005054 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005055
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005056 if (npt_enabled) {
5057 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5058 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5059 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005060
5061 /*
5062 * We need to handle MC intercepts here before the vcpu has a chance to
5063 * change the physical cpu
5064 */
5065 if (unlikely(svm->vmcb->control.exit_code ==
5066 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5067 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005068
5069 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005070}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005071STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005072
Avi Kivity6aa8b732006-12-10 02:21:36 -08005073static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5074{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005075 struct vcpu_svm *svm = to_svm(vcpu);
5076
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005077 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005078 mark_dirty(svm->vmcb, VMCB_CR);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005079 svm_flush_tlb(vcpu, true);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005080}
5081
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005082static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5083{
5084 struct vcpu_svm *svm = to_svm(vcpu);
5085
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005086 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005087 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005088
5089 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005090 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005091 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005092
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005093 svm_flush_tlb(vcpu, true);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005094}
5095
Avi Kivity6aa8b732006-12-10 02:21:36 -08005096static int is_disabled(void)
5097{
Joerg Roedel6031a612007-06-22 12:29:50 +03005098 u64 vm_cr;
5099
5100 rdmsrl(MSR_VM_CR, vm_cr);
5101 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5102 return 1;
5103
Avi Kivity6aa8b732006-12-10 02:21:36 -08005104 return 0;
5105}
5106
Ingo Molnar102d8322007-02-19 14:37:47 +02005107static void
5108svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5109{
5110 /*
5111 * Patch in the VMMCALL instruction:
5112 */
5113 hypercall[0] = 0x0f;
5114 hypercall[1] = 0x01;
5115 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005116}
5117
Yang, Sheng002c7f72007-07-31 14:23:01 +03005118static void svm_check_processor_compat(void *rtn)
5119{
5120 *(int *)rtn = 0;
5121}
5122
Avi Kivity774ead32007-12-26 13:57:04 +02005123static bool svm_cpu_has_accelerated_tpr(void)
5124{
5125 return false;
5126}
5127
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005128static bool svm_has_high_real_mode_segbase(void)
5129{
5130 return true;
5131}
5132
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005133static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5134{
5135 return 0;
5136}
5137
Sheng Yang0e851882009-12-18 16:48:46 +08005138static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5139{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005140 struct vcpu_svm *svm = to_svm(vcpu);
5141
5142 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005143 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005144
5145 if (!kvm_vcpu_apicv_active(vcpu))
5146 return;
5147
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005148 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005149}
5150
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005151static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5152{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005153 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005154 case 0x1:
5155 if (avic)
5156 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5157 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005158 case 0x80000001:
5159 if (nested)
5160 entry->ecx |= (1 << 2); /* Set SVM bit */
5161 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005162 case 0x8000000A:
5163 entry->eax = 1; /* SVM revision 1 */
5164 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5165 ASID emulation to nested SVM */
5166 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005167 entry->edx = 0; /* Per default do not support any
5168 additional features */
5169
5170 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005171 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005172 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005173
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005174 /* Support NPT for the guest if enabled */
5175 if (npt_enabled)
5176 entry->edx |= SVM_FEATURE_NPT;
5177
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005178 break;
5179 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005180}
5181
Sheng Yang17cc3932010-01-05 19:02:27 +08005182static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005183{
Sheng Yang17cc3932010-01-05 19:02:27 +08005184 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005185}
5186
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005187static bool svm_rdtscp_supported(void)
5188{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005189 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005190}
5191
Mao, Junjiead756a12012-07-02 01:18:48 +00005192static bool svm_invpcid_supported(void)
5193{
5194 return false;
5195}
5196
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005197static bool svm_mpx_supported(void)
5198{
5199 return false;
5200}
5201
Wanpeng Li55412b22014-12-02 19:21:30 +08005202static bool svm_xsaves_supported(void)
5203{
5204 return false;
5205}
5206
Paolo Bonzini66336ca2016-07-12 10:36:41 +02005207static bool svm_umip_emulated(void)
5208{
5209 return false;
5210}
5211
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005212static bool svm_has_wbinvd_exit(void)
5213{
5214 return true;
5215}
5216
Joerg Roedel80612522011-04-04 12:39:33 +02005217#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005218 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005219#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005220 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005221#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005222 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005223
Mathias Krause09941fb2012-08-30 01:30:20 +02005224static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005225 u32 exit_code;
5226 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005227} x86_intercept_map[] = {
5228 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5229 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5230 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5231 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5232 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02005233 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5234 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02005235 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5236 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5237 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5238 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5239 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5240 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5241 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5242 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02005243 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
5244 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
5245 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
5246 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
5247 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
5248 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
5249 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
5250 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005251 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
5252 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
5253 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02005254 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
5255 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
5256 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
5257 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
5258 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
5259 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
5260 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
5261 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
5262 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02005263 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
5264 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
5265 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
5266 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
5267 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
5268 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
5269 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02005270 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
5271 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
5272 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
5273 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005274};
5275
Joerg Roedel80612522011-04-04 12:39:33 +02005276#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005277#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005278#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005279
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005280static int svm_check_intercept(struct kvm_vcpu *vcpu,
5281 struct x86_instruction_info *info,
5282 enum x86_intercept_stage stage)
5283{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005284 struct vcpu_svm *svm = to_svm(vcpu);
5285 int vmexit, ret = X86EMUL_CONTINUE;
5286 struct __x86_intercept icpt_info;
5287 struct vmcb *vmcb = svm->vmcb;
5288
5289 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
5290 goto out;
5291
5292 icpt_info = x86_intercept_map[info->intercept];
5293
Avi Kivity40e19b52011-04-21 12:35:41 +03005294 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005295 goto out;
5296
5297 switch (icpt_info.exit_code) {
5298 case SVM_EXIT_READ_CR0:
5299 if (info->intercept == x86_intercept_cr_read)
5300 icpt_info.exit_code += info->modrm_reg;
5301 break;
5302 case SVM_EXIT_WRITE_CR0: {
5303 unsigned long cr0, val;
5304 u64 intercept;
5305
5306 if (info->intercept == x86_intercept_cr_write)
5307 icpt_info.exit_code += info->modrm_reg;
5308
Jan Kiszka62baf442014-06-29 21:55:53 +02005309 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
5310 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005311 break;
5312
5313 intercept = svm->nested.intercept;
5314
5315 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
5316 break;
5317
5318 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
5319 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
5320
5321 if (info->intercept == x86_intercept_lmsw) {
5322 cr0 &= 0xfUL;
5323 val &= 0xfUL;
5324 /* lmsw can't clear PE - catch this here */
5325 if (cr0 & X86_CR0_PE)
5326 val |= X86_CR0_PE;
5327 }
5328
5329 if (cr0 ^ val)
5330 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
5331
5332 break;
5333 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02005334 case SVM_EXIT_READ_DR0:
5335 case SVM_EXIT_WRITE_DR0:
5336 icpt_info.exit_code += info->modrm_reg;
5337 break;
Joerg Roedel80612522011-04-04 12:39:33 +02005338 case SVM_EXIT_MSR:
5339 if (info->intercept == x86_intercept_wrmsr)
5340 vmcb->control.exit_info_1 = 1;
5341 else
5342 vmcb->control.exit_info_1 = 0;
5343 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02005344 case SVM_EXIT_PAUSE:
5345 /*
5346 * We get this for NOP only, but pause
5347 * is rep not, check this here
5348 */
5349 if (info->rep_prefix != REPE_PREFIX)
5350 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02005351 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02005352 case SVM_EXIT_IOIO: {
5353 u64 exit_info;
5354 u32 bytes;
5355
Joerg Roedelf6511932011-04-04 12:39:35 +02005356 if (info->intercept == x86_intercept_in ||
5357 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02005358 exit_info = ((info->src_val & 0xffff) << 16) |
5359 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02005360 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02005361 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02005362 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02005363 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02005364 }
5365
5366 if (info->intercept == x86_intercept_outs ||
5367 info->intercept == x86_intercept_ins)
5368 exit_info |= SVM_IOIO_STR_MASK;
5369
5370 if (info->rep_prefix)
5371 exit_info |= SVM_IOIO_REP_MASK;
5372
5373 bytes = min(bytes, 4u);
5374
5375 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
5376
5377 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
5378
5379 vmcb->control.exit_info_1 = exit_info;
5380 vmcb->control.exit_info_2 = info->next_rip;
5381
5382 break;
5383 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005384 default:
5385 break;
5386 }
5387
Bandan Dasf1047652015-06-11 02:05:33 -04005388 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
5389 if (static_cpu_has(X86_FEATURE_NRIPS))
5390 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005391 vmcb->control.exit_code = icpt_info.exit_code;
5392 vmexit = nested_svm_exit_handled(svm);
5393
5394 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
5395 : X86EMUL_CONTINUE;
5396
5397out:
5398 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005399}
5400
Yang Zhanga547c6d2013-04-11 19:25:10 +08005401static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
5402{
5403 local_irq_enable();
Paolo Bonzinif2485b32016-06-15 15:23:11 +02005404 /*
5405 * We must have an instruction with interrupts enabled, so
5406 * the timer interrupt isn't delayed by the interrupt shadow.
5407 */
5408 asm("nop");
5409 local_irq_disable();
Yang Zhanga547c6d2013-04-11 19:25:10 +08005410}
5411
Radim Krčmářae97a3b2014-08-21 18:08:06 +02005412static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
5413{
5414}
5415
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05005416static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
5417{
5418 if (avic_handle_apic_id_update(vcpu) != 0)
5419 return;
5420 if (avic_handle_dfr_update(vcpu) != 0)
5421 return;
5422 avic_handle_ldr_update(vcpu);
5423}
5424
Borislav Petkov74f16902017-03-26 23:51:24 +02005425static void svm_setup_mce(struct kvm_vcpu *vcpu)
5426{
5427 /* [63:9] are reserved. */
5428 vcpu->arch.mcg_cap &= 0x1ff;
5429}
5430
Ladi Prosek72d7b372017-10-11 16:54:41 +02005431static int svm_smi_allowed(struct kvm_vcpu *vcpu)
5432{
Ladi Prosek05cade72017-10-11 16:54:45 +02005433 struct vcpu_svm *svm = to_svm(vcpu);
5434
5435 /* Per APM Vol.2 15.22.2 "Response to SMI" */
5436 if (!gif_set(svm))
5437 return 0;
5438
5439 if (is_guest_mode(&svm->vcpu) &&
5440 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
5441 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
5442 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
5443 svm->nested.exit_required = true;
5444 return 0;
5445 }
5446
Ladi Prosek72d7b372017-10-11 16:54:41 +02005447 return 1;
5448}
5449
Ladi Prosek0234bf82017-10-11 16:54:40 +02005450static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
5451{
Ladi Prosek05cade72017-10-11 16:54:45 +02005452 struct vcpu_svm *svm = to_svm(vcpu);
5453 int ret;
5454
5455 if (is_guest_mode(vcpu)) {
5456 /* FED8h - SVM Guest */
5457 put_smstate(u64, smstate, 0x7ed8, 1);
5458 /* FEE0h - SVM Guest VMCB Physical Address */
5459 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
5460
5461 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5462 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5463 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5464
5465 ret = nested_svm_vmexit(svm);
5466 if (ret)
5467 return ret;
5468 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02005469 return 0;
5470}
5471
5472static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
5473{
Ladi Prosek05cade72017-10-11 16:54:45 +02005474 struct vcpu_svm *svm = to_svm(vcpu);
5475 struct vmcb *nested_vmcb;
5476 struct page *page;
5477 struct {
5478 u64 guest;
5479 u64 vmcb;
5480 } svm_state_save;
5481 int ret;
5482
5483 ret = kvm_vcpu_read_guest(vcpu, smbase + 0xfed8, &svm_state_save,
5484 sizeof(svm_state_save));
5485 if (ret)
5486 return ret;
5487
5488 if (svm_state_save.guest) {
5489 vcpu->arch.hflags &= ~HF_SMM_MASK;
5490 nested_vmcb = nested_svm_map(svm, svm_state_save.vmcb, &page);
5491 if (nested_vmcb)
5492 enter_svm_guest_mode(svm, svm_state_save.vmcb, nested_vmcb, page);
5493 else
5494 ret = 1;
5495 vcpu->arch.hflags |= HF_SMM_MASK;
5496 }
5497 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02005498}
5499
Ladi Prosekcc3d9672017-10-17 16:02:39 +02005500static int enable_smi_window(struct kvm_vcpu *vcpu)
5501{
5502 struct vcpu_svm *svm = to_svm(vcpu);
5503
5504 if (!gif_set(svm)) {
5505 if (vgif_enabled(svm))
5506 set_intercept(svm, INTERCEPT_STGI);
5507 /* STGI will cause a vm exit */
5508 return 1;
5509 }
5510 return 0;
5511}
5512
Kees Cook404f6aa2016-08-08 16:29:06 -07005513static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005514 .cpu_has_kvm_support = has_svm,
5515 .disabled_by_bios = is_disabled,
5516 .hardware_setup = svm_hardware_setup,
5517 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03005518 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005519 .hardware_enable = svm_hardware_enable,
5520 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02005521 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005522 .cpu_has_high_real_mode_segbase = svm_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005523
5524 .vcpu_create = svm_create_vcpu,
5525 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03005526 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005527
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005528 .vm_init = avic_vm_init,
5529 .vm_destroy = avic_vm_destroy,
5530
Avi Kivity04d2cc72007-09-10 18:10:54 +03005531 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005532 .vcpu_load = svm_vcpu_load,
5533 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05005534 .vcpu_blocking = svm_vcpu_blocking,
5535 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005536
Paolo Bonzinia96036b2015-11-10 11:55:36 +01005537 .update_bp_intercept = update_bp_intercept,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005538 .get_msr = svm_get_msr,
5539 .set_msr = svm_set_msr,
5540 .get_segment_base = svm_get_segment_base,
5541 .get_segment = svm_get_segment,
5542 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02005543 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10005544 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02005545 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02005546 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03005547 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005548 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005549 .set_cr3 = svm_set_cr3,
5550 .set_cr4 = svm_set_cr4,
5551 .set_efer = svm_set_efer,
5552 .get_idt = svm_get_idt,
5553 .set_idt = svm_set_idt,
5554 .get_gdt = svm_get_gdt,
5555 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01005556 .get_dr6 = svm_get_dr6,
5557 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03005558 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01005559 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005560 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005561 .get_rflags = svm_get_rflags,
5562 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08005563
Avi Kivity6aa8b732006-12-10 02:21:36 -08005564 .tlb_flush = svm_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005565
Avi Kivity6aa8b732006-12-10 02:21:36 -08005566 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03005567 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005568 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04005569 .set_interrupt_shadow = svm_set_interrupt_shadow,
5570 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02005571 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03005572 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005573 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02005574 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03005575 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02005576 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005577 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005578 .get_nmi_mask = svm_get_nmi_mask,
5579 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005580 .enable_nmi_window = enable_nmi_window,
5581 .enable_irq_window = enable_irq_window,
5582 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +08005583 .set_virtual_x2apic_mode = svm_set_virtual_x2apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03005584 .get_enable_apicv = svm_get_enable_apicv,
5585 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08005586 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005587 .hwapic_irr_update = svm_hwapic_irr_update,
5588 .hwapic_isr_update = svm_hwapic_isr_update,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05005589 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02005590
5591 .set_tss_addr = svm_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08005592 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005593 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005594
Avi Kivity586f9602010-11-18 13:09:54 +02005595 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02005596
Sheng Yang17cc3932010-01-05 19:02:27 +08005597 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08005598
5599 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005600
5601 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00005602 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005603 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08005604 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02005605 .umip_emulated = svm_umip_emulated,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005606
5607 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005608
5609 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10005610
5611 .write_tsc_offset = svm_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005612
5613 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005614
5615 .check_intercept = svm_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +08005616 .handle_external_intr = svm_handle_external_intr,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02005617
5618 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02005619
5620 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005621 .deliver_posted_interrupt = svm_deliver_avic_intr,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005622 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02005623 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02005624
Ladi Prosek72d7b372017-10-11 16:54:41 +02005625 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02005626 .pre_enter_smm = svm_pre_enter_smm,
5627 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02005628 .enable_smi_window = enable_smi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005629};
5630
5631static int __init svm_init(void)
5632{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08005633 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03005634 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005635}
5636
5637static void __exit svm_exit(void)
5638{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08005639 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08005640}
5641
5642module_init(svm_init)
5643module_exit(svm_exit)