blob: 76f559f5a3dddf3b4b4e383104afd4f1d1d22826 [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);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800288static void svm_flush_tlb(struct kvm_vcpu *vcpu);
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;
364
Joerg Roedel116a0a22010-12-03 11:45:49 +0100365 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
366
Joerg Roedel384c6362010-11-30 18:03:56 +0100367 if (!is_guest_mode(&svm->vcpu))
368 return;
369
370 c = &svm->vmcb->control;
371 h = &svm->nested.hsave->control;
372 g = &svm->nested;
373
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100374 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100375 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Joerg Roedel384c6362010-11-30 18:03:56 +0100376 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
377 c->intercept = h->intercept | g->intercept;
378}
379
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100380static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
381{
382 if (is_guest_mode(&svm->vcpu))
383 return svm->nested.hsave;
384 else
385 return svm->vmcb;
386}
387
388static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
389{
390 struct vmcb *vmcb = get_host_vmcb(svm);
391
392 vmcb->control.intercept_cr |= (1U << bit);
393
394 recalc_intercepts(svm);
395}
396
397static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
398{
399 struct vmcb *vmcb = get_host_vmcb(svm);
400
401 vmcb->control.intercept_cr &= ~(1U << bit);
402
403 recalc_intercepts(svm);
404}
405
406static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
407{
408 struct vmcb *vmcb = get_host_vmcb(svm);
409
410 return vmcb->control.intercept_cr & (1U << bit);
411}
412
Paolo Bonzini5315c712014-03-03 13:08:29 +0100413static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100414{
415 struct vmcb *vmcb = get_host_vmcb(svm);
416
Paolo Bonzini5315c712014-03-03 13:08:29 +0100417 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
418 | (1 << INTERCEPT_DR1_READ)
419 | (1 << INTERCEPT_DR2_READ)
420 | (1 << INTERCEPT_DR3_READ)
421 | (1 << INTERCEPT_DR4_READ)
422 | (1 << INTERCEPT_DR5_READ)
423 | (1 << INTERCEPT_DR6_READ)
424 | (1 << INTERCEPT_DR7_READ)
425 | (1 << INTERCEPT_DR0_WRITE)
426 | (1 << INTERCEPT_DR1_WRITE)
427 | (1 << INTERCEPT_DR2_WRITE)
428 | (1 << INTERCEPT_DR3_WRITE)
429 | (1 << INTERCEPT_DR4_WRITE)
430 | (1 << INTERCEPT_DR5_WRITE)
431 | (1 << INTERCEPT_DR6_WRITE)
432 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100433
434 recalc_intercepts(svm);
435}
436
Paolo Bonzini5315c712014-03-03 13:08:29 +0100437static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100438{
439 struct vmcb *vmcb = get_host_vmcb(svm);
440
Paolo Bonzini5315c712014-03-03 13:08:29 +0100441 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100442
443 recalc_intercepts(svm);
444}
445
Joerg Roedel18c918c2010-11-30 18:03:59 +0100446static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
447{
448 struct vmcb *vmcb = get_host_vmcb(svm);
449
450 vmcb->control.intercept_exceptions |= (1U << bit);
451
452 recalc_intercepts(svm);
453}
454
455static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
456{
457 struct vmcb *vmcb = get_host_vmcb(svm);
458
459 vmcb->control.intercept_exceptions &= ~(1U << bit);
460
461 recalc_intercepts(svm);
462}
463
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100464static inline void set_intercept(struct vcpu_svm *svm, int bit)
465{
466 struct vmcb *vmcb = get_host_vmcb(svm);
467
468 vmcb->control.intercept |= (1ULL << bit);
469
470 recalc_intercepts(svm);
471}
472
473static inline void clr_intercept(struct vcpu_svm *svm, int bit)
474{
475 struct vmcb *vmcb = get_host_vmcb(svm);
476
477 vmcb->control.intercept &= ~(1ULL << bit);
478
479 recalc_intercepts(svm);
480}
481
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500482static inline bool vgif_enabled(struct vcpu_svm *svm)
483{
484 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
485}
486
Joerg Roedel2af91942009-08-07 11:49:28 +0200487static inline void enable_gif(struct vcpu_svm *svm)
488{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500489 if (vgif_enabled(svm))
490 svm->vmcb->control.int_ctl |= V_GIF_MASK;
491 else
492 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200493}
494
495static inline void disable_gif(struct vcpu_svm *svm)
496{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500497 if (vgif_enabled(svm))
498 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
499 else
500 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200501}
502
503static inline bool gif_set(struct vcpu_svm *svm)
504{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500505 if (vgif_enabled(svm))
506 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
507 else
508 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200509}
510
Avi Kivity6aa8b732006-12-10 02:21:36 -0800511static unsigned long iopm_base;
512
513struct kvm_ldttss_desc {
514 u16 limit0;
515 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100516 unsigned base1:8, type:5, dpl:2, p:1;
517 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800518 u32 base3;
519 u32 zero1;
520} __attribute__((packed));
521
522struct svm_cpu_data {
523 int cpu;
524
Avi Kivity5008fdf2007-04-02 13:05:50 +0300525 u64 asid_generation;
526 u32 max_asid;
527 u32 next_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800528 struct kvm_ldttss_desc *tss_desc;
529
530 struct page *save_area;
531};
532
533static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
534
535struct svm_init_data {
536 int cpu;
537 int r;
538};
539
Mathias Krause09941fb2012-08-30 01:30:20 +0200540static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800541
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200542#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800543#define MSRS_RANGE_SIZE 2048
544#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
545
Joerg Roedel455716f2010-03-01 15:34:35 +0100546static u32 svm_msrpm_offset(u32 msr)
547{
548 u32 offset;
549 int i;
550
551 for (i = 0; i < NUM_MSR_MAPS; i++) {
552 if (msr < msrpm_ranges[i] ||
553 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
554 continue;
555
556 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
557 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
558
559 /* Now we have the u8 offset - but need the u32 offset */
560 return offset / 4;
561 }
562
563 /* MSR not in any range */
564 return MSR_INVALID;
565}
566
Avi Kivity6aa8b732006-12-10 02:21:36 -0800567#define MAX_INST_SIZE 15
568
Avi Kivity6aa8b732006-12-10 02:21:36 -0800569static inline void clgi(void)
570{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300571 asm volatile (__ex(SVM_CLGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800572}
573
574static inline void stgi(void)
575{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300576 asm volatile (__ex(SVM_STGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800577}
578
579static inline void invlpga(unsigned long addr, u32 asid)
580{
Joerg Roedele0231712010-02-24 18:59:10 +0100581 asm volatile (__ex(SVM_INVLPGA) : : "a"(addr), "c"(asid));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800582}
583
Yu Zhang855feb62017-08-24 20:27:55 +0800584static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200585{
586#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800587 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200588#else
589 return PT32E_ROOT_LEVEL;
590#endif
591}
592
Avi Kivity6aa8b732006-12-10 02:21:36 -0800593static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
594{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000595 vcpu->arch.efer = efer;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100596 if (!npt_enabled && !(efer & EFER_LMA))
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -0600597 efer &= ~EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800598
Alexander Graf9962d032008-11-25 20:17:02 +0100599 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100600 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800601}
602
Avi Kivity6aa8b732006-12-10 02:21:36 -0800603static int is_external_interrupt(u32 info)
604{
605 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
606 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
607}
608
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200609static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400610{
611 struct vcpu_svm *svm = to_svm(vcpu);
612 u32 ret = 0;
613
614 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200615 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
616 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400617}
618
619static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
620{
621 struct vcpu_svm *svm = to_svm(vcpu);
622
623 if (mask == 0)
624 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
625 else
626 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
627
628}
629
Avi Kivity6aa8b732006-12-10 02:21:36 -0800630static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
631{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400632 struct vcpu_svm *svm = to_svm(vcpu);
633
Bandan Dasf1047652015-06-11 02:05:33 -0400634 if (svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200635 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200636 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400637 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200638
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400639 if (!svm->next_rip) {
Andre Przywara51d8b662010-12-21 11:12:02 +0100640 if (emulate_instruction(vcpu, EMULTYPE_SKIP) !=
Gleb Natapovf629cf82009-05-11 13:35:49 +0300641 EMULATE_DONE)
642 printk(KERN_DEBUG "%s: NOP\n", __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800643 return;
644 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300645 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
646 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
647 __func__, kvm_rip_read(vcpu), svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800648
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300649 kvm_rip_write(vcpu, svm->next_rip);
Glauber Costa2809f5d2009-05-12 16:21:05 -0400650 svm_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800651}
652
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700653static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100654{
655 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700656 unsigned nr = vcpu->arch.exception.nr;
657 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700658 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700659 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100660
Joerg Roedele0231712010-02-24 18:59:10 +0100661 /*
662 * If we are within a nested VM we'd better #VMEXIT and let the guest
663 * handle the exception
664 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200665 if (!reinject &&
666 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100667 return;
668
Avi Kivity2a6b20b2010-11-09 16:15:42 +0200669 if (nr == BP_VECTOR && !static_cpu_has(X86_FEATURE_NRIPS)) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100670 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
671
672 /*
673 * For guest debugging where we have to reinject #BP if some
674 * INT3 is guest-owned:
675 * Emulate nRIP by moving RIP forward. Will fail if injection
676 * raises a fault that is not intercepted. Still better than
677 * failing in all cases.
678 */
679 skip_emulated_instruction(&svm->vcpu);
680 rip = kvm_rip_read(&svm->vcpu);
681 svm->int3_rip = rip + svm->vmcb->save.cs.base;
682 svm->int3_injected = rip - old_rip;
683 }
684
Jan Kiszka116a4752010-02-23 17:47:54 +0100685 svm->vmcb->control.event_inj = nr
686 | SVM_EVTINJ_VALID
687 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
688 | SVM_EVTINJ_TYPE_EXEPT;
689 svm->vmcb->control.event_inj_err = error_code;
690}
691
Joerg Roedel67ec6602010-05-17 14:43:35 +0200692static void svm_init_erratum_383(void)
693{
694 u32 low, high;
695 int err;
696 u64 val;
697
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100698 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200699 return;
700
701 /* Use _safe variants to not break nested virtualization */
702 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
703 if (err)
704 return;
705
706 val |= (1ULL << 47);
707
708 low = lower_32_bits(val);
709 high = upper_32_bits(val);
710
711 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
712
713 erratum_383_found = true;
714}
715
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500716static void svm_init_osvw(struct kvm_vcpu *vcpu)
717{
718 /*
719 * Guests should see errata 400 and 415 as fixed (assuming that
720 * HLT and IO instructions are intercepted).
721 */
722 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
723 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
724
725 /*
726 * By increasing VCPU's osvw.length to 3 we are telling the guest that
727 * all osvw.status bits inside that length, including bit 0 (which is
728 * reserved for erratum 298), are valid. However, if host processor's
729 * osvw_len is 0 then osvw_status[0] carries no information. We need to
730 * be conservative here and therefore we tell the guest that erratum 298
731 * is present (because we really don't know).
732 */
733 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
734 vcpu->arch.osvw.status |= 1;
735}
736
Avi Kivity6aa8b732006-12-10 02:21:36 -0800737static int has_svm(void)
738{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200739 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800740
Eduardo Habkost63d11422008-11-17 19:03:20 -0200741 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800742 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800743 return 0;
744 }
745
Avi Kivity6aa8b732006-12-10 02:21:36 -0800746 return 1;
747}
748
Radim Krčmář13a34e02014-08-28 15:13:03 +0200749static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800750{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100751 /* Make sure we clean up behind us */
752 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
753 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
754
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200755 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100756
757 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800758}
759
Radim Krčmář13a34e02014-08-28 15:13:03 +0200760static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800761{
762
Tejun Heo0fe1e002009-10-29 22:34:14 +0900763 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800764 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800765 struct desc_struct *gdt;
766 int me = raw_smp_processor_id();
767
Alexander Graf10474ae2009-09-15 11:37:46 +0200768 rdmsrl(MSR_EFER, efer);
769 if (efer & EFER_SVME)
770 return -EBUSY;
771
Avi Kivity6aa8b732006-12-10 02:21:36 -0800772 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200773 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200774 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800775 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900776 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900777 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200778 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200779 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800780 }
781
Tejun Heo0fe1e002009-10-29 22:34:14 +0900782 sd->asid_generation = 1;
783 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
784 sd->next_asid = sd->max_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800785
Thomas Garnier45fc8752017-03-14 10:05:08 -0700786 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900787 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800788
Alexander Graf9962d032008-11-25 20:17:02 +0100789 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800790
Linus Torvaldsd0316552009-12-14 09:58:24 -0800791 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200792
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100793 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
794 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500795 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100796 }
797
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500798
799 /*
800 * Get OSVW bits.
801 *
802 * Note that it is possible to have a system with mixed processor
803 * revisions and therefore different OSVW bits. If bits are not the same
804 * on different processors then choose the worst case (i.e. if erratum
805 * is present on one processor and not on another then assume that the
806 * erratum is present everywhere).
807 */
808 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
809 uint64_t len, status = 0;
810 int err;
811
812 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
813 if (!err)
814 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
815 &err);
816
817 if (err)
818 osvw_status = osvw_len = 0;
819 else {
820 if (len < osvw_len)
821 osvw_len = len;
822 osvw_status |= status;
823 osvw_status &= (1ULL << osvw_len) - 1;
824 }
825 } else
826 osvw_status = osvw_len = 0;
827
Joerg Roedel67ec6602010-05-17 14:43:35 +0200828 svm_init_erratum_383();
829
Joerg Roedel1018faa2012-02-29 14:57:32 +0100830 amd_pmu_enable_virt();
831
Alexander Graf10474ae2009-09-15 11:37:46 +0200832 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800833}
834
Joerg Roedel0da1db752008-07-02 16:02:11 +0200835static void svm_cpu_uninit(int cpu)
836{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900837 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200838
Tejun Heo0fe1e002009-10-29 22:34:14 +0900839 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200840 return;
841
842 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900843 __free_page(sd->save_area);
844 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200845}
846
Avi Kivity6aa8b732006-12-10 02:21:36 -0800847static int svm_cpu_init(int cpu)
848{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900849 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800850 int r;
851
Tejun Heo0fe1e002009-10-29 22:34:14 +0900852 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
853 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800854 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900855 sd->cpu = cpu;
856 sd->save_area = alloc_page(GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800857 r = -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900858 if (!sd->save_area)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800859 goto err_1;
860
Tejun Heo0fe1e002009-10-29 22:34:14 +0900861 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800862
863 return 0;
864
865err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +0900866 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800867 return r;
868
869}
870
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100871static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800872{
873 int i;
874
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100875 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
876 if (direct_access_msrs[i].index == index)
877 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800878
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100879 return false;
880}
881
Avi Kivity6aa8b732006-12-10 02:21:36 -0800882static void set_msr_interception(u32 *msrpm, unsigned msr,
883 int read, int write)
884{
Joerg Roedel455716f2010-03-01 15:34:35 +0100885 u8 bit_read, bit_write;
886 unsigned long tmp;
887 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800888
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100889 /*
890 * If this warning triggers extend the direct_access_msrs list at the
891 * beginning of the file
892 */
893 WARN_ON(!valid_msr_intercept(msr));
894
Joerg Roedel455716f2010-03-01 15:34:35 +0100895 offset = svm_msrpm_offset(msr);
896 bit_read = 2 * (msr & 0x0f);
897 bit_write = 2 * (msr & 0x0f) + 1;
898 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800899
Joerg Roedel455716f2010-03-01 15:34:35 +0100900 BUG_ON(offset == MSR_INVALID);
901
902 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
903 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
904
905 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906}
907
Joerg Roedelf65c2292008-02-13 18:58:46 +0100908static void svm_vcpu_init_msrpm(u32 *msrpm)
909{
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100910 int i;
911
Joerg Roedelf65c2292008-02-13 18:58:46 +0100912 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
913
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100914 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
915 if (!direct_access_msrs[i].always)
916 continue;
917
918 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
919 }
Joerg Roedelf65c2292008-02-13 18:58:46 +0100920}
921
Joerg Roedel323c3d82010-03-01 15:34:37 +0100922static void add_msr_offset(u32 offset)
923{
924 int i;
925
926 for (i = 0; i < MSRPM_OFFSETS; ++i) {
927
928 /* Offset already in list? */
929 if (msrpm_offsets[i] == offset)
930 return;
931
932 /* Slot used by another offset? */
933 if (msrpm_offsets[i] != MSR_INVALID)
934 continue;
935
936 /* Add offset to list */
937 msrpm_offsets[i] = offset;
938
939 return;
940 }
941
942 /*
943 * If this BUG triggers the msrpm_offsets table has an overflow. Just
944 * increase MSRPM_OFFSETS in this case.
945 */
946 BUG();
947}
948
949static void init_msrpm_offsets(void)
950{
951 int i;
952
953 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
954
955 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
956 u32 offset;
957
958 offset = svm_msrpm_offset(direct_access_msrs[i].index);
959 BUG_ON(offset == MSR_INVALID);
960
961 add_msr_offset(offset);
962 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963}
964
Joerg Roedel24e09cb2008-02-13 18:58:47 +0100965static void svm_enable_lbrv(struct vcpu_svm *svm)
966{
967 u32 *msrpm = svm->msrpm;
968
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500969 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +0100970 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
971 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
972 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
973 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
974}
975
976static void svm_disable_lbrv(struct vcpu_svm *svm)
977{
978 u32 *msrpm = svm->msrpm;
979
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500980 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +0100981 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
982 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
983 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
984 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
985}
986
Ladi Prosek4aebd0e2017-06-21 09:06:57 +0200987static void disable_nmi_singlestep(struct vcpu_svm *svm)
988{
989 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500990
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200991 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
992 /* Clear our flags if they were not set by the guest */
993 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
994 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
995 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
996 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
997 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +0200998}
999
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001000/* Note:
1001 * This hash table is used to map VM_ID to a struct kvm_arch,
1002 * when handling AMD IOMMU GALOG notification to schedule in
1003 * a particular vCPU.
1004 */
1005#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001006static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001007static u32 next_vm_id = 0;
1008static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001009static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001010
1011/* Note:
1012 * This function is called from IOMMU driver to notify
1013 * SVM to schedule in a particular vCPU of a particular VM.
1014 */
1015static int avic_ga_log_notifier(u32 ga_tag)
1016{
1017 unsigned long flags;
1018 struct kvm_arch *ka = NULL;
1019 struct kvm_vcpu *vcpu = NULL;
1020 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1021 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1022
1023 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1024
1025 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
1026 hash_for_each_possible(svm_vm_data_hash, ka, hnode, vm_id) {
1027 struct kvm *kvm = container_of(ka, struct kvm, arch);
1028 struct kvm_arch *vm_data = &kvm->arch;
1029
1030 if (vm_data->avic_vm_id != vm_id)
1031 continue;
1032 vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
1033 break;
1034 }
1035 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1036
1037 if (!vcpu)
1038 return 0;
1039
1040 /* Note:
1041 * At this point, the IOMMU should have already set the pending
1042 * bit in the vAPIC backing page. So, we just need to schedule
1043 * in the vcpu.
1044 */
1045 if (vcpu->mode == OUTSIDE_GUEST_MODE)
1046 kvm_vcpu_wake_up(vcpu);
1047
1048 return 0;
1049}
1050
Avi Kivity6aa8b732006-12-10 02:21:36 -08001051static __init int svm_hardware_setup(void)
1052{
1053 int cpu;
1054 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001055 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001056 int r;
1057
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1059
1060 if (!iopm_pages)
1061 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001062
1063 iopm_va = page_address(iopm_pages);
1064 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001065 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1066
Joerg Roedel323c3d82010-03-01 15:34:37 +01001067 init_msrpm_offsets();
1068
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001069 if (boot_cpu_has(X86_FEATURE_NX))
1070 kvm_enable_efer_bits(EFER_NX);
1071
Alexander Graf1b2fd702009-02-02 16:23:51 +01001072 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1073 kvm_enable_efer_bits(EFER_FFXSR);
1074
Joerg Roedel92a1f122011-03-25 09:44:51 +01001075 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001076 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001077 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1078 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001079 }
1080
Alexander Graf236de052008-11-25 20:17:10 +01001081 if (nested) {
1082 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001083 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001084 }
1085
Zachary Amsden3230bb42009-09-29 11:38:37 -10001086 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001087 r = svm_cpu_init(cpu);
1088 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001089 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001090 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001091
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001092 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001093 npt_enabled = false;
1094
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001095 if (npt_enabled && !npt) {
1096 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1097 npt_enabled = false;
1098 }
1099
Joerg Roedel18552672008-02-07 13:47:41 +01001100 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001101 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001102 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001103 } else
1104 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001105
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001106 if (avic) {
1107 if (!npt_enabled ||
1108 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001109 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001110 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001111 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001112 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001113
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001114 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1115 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001116 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001117
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001118 if (vls) {
1119 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001120 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001121 !IS_ENABLED(CONFIG_X86_64)) {
1122 vls = false;
1123 } else {
1124 pr_info("Virtual VMLOAD VMSAVE supported\n");
1125 }
1126 }
1127
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001128 if (vgif) {
1129 if (!boot_cpu_has(X86_FEATURE_VGIF))
1130 vgif = false;
1131 else
1132 pr_info("Virtual GIF supported\n");
1133 }
1134
Avi Kivity6aa8b732006-12-10 02:21:36 -08001135 return 0;
1136
Joerg Roedelf65c2292008-02-13 18:58:46 +01001137err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001138 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1139 iopm_base = 0;
1140 return r;
1141}
1142
1143static __exit void svm_hardware_unsetup(void)
1144{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001145 int cpu;
1146
Zachary Amsden3230bb42009-09-29 11:38:37 -10001147 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001148 svm_cpu_uninit(cpu);
1149
Avi Kivity6aa8b732006-12-10 02:21:36 -08001150 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001151 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001152}
1153
1154static void init_seg(struct vmcb_seg *seg)
1155{
1156 seg->selector = 0;
1157 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001158 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001159 seg->limit = 0xffff;
1160 seg->base = 0;
1161}
1162
1163static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1164{
1165 seg->selector = 0;
1166 seg->attrib = SVM_SELECTOR_P_MASK | type;
1167 seg->limit = 0xffff;
1168 seg->base = 0;
1169}
1170
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001171static void svm_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1172{
1173 struct vcpu_svm *svm = to_svm(vcpu);
1174 u64 g_tsc_offset = 0;
1175
Joerg Roedel20307532010-11-29 17:51:48 +01001176 if (is_guest_mode(vcpu)) {
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001177 g_tsc_offset = svm->vmcb->control.tsc_offset -
1178 svm->nested.hsave->control.tsc_offset;
1179 svm->nested.hsave->control.tsc_offset = offset;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09001180 } else
1181 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1182 svm->vmcb->control.tsc_offset,
1183 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001184
1185 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001186
1187 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001188}
1189
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001190static void avic_init_vmcb(struct vcpu_svm *svm)
1191{
1192 struct vmcb *vmcb = svm->vmcb;
1193 struct kvm_arch *vm_data = &svm->vcpu.kvm->arch;
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001194 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
1195 phys_addr_t lpa = __sme_set(page_to_phys(vm_data->avic_logical_id_table_page));
1196 phys_addr_t ppa = __sme_set(page_to_phys(vm_data->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001197
1198 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1199 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1200 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1201 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1202 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
1203 svm->vcpu.arch.apicv_active = true;
1204}
1205
Paolo Bonzini56908912015-10-19 11:30:19 +02001206static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001207{
Joerg Roedele6101a92008-02-13 18:58:45 +01001208 struct vmcb_control_area *control = &svm->vmcb->control;
1209 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001210
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001211 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001212
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001213 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1214 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1215 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1216 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1217 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1218 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001219 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1220 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001221
Paolo Bonzini5315c712014-03-03 13:08:29 +01001222 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001223
Joerg Roedel18c918c2010-11-30 18:03:59 +01001224 set_exception_intercept(svm, PF_VECTOR);
1225 set_exception_intercept(svm, UD_VECTOR);
1226 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001227 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001228 set_exception_intercept(svm, DB_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001229
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001230 set_intercept(svm, INTERCEPT_INTR);
1231 set_intercept(svm, INTERCEPT_NMI);
1232 set_intercept(svm, INTERCEPT_SMI);
1233 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001234 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001235 set_intercept(svm, INTERCEPT_CPUID);
1236 set_intercept(svm, INTERCEPT_INVD);
1237 set_intercept(svm, INTERCEPT_HLT);
1238 set_intercept(svm, INTERCEPT_INVLPG);
1239 set_intercept(svm, INTERCEPT_INVLPGA);
1240 set_intercept(svm, INTERCEPT_IOIO_PROT);
1241 set_intercept(svm, INTERCEPT_MSR_PROT);
1242 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1243 set_intercept(svm, INTERCEPT_SHUTDOWN);
1244 set_intercept(svm, INTERCEPT_VMRUN);
1245 set_intercept(svm, INTERCEPT_VMMCALL);
1246 set_intercept(svm, INTERCEPT_VMLOAD);
1247 set_intercept(svm, INTERCEPT_VMSAVE);
1248 set_intercept(svm, INTERCEPT_STGI);
1249 set_intercept(svm, INTERCEPT_CLGI);
1250 set_intercept(svm, INTERCEPT_SKINIT);
1251 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001252 set_intercept(svm, INTERCEPT_XSETBV);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001253
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001254 if (!kvm_mwait_in_guest()) {
1255 set_intercept(svm, INTERCEPT_MONITOR);
1256 set_intercept(svm, INTERCEPT_MWAIT);
1257 }
1258
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001259 control->iopm_base_pa = __sme_set(iopm_base);
1260 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001261 control->int_ctl = V_INTR_MASKING_MASK;
1262
1263 init_seg(&save->es);
1264 init_seg(&save->ss);
1265 init_seg(&save->ds);
1266 init_seg(&save->fs);
1267 init_seg(&save->gs);
1268
1269 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001270 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001271 /* Executable/Readable Code Segment */
1272 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1273 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1274 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001275
1276 save->gdtr.limit = 0xffff;
1277 save->idtr.limit = 0xffff;
1278
1279 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1280 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1281
Paolo Bonzini56908912015-10-19 11:30:19 +02001282 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001283 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001284 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001285 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001286 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001287
Joerg Roedele0231712010-02-24 18:59:10 +01001288 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001289 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001290 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001291 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001292 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001293 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001294
Rusty Russell66aee912007-07-17 23:34:16 +10001295 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001296 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001297
1298 if (npt_enabled) {
1299 /* Setup VMCB for Nested Paging */
1300 control->nested_ctl = 1;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001301 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001302 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001303 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1304 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001305 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001306 save->cr3 = 0;
1307 save->cr4 = 0;
1308 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001309 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001310
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001311 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001312 svm->vcpu.arch.hflags = 0;
1313
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001314 if (boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
Mark Langsdorf565d0992009-10-06 14:25:02 -05001315 control->pause_filter_count = 3000;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001316 set_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001317 }
1318
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001319 if (avic)
1320 avic_init_vmcb(svm);
1321
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001322 /*
1323 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1324 * in VMCB and clear intercepts to avoid #VMEXIT.
1325 */
1326 if (vls) {
1327 clr_intercept(svm, INTERCEPT_VMLOAD);
1328 clr_intercept(svm, INTERCEPT_VMSAVE);
1329 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1330 }
1331
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001332 if (vgif) {
1333 clr_intercept(svm, INTERCEPT_STGI);
1334 clr_intercept(svm, INTERCEPT_CLGI);
1335 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1336 }
1337
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001338 mark_all_dirty(svm->vmcb);
1339
Joerg Roedel2af91942009-08-07 11:49:28 +02001340 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001341
1342}
1343
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001344static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1345 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001346{
1347 u64 *avic_physical_id_table;
1348 struct kvm_arch *vm_data = &vcpu->kvm->arch;
1349
1350 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1351 return NULL;
1352
1353 avic_physical_id_table = page_address(vm_data->avic_physical_id_table_page);
1354
1355 return &avic_physical_id_table[index];
1356}
1357
1358/**
1359 * Note:
1360 * AVIC hardware walks the nested page table to check permissions,
1361 * but does not use the SPA address specified in the leaf page
1362 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1363 * field of the VMCB. Therefore, we set up the
1364 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1365 */
1366static int avic_init_access_page(struct kvm_vcpu *vcpu)
1367{
1368 struct kvm *kvm = vcpu->kvm;
1369 int ret;
1370
1371 if (kvm->arch.apic_access_page_done)
1372 return 0;
1373
1374 ret = x86_set_memory_region(kvm,
1375 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1376 APIC_DEFAULT_PHYS_BASE,
1377 PAGE_SIZE);
1378 if (ret)
1379 return ret;
1380
1381 kvm->arch.apic_access_page_done = true;
1382 return 0;
1383}
1384
1385static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1386{
1387 int ret;
1388 u64 *entry, new_entry;
1389 int id = vcpu->vcpu_id;
1390 struct vcpu_svm *svm = to_svm(vcpu);
1391
1392 ret = avic_init_access_page(vcpu);
1393 if (ret)
1394 return ret;
1395
1396 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1397 return -EINVAL;
1398
1399 if (!svm->vcpu.arch.apic->regs)
1400 return -EINVAL;
1401
1402 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1403
1404 /* Setting AVIC backing page address in the phy APIC ID table */
1405 entry = avic_get_physical_id_entry(vcpu, id);
1406 if (!entry)
1407 return -EINVAL;
1408
1409 new_entry = READ_ONCE(*entry);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001410 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1411 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1412 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001413 WRITE_ONCE(*entry, new_entry);
1414
1415 svm->avic_physical_id_cache = entry;
1416
1417 return 0;
1418}
1419
1420static void avic_vm_destroy(struct kvm *kvm)
1421{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001422 unsigned long flags;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001423 struct kvm_arch *vm_data = &kvm->arch;
1424
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001425 if (!avic)
1426 return;
1427
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001428 if (vm_data->avic_logical_id_table_page)
1429 __free_page(vm_data->avic_logical_id_table_page);
1430 if (vm_data->avic_physical_id_table_page)
1431 __free_page(vm_data->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001432
1433 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
1434 hash_del(&vm_data->hnode);
1435 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001436}
1437
1438static int avic_vm_init(struct kvm *kvm)
1439{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001440 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001441 int err = -ENOMEM;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001442 struct kvm_arch *vm_data = &kvm->arch;
1443 struct page *p_page;
1444 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001445 struct kvm_arch *ka;
1446 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001447
1448 if (!avic)
1449 return 0;
1450
1451 /* Allocating physical APIC ID table (4KB) */
1452 p_page = alloc_page(GFP_KERNEL);
1453 if (!p_page)
1454 goto free_avic;
1455
1456 vm_data->avic_physical_id_table_page = p_page;
1457 clear_page(page_address(p_page));
1458
1459 /* Allocating logical APIC ID table (4KB) */
1460 l_page = alloc_page(GFP_KERNEL);
1461 if (!l_page)
1462 goto free_avic;
1463
1464 vm_data->avic_logical_id_table_page = l_page;
1465 clear_page(page_address(l_page));
1466
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001467 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001468 again:
1469 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1470 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1471 next_vm_id_wrapped = 1;
1472 goto again;
1473 }
1474 /* Is it still in use? Only possible if wrapped at least once */
1475 if (next_vm_id_wrapped) {
1476 hash_for_each_possible(svm_vm_data_hash, ka, hnode, vm_id) {
1477 struct kvm *k2 = container_of(ka, struct kvm, arch);
1478 struct kvm_arch *vd2 = &k2->arch;
1479 if (vd2->avic_vm_id == vm_id)
1480 goto again;
1481 }
1482 }
1483 vm_data->avic_vm_id = vm_id;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001484 hash_add(svm_vm_data_hash, &vm_data->hnode, vm_data->avic_vm_id);
1485 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1486
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001487 return 0;
1488
1489free_avic:
1490 avic_vm_destroy(kvm);
1491 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001492}
1493
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001494static inline int
1495avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001496{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001497 int ret = 0;
1498 unsigned long flags;
1499 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001500 struct vcpu_svm *svm = to_svm(vcpu);
1501
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001502 if (!kvm_arch_has_assigned_device(vcpu->kvm))
1503 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001504
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001505 /*
1506 * Here, we go through the per-vcpu ir_list to update all existing
1507 * interrupt remapping table entry targeting this vcpu.
1508 */
1509 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001510
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001511 if (list_empty(&svm->ir_list))
1512 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001513
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001514 list_for_each_entry(ir, &svm->ir_list, node) {
1515 ret = amd_iommu_update_ga(cpu, r, ir->data);
1516 if (ret)
1517 break;
1518 }
1519out:
1520 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
1521 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001522}
1523
1524static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1525{
1526 u64 entry;
1527 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05001528 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001529 struct vcpu_svm *svm = to_svm(vcpu);
1530
1531 if (!kvm_vcpu_apicv_active(vcpu))
1532 return;
1533
1534 if (WARN_ON(h_physical_id >= AVIC_MAX_PHYSICAL_ID_COUNT))
1535 return;
1536
1537 entry = READ_ONCE(*(svm->avic_physical_id_cache));
1538 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
1539
1540 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
1541 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
1542
1543 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
1544 if (svm->avic_is_running)
1545 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
1546
1547 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001548 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
1549 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001550}
1551
1552static void avic_vcpu_put(struct kvm_vcpu *vcpu)
1553{
1554 u64 entry;
1555 struct vcpu_svm *svm = to_svm(vcpu);
1556
1557 if (!kvm_vcpu_apicv_active(vcpu))
1558 return;
1559
1560 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001561 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
1562 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
1563
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001564 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
1565 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001566}
1567
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001568/**
1569 * This function is called during VCPU halt/unhalt.
1570 */
1571static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
1572{
1573 struct vcpu_svm *svm = to_svm(vcpu);
1574
1575 svm->avic_is_running = is_run;
1576 if (is_run)
1577 avic_vcpu_load(vcpu, vcpu->cpu);
1578 else
1579 avic_vcpu_put(vcpu);
1580}
1581
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001582static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03001583{
1584 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01001585 u32 dummy;
1586 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001587
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001588 if (!init_event) {
1589 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
1590 MSR_IA32_APICBASE_ENABLE;
1591 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
1592 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
1593 }
Paolo Bonzini56908912015-10-19 11:30:19 +02001594 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02001595
Yu Zhange911eb32017-08-24 20:27:52 +08001596 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Julian Stecklina66f7b722012-12-05 15:26:19 +01001597 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001598
1599 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
1600 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03001601}
1602
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05001603static int avic_init_vcpu(struct vcpu_svm *svm)
1604{
1605 int ret;
1606
1607 if (!avic)
1608 return 0;
1609
1610 ret = avic_init_backing_page(&svm->vcpu);
1611 if (ret)
1612 return ret;
1613
1614 INIT_LIST_HEAD(&svm->ir_list);
1615 spin_lock_init(&svm->ir_list_lock);
1616
1617 return ret;
1618}
1619
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001620static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001621{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001622 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001623 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001624 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01001625 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01001626 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001627 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001628
Rusty Russellc16f8622007-07-30 21:12:19 +10001629 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001630 if (!svm) {
1631 err = -ENOMEM;
1632 goto out;
1633 }
1634
1635 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
1636 if (err)
1637 goto free_svm;
1638
Joerg Roedelf65c2292008-02-13 18:58:46 +01001639 err = -ENOMEM;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001640 page = alloc_page(GFP_KERNEL);
1641 if (!page)
1642 goto uninit;
1643
Joerg Roedelf65c2292008-02-13 18:58:46 +01001644 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1645 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001646 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01001647
1648 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1649 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001650 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001651
Alexander Grafb286d5d2008-11-25 20:17:05 +01001652 hsave_page = alloc_page(GFP_KERNEL);
1653 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001654 goto free_page3;
1655
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05001656 err = avic_init_vcpu(svm);
1657 if (err)
1658 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001659
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001660 /* We initialize this flag to true to make sure that the is_running
1661 * bit would be set the first time the vcpu is loaded.
1662 */
1663 svm->avic_is_running = true;
1664
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001665 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01001666
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001667 svm->msrpm = page_address(msrpm_pages);
1668 svm_vcpu_init_msrpm(svm->msrpm);
1669
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001670 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01001671 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01001672
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001673 svm->vmcb = page_address(page);
1674 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001675 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001676 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02001677 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001678
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05001679 svm_init_osvw(&svm->vcpu);
1680
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001681 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08001682
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001683free_page4:
1684 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001685free_page3:
1686 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
1687free_page2:
1688 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
1689free_page1:
1690 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001691uninit:
1692 kvm_vcpu_uninit(&svm->vcpu);
1693free_svm:
Rusty Russella4770342007-08-01 14:46:11 +10001694 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001695out:
1696 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001697}
1698
1699static void svm_free_vcpu(struct kvm_vcpu *vcpu)
1700{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001701 struct vcpu_svm *svm = to_svm(vcpu);
1702
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001703 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01001704 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001705 __free_page(virt_to_page(svm->nested.hsave));
1706 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001707 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10001708 kmem_cache_free(kvm_vcpu_cache, svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001709}
1710
Avi Kivity15ad7142007-07-11 18:17:21 +03001711static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001712{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001713 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03001714 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02001715
Avi Kivity0cc50642007-03-25 12:07:27 +02001716 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03001717 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001718 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02001719 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001720
Avi Kivity82ca2d12010-10-21 12:20:34 +02001721#ifdef CONFIG_X86_64
1722 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
1723#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02001724 savesegment(fs, svm->host.fs);
1725 savesegment(gs, svm->host.gs);
1726 svm->host.ldt = kvm_read_ldt();
1727
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001728 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001729 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001730
Haozhong Zhangad721882015-10-20 15:39:02 +08001731 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
1732 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
1733 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
1734 __this_cpu_write(current_tsc_ratio, tsc_ratio);
1735 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
1736 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001737 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01001738 /* This assumes that the kernel never uses MSR_TSC_AUX */
1739 if (static_cpu_has(X86_FEATURE_RDTSCP))
1740 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001741
1742 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001743}
1744
1745static void svm_vcpu_put(struct kvm_vcpu *vcpu)
1746{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001747 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001748 int i;
1749
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001750 avic_vcpu_put(vcpu);
1751
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001752 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02001753 kvm_load_ldt(svm->host.ldt);
1754#ifdef CONFIG_X86_64
1755 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07001756 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01001757 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02001758#else
Avi Kivity831ca602011-03-08 16:09:51 +02001759#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02001760 loadsegment(gs, svm->host.gs);
1761#endif
Avi Kivity831ca602011-03-08 16:09:51 +02001762#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001763 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001764 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001765}
1766
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001767static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
1768{
1769 avic_set_running(vcpu, false);
1770}
1771
1772static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
1773{
1774 avic_set_running(vcpu, true);
1775}
1776
Avi Kivity6aa8b732006-12-10 02:21:36 -08001777static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
1778{
Ladi Prosek9b611742017-06-21 09:06:59 +02001779 struct vcpu_svm *svm = to_svm(vcpu);
1780 unsigned long rflags = svm->vmcb->save.rflags;
1781
1782 if (svm->nmi_singlestep) {
1783 /* Hide our flags if they were not set by the guest */
1784 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1785 rflags &= ~X86_EFLAGS_TF;
1786 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1787 rflags &= ~X86_EFLAGS_RF;
1788 }
1789 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001790}
1791
1792static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1793{
Ladi Prosek9b611742017-06-21 09:06:59 +02001794 if (to_svm(vcpu)->nmi_singlestep)
1795 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
1796
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001797 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02001798 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001799 * (caused by either a task switch or an inter-privilege IRET),
1800 * so we do not need to update the CPL here.
1801 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001802 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001803}
1804
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001805static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
1806{
1807 switch (reg) {
1808 case VCPU_EXREG_PDPTR:
1809 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02001810 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001811 break;
1812 default:
1813 BUG();
1814 }
1815}
1816
Alexander Graff0b85052008-11-25 20:17:01 +01001817static void svm_set_vintr(struct vcpu_svm *svm)
1818{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001819 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01001820}
1821
1822static void svm_clear_vintr(struct vcpu_svm *svm)
1823{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001824 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01001825}
1826
Avi Kivity6aa8b732006-12-10 02:21:36 -08001827static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
1828{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001829 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001830
1831 switch (seg) {
1832 case VCPU_SREG_CS: return &save->cs;
1833 case VCPU_SREG_DS: return &save->ds;
1834 case VCPU_SREG_ES: return &save->es;
1835 case VCPU_SREG_FS: return &save->fs;
1836 case VCPU_SREG_GS: return &save->gs;
1837 case VCPU_SREG_SS: return &save->ss;
1838 case VCPU_SREG_TR: return &save->tr;
1839 case VCPU_SREG_LDTR: return &save->ldtr;
1840 }
1841 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00001842 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001843}
1844
1845static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1846{
1847 struct vmcb_seg *s = svm_seg(vcpu, seg);
1848
1849 return s->base;
1850}
1851
1852static void svm_get_segment(struct kvm_vcpu *vcpu,
1853 struct kvm_segment *var, int seg)
1854{
1855 struct vmcb_seg *s = svm_seg(vcpu, seg);
1856
1857 var->base = s->base;
1858 var->limit = s->limit;
1859 var->selector = s->selector;
1860 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
1861 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
1862 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
1863 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
1864 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
1865 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
1866 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05301867
1868 /*
1869 * AMD CPUs circa 2014 track the G bit for all segments except CS.
1870 * However, the SVM spec states that the G bit is not observed by the
1871 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
1872 * So let's synthesize a legal G bit for all segments, this helps
1873 * running KVM nested. It also helps cross-vendor migration, because
1874 * Intel's vmentry has a check on the 'G' bit.
1875 */
1876 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00001877
Joerg Roedele0231712010-02-24 18:59:10 +01001878 /*
1879 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02001880 * for cross vendor migration purposes by "not present"
1881 */
Gioh Kim8eae9572017-05-30 15:24:45 +02001882 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02001883
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001884 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001885 case VCPU_SREG_TR:
1886 /*
1887 * Work around a bug where the busy flag in the tr selector
1888 * isn't exposed
1889 */
Amit Shahc0d09822008-10-27 09:04:18 +00001890 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001891 break;
1892 case VCPU_SREG_DS:
1893 case VCPU_SREG_ES:
1894 case VCPU_SREG_FS:
1895 case VCPU_SREG_GS:
1896 /*
1897 * The accessed bit must always be set in the segment
1898 * descriptor cache, although it can be cleared in the
1899 * descriptor, the cached bit always remains at 1. Since
1900 * Intel has a check on this, set it here to support
1901 * cross-vendor migration.
1902 */
1903 if (!var->unusable)
1904 var->type |= 0x1;
1905 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02001906 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01001907 /*
1908 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02001909 * descriptor is left as 1, although the whole segment has
1910 * been made unusable. Clear it here to pass an Intel VMX
1911 * entry check when cross vendor migrating.
1912 */
1913 if (var->unusable)
1914 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02001915 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02001916 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02001917 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001918 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001919}
1920
Izik Eidus2e4d2652008-03-24 19:38:34 +02001921static int svm_get_cpl(struct kvm_vcpu *vcpu)
1922{
1923 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
1924
1925 return save->cpl;
1926}
1927
Gleb Natapov89a27f42010-02-16 10:51:48 +02001928static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001929{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001930 struct vcpu_svm *svm = to_svm(vcpu);
1931
Gleb Natapov89a27f42010-02-16 10:51:48 +02001932 dt->size = svm->vmcb->save.idtr.limit;
1933 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001934}
1935
Gleb Natapov89a27f42010-02-16 10:51:48 +02001936static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001937{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001938 struct vcpu_svm *svm = to_svm(vcpu);
1939
Gleb Natapov89a27f42010-02-16 10:51:48 +02001940 svm->vmcb->save.idtr.limit = dt->size;
1941 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01001942 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001943}
1944
Gleb Natapov89a27f42010-02-16 10:51:48 +02001945static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001946{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001947 struct vcpu_svm *svm = to_svm(vcpu);
1948
Gleb Natapov89a27f42010-02-16 10:51:48 +02001949 dt->size = svm->vmcb->save.gdtr.limit;
1950 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001951}
1952
Gleb Natapov89a27f42010-02-16 10:51:48 +02001953static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001954{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001955 struct vcpu_svm *svm = to_svm(vcpu);
1956
Gleb Natapov89a27f42010-02-16 10:51:48 +02001957 svm->vmcb->save.gdtr.limit = dt->size;
1958 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01001959 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001960}
1961
Avi Kivitye8467fd2009-12-29 18:43:06 +02001962static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
1963{
1964}
1965
Avi Kivityaff48ba2010-12-05 18:56:11 +02001966static void svm_decache_cr3(struct kvm_vcpu *vcpu)
1967{
1968}
1969
Anthony Liguori25c4c272007-04-27 09:29:21 +03001970static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001971{
1972}
1973
Avi Kivityd2251572010-01-06 10:55:27 +02001974static void update_cr0_intercept(struct vcpu_svm *svm)
1975{
1976 ulong gcr0 = svm->vcpu.arch.cr0;
1977 u64 *hcr0 = &svm->vmcb->save.cr0;
1978
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001979 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
1980 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02001981
Joerg Roedeldcca1a62010-12-03 11:45:54 +01001982 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02001983
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001984 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001985 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
1986 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02001987 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001988 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1989 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02001990 }
1991}
1992
Avi Kivity6aa8b732006-12-10 02:21:36 -08001993static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1994{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001995 struct vcpu_svm *svm = to_svm(vcpu);
1996
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001997#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02001998 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001999 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002000 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002001 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002002 }
2003
Mike Dayd77c26f2007-10-08 09:02:08 -04002004 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002005 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002006 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002007 }
2008 }
2009#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002010 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002011
2012 if (!npt_enabled)
2013 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002014
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002015 /*
2016 * re-enable caching here because the QEMU bios
2017 * does not do it - this results in some delay at
2018 * reboot
2019 */
2020 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2021 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002022 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002023 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002024 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002025}
2026
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002027static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002028{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002029 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002030 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2031
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002032 if (cr4 & X86_CR4_VMXE)
2033 return 1;
2034
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002035 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Joerg Roedelf40f6a42010-12-03 15:25:15 +01002036 svm_flush_tlb(vcpu);
Joerg Roedel6394b642008-04-09 14:15:29 +02002037
Joerg Roedelec077262008-04-09 14:15:28 +02002038 vcpu->arch.cr4 = cr4;
2039 if (!npt_enabled)
2040 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002041 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002042 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002043 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002044 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002045}
2046
2047static void svm_set_segment(struct kvm_vcpu *vcpu,
2048 struct kvm_segment *var, int seg)
2049{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002050 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002051 struct vmcb_seg *s = svm_seg(vcpu, seg);
2052
2053 s->base = var->base;
2054 s->limit = var->limit;
2055 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002056 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2057 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2058 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2059 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2060 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2061 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2062 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2063 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002064
2065 /*
2066 * This is always accurate, except if SYSRET returned to a segment
2067 * with SS.DPL != 3. Intel does not have this quirk, and always
2068 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2069 * would entail passing the CPL to userspace and back.
2070 */
2071 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002072 /* This is symmetric with svm_get_segment() */
2073 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002074
Joerg Roedel060d0c92010-12-03 11:45:57 +01002075 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002076}
2077
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002078static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002079{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002080 struct vcpu_svm *svm = to_svm(vcpu);
2081
Joerg Roedel18c918c2010-11-30 18:03:59 +01002082 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002083
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002084 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002085 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002086 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002087 } else
2088 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002089}
2090
Tejun Heo0fe1e002009-10-29 22:34:14 +09002091static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002092{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002093 if (sd->next_asid > sd->max_asid) {
2094 ++sd->asid_generation;
2095 sd->next_asid = 1;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002096 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002097 }
2098
Tejun Heo0fe1e002009-10-29 22:34:14 +09002099 svm->asid_generation = sd->asid_generation;
2100 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002101
2102 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002103}
2104
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002105static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2106{
2107 return to_svm(vcpu)->vmcb->save.dr6;
2108}
2109
2110static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2111{
2112 struct vcpu_svm *svm = to_svm(vcpu);
2113
2114 svm->vmcb->save.dr6 = value;
2115 mark_dirty(svm->vmcb, VMCB_DR);
2116}
2117
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002118static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2119{
2120 struct vcpu_svm *svm = to_svm(vcpu);
2121
2122 get_debugreg(vcpu->arch.db[0], 0);
2123 get_debugreg(vcpu->arch.db[1], 1);
2124 get_debugreg(vcpu->arch.db[2], 2);
2125 get_debugreg(vcpu->arch.db[3], 3);
2126 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2127 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2128
2129 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2130 set_dr_intercepts(svm);
2131}
2132
Gleb Natapov020df072010-04-13 10:05:23 +03002133static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002134{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002135 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002136
Gleb Natapov020df072010-04-13 10:05:23 +03002137 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002138 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002139}
2140
Avi Kivity851ba692009-08-24 11:10:17 +03002141static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002142{
Gleb Natapov631bc482010-10-14 11:22:52 +02002143 u64 fault_address = svm->vmcb->control.exit_info_2;
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002144 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002145
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002146 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Andre Przywaradc25e892010-12-21 11:12:07 +01002147 svm->vmcb->control.insn_bytes,
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002148 svm->vmcb->control.insn_len, !npt_enabled);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002149}
2150
Avi Kivity851ba692009-08-24 11:10:17 +03002151static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002152{
Avi Kivity851ba692009-08-24 11:10:17 +03002153 struct kvm_run *kvm_run = svm->vcpu.run;
2154
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002155 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002156 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002157 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002158 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2159 return 1;
2160 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002161
Jan Kiszka6be7d302009-10-18 13:24:54 +02002162 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002163 disable_nmi_singlestep(svm);
Gleb Natapov44c11432009-05-11 13:35:52 +03002164 }
2165
2166 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002167 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002168 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2169 kvm_run->debug.arch.pc =
2170 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2171 kvm_run->debug.arch.exception = DB_VECTOR;
2172 return 0;
2173 }
2174
2175 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002176}
2177
Avi Kivity851ba692009-08-24 11:10:17 +03002178static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002179{
Avi Kivity851ba692009-08-24 11:10:17 +03002180 struct kvm_run *kvm_run = svm->vcpu.run;
2181
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002182 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2183 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2184 kvm_run->debug.arch.exception = BP_VECTOR;
2185 return 0;
2186}
2187
Avi Kivity851ba692009-08-24 11:10:17 +03002188static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002189{
2190 int er;
2191
Andre Przywara51d8b662010-12-21 11:12:02 +01002192 er = emulate_instruction(&svm->vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002193 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002194 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002195 return 1;
2196}
2197
Eric Northup54a20552015-11-03 18:03:53 +01002198static int ac_interception(struct vcpu_svm *svm)
2199{
2200 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2201 return 1;
2202}
2203
Joerg Roedel67ec6602010-05-17 14:43:35 +02002204static bool is_erratum_383(void)
2205{
2206 int err, i;
2207 u64 value;
2208
2209 if (!erratum_383_found)
2210 return false;
2211
2212 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2213 if (err)
2214 return false;
2215
2216 /* Bit 62 may or may not be set for this mce */
2217 value &= ~(1ULL << 62);
2218
2219 if (value != 0xb600000000010015ULL)
2220 return false;
2221
2222 /* Clear MCi_STATUS registers */
2223 for (i = 0; i < 6; ++i)
2224 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2225
2226 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2227 if (!err) {
2228 u32 low, high;
2229
2230 value &= ~(1ULL << 2);
2231 low = lower_32_bits(value);
2232 high = upper_32_bits(value);
2233
2234 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2235 }
2236
2237 /* Flush tlb to evict multi-match entries */
2238 __flush_tlb_all();
2239
2240 return true;
2241}
2242
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002243static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002244{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002245 if (is_erratum_383()) {
2246 /*
2247 * Erratum 383 triggered. Guest state is corrupt so kill the
2248 * guest.
2249 */
2250 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2251
Avi Kivitya8eeb042010-05-10 12:34:53 +03002252 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002253
2254 return;
2255 }
2256
Joerg Roedel53371b52008-04-09 14:15:30 +02002257 /*
2258 * On an #MC intercept the MCE handler is not called automatically in
2259 * the host. So do it by hand here.
2260 */
2261 asm volatile (
2262 "int $0x12\n");
2263 /* not sure if we ever come back to this point */
2264
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002265 return;
2266}
2267
2268static int mc_interception(struct vcpu_svm *svm)
2269{
Joerg Roedel53371b52008-04-09 14:15:30 +02002270 return 1;
2271}
2272
Avi Kivity851ba692009-08-24 11:10:17 +03002273static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002274{
Avi Kivity851ba692009-08-24 11:10:17 +03002275 struct kvm_run *kvm_run = svm->vcpu.run;
2276
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002277 /*
2278 * VMCB is undefined after a SHUTDOWN intercept
2279 * so reinitialize it.
2280 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002281 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002282 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002283
2284 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2285 return 0;
2286}
2287
Avi Kivity851ba692009-08-24 11:10:17 +03002288static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002289{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002290 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002291 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002292 int size, in, string, ret;
Avi Kivity039576c2007-03-20 12:46:50 +02002293 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002294
Rusty Russelle756fc62007-07-30 20:07:08 +10002295 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002296 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002297 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002298 if (string)
Andre Przywara51d8b662010-12-21 11:12:02 +01002299 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002300
Avi Kivity039576c2007-03-20 12:46:50 +02002301 port = io_info >> 16;
2302 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002303 svm->next_rip = svm->vmcb->control.exit_info_2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002304 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002305
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002306 /*
2307 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
2308 * KVM_EXIT_DEBUG here.
2309 */
2310 if (in)
2311 return kvm_fast_pio_in(vcpu, size, port) && ret;
2312 else
2313 return kvm_fast_pio_out(vcpu, size, port) && ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002314}
2315
Avi Kivity851ba692009-08-24 11:10:17 +03002316static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002317{
2318 return 1;
2319}
2320
Avi Kivity851ba692009-08-24 11:10:17 +03002321static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002322{
2323 ++svm->vcpu.stat.irq_exits;
2324 return 1;
2325}
2326
Avi Kivity851ba692009-08-24 11:10:17 +03002327static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002328{
2329 return 1;
2330}
2331
Avi Kivity851ba692009-08-24 11:10:17 +03002332static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002333{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002334 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002335 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336}
2337
Avi Kivity851ba692009-08-24 11:10:17 +03002338static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002339{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002340 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002341 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002342}
2343
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002344static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2345{
2346 struct vcpu_svm *svm = to_svm(vcpu);
2347
2348 return svm->nested.nested_cr3;
2349}
2350
Avi Kivitye4e517b2011-07-28 11:36:17 +03002351static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2352{
2353 struct vcpu_svm *svm = to_svm(vcpu);
2354 u64 cr3 = svm->nested.nested_cr3;
2355 u64 pdpte;
2356 int ret;
2357
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002358 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002359 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002360 if (ret)
2361 return 0;
2362 return pdpte;
2363}
2364
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002365static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2366 unsigned long root)
2367{
2368 struct vcpu_svm *svm = to_svm(vcpu);
2369
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002370 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002371 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedelf40f6a42010-12-03 15:25:15 +01002372 svm_flush_tlb(vcpu);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002373}
2374
Avi Kivity6389ee92010-11-29 16:12:30 +02002375static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2376 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002377{
2378 struct vcpu_svm *svm = to_svm(vcpu);
2379
Paolo Bonzini5e352512014-09-02 13:18:37 +02002380 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2381 /*
2382 * TODO: track the cause of the nested page fault, and
2383 * correctly fill in the high bits of exit_info_1.
2384 */
2385 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2386 svm->vmcb->control.exit_code_hi = 0;
2387 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2388 svm->vmcb->control.exit_info_2 = fault->address;
2389 }
2390
2391 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2392 svm->vmcb->control.exit_info_1 |= fault->error_code;
2393
2394 /*
2395 * The present bit is always zero for page structure faults on real
2396 * hardware.
2397 */
2398 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2399 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002400
2401 nested_svm_vmexit(svm);
2402}
2403
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002404static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002405{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002406 WARN_ON(mmu_is_nested(vcpu));
2407 kvm_init_shadow_mmu(vcpu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002408 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2409 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03002410 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
Joerg Roedel4b161842010-09-10 17:31:03 +02002411 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
Yu Zhang855feb62017-08-24 20:27:55 +08002412 vcpu->arch.mmu.shadow_root_level = get_npt_level(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08002413 reset_shadow_zero_bits_mask(vcpu, &vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002414 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002415}
2416
2417static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2418{
2419 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
2420}
2421
Alexander Grafc0725422008-11-25 20:17:03 +01002422static int nested_svm_check_permissions(struct vcpu_svm *svm)
2423{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002424 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2425 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01002426 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2427 return 1;
2428 }
2429
2430 if (svm->vmcb->save.cpl) {
2431 kvm_inject_gp(&svm->vcpu, 0);
2432 return 1;
2433 }
2434
Dan Carpentere9196ce2017-05-18 10:39:53 +03002435 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01002436}
2437
Alexander Grafcf74a782008-11-25 20:17:08 +01002438static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2439 bool has_error_code, u32 error_code)
2440{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002441 int vmexit;
2442
Joerg Roedel20307532010-11-29 17:51:48 +01002443 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02002444 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01002445
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002446 vmexit = nested_svm_intercept(svm);
2447 if (vmexit != NESTED_EXIT_DONE)
2448 return 0;
2449
Joerg Roedel0295ad72009-08-07 11:49:37 +02002450 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2451 svm->vmcb->control.exit_code_hi = 0;
2452 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002453
2454 /*
2455 * FIXME: we should not write CR2 when L1 intercepts an L2 #PF exception.
2456 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2457 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6 can be
2458 * written only when inject_pending_event runs (DR6 would written here
2459 * too). This should be conditional on a new capability---if the
2460 * capability is disabled, kvm_multiple_exception would write the
2461 * ancillary information to CR2 or DR6, for backwards ABI-compatibility.
2462 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002463 if (svm->vcpu.arch.exception.nested_apf)
2464 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
2465 else
2466 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02002467
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002468 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002469 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01002470}
2471
Joerg Roedel8fe54652010-02-19 16:23:01 +01002472/* This function returns true if it is save to enable the irq window */
2473static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002474{
Joerg Roedel20307532010-11-29 17:51:48 +01002475 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002476 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002477
Joerg Roedel26666952009-08-07 11:49:46 +02002478 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002479 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002480
Joerg Roedel26666952009-08-07 11:49:46 +02002481 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01002482 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01002483
Gleb Natapova0a07cd2010-09-20 10:15:32 +02002484 /*
2485 * if vmexit was already requested (by intercepted exception
2486 * for instance) do not overwrite it with "external interrupt"
2487 * vmexit.
2488 */
2489 if (svm->nested.exit_required)
2490 return false;
2491
Joerg Roedel197717d2010-02-24 18:59:19 +01002492 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
2493 svm->vmcb->control.exit_info_1 = 0;
2494 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02002495
Joerg Roedelcd3ff652009-10-09 16:08:26 +02002496 if (svm->nested.intercept & 1ULL) {
2497 /*
2498 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08002499 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02002500 * #vmexit emulation might sleep. Only signal request for
2501 * the #vmexit here.
2502 */
2503 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02002504 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01002505 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01002506 }
2507
Joerg Roedel8fe54652010-02-19 16:23:01 +01002508 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01002509}
2510
Joerg Roedel887f5002010-02-24 18:59:12 +01002511/* This function returns true if it is save to enable the nmi window */
2512static inline bool nested_svm_nmi(struct vcpu_svm *svm)
2513{
Joerg Roedel20307532010-11-29 17:51:48 +01002514 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01002515 return true;
2516
2517 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
2518 return true;
2519
2520 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
2521 svm->nested.exit_required = true;
2522
2523 return false;
2524}
2525
Joerg Roedel7597f122010-02-19 16:23:00 +01002526static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002527{
2528 struct page *page;
2529
Joerg Roedel6c3bd3d2010-02-19 16:23:04 +01002530 might_sleep();
2531
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002532 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002533 if (is_error_page(page))
2534 goto error;
2535
Joerg Roedel7597f122010-02-19 16:23:00 +01002536 *_page = page;
2537
2538 return kmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002539
2540error:
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002541 kvm_inject_gp(&svm->vcpu, 0);
2542
2543 return NULL;
2544}
2545
Joerg Roedel7597f122010-02-19 16:23:00 +01002546static void nested_svm_unmap(struct page *page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002547{
Joerg Roedel7597f122010-02-19 16:23:00 +01002548 kunmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002549 kvm_release_page_dirty(page);
2550}
2551
Joerg Roedelce2ac082010-03-01 15:34:39 +01002552static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002553{
Jan Kiszka9bf41832014-06-30 10:54:17 +02002554 unsigned port, size, iopm_len;
2555 u16 val, mask;
2556 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002557 u64 gpa;
2558
2559 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
2560 return NESTED_EXIT_HOST;
2561
2562 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02002563 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
2564 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002565 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02002566 start_bit = port % 8;
2567 iopm_len = (start_bit + size > 8) ? 2 : 1;
2568 mask = (0xf >> (4 - size)) << start_bit;
2569 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002570
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002571 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02002572 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002573
Jan Kiszka9bf41832014-06-30 10:54:17 +02002574 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002575}
2576
Joerg Roedeld2477822010-03-01 15:34:34 +01002577static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002578{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002579 u32 offset, msr, value;
2580 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002581
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02002582 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01002583 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02002584
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002585 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
2586 offset = svm_msrpm_offset(msr);
2587 write = svm->vmcb->control.exit_info_1 & 1;
2588 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02002589
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002590 if (offset == MSR_INVALID)
2591 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002592
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002593 /* Offset is in 32 bit units but need in 8 bit units */
2594 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002595
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002596 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002597 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02002598
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002599 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002600}
2601
Ladi Prosekab2f4d732017-06-21 09:06:58 +02002602/* DB exceptions for our internal use must not cause vmexit */
2603static int nested_svm_intercept_db(struct vcpu_svm *svm)
2604{
2605 unsigned long dr6;
2606
2607 /* if we're not singlestepping, it's not ours */
2608 if (!svm->nmi_singlestep)
2609 return NESTED_EXIT_DONE;
2610
2611 /* if it's not a singlestep exception, it's not ours */
2612 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
2613 return NESTED_EXIT_DONE;
2614 if (!(dr6 & DR6_BS))
2615 return NESTED_EXIT_DONE;
2616
2617 /* if the guest is singlestepping, it should get the vmexit */
2618 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
2619 disable_nmi_singlestep(svm);
2620 return NESTED_EXIT_DONE;
2621 }
2622
2623 /* it's ours, the nested hypervisor must not see this one */
2624 return NESTED_EXIT_HOST;
2625}
2626
Joerg Roedel410e4d52009-08-07 11:49:44 +02002627static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002628{
Alexander Grafcf74a782008-11-25 20:17:08 +01002629 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02002630
Joerg Roedel410e4d52009-08-07 11:49:44 +02002631 switch (exit_code) {
2632 case SVM_EXIT_INTR:
2633 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02002634 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02002635 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02002636 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01002637 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02002638 if (npt_enabled)
2639 return NESTED_EXIT_HOST;
2640 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02002641 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02002642 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002643 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02002644 return NESTED_EXIT_HOST;
2645 break;
2646 default:
2647 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01002648 }
2649
Joerg Roedel410e4d52009-08-07 11:49:44 +02002650 return NESTED_EXIT_CONTINUE;
2651}
2652
2653/*
2654 * If this function returns true, this #vmexit was already handled
2655 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002656static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02002657{
2658 u32 exit_code = svm->vmcb->control.exit_code;
2659 int vmexit = NESTED_EXIT_HOST;
2660
Alexander Grafcf74a782008-11-25 20:17:08 +01002661 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02002662 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02002663 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02002664 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01002665 case SVM_EXIT_IOIO:
2666 vmexit = nested_svm_intercept_ioio(svm);
2667 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002668 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
2669 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
2670 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02002671 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01002672 break;
2673 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01002674 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
2675 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
2676 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02002677 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01002678 break;
2679 }
2680 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
2681 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02002682 if (svm->nested.intercept_exceptions & excp_bits) {
2683 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
2684 vmexit = nested_svm_intercept_db(svm);
2685 else
2686 vmexit = NESTED_EXIT_DONE;
2687 }
Gleb Natapov631bc482010-10-14 11:22:52 +02002688 /* async page fault always cause vmexit */
2689 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002690 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02002691 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01002692 break;
2693 }
Joerg Roedel228070b2010-04-22 12:33:10 +02002694 case SVM_EXIT_ERR: {
2695 vmexit = NESTED_EXIT_DONE;
2696 break;
2697 }
Alexander Grafcf74a782008-11-25 20:17:08 +01002698 default: {
2699 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02002700 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02002701 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01002702 }
2703 }
2704
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002705 return vmexit;
2706}
2707
2708static int nested_svm_exit_handled(struct vcpu_svm *svm)
2709{
2710 int vmexit;
2711
2712 vmexit = nested_svm_intercept(svm);
2713
2714 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02002715 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02002716
2717 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01002718}
2719
Joerg Roedel0460a972009-08-07 11:49:31 +02002720static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
2721{
2722 struct vmcb_control_area *dst = &dst_vmcb->control;
2723 struct vmcb_control_area *from = &from_vmcb->control;
2724
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002725 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01002726 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02002727 dst->intercept_exceptions = from->intercept_exceptions;
2728 dst->intercept = from->intercept;
2729 dst->iopm_base_pa = from->iopm_base_pa;
2730 dst->msrpm_base_pa = from->msrpm_base_pa;
2731 dst->tsc_offset = from->tsc_offset;
2732 dst->asid = from->asid;
2733 dst->tlb_ctl = from->tlb_ctl;
2734 dst->int_ctl = from->int_ctl;
2735 dst->int_vector = from->int_vector;
2736 dst->int_state = from->int_state;
2737 dst->exit_code = from->exit_code;
2738 dst->exit_code_hi = from->exit_code_hi;
2739 dst->exit_info_1 = from->exit_info_1;
2740 dst->exit_info_2 = from->exit_info_2;
2741 dst->exit_int_info = from->exit_int_info;
2742 dst->exit_int_info_err = from->exit_int_info_err;
2743 dst->nested_ctl = from->nested_ctl;
2744 dst->event_inj = from->event_inj;
2745 dst->event_inj_err = from->event_inj_err;
2746 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05002747 dst->virt_ext = from->virt_ext;
Joerg Roedel0460a972009-08-07 11:49:31 +02002748}
2749
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002750static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01002751{
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002752 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002753 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02002754 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01002755 struct page *page;
Alexander Grafcf74a782008-11-25 20:17:08 +01002756
Joerg Roedel17897f32009-10-09 16:08:29 +02002757 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
2758 vmcb->control.exit_info_1,
2759 vmcb->control.exit_info_2,
2760 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01002761 vmcb->control.exit_int_info_err,
2762 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02002763
Joerg Roedel7597f122010-02-19 16:23:00 +01002764 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02002765 if (!nested_vmcb)
2766 return 1;
2767
Joerg Roedel20307532010-11-29 17:51:48 +01002768 /* Exit Guest-Mode */
2769 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01002770 svm->nested.vmcb = 0;
2771
Alexander Grafcf74a782008-11-25 20:17:08 +01002772 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02002773 disable_gif(svm);
2774
2775 nested_vmcb->save.es = vmcb->save.es;
2776 nested_vmcb->save.cs = vmcb->save.cs;
2777 nested_vmcb->save.ss = vmcb->save.ss;
2778 nested_vmcb->save.ds = vmcb->save.ds;
2779 nested_vmcb->save.gdtr = vmcb->save.gdtr;
2780 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02002781 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01002782 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002783 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02002784 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01002785 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03002786 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02002787 nested_vmcb->save.rip = vmcb->save.rip;
2788 nested_vmcb->save.rsp = vmcb->save.rsp;
2789 nested_vmcb->save.rax = vmcb->save.rax;
2790 nested_vmcb->save.dr7 = vmcb->save.dr7;
2791 nested_vmcb->save.dr6 = vmcb->save.dr6;
2792 nested_vmcb->save.cpl = vmcb->save.cpl;
2793
2794 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
2795 nested_vmcb->control.int_vector = vmcb->control.int_vector;
2796 nested_vmcb->control.int_state = vmcb->control.int_state;
2797 nested_vmcb->control.exit_code = vmcb->control.exit_code;
2798 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
2799 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
2800 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
2801 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
2802 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02002803
2804 if (svm->nrips_enabled)
2805 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02002806
2807 /*
2808 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
2809 * to make sure that we do not lose injected events. So check event_inj
2810 * here and copy it to exit_int_info if it is valid.
2811 * Exit_int_info and event_inj can't be both valid because the case
2812 * below only happens on a VMRUN instruction intercept which has
2813 * no valid exit_int_info set.
2814 */
2815 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
2816 struct vmcb_control_area *nc = &nested_vmcb->control;
2817
2818 nc->exit_int_info = vmcb->control.event_inj;
2819 nc->exit_int_info_err = vmcb->control.event_inj_err;
2820 }
2821
Joerg Roedel33740e42009-08-07 11:49:29 +02002822 nested_vmcb->control.tlb_ctl = 0;
2823 nested_vmcb->control.event_inj = 0;
2824 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01002825
2826 /* We always set V_INTR_MASKING and remember the old value in hflags */
2827 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
2828 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
2829
Alexander Grafcf74a782008-11-25 20:17:08 +01002830 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02002831 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01002832
Alexander Graf219b65d2009-06-15 15:21:25 +02002833 kvm_clear_exception_queue(&svm->vcpu);
2834 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01002835
Joerg Roedel4b161842010-09-10 17:31:03 +02002836 svm->nested.nested_cr3 = 0;
2837
Alexander Grafcf74a782008-11-25 20:17:08 +01002838 /* Restore selected save entries */
2839 svm->vmcb->save.es = hsave->save.es;
2840 svm->vmcb->save.cs = hsave->save.cs;
2841 svm->vmcb->save.ss = hsave->save.ss;
2842 svm->vmcb->save.ds = hsave->save.ds;
2843 svm->vmcb->save.gdtr = hsave->save.gdtr;
2844 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03002845 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01002846 svm_set_efer(&svm->vcpu, hsave->save.efer);
2847 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
2848 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
2849 if (npt_enabled) {
2850 svm->vmcb->save.cr3 = hsave->save.cr3;
2851 svm->vcpu.arch.cr3 = hsave->save.cr3;
2852 } else {
Avi Kivity23902182010-06-10 17:02:16 +03002853 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01002854 }
2855 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
2856 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
2857 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
2858 svm->vmcb->save.dr7 = 0;
2859 svm->vmcb->save.cpl = 0;
2860 svm->vmcb->control.exit_int_info = 0;
2861
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002862 mark_all_dirty(svm->vmcb);
2863
Joerg Roedel7597f122010-02-19 16:23:00 +01002864 nested_svm_unmap(page);
Alexander Grafcf74a782008-11-25 20:17:08 +01002865
Joerg Roedel4b161842010-09-10 17:31:03 +02002866 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01002867 kvm_mmu_reset_context(&svm->vcpu);
2868 kvm_mmu_load(&svm->vcpu);
2869
2870 return 0;
2871}
Alexander Graf3d6368e2008-11-25 20:17:07 +01002872
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002873static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002874{
Joerg Roedel323c3d82010-03-01 15:34:37 +01002875 /*
2876 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08002877 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01002878 * the kvm msr permission bitmap may contain zero bits
2879 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01002880 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002881
Joerg Roedel323c3d82010-03-01 15:34:37 +01002882 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
2883 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002884
Joerg Roedel323c3d82010-03-01 15:34:37 +01002885 for (i = 0; i < MSRPM_OFFSETS; i++) {
2886 u32 value, p;
2887 u64 offset;
2888
2889 if (msrpm_offsets[i] == 0xffffffff)
2890 break;
2891
Joerg Roedel0d6b3532010-03-01 15:34:38 +01002892 p = msrpm_offsets[i];
2893 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002894
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002895 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01002896 return false;
2897
2898 svm->nested.msrpm[p] = svm->msrpm[p] | value;
2899 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002900
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002901 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01002902
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002903 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002904}
2905
Joerg Roedel52c65a302010-08-02 16:46:44 +02002906static bool nested_vmcb_checks(struct vmcb *vmcb)
2907{
2908 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
2909 return false;
2910
Joerg Roedeldbe77582010-08-02 16:46:45 +02002911 if (vmcb->control.asid == 0)
2912 return false;
2913
Joerg Roedel4b161842010-09-10 17:31:03 +02002914 if (vmcb->control.nested_ctl && !npt_enabled)
2915 return false;
2916
Joerg Roedel52c65a302010-08-02 16:46:44 +02002917 return true;
2918}
2919
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002920static bool nested_svm_vmrun(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002921{
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002922 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002923 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedeldefbba52009-08-07 11:49:30 +02002924 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01002925 struct page *page;
Joerg Roedel06fc77722010-02-19 16:23:07 +01002926 u64 vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002927
Joerg Roedel06fc77722010-02-19 16:23:07 +01002928 vmcb_gpa = svm->vmcb->save.rax;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002929
Joerg Roedel7597f122010-02-19 16:23:00 +01002930 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02002931 if (!nested_vmcb)
2932 return false;
2933
Joerg Roedel52c65a302010-08-02 16:46:44 +02002934 if (!nested_vmcb_checks(nested_vmcb)) {
2935 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
2936 nested_vmcb->control.exit_code_hi = 0;
2937 nested_vmcb->control.exit_info_1 = 0;
2938 nested_vmcb->control.exit_info_2 = 0;
2939
2940 nested_svm_unmap(page);
2941
2942 return false;
2943 }
2944
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02002945 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
Joerg Roedel0ac406d2009-10-09 16:08:27 +02002946 nested_vmcb->save.rip,
2947 nested_vmcb->control.int_ctl,
2948 nested_vmcb->control.event_inj,
2949 nested_vmcb->control.nested_ctl);
2950
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002951 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
2952 nested_vmcb->control.intercept_cr >> 16,
Joerg Roedel2e554e82010-02-24 18:59:14 +01002953 nested_vmcb->control.intercept_exceptions,
2954 nested_vmcb->control.intercept);
2955
Alexander Graf3d6368e2008-11-25 20:17:07 +01002956 /* Clear internal status */
Alexander Graf219b65d2009-06-15 15:21:25 +02002957 kvm_clear_exception_queue(&svm->vcpu);
2958 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002959
Joerg Roedele0231712010-02-24 18:59:10 +01002960 /*
2961 * Save the old vmcb, so we don't need to pick what we save, but can
2962 * restore everything when a VMEXIT occurs
2963 */
Joerg Roedeldefbba52009-08-07 11:49:30 +02002964 hsave->save.es = vmcb->save.es;
2965 hsave->save.cs = vmcb->save.cs;
2966 hsave->save.ss = vmcb->save.ss;
2967 hsave->save.ds = vmcb->save.ds;
2968 hsave->save.gdtr = vmcb->save.gdtr;
2969 hsave->save.idtr = vmcb->save.idtr;
Avi Kivityf6801df2010-01-21 15:31:50 +02002970 hsave->save.efer = svm->vcpu.arch.efer;
Avi Kivity4d4ec082009-12-29 18:07:30 +02002971 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
Joerg Roedeldefbba52009-08-07 11:49:30 +02002972 hsave->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03002973 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02002974 hsave->save.rip = kvm_rip_read(&svm->vcpu);
Joerg Roedeldefbba52009-08-07 11:49:30 +02002975 hsave->save.rsp = vmcb->save.rsp;
2976 hsave->save.rax = vmcb->save.rax;
2977 if (npt_enabled)
2978 hsave->save.cr3 = vmcb->save.cr3;
2979 else
Avi Kivity9f8fe502010-12-05 17:30:00 +02002980 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedeldefbba52009-08-07 11:49:30 +02002981
Joerg Roedel0460a972009-08-07 11:49:31 +02002982 copy_vmcb_control_area(hsave, vmcb);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002983
Avi Kivityf6e78472010-08-02 15:30:20 +03002984 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002985 svm->vcpu.arch.hflags |= HF_HIF_MASK;
2986 else
2987 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
2988
Joerg Roedel4b161842010-09-10 17:31:03 +02002989 if (nested_vmcb->control.nested_ctl) {
2990 kvm_mmu_unload(&svm->vcpu);
2991 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
2992 nested_svm_init_mmu_context(&svm->vcpu);
2993 }
2994
Alexander Graf3d6368e2008-11-25 20:17:07 +01002995 /* Load the nested guest state */
2996 svm->vmcb->save.es = nested_vmcb->save.es;
2997 svm->vmcb->save.cs = nested_vmcb->save.cs;
2998 svm->vmcb->save.ss = nested_vmcb->save.ss;
2999 svm->vmcb->save.ds = nested_vmcb->save.ds;
3000 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3001 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003002 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003003 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3004 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3005 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3006 if (npt_enabled) {
3007 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3008 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003009 } else
Avi Kivity23902182010-06-10 17:02:16 +03003010 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003011
3012 /* Guest paging mode is active - reset mmu */
3013 kvm_mmu_reset_context(&svm->vcpu);
3014
Joerg Roedeldefbba52009-08-07 11:49:30 +02003015 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003016 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
3017 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
3018 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003019
Alexander Graf3d6368e2008-11-25 20:17:07 +01003020 /* In case we don't even reach vcpu_run, the fields are not updated */
3021 svm->vmcb->save.rax = nested_vmcb->save.rax;
3022 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3023 svm->vmcb->save.rip = nested_vmcb->save.rip;
3024 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3025 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3026 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3027
Joerg Roedelf7138532010-03-01 15:34:40 +01003028 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003029 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003030
Joerg Roedelaad42c62009-08-07 11:49:34 +02003031 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003032 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003033 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003034 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3035 svm->nested.intercept = nested_vmcb->control.intercept;
3036
Joerg Roedelf40f6a42010-12-03 15:25:15 +01003037 svm_flush_tlb(&svm->vcpu);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003038 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003039 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3040 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3041 else
3042 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3043
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003044 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3045 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003046 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3047 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003048 }
3049
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003050 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003051 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003052
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003053 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003054 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3055 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
3056 svm->vmcb->control.tsc_offset += nested_vmcb->control.tsc_offset;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003057 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3058 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3059
Joerg Roedel7597f122010-02-19 16:23:00 +01003060 nested_svm_unmap(page);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003061
Joerg Roedel20307532010-11-29 17:51:48 +01003062 /* Enter Guest-Mode */
3063 enter_guest_mode(&svm->vcpu);
3064
Joerg Roedel384c6362010-11-30 18:03:56 +01003065 /*
3066 * Merge guest and host intercepts - must be called with vcpu in
3067 * guest-mode to take affect here
3068 */
3069 recalc_intercepts(svm);
3070
Joerg Roedel06fc77722010-02-19 16:23:07 +01003071 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003072
Joerg Roedel2af91942009-08-07 11:49:28 +02003073 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003074
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003075 mark_all_dirty(svm->vmcb);
3076
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003077 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003078}
3079
Joerg Roedel9966bf62009-08-07 11:49:40 +02003080static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003081{
3082 to_vmcb->save.fs = from_vmcb->save.fs;
3083 to_vmcb->save.gs = from_vmcb->save.gs;
3084 to_vmcb->save.tr = from_vmcb->save.tr;
3085 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3086 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3087 to_vmcb->save.star = from_vmcb->save.star;
3088 to_vmcb->save.lstar = from_vmcb->save.lstar;
3089 to_vmcb->save.cstar = from_vmcb->save.cstar;
3090 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3091 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3092 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3093 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003094}
3095
Avi Kivity851ba692009-08-24 11:10:17 +03003096static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003097{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003098 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003099 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003100 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003101
Alexander Graf55426752008-11-25 20:17:06 +01003102 if (nested_svm_check_permissions(svm))
3103 return 1;
3104
Joerg Roedel7597f122010-02-19 16:23:00 +01003105 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003106 if (!nested_vmcb)
3107 return 1;
3108
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003109 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003110 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003111
Joerg Roedel9966bf62009-08-07 11:49:40 +02003112 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003113 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003114
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003115 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003116}
3117
Avi Kivity851ba692009-08-24 11:10:17 +03003118static int vmsave_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(svm->vmcb, nested_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 vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003141{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003142 if (nested_svm_check_permissions(svm))
3143 return 1;
3144
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003145 /* Save rip after vmrun instruction */
3146 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003147
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003148 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003149 return 1;
3150
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003151 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003152 goto failed;
3153
3154 return 1;
3155
3156failed:
3157
3158 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3159 svm->vmcb->control.exit_code_hi = 0;
3160 svm->vmcb->control.exit_info_1 = 0;
3161 svm->vmcb->control.exit_info_2 = 0;
3162
3163 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003164
3165 return 1;
3166}
3167
Avi Kivity851ba692009-08-24 11:10:17 +03003168static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003169{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003170 int ret;
3171
Alexander Graf1371d902008-11-25 20:17:04 +01003172 if (nested_svm_check_permissions(svm))
3173 return 1;
3174
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003175 /*
3176 * If VGIF is enabled, the STGI intercept is only added to
3177 * detect the opening of the NMI window; remove it now.
3178 */
3179 if (vgif_enabled(svm))
3180 clr_intercept(svm, INTERCEPT_STGI);
3181
Alexander Graf1371d902008-11-25 20:17:04 +01003182 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003183 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003184 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003185
Joerg Roedel2af91942009-08-07 11:49:28 +02003186 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003187
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003188 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003189}
3190
Avi Kivity851ba692009-08-24 11:10:17 +03003191static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003192{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003193 int ret;
3194
Alexander Graf1371d902008-11-25 20:17:04 +01003195 if (nested_svm_check_permissions(svm))
3196 return 1;
3197
3198 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003199 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003200
Joerg Roedel2af91942009-08-07 11:49:28 +02003201 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003202
3203 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003204 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3205 svm_clear_vintr(svm);
3206 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3207 mark_dirty(svm->vmcb, VMCB_INTR);
3208 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +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 invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003214{
3215 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003216
David Kaplan668f1982015-02-20 16:02:10 -06003217 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3218 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003219
Alexander Grafff092382009-06-15 15:21:24 +02003220 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
David Kaplan668f1982015-02-20 16:02:10 -06003221 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Alexander Grafff092382009-06-15 15:21:24 +02003222
3223 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003224 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003225}
3226
Joerg Roedel532a46b2009-10-09 16:08:32 +02003227static int skinit_interception(struct vcpu_svm *svm)
3228{
David Kaplan668f1982015-02-20 16:02:10 -06003229 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003230
3231 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3232 return 1;
3233}
3234
David Kaplandab429a2015-03-02 13:43:37 -06003235static int wbinvd_interception(struct vcpu_svm *svm)
3236{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003237 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003238}
3239
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003240static int xsetbv_interception(struct vcpu_svm *svm)
3241{
3242 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3243 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3244
3245 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3246 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003247 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003248 }
3249
3250 return 1;
3251}
3252
Avi Kivity851ba692009-08-24 11:10:17 +03003253static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003254{
Izik Eidus37817f22008-03-24 23:14:53 +02003255 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003256 int reason;
3257 int int_type = svm->vmcb->control.exit_int_info &
3258 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003259 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003260 uint32_t type =
3261 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3262 uint32_t idt_v =
3263 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003264 bool has_error_code = false;
3265 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003266
3267 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003268
Izik Eidus37817f22008-03-24 23:14:53 +02003269 if (svm->vmcb->control.exit_info_2 &
3270 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003271 reason = TASK_SWITCH_IRET;
3272 else if (svm->vmcb->control.exit_info_2 &
3273 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3274 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003275 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003276 reason = TASK_SWITCH_GATE;
3277 else
3278 reason = TASK_SWITCH_CALL;
3279
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003280 if (reason == TASK_SWITCH_GATE) {
3281 switch (type) {
3282 case SVM_EXITINTINFO_TYPE_NMI:
3283 svm->vcpu.arch.nmi_injected = false;
3284 break;
3285 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003286 if (svm->vmcb->control.exit_info_2 &
3287 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3288 has_error_code = true;
3289 error_code =
3290 (u32)svm->vmcb->control.exit_info_2;
3291 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003292 kvm_clear_exception_queue(&svm->vcpu);
3293 break;
3294 case SVM_EXITINTINFO_TYPE_INTR:
3295 kvm_clear_interrupt_queue(&svm->vcpu);
3296 break;
3297 default:
3298 break;
3299 }
3300 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003301
Gleb Natapov8317c292009-04-12 13:37:02 +03003302 if (reason != TASK_SWITCH_GATE ||
3303 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3304 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003305 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3306 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003307
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003308 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3309 int_vec = -1;
3310
3311 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003312 has_error_code, error_code) == EMULATE_FAIL) {
3313 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3314 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3315 svm->vcpu.run->internal.ndata = 0;
3316 return 0;
3317 }
3318 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003319}
3320
Avi Kivity851ba692009-08-24 11:10:17 +03003321static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003322{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003323 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003324 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003325}
3326
Avi Kivity851ba692009-08-24 11:10:17 +03003327static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003328{
3329 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003330 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003331 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003332 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003333 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003334 return 1;
3335}
3336
Avi Kivity851ba692009-08-24 11:10:17 +03003337static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003338{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003339 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3340 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
3341
3342 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003343 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003344}
3345
Avi Kivity851ba692009-08-24 11:10:17 +03003346static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003347{
Andre Przywara51d8b662010-12-21 11:12:02 +01003348 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003349}
3350
Avi Kivity332b56e2011-11-10 14:57:24 +02003351static int rdpmc_interception(struct vcpu_svm *svm)
3352{
3353 int err;
3354
3355 if (!static_cpu_has(X86_FEATURE_NRIPS))
3356 return emulate_on_interception(svm);
3357
3358 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003359 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003360}
3361
Xiubo Li52eb5a62015-03-13 17:39:45 +08003362static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3363 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003364{
3365 unsigned long cr0 = svm->vcpu.arch.cr0;
3366 bool ret = false;
3367 u64 intercept;
3368
3369 intercept = svm->nested.intercept;
3370
3371 if (!is_guest_mode(&svm->vcpu) ||
3372 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3373 return false;
3374
3375 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3376 val &= ~SVM_CR0_SELECTIVE_MASK;
3377
3378 if (cr0 ^ val) {
3379 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3380 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3381 }
3382
3383 return ret;
3384}
3385
Andre Przywara7ff76d52010-12-21 11:12:04 +01003386#define CR_VALID (1ULL << 63)
3387
3388static int cr_interception(struct vcpu_svm *svm)
3389{
3390 int reg, cr;
3391 unsigned long val;
3392 int err;
3393
3394 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3395 return emulate_on_interception(svm);
3396
3397 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3398 return emulate_on_interception(svm);
3399
3400 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06003401 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3402 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3403 else
3404 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01003405
3406 err = 0;
3407 if (cr >= 16) { /* mov to cr */
3408 cr -= 16;
3409 val = kvm_register_read(&svm->vcpu, reg);
3410 switch (cr) {
3411 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02003412 if (!check_selective_cr0_intercepted(svm, val))
3413 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02003414 else
3415 return 1;
3416
Andre Przywara7ff76d52010-12-21 11:12:04 +01003417 break;
3418 case 3:
3419 err = kvm_set_cr3(&svm->vcpu, val);
3420 break;
3421 case 4:
3422 err = kvm_set_cr4(&svm->vcpu, val);
3423 break;
3424 case 8:
3425 err = kvm_set_cr8(&svm->vcpu, val);
3426 break;
3427 default:
3428 WARN(1, "unhandled write to CR%d", cr);
3429 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3430 return 1;
3431 }
3432 } else { /* mov from cr */
3433 switch (cr) {
3434 case 0:
3435 val = kvm_read_cr0(&svm->vcpu);
3436 break;
3437 case 2:
3438 val = svm->vcpu.arch.cr2;
3439 break;
3440 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02003441 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003442 break;
3443 case 4:
3444 val = kvm_read_cr4(&svm->vcpu);
3445 break;
3446 case 8:
3447 val = kvm_get_cr8(&svm->vcpu);
3448 break;
3449 default:
3450 WARN(1, "unhandled read from CR%d", cr);
3451 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3452 return 1;
3453 }
3454 kvm_register_write(&svm->vcpu, reg, val);
3455 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08003456 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003457}
3458
Andre Przywaracae37972010-12-21 11:12:05 +01003459static int dr_interception(struct vcpu_svm *svm)
3460{
3461 int reg, dr;
3462 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01003463
Paolo Bonzinifacb0132014-02-21 10:32:27 +01003464 if (svm->vcpu.guest_debug == 0) {
3465 /*
3466 * No more DR vmexits; force a reload of the debug registers
3467 * and reenter on this instruction. The next vmexit will
3468 * retrieve the full state of the debug registers.
3469 */
3470 clr_dr_intercepts(svm);
3471 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
3472 return 1;
3473 }
3474
Andre Przywaracae37972010-12-21 11:12:05 +01003475 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
3476 return emulate_on_interception(svm);
3477
3478 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
3479 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
3480
3481 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03003482 if (!kvm_require_dr(&svm->vcpu, dr - 16))
3483 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01003484 val = kvm_register_read(&svm->vcpu, reg);
3485 kvm_set_dr(&svm->vcpu, dr - 16, val);
3486 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03003487 if (!kvm_require_dr(&svm->vcpu, dr))
3488 return 1;
3489 kvm_get_dr(&svm->vcpu, dr, &val);
3490 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01003491 }
3492
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003493 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01003494}
3495
Avi Kivity851ba692009-08-24 11:10:17 +03003496static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01003497{
Avi Kivity851ba692009-08-24 11:10:17 +03003498 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01003499 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03003500
Gleb Natapov0a5fff192009-04-21 17:45:06 +03003501 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
3502 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01003503 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02003504 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01003505 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03003506 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01003507 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01003508 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
3509 return 0;
3510}
3511
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003512static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003513{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003514 struct vcpu_svm *svm = to_svm(vcpu);
3515
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003516 switch (msr_info->index) {
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303517 case MSR_IA32_TSC: {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003518 msr_info->data = svm->vmcb->control.tsc_offset +
Haozhong Zhang35181e82015-10-20 15:39:03 +08003519 kvm_scale_tsc(vcpu, rdtsc());
Joerg Roedelfbc0db72011-03-25 09:44:46 +01003520
Avi Kivity6aa8b732006-12-10 02:21:36 -08003521 break;
3522 }
Brian Gerst8c065852010-07-17 09:03:26 -04003523 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003524 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003525 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08003526#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003527 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003528 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003529 break;
3530 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003531 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003532 break;
3533 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003534 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003535 break;
3536 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003537 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003538 break;
3539#endif
3540 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003541 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003542 break;
3543 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003544 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003545 break;
3546 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003547 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003548 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01003549 case MSR_TSC_AUX:
3550 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
3551 return 1;
3552 msr_info->data = svm->tsc_aux;
3553 break;
Joerg Roedele0231712010-02-24 18:59:10 +01003554 /*
3555 * Nobody will change the following 5 values in the VMCB so we can
3556 * safely return them on rdmsr. They will always be 0 until LBRV is
3557 * implemented.
3558 */
Joerg Roedela2938c82008-02-13 16:30:28 +01003559 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003560 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01003561 break;
3562 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003563 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01003564 break;
3565 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003566 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01003567 break;
3568 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003569 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01003570 break;
3571 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003572 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01003573 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01003574 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003575 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01003576 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01003577 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003578 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01003579 break;
Alexander Grafc8a73f12009-01-05 16:02:47 +01003580 case MSR_IA32_UCODE_REV:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003581 msr_info->data = 0x01000065;
Alexander Grafc8a73f12009-01-05 16:02:47 +01003582 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01003583 case MSR_F15H_IC_CFG: {
3584
3585 int family, model;
3586
3587 family = guest_cpuid_family(vcpu);
3588 model = guest_cpuid_model(vcpu);
3589
3590 if (family < 0 || model < 0)
3591 return kvm_get_msr_common(vcpu, msr_info);
3592
3593 msr_info->data = 0;
3594
3595 if (family == 0x15 &&
3596 (model >= 0x2 && model < 0x20))
3597 msr_info->data = 0x1E;
3598 }
3599 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003600 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003601 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003602 }
3603 return 0;
3604}
3605
Avi Kivity851ba692009-08-24 11:10:17 +03003606static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003607{
David Kaplan668f1982015-02-20 16:02:10 -06003608 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003609 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003610
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003611 msr_info.index = ecx;
3612 msr_info.host_initiated = false;
3613 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02003614 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003615 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003616 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02003617 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003618 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02003619
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003620 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
3621 msr_info.data & 0xffffffff);
3622 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
3623 msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003624 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003625 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003626 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003627}
3628
Joerg Roedel4a810182010-02-24 18:59:15 +01003629static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
3630{
3631 struct vcpu_svm *svm = to_svm(vcpu);
3632 int svm_dis, chg_mask;
3633
3634 if (data & ~SVM_VM_CR_VALID_MASK)
3635 return 1;
3636
3637 chg_mask = SVM_VM_CR_VALID_MASK;
3638
3639 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
3640 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
3641
3642 svm->nested.vm_cr_msr &= ~chg_mask;
3643 svm->nested.vm_cr_msr |= (data & chg_mask);
3644
3645 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
3646
3647 /* check for svm_disable while efer.svme is set */
3648 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
3649 return 1;
3650
3651 return 0;
3652}
3653
Will Auld8fe8ab42012-11-29 12:42:12 -08003654static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003655{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003656 struct vcpu_svm *svm = to_svm(vcpu);
3657
Will Auld8fe8ab42012-11-29 12:42:12 -08003658 u32 ecx = msr->index;
3659 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003660 switch (ecx) {
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10003661 case MSR_IA32_TSC:
Will Auld8fe8ab42012-11-29 12:42:12 -08003662 kvm_write_tsc(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003663 break;
Brian Gerst8c065852010-07-17 09:03:26 -04003664 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003665 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003666 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08003667#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003668 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003669 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003670 break;
3671 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003672 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003673 break;
3674 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003675 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003676 break;
3677 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003678 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003679 break;
3680#endif
3681 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003682 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003683 break;
3684 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02003685 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003686 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003687 break;
3688 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02003689 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003690 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003691 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01003692 case MSR_TSC_AUX:
3693 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
3694 return 1;
3695
3696 /*
3697 * This is rare, so we update the MSR here instead of using
3698 * direct_access_msrs. Doing that would require a rdmsr in
3699 * svm_vcpu_put.
3700 */
3701 svm->tsc_aux = data;
3702 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
3703 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01003704 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02003705 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003706 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
3707 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01003708 break;
3709 }
3710 if (data & DEBUGCTL_RESERVED_BITS)
3711 return 1;
3712
3713 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01003714 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01003715 if (data & (1ULL<<0))
3716 svm_enable_lbrv(svm);
3717 else
3718 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01003719 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01003720 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003721 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01003722 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02003723 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01003724 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02003725 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03003726 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02003727 break;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003728 case MSR_IA32_APICBASE:
3729 if (kvm_vcpu_apicv_active(vcpu))
3730 avic_update_vapic_bar(to_svm(vcpu), data);
3731 /* Follow through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003732 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08003733 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003734 }
3735 return 0;
3736}
3737
Avi Kivity851ba692009-08-24 11:10:17 +03003738static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003739{
Will Auld8fe8ab42012-11-29 12:42:12 -08003740 struct msr_data msr;
David Kaplan668f1982015-02-20 16:02:10 -06003741 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3742 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02003743
Will Auld8fe8ab42012-11-29 12:42:12 -08003744 msr.data = data;
3745 msr.index = ecx;
3746 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02003747
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003748 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03003749 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02003750 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003751 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003752 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02003753 } else {
3754 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003755 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02003756 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003757}
3758
Avi Kivity851ba692009-08-24 11:10:17 +03003759static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003760{
Rusty Russelle756fc62007-07-30 20:07:08 +10003761 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03003762 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003763 else
Avi Kivity851ba692009-08-24 11:10:17 +03003764 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003765}
3766
Avi Kivity851ba692009-08-24 11:10:17 +03003767static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08003768{
Avi Kivity3842d132010-07-27 12:30:24 +03003769 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01003770 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03003771 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003772 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08003773 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08003774 return 1;
3775}
3776
Mark Langsdorf565d0992009-10-06 14:25:02 -05003777static int pause_interception(struct vcpu_svm *svm)
3778{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08003779 struct kvm_vcpu *vcpu = &svm->vcpu;
3780 bool in_kernel = (svm_get_cpl(vcpu) == 0);
3781
3782 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05003783 return 1;
3784}
3785
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04003786static int nop_interception(struct vcpu_svm *svm)
3787{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003788 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04003789}
3790
3791static int monitor_interception(struct vcpu_svm *svm)
3792{
3793 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
3794 return nop_interception(svm);
3795}
3796
3797static int mwait_interception(struct vcpu_svm *svm)
3798{
3799 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
3800 return nop_interception(svm);
3801}
3802
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05003803enum avic_ipi_failure_cause {
3804 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
3805 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
3806 AVIC_IPI_FAILURE_INVALID_TARGET,
3807 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
3808};
3809
3810static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
3811{
3812 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
3813 u32 icrl = svm->vmcb->control.exit_info_1;
3814 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03003815 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05003816 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3817
3818 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
3819
3820 switch (id) {
3821 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
3822 /*
3823 * AVIC hardware handles the generation of
3824 * IPIs when the specified Message Type is Fixed
3825 * (also known as fixed delivery mode) and
3826 * the Trigger Mode is edge-triggered. The hardware
3827 * also supports self and broadcast delivery modes
3828 * specified via the Destination Shorthand(DSH)
3829 * field of the ICRL. Logical and physical APIC ID
3830 * formats are supported. All other IPI types cause
3831 * a #VMEXIT, which needs to emulated.
3832 */
3833 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
3834 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
3835 break;
3836 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
3837 int i;
3838 struct kvm_vcpu *vcpu;
3839 struct kvm *kvm = svm->vcpu.kvm;
3840 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3841
3842 /*
3843 * At this point, we expect that the AVIC HW has already
3844 * set the appropriate IRR bits on the valid target
3845 * vcpus. So, we just need to kick the appropriate vcpu.
3846 */
3847 kvm_for_each_vcpu(i, vcpu, kvm) {
3848 bool m = kvm_apic_match_dest(vcpu, apic,
3849 icrl & KVM_APIC_SHORT_MASK,
3850 GET_APIC_DEST_FIELD(icrh),
3851 icrl & KVM_APIC_DEST_MASK);
3852
3853 if (m && !avic_vcpu_is_running(vcpu))
3854 kvm_vcpu_wake_up(vcpu);
3855 }
3856 break;
3857 }
3858 case AVIC_IPI_FAILURE_INVALID_TARGET:
3859 break;
3860 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
3861 WARN_ONCE(1, "Invalid backing page\n");
3862 break;
3863 default:
3864 pr_err("Unknown IPI interception\n");
3865 }
3866
3867 return 1;
3868}
3869
3870static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
3871{
3872 struct kvm_arch *vm_data = &vcpu->kvm->arch;
3873 int index;
3874 u32 *logical_apic_id_table;
3875 int dlid = GET_APIC_LOGICAL_ID(ldr);
3876
3877 if (!dlid)
3878 return NULL;
3879
3880 if (flat) { /* flat */
3881 index = ffs(dlid) - 1;
3882 if (index > 7)
3883 return NULL;
3884 } else { /* cluster */
3885 int cluster = (dlid & 0xf0) >> 4;
3886 int apic = ffs(dlid & 0x0f) - 1;
3887
3888 if ((apic < 0) || (apic > 7) ||
3889 (cluster >= 0xf))
3890 return NULL;
3891 index = (cluster << 2) + apic;
3892 }
3893
3894 logical_apic_id_table = (u32 *) page_address(vm_data->avic_logical_id_table_page);
3895
3896 return &logical_apic_id_table[index];
3897}
3898
3899static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
3900 bool valid)
3901{
3902 bool flat;
3903 u32 *entry, new_entry;
3904
3905 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
3906 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
3907 if (!entry)
3908 return -EINVAL;
3909
3910 new_entry = READ_ONCE(*entry);
3911 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
3912 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
3913 if (valid)
3914 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
3915 else
3916 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
3917 WRITE_ONCE(*entry, new_entry);
3918
3919 return 0;
3920}
3921
3922static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
3923{
3924 int ret;
3925 struct vcpu_svm *svm = to_svm(vcpu);
3926 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
3927
3928 if (!ldr)
3929 return 1;
3930
3931 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
3932 if (ret && svm->ldr_reg) {
3933 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
3934 svm->ldr_reg = 0;
3935 } else {
3936 svm->ldr_reg = ldr;
3937 }
3938 return ret;
3939}
3940
3941static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
3942{
3943 u64 *old, *new;
3944 struct vcpu_svm *svm = to_svm(vcpu);
3945 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
3946 u32 id = (apic_id_reg >> 24) & 0xff;
3947
3948 if (vcpu->vcpu_id == id)
3949 return 0;
3950
3951 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
3952 new = avic_get_physical_id_entry(vcpu, id);
3953 if (!new || !old)
3954 return 1;
3955
3956 /* We need to move physical_id_entry to new offset */
3957 *new = *old;
3958 *old = 0ULL;
3959 to_svm(vcpu)->avic_physical_id_cache = new;
3960
3961 /*
3962 * Also update the guest physical APIC ID in the logical
3963 * APIC ID table entry if already setup the LDR.
3964 */
3965 if (svm->ldr_reg)
3966 avic_handle_ldr_update(vcpu);
3967
3968 return 0;
3969}
3970
3971static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
3972{
3973 struct vcpu_svm *svm = to_svm(vcpu);
3974 struct kvm_arch *vm_data = &vcpu->kvm->arch;
3975 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
3976 u32 mod = (dfr >> 28) & 0xf;
3977
3978 /*
3979 * We assume that all local APICs are using the same type.
3980 * If this changes, we need to flush the AVIC logical
3981 * APID id table.
3982 */
3983 if (vm_data->ldr_mode == mod)
3984 return 0;
3985
3986 clear_page(page_address(vm_data->avic_logical_id_table_page));
3987 vm_data->ldr_mode = mod;
3988
3989 if (svm->ldr_reg)
3990 avic_handle_ldr_update(vcpu);
3991 return 0;
3992}
3993
3994static int avic_unaccel_trap_write(struct vcpu_svm *svm)
3995{
3996 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3997 u32 offset = svm->vmcb->control.exit_info_1 &
3998 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
3999
4000 switch (offset) {
4001 case APIC_ID:
4002 if (avic_handle_apic_id_update(&svm->vcpu))
4003 return 0;
4004 break;
4005 case APIC_LDR:
4006 if (avic_handle_ldr_update(&svm->vcpu))
4007 return 0;
4008 break;
4009 case APIC_DFR:
4010 avic_handle_dfr_update(&svm->vcpu);
4011 break;
4012 default:
4013 break;
4014 }
4015
4016 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4017
4018 return 1;
4019}
4020
4021static bool is_avic_unaccelerated_access_trap(u32 offset)
4022{
4023 bool ret = false;
4024
4025 switch (offset) {
4026 case APIC_ID:
4027 case APIC_EOI:
4028 case APIC_RRR:
4029 case APIC_LDR:
4030 case APIC_DFR:
4031 case APIC_SPIV:
4032 case APIC_ESR:
4033 case APIC_ICR:
4034 case APIC_LVTT:
4035 case APIC_LVTTHMR:
4036 case APIC_LVTPC:
4037 case APIC_LVT0:
4038 case APIC_LVT1:
4039 case APIC_LVTERR:
4040 case APIC_TMICT:
4041 case APIC_TDCR:
4042 ret = true;
4043 break;
4044 default:
4045 break;
4046 }
4047 return ret;
4048}
4049
4050static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4051{
4052 int ret = 0;
4053 u32 offset = svm->vmcb->control.exit_info_1 &
4054 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4055 u32 vector = svm->vmcb->control.exit_info_2 &
4056 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4057 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4058 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4059 bool trap = is_avic_unaccelerated_access_trap(offset);
4060
4061 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4062 trap, write, vector);
4063 if (trap) {
4064 /* Handling Trap */
4065 WARN_ONCE(!write, "svm: Handling trap read.\n");
4066 ret = avic_unaccel_trap_write(svm);
4067 } else {
4068 /* Handling Fault */
4069 ret = (emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
4070 }
4071
4072 return ret;
4073}
4074
Mathias Krause09941fb2012-08-30 01:30:20 +02004075static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004076 [SVM_EXIT_READ_CR0] = cr_interception,
4077 [SVM_EXIT_READ_CR3] = cr_interception,
4078 [SVM_EXIT_READ_CR4] = cr_interception,
4079 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004080 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004081 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004082 [SVM_EXIT_WRITE_CR3] = cr_interception,
4083 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004084 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004085 [SVM_EXIT_READ_DR0] = dr_interception,
4086 [SVM_EXIT_READ_DR1] = dr_interception,
4087 [SVM_EXIT_READ_DR2] = dr_interception,
4088 [SVM_EXIT_READ_DR3] = dr_interception,
4089 [SVM_EXIT_READ_DR4] = dr_interception,
4090 [SVM_EXIT_READ_DR5] = dr_interception,
4091 [SVM_EXIT_READ_DR6] = dr_interception,
4092 [SVM_EXIT_READ_DR7] = dr_interception,
4093 [SVM_EXIT_WRITE_DR0] = dr_interception,
4094 [SVM_EXIT_WRITE_DR1] = dr_interception,
4095 [SVM_EXIT_WRITE_DR2] = dr_interception,
4096 [SVM_EXIT_WRITE_DR3] = dr_interception,
4097 [SVM_EXIT_WRITE_DR4] = dr_interception,
4098 [SVM_EXIT_WRITE_DR5] = dr_interception,
4099 [SVM_EXIT_WRITE_DR6] = dr_interception,
4100 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004101 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4102 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004103 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004104 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004105 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004106 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004107 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004108 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004109 [SVM_EXIT_SMI] = nop_on_interception,
4110 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004111 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004112 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004113 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004114 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004115 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004116 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004117 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004118 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004119 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004120 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004121 [SVM_EXIT_MSR] = msr_interception,
4122 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004123 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004124 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004125 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004126 [SVM_EXIT_VMLOAD] = vmload_interception,
4127 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004128 [SVM_EXIT_STGI] = stgi_interception,
4129 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004130 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004131 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004132 [SVM_EXIT_MONITOR] = monitor_interception,
4133 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004134 [SVM_EXIT_XSETBV] = xsetbv_interception,
Joerg Roedel709ddeb2008-02-07 13:47:45 +01004135 [SVM_EXIT_NPF] = pf_interception,
Paolo Bonzini64d60672015-05-07 11:36:11 +02004136 [SVM_EXIT_RSM] = emulate_on_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004137 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4138 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004139};
4140
Joe Perchesae8cc052011-04-24 22:00:50 -07004141static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004142{
4143 struct vcpu_svm *svm = to_svm(vcpu);
4144 struct vmcb_control_area *control = &svm->vmcb->control;
4145 struct vmcb_save_area *save = &svm->vmcb->save;
4146
4147 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004148 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4149 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4150 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4151 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4152 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4153 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4154 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
4155 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4156 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4157 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4158 pr_err("%-20s%d\n", "asid:", control->asid);
4159 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4160 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4161 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4162 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4163 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4164 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4165 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4166 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4167 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4168 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4169 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004170 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004171 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4172 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004173 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004174 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004175 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4176 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4177 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004178 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004179 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4180 "es:",
4181 save->es.selector, save->es.attrib,
4182 save->es.limit, save->es.base);
4183 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4184 "cs:",
4185 save->cs.selector, save->cs.attrib,
4186 save->cs.limit, save->cs.base);
4187 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4188 "ss:",
4189 save->ss.selector, save->ss.attrib,
4190 save->ss.limit, save->ss.base);
4191 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4192 "ds:",
4193 save->ds.selector, save->ds.attrib,
4194 save->ds.limit, save->ds.base);
4195 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4196 "fs:",
4197 save->fs.selector, save->fs.attrib,
4198 save->fs.limit, save->fs.base);
4199 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4200 "gs:",
4201 save->gs.selector, save->gs.attrib,
4202 save->gs.limit, save->gs.base);
4203 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4204 "gdtr:",
4205 save->gdtr.selector, save->gdtr.attrib,
4206 save->gdtr.limit, save->gdtr.base);
4207 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4208 "ldtr:",
4209 save->ldtr.selector, save->ldtr.attrib,
4210 save->ldtr.limit, save->ldtr.base);
4211 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4212 "idtr:",
4213 save->idtr.selector, save->idtr.attrib,
4214 save->idtr.limit, save->idtr.base);
4215 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4216 "tr:",
4217 save->tr.selector, save->tr.attrib,
4218 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004219 pr_err("cpl: %d efer: %016llx\n",
4220 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004221 pr_err("%-15s %016llx %-13s %016llx\n",
4222 "cr0:", save->cr0, "cr2:", save->cr2);
4223 pr_err("%-15s %016llx %-13s %016llx\n",
4224 "cr3:", save->cr3, "cr4:", save->cr4);
4225 pr_err("%-15s %016llx %-13s %016llx\n",
4226 "dr6:", save->dr6, "dr7:", save->dr7);
4227 pr_err("%-15s %016llx %-13s %016llx\n",
4228 "rip:", save->rip, "rflags:", save->rflags);
4229 pr_err("%-15s %016llx %-13s %016llx\n",
4230 "rsp:", save->rsp, "rax:", save->rax);
4231 pr_err("%-15s %016llx %-13s %016llx\n",
4232 "star:", save->star, "lstar:", save->lstar);
4233 pr_err("%-15s %016llx %-13s %016llx\n",
4234 "cstar:", save->cstar, "sfmask:", save->sfmask);
4235 pr_err("%-15s %016llx %-13s %016llx\n",
4236 "kernel_gs_base:", save->kernel_gs_base,
4237 "sysenter_cs:", save->sysenter_cs);
4238 pr_err("%-15s %016llx %-13s %016llx\n",
4239 "sysenter_esp:", save->sysenter_esp,
4240 "sysenter_eip:", save->sysenter_eip);
4241 pr_err("%-15s %016llx %-13s %016llx\n",
4242 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4243 pr_err("%-15s %016llx %-13s %016llx\n",
4244 "br_from:", save->br_from, "br_to:", save->br_to);
4245 pr_err("%-15s %016llx %-13s %016llx\n",
4246 "excp_from:", save->last_excp_from,
4247 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004248}
4249
Avi Kivity586f9602010-11-18 13:09:54 +02004250static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4251{
4252 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4253
4254 *info1 = control->exit_info_1;
4255 *info2 = control->exit_info_2;
4256}
4257
Avi Kivity851ba692009-08-24 11:10:17 +03004258static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004259{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004260 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004261 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004262 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004263
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004264 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4265
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004266 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004267 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4268 if (npt_enabled)
4269 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004270
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004271 if (unlikely(svm->nested.exit_required)) {
4272 nested_svm_vmexit(svm);
4273 svm->nested.exit_required = false;
4274
4275 return 1;
4276 }
4277
Joerg Roedel20307532010-11-29 17:51:48 +01004278 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004279 int vmexit;
4280
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004281 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4282 svm->vmcb->control.exit_info_1,
4283 svm->vmcb->control.exit_info_2,
4284 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004285 svm->vmcb->control.exit_int_info_err,
4286 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004287
Joerg Roedel410e4d52009-08-07 11:49:44 +02004288 vmexit = nested_svm_exit_special(svm);
4289
4290 if (vmexit == NESTED_EXIT_CONTINUE)
4291 vmexit = nested_svm_exit_handled(svm);
4292
4293 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01004294 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01004295 }
4296
Joerg Roedela5c38322009-08-07 11:49:32 +02004297 svm_complete_interrupts(svm);
4298
Avi Kivity04d2cc72007-09-10 18:10:54 +03004299 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4300 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4301 kvm_run->fail_entry.hardware_entry_failure_reason
4302 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02004303 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4304 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03004305 return 0;
4306 }
4307
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004308 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01004309 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02004310 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4311 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02004312 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08004313 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08004314 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004315 exit_code);
4316
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02004317 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08004318 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04004319 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03004320 kvm_queue_exception(vcpu, UD_VECTOR);
4321 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004322 }
4323
Avi Kivity851ba692009-08-24 11:10:17 +03004324 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004325}
4326
4327static void reload_tss(struct kvm_vcpu *vcpu)
4328{
4329 int cpu = raw_smp_processor_id();
4330
Tejun Heo0fe1e002009-10-29 22:34:14 +09004331 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4332 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004333 load_TR_desc();
4334}
4335
Rusty Russelle756fc62007-07-30 20:07:08 +10004336static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004337{
4338 int cpu = raw_smp_processor_id();
4339
Tejun Heo0fe1e002009-10-29 22:34:14 +09004340 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004341
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03004342 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09004343 if (svm->asid_generation != sd->asid_generation)
4344 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004345}
4346
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004347static void svm_inject_nmi(struct kvm_vcpu *vcpu)
4348{
4349 struct vcpu_svm *svm = to_svm(vcpu);
4350
4351 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
4352 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01004353 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004354 ++vcpu->stat.nmi_injections;
4355}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004356
Eddie Dong85f455f2007-07-06 12:20:49 +03004357static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004358{
4359 struct vmcb_control_area *control;
4360
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004361 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10004362 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03004363 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004364 control->int_ctl &= ~V_INTR_PRIO_MASK;
4365 control->int_ctl |= V_IRQ_MASK |
4366 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004367 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004368}
4369
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004370static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03004371{
4372 struct vcpu_svm *svm = to_svm(vcpu);
4373
Joerg Roedel2af91942009-08-07 11:49:28 +02004374 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01004375
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03004376 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
4377 ++vcpu->stat.irq_injections;
4378
Alexander Graf219b65d2009-06-15 15:21:25 +02004379 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
4380 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03004381}
4382
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05004383static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
4384{
4385 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
4386}
4387
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004388static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
4389{
4390 struct vcpu_svm *svm = to_svm(vcpu);
4391
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05004392 if (svm_nested_virtualize_tpr(vcpu) ||
4393 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01004394 return;
4395
Radim Krčmář596f3142014-03-11 19:11:18 +01004396 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
4397
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004398 if (irr == -1)
4399 return;
4400
4401 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004402 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004403}
4404
Yang Zhang8d146952013-01-25 10:18:50 +08004405static void svm_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
4406{
4407 return;
4408}
4409
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05004410static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08004411{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004412 return avic;
Yang Zhangc7c9c562013-01-25 10:18:51 +08004413}
4414
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004415static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
4416{
4417}
4418
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02004419static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004420{
4421}
4422
4423/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03004424static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4425{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004426 struct vcpu_svm *svm = to_svm(vcpu);
4427 struct vmcb *vmcb = svm->vmcb;
4428
4429 if (!avic)
4430 return;
4431
4432 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
4433 mark_dirty(vmcb, VMCB_INTR);
Yang Zhangc7c9c562013-01-25 10:18:51 +08004434}
4435
Andrey Smetanin63086302015-11-10 15:36:32 +03004436static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08004437{
4438 return;
4439}
4440
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004441static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
4442{
4443 kvm_lapic_set_irr(vec, vcpu->arch.apic);
4444 smp_mb__after_atomic();
4445
4446 if (avic_vcpu_is_running(vcpu))
4447 wrmsrl(SVM_AVIC_DOORBELL,
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05004448 kvm_cpu_get_apicid(vcpu->cpu));
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004449 else
4450 kvm_vcpu_wake_up(vcpu);
4451}
4452
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05004453static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
4454{
4455 unsigned long flags;
4456 struct amd_svm_iommu_ir *cur;
4457
4458 spin_lock_irqsave(&svm->ir_list_lock, flags);
4459 list_for_each_entry(cur, &svm->ir_list, node) {
4460 if (cur->data != pi->ir_data)
4461 continue;
4462 list_del(&cur->node);
4463 kfree(cur);
4464 break;
4465 }
4466 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
4467}
4468
4469static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
4470{
4471 int ret = 0;
4472 unsigned long flags;
4473 struct amd_svm_iommu_ir *ir;
4474
4475 /**
4476 * In some cases, the existing irte is updaed and re-set,
4477 * so we need to check here if it's already been * added
4478 * to the ir_list.
4479 */
4480 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
4481 struct kvm *kvm = svm->vcpu.kvm;
4482 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
4483 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
4484 struct vcpu_svm *prev_svm;
4485
4486 if (!prev_vcpu) {
4487 ret = -EINVAL;
4488 goto out;
4489 }
4490
4491 prev_svm = to_svm(prev_vcpu);
4492 svm_ir_list_del(prev_svm, pi);
4493 }
4494
4495 /**
4496 * Allocating new amd_iommu_pi_data, which will get
4497 * add to the per-vcpu ir_list.
4498 */
4499 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
4500 if (!ir) {
4501 ret = -ENOMEM;
4502 goto out;
4503 }
4504 ir->data = pi->ir_data;
4505
4506 spin_lock_irqsave(&svm->ir_list_lock, flags);
4507 list_add(&ir->node, &svm->ir_list);
4508 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
4509out:
4510 return ret;
4511}
4512
4513/**
4514 * Note:
4515 * The HW cannot support posting multicast/broadcast
4516 * interrupts to a vCPU. So, we still use legacy interrupt
4517 * remapping for these kind of interrupts.
4518 *
4519 * For lowest-priority interrupts, we only support
4520 * those with single CPU as the destination, e.g. user
4521 * configures the interrupts via /proc/irq or uses
4522 * irqbalance to make the interrupts single-CPU.
4523 */
4524static int
4525get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
4526 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
4527{
4528 struct kvm_lapic_irq irq;
4529 struct kvm_vcpu *vcpu = NULL;
4530
4531 kvm_set_msi_irq(kvm, e, &irq);
4532
4533 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
4534 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
4535 __func__, irq.vector);
4536 return -1;
4537 }
4538
4539 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
4540 irq.vector);
4541 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05004542 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05004543 vcpu_info->vector = irq.vector;
4544
4545 return 0;
4546}
4547
4548/*
4549 * svm_update_pi_irte - set IRTE for Posted-Interrupts
4550 *
4551 * @kvm: kvm
4552 * @host_irq: host irq of the interrupt
4553 * @guest_irq: gsi of the interrupt
4554 * @set: set or unset PI
4555 * returns 0 on success, < 0 on failure
4556 */
4557static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
4558 uint32_t guest_irq, bool set)
4559{
4560 struct kvm_kernel_irq_routing_entry *e;
4561 struct kvm_irq_routing_table *irq_rt;
4562 int idx, ret = -EINVAL;
4563
4564 if (!kvm_arch_has_assigned_device(kvm) ||
4565 !irq_remapping_cap(IRQ_POSTING_CAP))
4566 return 0;
4567
4568 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
4569 __func__, host_irq, guest_irq, set);
4570
4571 idx = srcu_read_lock(&kvm->irq_srcu);
4572 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
4573 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
4574
4575 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
4576 struct vcpu_data vcpu_info;
4577 struct vcpu_svm *svm = NULL;
4578
4579 if (e->type != KVM_IRQ_ROUTING_MSI)
4580 continue;
4581
4582 /**
4583 * Here, we setup with legacy mode in the following cases:
4584 * 1. When cannot target interrupt to a specific vcpu.
4585 * 2. Unsetting posted interrupt.
4586 * 3. APIC virtialization is disabled for the vcpu.
4587 */
4588 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
4589 kvm_vcpu_apicv_active(&svm->vcpu)) {
4590 struct amd_iommu_pi_data pi;
4591
4592 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05004593 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
4594 AVIC_HPA_MASK);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05004595 pi.ga_tag = AVIC_GATAG(kvm->arch.avic_vm_id,
4596 svm->vcpu.vcpu_id);
4597 pi.is_guest_mode = true;
4598 pi.vcpu_data = &vcpu_info;
4599 ret = irq_set_vcpu_affinity(host_irq, &pi);
4600
4601 /**
4602 * Here, we successfully setting up vcpu affinity in
4603 * IOMMU guest mode. Now, we need to store the posted
4604 * interrupt information in a per-vcpu ir_list so that
4605 * we can reference to them directly when we update vcpu
4606 * scheduling information in IOMMU irte.
4607 */
4608 if (!ret && pi.is_guest_mode)
4609 svm_ir_list_add(svm, &pi);
4610 } else {
4611 /* Use legacy mode in IRTE */
4612 struct amd_iommu_pi_data pi;
4613
4614 /**
4615 * Here, pi is used to:
4616 * - Tell IOMMU to use legacy mode for this interrupt.
4617 * - Retrieve ga_tag of prior interrupt remapping data.
4618 */
4619 pi.is_guest_mode = false;
4620 ret = irq_set_vcpu_affinity(host_irq, &pi);
4621
4622 /**
4623 * Check if the posted interrupt was previously
4624 * setup with the guest_mode by checking if the ga_tag
4625 * was cached. If so, we need to clean up the per-vcpu
4626 * ir_list.
4627 */
4628 if (!ret && pi.prev_ga_tag) {
4629 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
4630 struct kvm_vcpu *vcpu;
4631
4632 vcpu = kvm_get_vcpu_by_id(kvm, id);
4633 if (vcpu)
4634 svm_ir_list_del(to_svm(vcpu), &pi);
4635 }
4636 }
4637
4638 if (!ret && svm) {
4639 trace_kvm_pi_irte_update(svm->vcpu.vcpu_id,
4640 host_irq, e->gsi,
4641 vcpu_info.vector,
4642 vcpu_info.pi_desc_addr, set);
4643 }
4644
4645 if (ret < 0) {
4646 pr_err("%s: failed to update PI IRTE\n", __func__);
4647 goto out;
4648 }
4649 }
4650
4651 ret = 0;
4652out:
4653 srcu_read_unlock(&kvm->irq_srcu, idx);
4654 return ret;
4655}
4656
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004657static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02004658{
4659 struct vcpu_svm *svm = to_svm(vcpu);
4660 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02004661 int ret;
4662 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
4663 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
4664 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
4665
4666 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02004667}
4668
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004669static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
4670{
4671 struct vcpu_svm *svm = to_svm(vcpu);
4672
4673 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
4674}
4675
4676static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
4677{
4678 struct vcpu_svm *svm = to_svm(vcpu);
4679
4680 if (masked) {
4681 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01004682 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004683 } else {
4684 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01004685 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004686 }
4687}
4688
Gleb Natapov78646122009-03-23 12:12:11 +02004689static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
4690{
4691 struct vcpu_svm *svm = to_svm(vcpu);
4692 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02004693 int ret;
4694
4695 if (!gif_set(svm) ||
4696 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
4697 return 0;
4698
Avi Kivityf6e78472010-08-02 15:30:20 +03004699 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02004700
Joerg Roedel20307532010-11-29 17:51:48 +01004701 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02004702 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
4703
4704 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02004705}
4706
Jan Kiszkac9a79532014-03-07 20:03:15 +01004707static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03004708{
Alexander Graf219b65d2009-06-15 15:21:25 +02004709 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02004710
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004711 if (kvm_vcpu_apicv_active(vcpu))
4712 return;
4713
Joerg Roedele0231712010-02-24 18:59:10 +01004714 /*
4715 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
4716 * 1, because that's a separate STGI/VMRUN intercept. The next time we
4717 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05004718 * we'll get the vintr intercept. However, if the vGIF feature is
4719 * enabled, the STGI interception will not occur. Enable the irq
4720 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01004721 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05004722 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02004723 svm_set_vintr(svm);
4724 svm_inject_irq(svm, 0x0);
4725 }
Gleb Natapov9222be12009-04-23 17:14:37 +03004726}
4727
Jan Kiszkac9a79532014-03-07 20:03:15 +01004728static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004729{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004730 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004731
Gleb Natapov44c11432009-05-11 13:35:52 +03004732 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
4733 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01004734 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03004735
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05004736 if (!gif_set(svm)) {
4737 if (vgif_enabled(svm))
4738 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02004739 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05004740 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02004741
4742 if (svm->nested.exit_required)
4743 return; /* we're not going to run the guest yet */
4744
Joerg Roedele0231712010-02-24 18:59:10 +01004745 /*
4746 * Something prevents NMI from been injected. Single step over possible
4747 * problem (IRET or exception injection or interrupt shadow)
4748 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02004749 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02004750 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03004751 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03004752}
4753
Izik Eiduscbc94022007-10-25 00:29:55 +02004754static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
4755{
4756 return 0;
4757}
4758
Avi Kivityd9e368d2007-06-07 19:18:30 +03004759static void svm_flush_tlb(struct kvm_vcpu *vcpu)
4760{
Joerg Roedel38e5e922010-12-03 15:25:16 +01004761 struct vcpu_svm *svm = to_svm(vcpu);
4762
4763 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
4764 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
4765 else
4766 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03004767}
4768
Avi Kivity04d2cc72007-09-10 18:10:54 +03004769static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
4770{
4771}
4772
Joerg Roedeld7bf8222008-04-16 16:51:17 +02004773static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
4774{
4775 struct vcpu_svm *svm = to_svm(vcpu);
4776
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05004777 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01004778 return;
4779
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004780 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02004781 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03004782 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02004783 }
4784}
4785
Joerg Roedel649d6862008-04-16 16:51:15 +02004786static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
4787{
4788 struct vcpu_svm *svm = to_svm(vcpu);
4789 u64 cr8;
4790
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05004791 if (svm_nested_virtualize_tpr(vcpu) ||
4792 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01004793 return;
4794
Joerg Roedel649d6862008-04-16 16:51:15 +02004795 cr8 = kvm_get_cr8(vcpu);
4796 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
4797 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
4798}
4799
Gleb Natapov9222be12009-04-23 17:14:37 +03004800static void svm_complete_interrupts(struct vcpu_svm *svm)
4801{
4802 u8 vector;
4803 int type;
4804 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01004805 unsigned int3_injected = svm->int3_injected;
4806
4807 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03004808
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02004809 /*
4810 * If we've made progress since setting HF_IRET_MASK, we've
4811 * executed an IRET and can allow NMI injection.
4812 */
4813 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
4814 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03004815 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03004816 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
4817 }
Gleb Natapov44c11432009-05-11 13:35:52 +03004818
Gleb Natapov9222be12009-04-23 17:14:37 +03004819 svm->vcpu.arch.nmi_injected = false;
4820 kvm_clear_exception_queue(&svm->vcpu);
4821 kvm_clear_interrupt_queue(&svm->vcpu);
4822
4823 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
4824 return;
4825
Avi Kivity3842d132010-07-27 12:30:24 +03004826 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
4827
Gleb Natapov9222be12009-04-23 17:14:37 +03004828 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
4829 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
4830
4831 switch (type) {
4832 case SVM_EXITINTINFO_TYPE_NMI:
4833 svm->vcpu.arch.nmi_injected = true;
4834 break;
4835 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01004836 /*
4837 * In case of software exceptions, do not reinject the vector,
4838 * but re-execute the instruction instead. Rewind RIP first
4839 * if we emulated INT3 before.
4840 */
4841 if (kvm_exception_is_soft(vector)) {
4842 if (vector == BP_VECTOR && int3_injected &&
4843 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
4844 kvm_rip_write(&svm->vcpu,
4845 kvm_rip_read(&svm->vcpu) -
4846 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02004847 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01004848 }
Gleb Natapov9222be12009-04-23 17:14:37 +03004849 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
4850 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02004851 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03004852
4853 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02004854 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03004855 break;
4856 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004857 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03004858 break;
4859 default:
4860 break;
4861 }
4862}
4863
Avi Kivityb463a6f2010-07-20 15:06:17 +03004864static void svm_cancel_injection(struct kvm_vcpu *vcpu)
4865{
4866 struct vcpu_svm *svm = to_svm(vcpu);
4867 struct vmcb_control_area *control = &svm->vmcb->control;
4868
4869 control->exit_int_info = control->event_inj;
4870 control->exit_int_info_err = control->event_inj_err;
4871 control->event_inj = 0;
4872 svm_complete_interrupts(svm);
4873}
4874
Avi Kivity851ba692009-08-24 11:10:17 +03004875static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004876{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004877 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03004878
Joerg Roedel2041a062010-04-22 12:33:08 +02004879 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
4880 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
4881 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
4882
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004883 /*
4884 * A vmexit emulation is required before the vcpu can be executed
4885 * again.
4886 */
4887 if (unlikely(svm->nested.exit_required))
4888 return;
4889
Ladi Proseka12713c2017-06-21 09:07:00 +02004890 /*
4891 * Disable singlestep if we're injecting an interrupt/exception.
4892 * We don't want our modified rflags to be pushed on the stack where
4893 * we might not be able to easily reset them if we disabled NMI
4894 * singlestep later.
4895 */
4896 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
4897 /*
4898 * Event injection happens before external interrupts cause a
4899 * vmexit and interrupts are disabled here, so smp_send_reschedule
4900 * is enough to force an immediate vmexit.
4901 */
4902 disable_nmi_singlestep(svm);
4903 smp_send_reschedule(vcpu->cpu);
4904 }
4905
Rusty Russelle756fc62007-07-30 20:07:08 +10004906 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004907
Joerg Roedel649d6862008-04-16 16:51:15 +02004908 sync_lapic_to_cr8(vcpu);
4909
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02004910 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004911
Avi Kivity04d2cc72007-09-10 18:10:54 +03004912 clgi();
4913
4914 local_irq_enable();
Avi Kivity36241b82006-12-22 01:05:20 -08004915
Avi Kivity6aa8b732006-12-10 02:21:36 -08004916 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03004917 "push %%" _ASM_BP "; \n\t"
4918 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
4919 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
4920 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
4921 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
4922 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
4923 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004924#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004925 "mov %c[r8](%[svm]), %%r8 \n\t"
4926 "mov %c[r9](%[svm]), %%r9 \n\t"
4927 "mov %c[r10](%[svm]), %%r10 \n\t"
4928 "mov %c[r11](%[svm]), %%r11 \n\t"
4929 "mov %c[r12](%[svm]), %%r12 \n\t"
4930 "mov %c[r13](%[svm]), %%r13 \n\t"
4931 "mov %c[r14](%[svm]), %%r14 \n\t"
4932 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08004933#endif
4934
Avi Kivity6aa8b732006-12-10 02:21:36 -08004935 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03004936 "push %%" _ASM_AX " \n\t"
4937 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03004938 __ex(SVM_VMLOAD) "\n\t"
4939 __ex(SVM_VMRUN) "\n\t"
4940 __ex(SVM_VMSAVE) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03004941 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08004942
4943 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03004944 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
4945 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
4946 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
4947 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
4948 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
4949 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004950#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004951 "mov %%r8, %c[r8](%[svm]) \n\t"
4952 "mov %%r9, %c[r9](%[svm]) \n\t"
4953 "mov %%r10, %c[r10](%[svm]) \n\t"
4954 "mov %%r11, %c[r11](%[svm]) \n\t"
4955 "mov %%r12, %c[r12](%[svm]) \n\t"
4956 "mov %%r13, %c[r13](%[svm]) \n\t"
4957 "mov %%r14, %c[r14](%[svm]) \n\t"
4958 "mov %%r15, %c[r15](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08004959#endif
Avi Kivity74547662012-09-16 15:10:59 +03004960 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08004961 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004962 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08004963 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004964 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
4965 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
4966 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
4967 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
4968 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
4969 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004970#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004971 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
4972 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
4973 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
4974 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
4975 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
4976 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
4977 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
4978 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004979#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02004980 : "cc", "memory"
4981#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03004982 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02004983 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03004984#else
4985 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02004986#endif
4987 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08004988
Avi Kivity82ca2d12010-10-21 12:20:34 +02004989#ifdef CONFIG_X86_64
4990 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
4991#else
Avi Kivitydacccfd2010-10-21 12:20:33 +02004992 loadsegment(fs, svm->host.fs);
Avi Kivity831ca602011-03-08 16:09:51 +02004993#ifndef CONFIG_X86_32_LAZY_GS
4994 loadsegment(gs, svm->host.gs);
4995#endif
Avi Kivity9581d442010-10-19 16:46:55 +02004996#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08004997
4998 reload_tss(vcpu);
4999
Avi Kivity56ba47d2007-11-07 17:14:18 +02005000 local_irq_disable();
5001
Avi Kivity13c34e02010-10-21 12:20:31 +02005002 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5003 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5004 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5005 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5006
Joerg Roedel3781c012011-01-14 16:45:02 +01005007 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
5008 kvm_before_handle_nmi(&svm->vcpu);
5009
5010 stgi();
5011
5012 /* Any pending NMI will happen here */
5013
5014 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
5015 kvm_after_handle_nmi(&svm->vcpu);
5016
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005017 sync_cr8_to_lapic(vcpu);
5018
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005019 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005020
Joerg Roedel38e5e922010-12-03 15:25:16 +01005021 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5022
Gleb Natapov631bc482010-10-14 11:22:52 +02005023 /* if exit due to PF check for async PF */
5024 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005025 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005026
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005027 if (npt_enabled) {
5028 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5029 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5030 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005031
5032 /*
5033 * We need to handle MC intercepts here before the vcpu has a chance to
5034 * change the physical cpu
5035 */
5036 if (unlikely(svm->vmcb->control.exit_code ==
5037 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5038 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005039
5040 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005041}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005042STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005043
Avi Kivity6aa8b732006-12-10 02:21:36 -08005044static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5045{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005046 struct vcpu_svm *svm = to_svm(vcpu);
5047
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005048 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005049 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedelf40f6a42010-12-03 15:25:15 +01005050 svm_flush_tlb(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005051}
5052
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005053static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5054{
5055 struct vcpu_svm *svm = to_svm(vcpu);
5056
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005057 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005058 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005059
5060 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005061 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005062 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005063
Joerg Roedelf40f6a42010-12-03 15:25:15 +01005064 svm_flush_tlb(vcpu);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005065}
5066
Avi Kivity6aa8b732006-12-10 02:21:36 -08005067static int is_disabled(void)
5068{
Joerg Roedel6031a612007-06-22 12:29:50 +03005069 u64 vm_cr;
5070
5071 rdmsrl(MSR_VM_CR, vm_cr);
5072 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5073 return 1;
5074
Avi Kivity6aa8b732006-12-10 02:21:36 -08005075 return 0;
5076}
5077
Ingo Molnar102d8322007-02-19 14:37:47 +02005078static void
5079svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5080{
5081 /*
5082 * Patch in the VMMCALL instruction:
5083 */
5084 hypercall[0] = 0x0f;
5085 hypercall[1] = 0x01;
5086 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005087}
5088
Yang, Sheng002c7f72007-07-31 14:23:01 +03005089static void svm_check_processor_compat(void *rtn)
5090{
5091 *(int *)rtn = 0;
5092}
5093
Avi Kivity774ead32007-12-26 13:57:04 +02005094static bool svm_cpu_has_accelerated_tpr(void)
5095{
5096 return false;
5097}
5098
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005099static bool svm_has_high_real_mode_segbase(void)
5100{
5101 return true;
5102}
5103
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005104static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5105{
5106 return 0;
5107}
5108
Sheng Yang0e851882009-12-18 16:48:46 +08005109static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5110{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005111 struct vcpu_svm *svm = to_svm(vcpu);
5112
5113 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005114 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005115
5116 if (!kvm_vcpu_apicv_active(vcpu))
5117 return;
5118
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005119 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005120}
5121
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005122static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5123{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005124 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005125 case 0x1:
5126 if (avic)
5127 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5128 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005129 case 0x80000001:
5130 if (nested)
5131 entry->ecx |= (1 << 2); /* Set SVM bit */
5132 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005133 case 0x8000000A:
5134 entry->eax = 1; /* SVM revision 1 */
5135 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5136 ASID emulation to nested SVM */
5137 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005138 entry->edx = 0; /* Per default do not support any
5139 additional features */
5140
5141 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005142 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005143 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005144
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005145 /* Support NPT for the guest if enabled */
5146 if (npt_enabled)
5147 entry->edx |= SVM_FEATURE_NPT;
5148
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005149 break;
5150 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005151}
5152
Sheng Yang17cc3932010-01-05 19:02:27 +08005153static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005154{
Sheng Yang17cc3932010-01-05 19:02:27 +08005155 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005156}
5157
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005158static bool svm_rdtscp_supported(void)
5159{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005160 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005161}
5162
Mao, Junjiead756a12012-07-02 01:18:48 +00005163static bool svm_invpcid_supported(void)
5164{
5165 return false;
5166}
5167
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005168static bool svm_mpx_supported(void)
5169{
5170 return false;
5171}
5172
Wanpeng Li55412b22014-12-02 19:21:30 +08005173static bool svm_xsaves_supported(void)
5174{
5175 return false;
5176}
5177
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005178static bool svm_has_wbinvd_exit(void)
5179{
5180 return true;
5181}
5182
Joerg Roedel80612522011-04-04 12:39:33 +02005183#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005184 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005185#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005186 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005187#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005188 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005189
Mathias Krause09941fb2012-08-30 01:30:20 +02005190static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005191 u32 exit_code;
5192 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005193} x86_intercept_map[] = {
5194 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5195 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5196 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5197 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5198 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02005199 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5200 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02005201 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5202 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5203 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5204 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5205 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5206 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5207 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5208 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02005209 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
5210 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
5211 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
5212 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
5213 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
5214 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
5215 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
5216 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005217 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
5218 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
5219 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02005220 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
5221 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
5222 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
5223 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
5224 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
5225 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
5226 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
5227 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
5228 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02005229 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
5230 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
5231 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
5232 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
5233 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
5234 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
5235 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02005236 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
5237 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
5238 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
5239 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005240};
5241
Joerg Roedel80612522011-04-04 12:39:33 +02005242#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005243#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005244#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005245
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005246static int svm_check_intercept(struct kvm_vcpu *vcpu,
5247 struct x86_instruction_info *info,
5248 enum x86_intercept_stage stage)
5249{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005250 struct vcpu_svm *svm = to_svm(vcpu);
5251 int vmexit, ret = X86EMUL_CONTINUE;
5252 struct __x86_intercept icpt_info;
5253 struct vmcb *vmcb = svm->vmcb;
5254
5255 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
5256 goto out;
5257
5258 icpt_info = x86_intercept_map[info->intercept];
5259
Avi Kivity40e19b52011-04-21 12:35:41 +03005260 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005261 goto out;
5262
5263 switch (icpt_info.exit_code) {
5264 case SVM_EXIT_READ_CR0:
5265 if (info->intercept == x86_intercept_cr_read)
5266 icpt_info.exit_code += info->modrm_reg;
5267 break;
5268 case SVM_EXIT_WRITE_CR0: {
5269 unsigned long cr0, val;
5270 u64 intercept;
5271
5272 if (info->intercept == x86_intercept_cr_write)
5273 icpt_info.exit_code += info->modrm_reg;
5274
Jan Kiszka62baf442014-06-29 21:55:53 +02005275 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
5276 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005277 break;
5278
5279 intercept = svm->nested.intercept;
5280
5281 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
5282 break;
5283
5284 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
5285 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
5286
5287 if (info->intercept == x86_intercept_lmsw) {
5288 cr0 &= 0xfUL;
5289 val &= 0xfUL;
5290 /* lmsw can't clear PE - catch this here */
5291 if (cr0 & X86_CR0_PE)
5292 val |= X86_CR0_PE;
5293 }
5294
5295 if (cr0 ^ val)
5296 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
5297
5298 break;
5299 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02005300 case SVM_EXIT_READ_DR0:
5301 case SVM_EXIT_WRITE_DR0:
5302 icpt_info.exit_code += info->modrm_reg;
5303 break;
Joerg Roedel80612522011-04-04 12:39:33 +02005304 case SVM_EXIT_MSR:
5305 if (info->intercept == x86_intercept_wrmsr)
5306 vmcb->control.exit_info_1 = 1;
5307 else
5308 vmcb->control.exit_info_1 = 0;
5309 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02005310 case SVM_EXIT_PAUSE:
5311 /*
5312 * We get this for NOP only, but pause
5313 * is rep not, check this here
5314 */
5315 if (info->rep_prefix != REPE_PREFIX)
5316 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02005317 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02005318 case SVM_EXIT_IOIO: {
5319 u64 exit_info;
5320 u32 bytes;
5321
Joerg Roedelf6511932011-04-04 12:39:35 +02005322 if (info->intercept == x86_intercept_in ||
5323 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02005324 exit_info = ((info->src_val & 0xffff) << 16) |
5325 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02005326 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02005327 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02005328 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02005329 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02005330 }
5331
5332 if (info->intercept == x86_intercept_outs ||
5333 info->intercept == x86_intercept_ins)
5334 exit_info |= SVM_IOIO_STR_MASK;
5335
5336 if (info->rep_prefix)
5337 exit_info |= SVM_IOIO_REP_MASK;
5338
5339 bytes = min(bytes, 4u);
5340
5341 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
5342
5343 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
5344
5345 vmcb->control.exit_info_1 = exit_info;
5346 vmcb->control.exit_info_2 = info->next_rip;
5347
5348 break;
5349 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005350 default:
5351 break;
5352 }
5353
Bandan Dasf1047652015-06-11 02:05:33 -04005354 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
5355 if (static_cpu_has(X86_FEATURE_NRIPS))
5356 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005357 vmcb->control.exit_code = icpt_info.exit_code;
5358 vmexit = nested_svm_exit_handled(svm);
5359
5360 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
5361 : X86EMUL_CONTINUE;
5362
5363out:
5364 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005365}
5366
Yang Zhanga547c6d2013-04-11 19:25:10 +08005367static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
5368{
5369 local_irq_enable();
Paolo Bonzinif2485b32016-06-15 15:23:11 +02005370 /*
5371 * We must have an instruction with interrupts enabled, so
5372 * the timer interrupt isn't delayed by the interrupt shadow.
5373 */
5374 asm("nop");
5375 local_irq_disable();
Yang Zhanga547c6d2013-04-11 19:25:10 +08005376}
5377
Radim Krčmářae97a3b2014-08-21 18:08:06 +02005378static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
5379{
5380}
5381
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05005382static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
5383{
5384 if (avic_handle_apic_id_update(vcpu) != 0)
5385 return;
5386 if (avic_handle_dfr_update(vcpu) != 0)
5387 return;
5388 avic_handle_ldr_update(vcpu);
5389}
5390
Borislav Petkov74f16902017-03-26 23:51:24 +02005391static void svm_setup_mce(struct kvm_vcpu *vcpu)
5392{
5393 /* [63:9] are reserved. */
5394 vcpu->arch.mcg_cap &= 0x1ff;
5395}
5396
Kees Cook404f6aa2016-08-08 16:29:06 -07005397static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005398 .cpu_has_kvm_support = has_svm,
5399 .disabled_by_bios = is_disabled,
5400 .hardware_setup = svm_hardware_setup,
5401 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03005402 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005403 .hardware_enable = svm_hardware_enable,
5404 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02005405 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005406 .cpu_has_high_real_mode_segbase = svm_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005407
5408 .vcpu_create = svm_create_vcpu,
5409 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03005410 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005411
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005412 .vm_init = avic_vm_init,
5413 .vm_destroy = avic_vm_destroy,
5414
Avi Kivity04d2cc72007-09-10 18:10:54 +03005415 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005416 .vcpu_load = svm_vcpu_load,
5417 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05005418 .vcpu_blocking = svm_vcpu_blocking,
5419 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005420
Paolo Bonzinia96036b2015-11-10 11:55:36 +01005421 .update_bp_intercept = update_bp_intercept,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005422 .get_msr = svm_get_msr,
5423 .set_msr = svm_set_msr,
5424 .get_segment_base = svm_get_segment_base,
5425 .get_segment = svm_get_segment,
5426 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02005427 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10005428 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02005429 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02005430 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03005431 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005432 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005433 .set_cr3 = svm_set_cr3,
5434 .set_cr4 = svm_set_cr4,
5435 .set_efer = svm_set_efer,
5436 .get_idt = svm_get_idt,
5437 .set_idt = svm_set_idt,
5438 .get_gdt = svm_get_gdt,
5439 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01005440 .get_dr6 = svm_get_dr6,
5441 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03005442 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01005443 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005444 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005445 .get_rflags = svm_get_rflags,
5446 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08005447
Avi Kivity6aa8b732006-12-10 02:21:36 -08005448 .tlb_flush = svm_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005449
Avi Kivity6aa8b732006-12-10 02:21:36 -08005450 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03005451 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005452 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04005453 .set_interrupt_shadow = svm_set_interrupt_shadow,
5454 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02005455 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03005456 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005457 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02005458 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03005459 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02005460 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005461 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005462 .get_nmi_mask = svm_get_nmi_mask,
5463 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005464 .enable_nmi_window = enable_nmi_window,
5465 .enable_irq_window = enable_irq_window,
5466 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +08005467 .set_virtual_x2apic_mode = svm_set_virtual_x2apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03005468 .get_enable_apicv = svm_get_enable_apicv,
5469 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08005470 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005471 .hwapic_irr_update = svm_hwapic_irr_update,
5472 .hwapic_isr_update = svm_hwapic_isr_update,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05005473 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02005474
5475 .set_tss_addr = svm_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08005476 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005477 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005478
Avi Kivity586f9602010-11-18 13:09:54 +02005479 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02005480
Sheng Yang17cc3932010-01-05 19:02:27 +08005481 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08005482
5483 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005484
5485 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00005486 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005487 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08005488 .xsaves_supported = svm_xsaves_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005489
5490 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005491
5492 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10005493
5494 .write_tsc_offset = svm_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005495
5496 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005497
5498 .check_intercept = svm_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +08005499 .handle_external_intr = svm_handle_external_intr,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02005500
5501 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02005502
5503 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005504 .deliver_posted_interrupt = svm_deliver_avic_intr,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005505 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02005506 .setup_mce = svm_setup_mce,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005507};
5508
5509static int __init svm_init(void)
5510{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08005511 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03005512 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005513}
5514
5515static void __exit svm_exit(void)
5516{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08005517 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08005518}
5519
5520module_init(svm_init)
5521module_exit(svm_exit)