]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kvm/svm.c
KVM: SVM: Implement VIRT_SPEC_CTRL support for SSBD
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kvm / svm.c
CommitLineData
6aa8b732
AK
1/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * AMD SVM support
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
9611c187 7 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
6aa8b732
AK
8 *
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 */
44a95dae
SS
17
18#define pr_fmt(fmt) "SVM: " fmt
19
edf88417
AK
20#include <linux/kvm_host.h>
21
85f455f7 22#include "irq.h"
1d737c8a 23#include "mmu.h"
5fdbf976 24#include "kvm_cache_regs.h"
fe4c7b19 25#include "x86.h"
66f7b72e 26#include "cpuid.h"
25462f7f 27#include "pmu.h"
e495606d 28
6aa8b732 29#include <linux/module.h>
ae759544 30#include <linux/mod_devicetable.h>
9d8f549d 31#include <linux/kernel.h>
6aa8b732
AK
32#include <linux/vmalloc.h>
33#include <linux/highmem.h>
e8edc6e0 34#include <linux/sched.h>
af658dca 35#include <linux/trace_events.h>
5a0e3ad6 36#include <linux/slab.h>
5881f737
SS
37#include <linux/amd-iommu.h>
38#include <linux/hashtable.h>
c207aee4 39#include <linux/frame.h>
6aa8b732 40
8221c137 41#include <asm/apic.h>
1018faa6 42#include <asm/perf_event.h>
67ec6607 43#include <asm/tlbflush.h>
e495606d 44#include <asm/desc.h>
facb0139 45#include <asm/debugreg.h>
631bc487 46#include <asm/kvm_para.h>
411b44ba 47#include <asm/irq_remapping.h>
20b509bf 48#include <asm/spec-ctrl.h>
6aa8b732 49
63d1142f 50#include <asm/virtext.h>
229456fc 51#include "trace.h"
63d1142f 52
4ecac3fd
AK
53#define __ex(x) __kvm_handle_fault_on_reboot(x)
54
6aa8b732
AK
55MODULE_AUTHOR("Qumranet");
56MODULE_LICENSE("GPL");
57
ae759544
JT
58static const struct x86_cpu_id svm_cpu_id[] = {
59 X86_FEATURE_MATCH(X86_FEATURE_SVM),
60 {}
61};
62MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
63
6aa8b732
AK
64#define IOPM_ALLOC_ORDER 2
65#define MSRPM_ALLOC_ORDER 1
66
6aa8b732
AK
67#define SEG_TYPE_LDT 2
68#define SEG_TYPE_BUSY_TSS16 3
69
6bc31bdc
AP
70#define SVM_FEATURE_NPT (1 << 0)
71#define SVM_FEATURE_LBRV (1 << 1)
72#define SVM_FEATURE_SVML (1 << 2)
73#define SVM_FEATURE_NRIP (1 << 3)
ddce97aa
AP
74#define SVM_FEATURE_TSC_RATE (1 << 4)
75#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
76#define SVM_FEATURE_FLUSH_ASID (1 << 6)
77#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
6bc31bdc 78#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
80b7706e 79
340d3bc3
SS
80#define SVM_AVIC_DOORBELL 0xc001011b
81
410e4d57
JR
82#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
83#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
84#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
85
24e09cbf
JR
86#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
87
fbc0db76 88#define TSC_RATIO_RSVD 0xffffff0000000000ULL
92a1f12d
JR
89#define TSC_RATIO_MIN 0x0000000000000001ULL
90#define TSC_RATIO_MAX 0x000000ffffffffffULL
fbc0db76 91
5446a979 92#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
44a95dae
SS
93
94/*
95 * 0xff is broadcast, so the max index allowed for physical APIC ID
96 * table is 0xfe. APIC IDs above 0xff are reserved.
97 */
98#define AVIC_MAX_PHYSICAL_ID_COUNT 255
99
18f40c53
SS
100#define AVIC_UNACCEL_ACCESS_WRITE_MASK 1
101#define AVIC_UNACCEL_ACCESS_OFFSET_MASK 0xFF0
102#define AVIC_UNACCEL_ACCESS_VECTOR_MASK 0xFFFFFFFF
103
5ea11f2b
SS
104/* AVIC GATAG is encoded using VM and VCPU IDs */
105#define AVIC_VCPU_ID_BITS 8
106#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1)
107
108#define AVIC_VM_ID_BITS 24
109#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS)
110#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1)
111
112#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \
113 (y & AVIC_VCPU_ID_MASK))
114#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK)
115#define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK)
116
67ec6607
JR
117static bool erratum_383_found __read_mostly;
118
6c8166a7
AK
119static const u32 host_save_user_msrs[] = {
120#ifdef CONFIG_X86_64
121 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
122 MSR_FS_BASE,
123#endif
124 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
46896c73 125 MSR_TSC_AUX,
6c8166a7
AK
126};
127
128#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
129
130struct kvm_vcpu;
131
e6aa9abd
JR
132struct nested_state {
133 struct vmcb *hsave;
134 u64 hsave_msr;
4a810181 135 u64 vm_cr_msr;
e6aa9abd
JR
136 u64 vmcb;
137
138 /* These are the merged vectors */
139 u32 *msrpm;
140
141 /* gpa pointers to the real vectors */
142 u64 vmcb_msrpm;
ce2ac085 143 u64 vmcb_iopm;
aad42c64 144
cd3ff653
JR
145 /* A VMEXIT is required but not yet emulated */
146 bool exit_required;
147
aad42c64 148 /* cache for intercepts of the guest */
4ee546b4 149 u32 intercept_cr;
3aed041a 150 u32 intercept_dr;
aad42c64
JR
151 u32 intercept_exceptions;
152 u64 intercept;
153
5bd2edc3
JR
154 /* Nested Paging related state */
155 u64 nested_cr3;
e6aa9abd
JR
156};
157
323c3d80
JR
158#define MSRPM_OFFSETS 16
159static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
160
2b036c6b
BO
161/*
162 * Set osvw_len to higher value when updated Revision Guides
163 * are published and we know what the new status bits are
164 */
165static uint64_t osvw_len = 4, osvw_status;
166
6c8166a7
AK
167struct vcpu_svm {
168 struct kvm_vcpu vcpu;
169 struct vmcb *vmcb;
170 unsigned long vmcb_pa;
171 struct svm_cpu_data *svm_data;
172 uint64_t asid_generation;
173 uint64_t sysenter_esp;
174 uint64_t sysenter_eip;
46896c73 175 uint64_t tsc_aux;
6c8166a7
AK
176
177 u64 next_rip;
178
f6781ae1 179 u64 spec_ctrl;
25c5c90e
TG
180 /*
181 * Contains guest-controlled bits of VIRT_SPEC_CTRL, which will be
182 * translated into the appropriate L2_CFG bits on the host to
183 * perform speculative control.
184 */
185 u64 virt_spec_ctrl;
f6781ae1 186
6c8166a7 187 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
afe9e66f 188 struct {
dacccfdd
AK
189 u16 fs;
190 u16 gs;
191 u16 ldt;
afe9e66f
AK
192 u64 gs_base;
193 } host;
6c8166a7
AK
194
195 u32 *msrpm;
6c8166a7 196
bd3d1ec3
AK
197 ulong nmi_iret_rip;
198
e6aa9abd 199 struct nested_state nested;
6be7d306
JK
200
201 bool nmi_singlestep;
ab2f4d73 202 u64 nmi_singlestep_guest_rflags;
66b7138f
JK
203
204 unsigned int3_injected;
205 unsigned long int3_rip;
fbc0db76 206
6092d3d3
JR
207 /* cached guest cpuid flags for faster access */
208 bool nrips_enabled : 1;
44a95dae 209
18f40c53 210 u32 ldr_reg;
44a95dae
SS
211 struct page *avic_backing_page;
212 u64 *avic_physical_id_cache;
8221c137 213 bool avic_is_running;
411b44ba
SS
214
215 /*
216 * Per-vcpu list of struct amd_svm_iommu_ir:
217 * This is used mainly to store interrupt remapping information used
218 * when update the vcpu affinity. This avoids the need to scan for
219 * IRTE and try to match ga_tag in the IOMMU driver.
220 */
221 struct list_head ir_list;
222 spinlock_t ir_list_lock;
223};
224
225/*
226 * This is a wrapper of struct amd_iommu_ir_data.
227 */
228struct amd_svm_iommu_ir {
229 struct list_head node; /* Used by SVM for per-vcpu ir_list */
230 void *data; /* Storing pointer to struct amd_ir_data */
6c8166a7
AK
231};
232
44a95dae
SS
233#define AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK (0xFF)
234#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
235
236#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
237#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
238#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
239#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
240
fbc0db76
JR
241static DEFINE_PER_CPU(u64, current_tsc_ratio);
242#define TSC_RATIO_DEFAULT 0x0100000000ULL
243
455716fa
JR
244#define MSR_INVALID 0xffffffffU
245
09941fbb 246static const struct svm_direct_access_msrs {
ac72a9b7
JR
247 u32 index; /* Index of the MSR */
248 bool always; /* True if intercept is always on */
249} direct_access_msrs[] = {
8c06585d 250 { .index = MSR_STAR, .always = true },
ac72a9b7
JR
251 { .index = MSR_IA32_SYSENTER_CS, .always = true },
252#ifdef CONFIG_X86_64
253 { .index = MSR_GS_BASE, .always = true },
254 { .index = MSR_FS_BASE, .always = true },
255 { .index = MSR_KERNEL_GS_BASE, .always = true },
256 { .index = MSR_LSTAR, .always = true },
257 { .index = MSR_CSTAR, .always = true },
258 { .index = MSR_SYSCALL_MASK, .always = true },
259#endif
089e89e7
TL
260 { .index = MSR_IA32_SPEC_CTRL, .always = true },
261 { .index = MSR_IA32_PRED_CMD, .always = true },
ac72a9b7
JR
262 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
263 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
264 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
265 { .index = MSR_IA32_LASTINTTOIP, .always = false },
266 { .index = MSR_INVALID, .always = false },
6c8166a7
AK
267};
268
709ddebf
JR
269/* enable NPT for AMD64 and X86 with PAE */
270#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
271static bool npt_enabled = true;
272#else
e0231715 273static bool npt_enabled;
709ddebf 274#endif
6c7dac72 275
e2358851
DB
276/* allow nested paging (virtualized MMU) for all guests */
277static int npt = true;
6c7dac72 278module_param(npt, int, S_IRUGO);
e3da3acd 279
e2358851
DB
280/* allow nested virtualization in KVM/SVM */
281static int nested = true;
236de055
AG
282module_param(nested, int, S_IRUGO);
283
44a95dae
SS
284/* enable / disable AVIC */
285static int avic;
5b8abf1f 286#ifdef CONFIG_X86_LOCAL_APIC
44a95dae 287module_param(avic, int, S_IRUGO);
5b8abf1f 288#endif
44a95dae 289
89c8a498
JN
290/* enable/disable Virtual VMLOAD VMSAVE */
291static int vls = true;
292module_param(vls, int, 0444);
293
5ea11f2b
SS
294/* AVIC VM ID bit masks and lock */
295static DECLARE_BITMAP(avic_vm_id_bitmap, AVIC_VM_ID_NR);
296static DEFINE_SPINLOCK(avic_vm_id_lock);
297
79a8059d 298static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
44874f84 299static void svm_flush_tlb(struct kvm_vcpu *vcpu);
a5c3832d 300static void svm_complete_interrupts(struct vcpu_svm *svm);
04d2cc77 301
410e4d57 302static int nested_svm_exit_handled(struct vcpu_svm *svm);
b8e88bc8 303static int nested_svm_intercept(struct vcpu_svm *svm);
cf74a78b 304static int nested_svm_vmexit(struct vcpu_svm *svm);
cf74a78b
AG
305static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
306 bool has_error_code, u32 error_code);
307
8d28fec4 308enum {
116a0a23
JR
309 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
310 pause filter count */
f56838e4 311 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
d48086d1 312 VMCB_ASID, /* ASID */
decdbf6a 313 VMCB_INTR, /* int_ctl, int_vector */
b2747166 314 VMCB_NPT, /* npt_en, nCR3, gPAT */
dcca1a65 315 VMCB_CR, /* CR0, CR3, CR4, EFER */
72214b96 316 VMCB_DR, /* DR6, DR7 */
17a703cb 317 VMCB_DT, /* GDT, IDT */
060d0c9a 318 VMCB_SEG, /* CS, DS, SS, ES, CPL */
0574dec0 319 VMCB_CR2, /* CR2 only */
b53ba3f9 320 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
44a95dae
SS
321 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
322 * AVIC PHYSICAL_TABLE pointer,
323 * AVIC LOGICAL_TABLE pointer
324 */
8d28fec4
RJ
325 VMCB_DIRTY_MAX,
326};
327
0574dec0
JR
328/* TPR and CR2 are always written before VMRUN */
329#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
8d28fec4 330
44a95dae
SS
331#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
332
8d28fec4
RJ
333static inline void mark_all_dirty(struct vmcb *vmcb)
334{
335 vmcb->control.clean = 0;
336}
337
338static inline void mark_all_clean(struct vmcb *vmcb)
339{
340 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
341 & ~VMCB_ALWAYS_DIRTY_MASK;
342}
343
344static inline void mark_dirty(struct vmcb *vmcb, int bit)
345{
346 vmcb->control.clean &= ~(1 << bit);
347}
348
a2fa3e9f
GH
349static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
350{
fb3f0f51 351 return container_of(vcpu, struct vcpu_svm, vcpu);
a2fa3e9f
GH
352}
353
44a95dae
SS
354static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
355{
356 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
357 mark_dirty(svm->vmcb, VMCB_AVIC);
358}
359
340d3bc3
SS
360static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
361{
362 struct vcpu_svm *svm = to_svm(vcpu);
363 u64 *entry = svm->avic_physical_id_cache;
364
365 if (!entry)
366 return false;
367
368 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
369}
370
384c6368
JR
371static void recalc_intercepts(struct vcpu_svm *svm)
372{
373 struct vmcb_control_area *c, *h;
374 struct nested_state *g;
375
116a0a23
JR
376 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
377
384c6368
JR
378 if (!is_guest_mode(&svm->vcpu))
379 return;
380
381 c = &svm->vmcb->control;
382 h = &svm->nested.hsave->control;
383 g = &svm->nested;
384
4ee546b4 385 c->intercept_cr = h->intercept_cr | g->intercept_cr;
3aed041a 386 c->intercept_dr = h->intercept_dr | g->intercept_dr;
384c6368
JR
387 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
388 c->intercept = h->intercept | g->intercept;
389}
390
4ee546b4
RJ
391static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
392{
393 if (is_guest_mode(&svm->vcpu))
394 return svm->nested.hsave;
395 else
396 return svm->vmcb;
397}
398
399static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
400{
401 struct vmcb *vmcb = get_host_vmcb(svm);
402
403 vmcb->control.intercept_cr |= (1U << bit);
404
405 recalc_intercepts(svm);
406}
407
408static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
409{
410 struct vmcb *vmcb = get_host_vmcb(svm);
411
412 vmcb->control.intercept_cr &= ~(1U << bit);
413
414 recalc_intercepts(svm);
415}
416
417static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
418{
419 struct vmcb *vmcb = get_host_vmcb(svm);
420
421 return vmcb->control.intercept_cr & (1U << bit);
422}
423
5315c716 424static inline void set_dr_intercepts(struct vcpu_svm *svm)
3aed041a
JR
425{
426 struct vmcb *vmcb = get_host_vmcb(svm);
427
5315c716
PB
428 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
429 | (1 << INTERCEPT_DR1_READ)
430 | (1 << INTERCEPT_DR2_READ)
431 | (1 << INTERCEPT_DR3_READ)
432 | (1 << INTERCEPT_DR4_READ)
433 | (1 << INTERCEPT_DR5_READ)
434 | (1 << INTERCEPT_DR6_READ)
435 | (1 << INTERCEPT_DR7_READ)
436 | (1 << INTERCEPT_DR0_WRITE)
437 | (1 << INTERCEPT_DR1_WRITE)
438 | (1 << INTERCEPT_DR2_WRITE)
439 | (1 << INTERCEPT_DR3_WRITE)
440 | (1 << INTERCEPT_DR4_WRITE)
441 | (1 << INTERCEPT_DR5_WRITE)
442 | (1 << INTERCEPT_DR6_WRITE)
443 | (1 << INTERCEPT_DR7_WRITE);
3aed041a
JR
444
445 recalc_intercepts(svm);
446}
447
5315c716 448static inline void clr_dr_intercepts(struct vcpu_svm *svm)
3aed041a
JR
449{
450 struct vmcb *vmcb = get_host_vmcb(svm);
451
5315c716 452 vmcb->control.intercept_dr = 0;
3aed041a
JR
453
454 recalc_intercepts(svm);
455}
456
18c918c5
JR
457static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
458{
459 struct vmcb *vmcb = get_host_vmcb(svm);
460
461 vmcb->control.intercept_exceptions |= (1U << bit);
462
463 recalc_intercepts(svm);
464}
465
466static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
467{
468 struct vmcb *vmcb = get_host_vmcb(svm);
469
470 vmcb->control.intercept_exceptions &= ~(1U << bit);
471
472 recalc_intercepts(svm);
473}
474
8a05a1b8
JR
475static inline void set_intercept(struct vcpu_svm *svm, int bit)
476{
477 struct vmcb *vmcb = get_host_vmcb(svm);
478
479 vmcb->control.intercept |= (1ULL << bit);
480
481 recalc_intercepts(svm);
482}
483
484static inline void clr_intercept(struct vcpu_svm *svm, int bit)
485{
486 struct vmcb *vmcb = get_host_vmcb(svm);
487
488 vmcb->control.intercept &= ~(1ULL << bit);
489
490 recalc_intercepts(svm);
491}
492
2af9194d
JR
493static inline void enable_gif(struct vcpu_svm *svm)
494{
495 svm->vcpu.arch.hflags |= HF_GIF_MASK;
496}
497
498static inline void disable_gif(struct vcpu_svm *svm)
499{
500 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
501}
502
503static inline bool gif_set(struct vcpu_svm *svm)
504{
505 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
506}
507
4866d5e3 508static unsigned long iopm_base;
6aa8b732
AK
509
510struct kvm_ldttss_desc {
511 u16 limit0;
512 u16 base0;
e0231715
JR
513 unsigned base1:8, type:5, dpl:2, p:1;
514 unsigned limit1:4, zero0:3, g:1, base2:8;
6aa8b732
AK
515 u32 base3;
516 u32 zero1;
517} __attribute__((packed));
518
519struct svm_cpu_data {
520 int cpu;
521
5008fdf5
AK
522 u64 asid_generation;
523 u32 max_asid;
524 u32 next_asid;
6aa8b732
AK
525 struct kvm_ldttss_desc *tss_desc;
526
527 struct page *save_area;
3167ef67
TL
528
529 struct vmcb *current_vmcb;
6aa8b732
AK
530};
531
532static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
533
534struct svm_init_data {
535 int cpu;
536 int r;
537};
538
09941fbb 539static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
6aa8b732 540
9d8f549d 541#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
6aa8b732
AK
542#define MSRS_RANGE_SIZE 2048
543#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
544
455716fa
JR
545static u32 svm_msrpm_offset(u32 msr)
546{
547 u32 offset;
548 int i;
549
550 for (i = 0; i < NUM_MSR_MAPS; i++) {
551 if (msr < msrpm_ranges[i] ||
552 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
553 continue;
554
555 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
556 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
557
558 /* Now we have the u8 offset - but need the u32 offset */
559 return offset / 4;
560 }
561
562 /* MSR not in any range */
563 return MSR_INVALID;
564}
565
6aa8b732
AK
566#define MAX_INST_SIZE 15
567
6aa8b732
AK
568static inline void clgi(void)
569{
4ecac3fd 570 asm volatile (__ex(SVM_CLGI));
6aa8b732
AK
571}
572
573static inline void stgi(void)
574{
4ecac3fd 575 asm volatile (__ex(SVM_STGI));
6aa8b732
AK
576}
577
578static inline void invlpga(unsigned long addr, u32 asid)
579{
e0231715 580 asm volatile (__ex(SVM_INVLPGA) : : "a"(addr), "c"(asid));
6aa8b732
AK
581}
582
4b16184c
JR
583static int get_npt_level(void)
584{
585#ifdef CONFIG_X86_64
586 return PT64_ROOT_LEVEL;
587#else
588 return PT32E_ROOT_LEVEL;
589#endif
590}
591
6aa8b732
AK
592static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
593{
6dc696d4 594 vcpu->arch.efer = efer;
709ddebf 595 if (!npt_enabled && !(efer & EFER_LMA))
2b5203ee 596 efer &= ~EFER_LME;
6aa8b732 597
9962d032 598 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
dcca1a65 599 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
6aa8b732
AK
600}
601
6aa8b732
AK
602static int is_external_interrupt(u32 info)
603{
604 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
605 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
606}
607
37ccdcbe 608static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
2809f5d2
GC
609{
610 struct vcpu_svm *svm = to_svm(vcpu);
611 u32 ret = 0;
612
613 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
37ccdcbe
PB
614 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
615 return ret;
2809f5d2
GC
616}
617
618static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
619{
620 struct vcpu_svm *svm = to_svm(vcpu);
621
622 if (mask == 0)
623 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
624 else
625 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
626
627}
628
6aa8b732
AK
629static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
630{
a2fa3e9f
GH
631 struct vcpu_svm *svm = to_svm(vcpu);
632
f104765b 633 if (svm->vmcb->control.next_rip != 0) {
d2922422 634 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
6bc31bdc 635 svm->next_rip = svm->vmcb->control.next_rip;
f104765b 636 }
6bc31bdc 637
a2fa3e9f 638 if (!svm->next_rip) {
51d8b661 639 if (emulate_instruction(vcpu, EMULTYPE_SKIP) !=
f629cf84
GN
640 EMULATE_DONE)
641 printk(KERN_DEBUG "%s: NOP\n", __func__);
6aa8b732
AK
642 return;
643 }
5fdbf976
MT
644 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
645 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
646 __func__, kvm_rip_read(vcpu), svm->next_rip);
6aa8b732 647
5fdbf976 648 kvm_rip_write(vcpu, svm->next_rip);
2809f5d2 649 svm_set_interrupt_shadow(vcpu, 0);
6aa8b732
AK
650}
651
cfcd20e5 652static void svm_queue_exception(struct kvm_vcpu *vcpu)
116a4752
JK
653{
654 struct vcpu_svm *svm = to_svm(vcpu);
cfcd20e5
WL
655 unsigned nr = vcpu->arch.exception.nr;
656 bool has_error_code = vcpu->arch.exception.has_error_code;
657 bool reinject = vcpu->arch.exception.reinject;
658 u32 error_code = vcpu->arch.exception.error_code;
116a4752 659
e0231715
JR
660 /*
661 * If we are within a nested VM we'd better #VMEXIT and let the guest
662 * handle the exception
663 */
ce7ddec4
JR
664 if (!reinject &&
665 nested_svm_check_exception(svm, nr, has_error_code, error_code))
116a4752
JK
666 return;
667
2a6b20b8 668 if (nr == BP_VECTOR && !static_cpu_has(X86_FEATURE_NRIPS)) {
66b7138f
JK
669 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
670
671 /*
672 * For guest debugging where we have to reinject #BP if some
673 * INT3 is guest-owned:
674 * Emulate nRIP by moving RIP forward. Will fail if injection
675 * raises a fault that is not intercepted. Still better than
676 * failing in all cases.
677 */
678 skip_emulated_instruction(&svm->vcpu);
679 rip = kvm_rip_read(&svm->vcpu);
680 svm->int3_rip = rip + svm->vmcb->save.cs.base;
681 svm->int3_injected = rip - old_rip;
682 }
683
116a4752
JK
684 svm->vmcb->control.event_inj = nr
685 | SVM_EVTINJ_VALID
686 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
687 | SVM_EVTINJ_TYPE_EXEPT;
688 svm->vmcb->control.event_inj_err = error_code;
689}
690
67ec6607
JR
691static void svm_init_erratum_383(void)
692{
693 u32 low, high;
694 int err;
695 u64 val;
696
e6ee94d5 697 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
67ec6607
JR
698 return;
699
700 /* Use _safe variants to not break nested virtualization */
701 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
702 if (err)
703 return;
704
705 val |= (1ULL << 47);
706
707 low = lower_32_bits(val);
708 high = upper_32_bits(val);
709
710 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
711
712 erratum_383_found = true;
713}
714
2b036c6b
BO
715static void svm_init_osvw(struct kvm_vcpu *vcpu)
716{
717 /*
718 * Guests should see errata 400 and 415 as fixed (assuming that
719 * HLT and IO instructions are intercepted).
720 */
721 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
722 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
723
724 /*
725 * By increasing VCPU's osvw.length to 3 we are telling the guest that
726 * all osvw.status bits inside that length, including bit 0 (which is
727 * reserved for erratum 298), are valid. However, if host processor's
728 * osvw_len is 0 then osvw_status[0] carries no information. We need to
729 * be conservative here and therefore we tell the guest that erratum 298
730 * is present (because we really don't know).
731 */
732 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
733 vcpu->arch.osvw.status |= 1;
734}
735
6aa8b732
AK
736static int has_svm(void)
737{
63d1142f 738 const char *msg;
6aa8b732 739
63d1142f 740 if (!cpu_has_svm(&msg)) {
ff81ff10 741 printk(KERN_INFO "has_svm: %s\n", msg);
6aa8b732
AK
742 return 0;
743 }
744
6aa8b732
AK
745 return 1;
746}
747
13a34e06 748static void svm_hardware_disable(void)
6aa8b732 749{
fbc0db76
JR
750 /* Make sure we clean up behind us */
751 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
752 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
753
2c8dceeb 754 cpu_svm_disable();
1018faa6
JR
755
756 amd_pmu_disable_virt();
6aa8b732
AK
757}
758
13a34e06 759static int svm_hardware_enable(void)
6aa8b732
AK
760{
761
0fe1e009 762 struct svm_cpu_data *sd;
6aa8b732 763 uint64_t efer;
6aa8b732
AK
764 struct desc_struct *gdt;
765 int me = raw_smp_processor_id();
766
10474ae8
AG
767 rdmsrl(MSR_EFER, efer);
768 if (efer & EFER_SVME)
769 return -EBUSY;
770
6aa8b732 771 if (!has_svm()) {
1f5b77f5 772 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
10474ae8 773 return -EINVAL;
6aa8b732 774 }
0fe1e009 775 sd = per_cpu(svm_data, me);
0fe1e009 776 if (!sd) {
1f5b77f5 777 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
10474ae8 778 return -EINVAL;
6aa8b732
AK
779 }
780
0fe1e009
TH
781 sd->asid_generation = 1;
782 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
783 sd->next_asid = sd->max_asid + 1;
6aa8b732 784
45fc8757 785 gdt = get_current_gdt_rw();
0fe1e009 786 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
6aa8b732 787
9962d032 788 wrmsrl(MSR_EFER, efer | EFER_SVME);
6aa8b732 789
d0316554 790 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
10474ae8 791
fbc0db76
JR
792 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
793 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
89cbc767 794 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
fbc0db76
JR
795 }
796
2b036c6b
BO
797
798 /*
799 * Get OSVW bits.
800 *
801 * Note that it is possible to have a system with mixed processor
802 * revisions and therefore different OSVW bits. If bits are not the same
803 * on different processors then choose the worst case (i.e. if erratum
804 * is present on one processor and not on another then assume that the
805 * erratum is present everywhere).
806 */
807 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
808 uint64_t len, status = 0;
809 int err;
810
811 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
812 if (!err)
813 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
814 &err);
815
816 if (err)
817 osvw_status = osvw_len = 0;
818 else {
819 if (len < osvw_len)
820 osvw_len = len;
821 osvw_status |= status;
822 osvw_status &= (1ULL << osvw_len) - 1;
823 }
824 } else
825 osvw_status = osvw_len = 0;
826
67ec6607
JR
827 svm_init_erratum_383();
828
1018faa6
JR
829 amd_pmu_enable_virt();
830
10474ae8 831 return 0;
6aa8b732
AK
832}
833
0da1db75
JR
834static void svm_cpu_uninit(int cpu)
835{
0fe1e009 836 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
0da1db75 837
0fe1e009 838 if (!sd)
0da1db75
JR
839 return;
840
841 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
0fe1e009
TH
842 __free_page(sd->save_area);
843 kfree(sd);
0da1db75
JR
844}
845
6aa8b732
AK
846static int svm_cpu_init(int cpu)
847{
0fe1e009 848 struct svm_cpu_data *sd;
6aa8b732
AK
849 int r;
850
0fe1e009
TH
851 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
852 if (!sd)
6aa8b732 853 return -ENOMEM;
0fe1e009
TH
854 sd->cpu = cpu;
855 sd->save_area = alloc_page(GFP_KERNEL);
6aa8b732 856 r = -ENOMEM;
0fe1e009 857 if (!sd->save_area)
6aa8b732
AK
858 goto err_1;
859
0fe1e009 860 per_cpu(svm_data, cpu) = sd;
6aa8b732
AK
861
862 return 0;
863
864err_1:
0fe1e009 865 kfree(sd);
6aa8b732
AK
866 return r;
867
868}
869
ac72a9b7
JR
870static bool valid_msr_intercept(u32 index)
871{
872 int i;
873
874 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
875 if (direct_access_msrs[i].index == index)
876 return true;
877
878 return false;
879}
880
bfc733a7
RR
881static void set_msr_interception(u32 *msrpm, unsigned msr,
882 int read, int write)
6aa8b732 883{
455716fa
JR
884 u8 bit_read, bit_write;
885 unsigned long tmp;
886 u32 offset;
6aa8b732 887
ac72a9b7
JR
888 /*
889 * If this warning triggers extend the direct_access_msrs list at the
890 * beginning of the file
891 */
892 WARN_ON(!valid_msr_intercept(msr));
893
455716fa
JR
894 offset = svm_msrpm_offset(msr);
895 bit_read = 2 * (msr & 0x0f);
896 bit_write = 2 * (msr & 0x0f) + 1;
897 tmp = msrpm[offset];
898
899 BUG_ON(offset == MSR_INVALID);
900
901 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
902 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
903
904 msrpm[offset] = tmp;
6aa8b732
AK
905}
906
f65c229c 907static void svm_vcpu_init_msrpm(u32 *msrpm)
6aa8b732
AK
908{
909 int i;
910
f65c229c
JR
911 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
912
ac72a9b7
JR
913 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
914 if (!direct_access_msrs[i].always)
915 continue;
916
917 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
918 }
f65c229c
JR
919}
920
323c3d80
JR
921static void add_msr_offset(u32 offset)
922{
923 int i;
924
925 for (i = 0; i < MSRPM_OFFSETS; ++i) {
926
927 /* Offset already in list? */
928 if (msrpm_offsets[i] == offset)
bfc733a7 929 return;
323c3d80
JR
930
931 /* Slot used by another offset? */
932 if (msrpm_offsets[i] != MSR_INVALID)
933 continue;
934
935 /* Add offset to list */
936 msrpm_offsets[i] = offset;
937
938 return;
6aa8b732 939 }
323c3d80
JR
940
941 /*
942 * If this BUG triggers the msrpm_offsets table has an overflow. Just
943 * increase MSRPM_OFFSETS in this case.
944 */
bfc733a7 945 BUG();
6aa8b732
AK
946}
947
323c3d80 948static void init_msrpm_offsets(void)
f65c229c 949{
323c3d80 950 int i;
f65c229c 951
323c3d80
JR
952 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
953
954 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
955 u32 offset;
956
957 offset = svm_msrpm_offset(direct_access_msrs[i].index);
958 BUG_ON(offset == MSR_INVALID);
959
960 add_msr_offset(offset);
961 }
f65c229c
JR
962}
963
24e09cbf
JR
964static void svm_enable_lbrv(struct vcpu_svm *svm)
965{
966 u32 *msrpm = svm->msrpm;
967
0dc92119 968 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
24e09cbf
JR
969 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
970 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
971 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
972 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
973}
974
975static void svm_disable_lbrv(struct vcpu_svm *svm)
976{
977 u32 *msrpm = svm->msrpm;
978
0dc92119 979 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
24e09cbf
JR
980 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
981 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
982 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
983 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
984}
985
4aebd0e9
LP
986static void disable_nmi_singlestep(struct vcpu_svm *svm)
987{
988 svm->nmi_singlestep = false;
ab2f4d73
LP
989 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
990 /* Clear our flags if they were not set by the guest */
991 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
992 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
993 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
994 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
995 }
4aebd0e9
LP
996}
997
5881f737
SS
998/* Note:
999 * This hash table is used to map VM_ID to a struct kvm_arch,
1000 * when handling AMD IOMMU GALOG notification to schedule in
1001 * a particular vCPU.
1002 */
1003#define SVM_VM_DATA_HASH_BITS 8
681bcea8
DH
1004static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
1005static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
5881f737
SS
1006
1007/* Note:
1008 * This function is called from IOMMU driver to notify
1009 * SVM to schedule in a particular vCPU of a particular VM.
1010 */
1011static int avic_ga_log_notifier(u32 ga_tag)
1012{
1013 unsigned long flags;
1014 struct kvm_arch *ka = NULL;
1015 struct kvm_vcpu *vcpu = NULL;
1016 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1017 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1018
1019 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1020
1021 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
1022 hash_for_each_possible(svm_vm_data_hash, ka, hnode, vm_id) {
1023 struct kvm *kvm = container_of(ka, struct kvm, arch);
1024 struct kvm_arch *vm_data = &kvm->arch;
1025
1026 if (vm_data->avic_vm_id != vm_id)
1027 continue;
1028 vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
1029 break;
1030 }
1031 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1032
1033 if (!vcpu)
1034 return 0;
1035
1036 /* Note:
1037 * At this point, the IOMMU should have already set the pending
1038 * bit in the vAPIC backing page. So, we just need to schedule
1039 * in the vcpu.
1040 */
1041 if (vcpu->mode == OUTSIDE_GUEST_MODE)
1042 kvm_vcpu_wake_up(vcpu);
1043
1044 return 0;
1045}
1046
6aa8b732
AK
1047static __init int svm_hardware_setup(void)
1048{
1049 int cpu;
1050 struct page *iopm_pages;
f65c229c 1051 void *iopm_va;
6aa8b732
AK
1052 int r;
1053
6aa8b732
AK
1054 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1055
1056 if (!iopm_pages)
1057 return -ENOMEM;
c8681339
AL
1058
1059 iopm_va = page_address(iopm_pages);
1060 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
6aa8b732
AK
1061 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1062
323c3d80
JR
1063 init_msrpm_offsets();
1064
50a37eb4
JR
1065 if (boot_cpu_has(X86_FEATURE_NX))
1066 kvm_enable_efer_bits(EFER_NX);
1067
1b2fd70c
AG
1068 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1069 kvm_enable_efer_bits(EFER_FFXSR);
1070
92a1f12d 1071 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
92a1f12d 1072 kvm_has_tsc_control = true;
bc9b961b
HZ
1073 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1074 kvm_tsc_scaling_ratio_frac_bits = 32;
92a1f12d
JR
1075 }
1076
236de055
AG
1077 if (nested) {
1078 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
eec4b140 1079 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
236de055
AG
1080 }
1081
3230bb47 1082 for_each_possible_cpu(cpu) {
6aa8b732
AK
1083 r = svm_cpu_init(cpu);
1084 if (r)
f65c229c 1085 goto err;
6aa8b732 1086 }
33bd6a0b 1087
2a6b20b8 1088 if (!boot_cpu_has(X86_FEATURE_NPT))
e3da3acd
JR
1089 npt_enabled = false;
1090
6c7dac72
JR
1091 if (npt_enabled && !npt) {
1092 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1093 npt_enabled = false;
1094 }
1095
18552672 1096 if (npt_enabled) {
e3da3acd 1097 printk(KERN_INFO "kvm: Nested Paging enabled\n");
18552672 1098 kvm_enable_tdp();
5f4cb662
JR
1099 } else
1100 kvm_disable_tdp();
e3da3acd 1101
5b8abf1f
SS
1102 if (avic) {
1103 if (!npt_enabled ||
1104 !boot_cpu_has(X86_FEATURE_AVIC) ||
5881f737 1105 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
5b8abf1f 1106 avic = false;
5881f737 1107 } else {
5b8abf1f 1108 pr_info("AVIC enabled\n");
5881f737 1109
5881f737
SS
1110 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1111 }
5b8abf1f 1112 }
44a95dae 1113
89c8a498
JN
1114 if (vls) {
1115 if (!npt_enabled ||
5442c269 1116 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
89c8a498
JN
1117 !IS_ENABLED(CONFIG_X86_64)) {
1118 vls = false;
1119 } else {
1120 pr_info("Virtual VMLOAD VMSAVE supported\n");
1121 }
1122 }
1123
6aa8b732
AK
1124 return 0;
1125
f65c229c 1126err:
6aa8b732
AK
1127 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1128 iopm_base = 0;
1129 return r;
1130}
1131
1132static __exit void svm_hardware_unsetup(void)
1133{
0da1db75
JR
1134 int cpu;
1135
3230bb47 1136 for_each_possible_cpu(cpu)
0da1db75
JR
1137 svm_cpu_uninit(cpu);
1138
6aa8b732 1139 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
f65c229c 1140 iopm_base = 0;
6aa8b732
AK
1141}
1142
1143static void init_seg(struct vmcb_seg *seg)
1144{
1145 seg->selector = 0;
1146 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
e0231715 1147 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
6aa8b732
AK
1148 seg->limit = 0xffff;
1149 seg->base = 0;
1150}
1151
1152static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1153{
1154 seg->selector = 0;
1155 seg->attrib = SVM_SELECTOR_P_MASK | type;
1156 seg->limit = 0xffff;
1157 seg->base = 0;
1158}
1159
f4e1b3c8
ZA
1160static void svm_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1161{
1162 struct vcpu_svm *svm = to_svm(vcpu);
1163 u64 g_tsc_offset = 0;
1164
2030753d 1165 if (is_guest_mode(vcpu)) {
f4e1b3c8
ZA
1166 g_tsc_offset = svm->vmcb->control.tsc_offset -
1167 svm->nested.hsave->control.tsc_offset;
1168 svm->nested.hsave->control.tsc_offset = offset;
489223ed
YY
1169 } else
1170 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1171 svm->vmcb->control.tsc_offset,
1172 offset);
f4e1b3c8
ZA
1173
1174 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
116a0a23
JR
1175
1176 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
f4e1b3c8
ZA
1177}
1178
44a95dae
SS
1179static void avic_init_vmcb(struct vcpu_svm *svm)
1180{
1181 struct vmcb *vmcb = svm->vmcb;
1182 struct kvm_arch *vm_data = &svm->vcpu.kvm->arch;
1183 phys_addr_t bpa = page_to_phys(svm->avic_backing_page);
1184 phys_addr_t lpa = page_to_phys(vm_data->avic_logical_id_table_page);
1185 phys_addr_t ppa = page_to_phys(vm_data->avic_physical_id_table_page);
1186
1187 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1188 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1189 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1190 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1191 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
1192 svm->vcpu.arch.apicv_active = true;
1193}
1194
5690891b 1195static void init_vmcb(struct vcpu_svm *svm)
6aa8b732 1196{
e6101a96
JR
1197 struct vmcb_control_area *control = &svm->vmcb->control;
1198 struct vmcb_save_area *save = &svm->vmcb->save;
6aa8b732 1199
4ee546b4 1200 svm->vcpu.arch.hflags = 0;
bff78274 1201
4ee546b4
RJ
1202 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1203 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1204 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1205 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1206 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1207 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
3bbf3565
SS
1208 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1209 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
6aa8b732 1210
5315c716 1211 set_dr_intercepts(svm);
6aa8b732 1212
18c918c5
JR
1213 set_exception_intercept(svm, PF_VECTOR);
1214 set_exception_intercept(svm, UD_VECTOR);
1215 set_exception_intercept(svm, MC_VECTOR);
54a20552 1216 set_exception_intercept(svm, AC_VECTOR);
cbdb967a 1217 set_exception_intercept(svm, DB_VECTOR);
6aa8b732 1218
8a05a1b8
JR
1219 set_intercept(svm, INTERCEPT_INTR);
1220 set_intercept(svm, INTERCEPT_NMI);
1221 set_intercept(svm, INTERCEPT_SMI);
1222 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
332b56e4 1223 set_intercept(svm, INTERCEPT_RDPMC);
8a05a1b8
JR
1224 set_intercept(svm, INTERCEPT_CPUID);
1225 set_intercept(svm, INTERCEPT_INVD);
1226 set_intercept(svm, INTERCEPT_HLT);
1227 set_intercept(svm, INTERCEPT_INVLPG);
1228 set_intercept(svm, INTERCEPT_INVLPGA);
1229 set_intercept(svm, INTERCEPT_IOIO_PROT);
1230 set_intercept(svm, INTERCEPT_MSR_PROT);
1231 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1232 set_intercept(svm, INTERCEPT_SHUTDOWN);
1233 set_intercept(svm, INTERCEPT_VMRUN);
1234 set_intercept(svm, INTERCEPT_VMMCALL);
1235 set_intercept(svm, INTERCEPT_VMLOAD);
1236 set_intercept(svm, INTERCEPT_VMSAVE);
1237 set_intercept(svm, INTERCEPT_STGI);
1238 set_intercept(svm, INTERCEPT_CLGI);
1239 set_intercept(svm, INTERCEPT_SKINIT);
1240 set_intercept(svm, INTERCEPT_WBINVD);
81dd35d4 1241 set_intercept(svm, INTERCEPT_XSETBV);
6aa8b732 1242
668fffa3
MT
1243 if (!kvm_mwait_in_guest()) {
1244 set_intercept(svm, INTERCEPT_MONITOR);
1245 set_intercept(svm, INTERCEPT_MWAIT);
1246 }
1247
6aa8b732 1248 control->iopm_base_pa = iopm_base;
f65c229c 1249 control->msrpm_base_pa = __pa(svm->msrpm);
6aa8b732
AK
1250 control->int_ctl = V_INTR_MASKING_MASK;
1251
1252 init_seg(&save->es);
1253 init_seg(&save->ss);
1254 init_seg(&save->ds);
1255 init_seg(&save->fs);
1256 init_seg(&save->gs);
1257
1258 save->cs.selector = 0xf000;
04b66839 1259 save->cs.base = 0xffff0000;
6aa8b732
AK
1260 /* Executable/Readable Code Segment */
1261 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1262 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1263 save->cs.limit = 0xffff;
6aa8b732
AK
1264
1265 save->gdtr.limit = 0xffff;
1266 save->idtr.limit = 0xffff;
1267
1268 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1269 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1270
5690891b 1271 svm_set_efer(&svm->vcpu, 0);
d77c26fc 1272 save->dr6 = 0xffff0ff0;
f6e78475 1273 kvm_set_rflags(&svm->vcpu, 2);
6aa8b732 1274 save->rip = 0x0000fff0;
5fdbf976 1275 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
6aa8b732 1276
e0231715 1277 /*
18fa000a 1278 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
d28bc9dd 1279 * It also updates the guest-visible cr0 value.
6aa8b732 1280 */
79a8059d 1281 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
ebae871a 1282 kvm_mmu_reset_context(&svm->vcpu);
18fa000a 1283
66aee91a 1284 save->cr4 = X86_CR4_PAE;
6aa8b732 1285 /* rdx = ?? */
709ddebf
JR
1286
1287 if (npt_enabled) {
1288 /* Setup VMCB for Nested Paging */
1289 control->nested_ctl = 1;
8a05a1b8 1290 clr_intercept(svm, INTERCEPT_INVLPG);
18c918c5 1291 clr_exception_intercept(svm, PF_VECTOR);
4ee546b4
RJ
1292 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1293 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
74545705 1294 save->g_pat = svm->vcpu.arch.pat;
709ddebf
JR
1295 save->cr3 = 0;
1296 save->cr4 = 0;
1297 }
f40f6a45 1298 svm->asid_generation = 0;
1371d904 1299
e6aa9abd 1300 svm->nested.vmcb = 0;
2af9194d
JR
1301 svm->vcpu.arch.hflags = 0;
1302
2a6b20b8 1303 if (boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
565d0998 1304 control->pause_filter_count = 3000;
8a05a1b8 1305 set_intercept(svm, INTERCEPT_PAUSE);
565d0998
ML
1306 }
1307
44a95dae
SS
1308 if (avic)
1309 avic_init_vmcb(svm);
1310
89c8a498
JN
1311 /*
1312 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1313 * in VMCB and clear intercepts to avoid #VMEXIT.
1314 */
1315 if (vls) {
1316 clr_intercept(svm, INTERCEPT_VMLOAD);
1317 clr_intercept(svm, INTERCEPT_VMSAVE);
1318 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1319 }
1320
8d28fec4
RJ
1321 mark_all_dirty(svm->vmcb);
1322
2af9194d 1323 enable_gif(svm);
44a95dae
SS
1324
1325}
1326
d3e7dec0
DC
1327static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1328 unsigned int index)
44a95dae
SS
1329{
1330 u64 *avic_physical_id_table;
1331 struct kvm_arch *vm_data = &vcpu->kvm->arch;
1332
1333 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1334 return NULL;
1335
1336 avic_physical_id_table = page_address(vm_data->avic_physical_id_table_page);
1337
1338 return &avic_physical_id_table[index];
1339}
1340
1341/**
1342 * Note:
1343 * AVIC hardware walks the nested page table to check permissions,
1344 * but does not use the SPA address specified in the leaf page
1345 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1346 * field of the VMCB. Therefore, we set up the
1347 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1348 */
1349static int avic_init_access_page(struct kvm_vcpu *vcpu)
1350{
1351 struct kvm *kvm = vcpu->kvm;
1352 int ret;
1353
1354 if (kvm->arch.apic_access_page_done)
1355 return 0;
1356
1357 ret = x86_set_memory_region(kvm,
1358 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1359 APIC_DEFAULT_PHYS_BASE,
1360 PAGE_SIZE);
1361 if (ret)
1362 return ret;
1363
1364 kvm->arch.apic_access_page_done = true;
1365 return 0;
1366}
1367
1368static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1369{
1370 int ret;
1371 u64 *entry, new_entry;
1372 int id = vcpu->vcpu_id;
1373 struct vcpu_svm *svm = to_svm(vcpu);
1374
1375 ret = avic_init_access_page(vcpu);
1376 if (ret)
1377 return ret;
1378
1379 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1380 return -EINVAL;
1381
1382 if (!svm->vcpu.arch.apic->regs)
1383 return -EINVAL;
1384
1385 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1386
1387 /* Setting AVIC backing page address in the phy APIC ID table */
1388 entry = avic_get_physical_id_entry(vcpu, id);
1389 if (!entry)
1390 return -EINVAL;
1391
1392 new_entry = READ_ONCE(*entry);
1393 new_entry = (page_to_phys(svm->avic_backing_page) &
1394 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1395 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK;
1396 WRITE_ONCE(*entry, new_entry);
1397
1398 svm->avic_physical_id_cache = entry;
1399
1400 return 0;
1401}
1402
5ea11f2b
SS
1403static inline int avic_get_next_vm_id(void)
1404{
1405 int id;
1406
1407 spin_lock(&avic_vm_id_lock);
1408
1409 /* AVIC VM ID is one-based. */
1410 id = find_next_zero_bit(avic_vm_id_bitmap, AVIC_VM_ID_NR, 1);
1411 if (id <= AVIC_VM_ID_MASK)
1412 __set_bit(id, avic_vm_id_bitmap);
1413 else
1414 id = -EAGAIN;
1415
1416 spin_unlock(&avic_vm_id_lock);
1417 return id;
1418}
1419
1420static inline int avic_free_vm_id(int id)
1421{
1422 if (id <= 0 || id > AVIC_VM_ID_MASK)
1423 return -EINVAL;
1424
1425 spin_lock(&avic_vm_id_lock);
1426 __clear_bit(id, avic_vm_id_bitmap);
1427 spin_unlock(&avic_vm_id_lock);
1428 return 0;
1429}
1430
44a95dae
SS
1431static void avic_vm_destroy(struct kvm *kvm)
1432{
5881f737 1433 unsigned long flags;
44a95dae
SS
1434 struct kvm_arch *vm_data = &kvm->arch;
1435
3863dff0
DV
1436 if (!avic)
1437 return;
1438
5ea11f2b
SS
1439 avic_free_vm_id(vm_data->avic_vm_id);
1440
44a95dae
SS
1441 if (vm_data->avic_logical_id_table_page)
1442 __free_page(vm_data->avic_logical_id_table_page);
1443 if (vm_data->avic_physical_id_table_page)
1444 __free_page(vm_data->avic_physical_id_table_page);
5881f737
SS
1445
1446 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
1447 hash_del(&vm_data->hnode);
1448 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
44a95dae
SS
1449}
1450
1451static int avic_vm_init(struct kvm *kvm)
1452{
5881f737 1453 unsigned long flags;
adad0d02 1454 int vm_id, err = -ENOMEM;
44a95dae
SS
1455 struct kvm_arch *vm_data = &kvm->arch;
1456 struct page *p_page;
1457 struct page *l_page;
1458
1459 if (!avic)
1460 return 0;
1461
adad0d02
CIK
1462 vm_id = avic_get_next_vm_id();
1463 if (vm_id < 0)
1464 return vm_id;
1465 vm_data->avic_vm_id = (u32)vm_id;
5ea11f2b 1466
44a95dae
SS
1467 /* Allocating physical APIC ID table (4KB) */
1468 p_page = alloc_page(GFP_KERNEL);
1469 if (!p_page)
1470 goto free_avic;
1471
1472 vm_data->avic_physical_id_table_page = p_page;
1473 clear_page(page_address(p_page));
1474
1475 /* Allocating logical APIC ID table (4KB) */
1476 l_page = alloc_page(GFP_KERNEL);
1477 if (!l_page)
1478 goto free_avic;
1479
1480 vm_data->avic_logical_id_table_page = l_page;
1481 clear_page(page_address(l_page));
1482
5881f737
SS
1483 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
1484 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
44a95dae
SS
1487 return 0;
1488
1489free_avic:
1490 avic_vm_destroy(kvm);
1491 return err;
6aa8b732
AK
1492}
1493
411b44ba
SS
1494static inline int
1495avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
8221c137 1496{
411b44ba
SS
1497 int ret = 0;
1498 unsigned long flags;
1499 struct amd_svm_iommu_ir *ir;
8221c137
SS
1500 struct vcpu_svm *svm = to_svm(vcpu);
1501
411b44ba
SS
1502 if (!kvm_arch_has_assigned_device(vcpu->kvm))
1503 return 0;
8221c137 1504
411b44ba
SS
1505 /*
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);
8221c137 1510
411b44ba
SS
1511 if (list_empty(&svm->ir_list))
1512 goto out;
8221c137 1513
411b44ba
SS
1514 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;
8221c137
SS
1522}
1523
1524static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1525{
1526 u64 entry;
1527 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
7d669f50 1528 int h_physical_id = kvm_cpu_get_apicid(cpu);
8221c137
SS
1529 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);
411b44ba
SS
1548 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
1549 svm->avic_is_running);
8221c137
SS
1550}
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));
411b44ba
SS
1561 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
1562 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
1563
8221c137
SS
1564 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
1565 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
6aa8b732
AK
1566}
1567
411b44ba
SS
1568/**
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
d28bc9dd 1582static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
04d2cc77
AK
1583{
1584 struct vcpu_svm *svm = to_svm(vcpu);
66f7b72e
JS
1585 u32 dummy;
1586 u32 eax = 1;
04d2cc77 1587
25c5c90e
TG
1588 svm->spec_ctrl = 0;
1589 svm->virt_spec_ctrl = 0;
1590
d28bc9dd
NA
1591 if (!init_event) {
1592 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
1593 MSR_IA32_APICBASE_ENABLE;
1594 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
1595 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
1596 }
5690891b 1597 init_vmcb(svm);
70433389 1598
66f7b72e
JS
1599 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy);
1600 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
44a95dae
SS
1601
1602 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
1603 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
04d2cc77
AK
1604}
1605
fb3f0f51 1606static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
6aa8b732 1607{
a2fa3e9f 1608 struct vcpu_svm *svm;
6aa8b732 1609 struct page *page;
f65c229c 1610 struct page *msrpm_pages;
b286d5d8 1611 struct page *hsave_page;
3d6368ef 1612 struct page *nested_msrpm_pages;
fb3f0f51 1613 int err;
6aa8b732 1614
c16f862d 1615 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
fb3f0f51
RR
1616 if (!svm) {
1617 err = -ENOMEM;
1618 goto out;
1619 }
1620
1621 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
1622 if (err)
1623 goto free_svm;
1624
b7af4043 1625 err = -ENOMEM;
6aa8b732 1626 page = alloc_page(GFP_KERNEL);
b7af4043 1627 if (!page)
fb3f0f51 1628 goto uninit;
6aa8b732 1629
f65c229c
JR
1630 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1631 if (!msrpm_pages)
b7af4043 1632 goto free_page1;
3d6368ef
AG
1633
1634 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1635 if (!nested_msrpm_pages)
b7af4043 1636 goto free_page2;
f65c229c 1637
b286d5d8
AG
1638 hsave_page = alloc_page(GFP_KERNEL);
1639 if (!hsave_page)
b7af4043
TY
1640 goto free_page3;
1641
44a95dae
SS
1642 if (avic) {
1643 err = avic_init_backing_page(&svm->vcpu);
1644 if (err)
1645 goto free_page4;
411b44ba
SS
1646
1647 INIT_LIST_HEAD(&svm->ir_list);
1648 spin_lock_init(&svm->ir_list_lock);
44a95dae
SS
1649 }
1650
8221c137
SS
1651 /* We initialize this flag to true to make sure that the is_running
1652 * bit would be set the first time the vcpu is loaded.
1653 */
1654 svm->avic_is_running = true;
1655
e6aa9abd 1656 svm->nested.hsave = page_address(hsave_page);
b286d5d8 1657
b7af4043
TY
1658 svm->msrpm = page_address(msrpm_pages);
1659 svm_vcpu_init_msrpm(svm->msrpm);
1660
e6aa9abd 1661 svm->nested.msrpm = page_address(nested_msrpm_pages);
323c3d80 1662 svm_vcpu_init_msrpm(svm->nested.msrpm);
3d6368ef 1663
a2fa3e9f
GH
1664 svm->vmcb = page_address(page);
1665 clear_page(svm->vmcb);
1666 svm->vmcb_pa = page_to_pfn(page) << PAGE_SHIFT;
1667 svm->asid_generation = 0;
5690891b 1668 init_vmcb(svm);
6aa8b732 1669
2b036c6b
BO
1670 svm_init_osvw(&svm->vcpu);
1671
fb3f0f51 1672 return &svm->vcpu;
36241b8c 1673
44a95dae
SS
1674free_page4:
1675 __free_page(hsave_page);
b7af4043
TY
1676free_page3:
1677 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
1678free_page2:
1679 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
1680free_page1:
1681 __free_page(page);
fb3f0f51
RR
1682uninit:
1683 kvm_vcpu_uninit(&svm->vcpu);
1684free_svm:
a4770347 1685 kmem_cache_free(kvm_vcpu_cache, svm);
fb3f0f51
RR
1686out:
1687 return ERR_PTR(err);
6aa8b732
AK
1688}
1689
1690static void svm_free_vcpu(struct kvm_vcpu *vcpu)
1691{
a2fa3e9f
GH
1692 struct vcpu_svm *svm = to_svm(vcpu);
1693
fb3f0f51 1694 __free_page(pfn_to_page(svm->vmcb_pa >> PAGE_SHIFT));
f65c229c 1695 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
e6aa9abd
JR
1696 __free_page(virt_to_page(svm->nested.hsave));
1697 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
fb3f0f51 1698 kvm_vcpu_uninit(vcpu);
a4770347 1699 kmem_cache_free(kvm_vcpu_cache, svm);
3167ef67
TL
1700
1701 /*
1702 * The VMCB could be recycled, causing a false negative in svm_vcpu_load;
1703 * block speculative execution.
1704 */
1705 if (ibpb_inuse)
1706 wrmsrl(MSR_IA32_PRED_CMD, FEATURE_SET_IBPB);
6aa8b732
AK
1707}
1708
15ad7146 1709static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
6aa8b732 1710{
a2fa3e9f 1711 struct vcpu_svm *svm = to_svm(vcpu);
3167ef67 1712 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
15ad7146 1713 int i;
0cc5064d 1714
0cc5064d 1715 if (unlikely(cpu != vcpu->cpu)) {
4b656b12 1716 svm->asid_generation = 0;
8d28fec4 1717 mark_all_dirty(svm->vmcb);
0cc5064d 1718 }
94dfbdb3 1719
82ca2d10
AK
1720#ifdef CONFIG_X86_64
1721 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
1722#endif
dacccfdd
AK
1723 savesegment(fs, svm->host.fs);
1724 savesegment(gs, svm->host.gs);
1725 svm->host.ldt = kvm_read_ldt();
1726
94dfbdb3 1727 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 1728 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
fbc0db76 1729
ad721883
HZ
1730 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
1731 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
1732 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
1733 __this_cpu_write(current_tsc_ratio, tsc_ratio);
1734 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
1735 }
fbc0db76 1736 }
46896c73
PB
1737 /* This assumes that the kernel never uses MSR_TSC_AUX */
1738 if (static_cpu_has(X86_FEATURE_RDTSCP))
1739 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
8221c137 1740
3167ef67
TL
1741 if (sd->current_vmcb != svm->vmcb) {
1742 sd->current_vmcb = svm->vmcb;
1743 if (ibpb_inuse)
1744 wrmsrl(MSR_IA32_PRED_CMD, FEATURE_SET_IBPB);
1745 }
1746
8221c137 1747 avic_vcpu_load(vcpu, cpu);
6aa8b732
AK
1748}
1749
1750static void svm_vcpu_put(struct kvm_vcpu *vcpu)
1751{
a2fa3e9f 1752 struct vcpu_svm *svm = to_svm(vcpu);
94dfbdb3
AL
1753 int i;
1754
8221c137
SS
1755 avic_vcpu_put(vcpu);
1756
e1beb1d3 1757 ++vcpu->stat.host_state_reload;
dacccfdd
AK
1758 kvm_load_ldt(svm->host.ldt);
1759#ifdef CONFIG_X86_64
1760 loadsegment(fs, svm->host.fs);
296f781a 1761 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
893a5ab6 1762 load_gs_index(svm->host.gs);
dacccfdd 1763#else
831ca609 1764#ifdef CONFIG_X86_32_LAZY_GS
dacccfdd 1765 loadsegment(gs, svm->host.gs);
831ca609 1766#endif
dacccfdd 1767#endif
94dfbdb3 1768 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 1769 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
6aa8b732
AK
1770}
1771
8221c137
SS
1772static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
1773{
1774 avic_set_running(vcpu, false);
1775}
1776
1777static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
1778{
1779 avic_set_running(vcpu, true);
1780}
1781
6aa8b732
AK
1782static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
1783{
9b611747
LP
1784 struct vcpu_svm *svm = to_svm(vcpu);
1785 unsigned long rflags = svm->vmcb->save.rflags;
1786
1787 if (svm->nmi_singlestep) {
1788 /* Hide our flags if they were not set by the guest */
1789 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1790 rflags &= ~X86_EFLAGS_TF;
1791 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1792 rflags &= ~X86_EFLAGS_RF;
1793 }
1794 return rflags;
6aa8b732
AK
1795}
1796
1797static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1798{
9b611747
LP
1799 if (to_svm(vcpu)->nmi_singlestep)
1800 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
1801
ae9fedc7 1802 /*
bb3541f1 1803 * Any change of EFLAGS.VM is accompanied by a reload of SS
ae9fedc7
PB
1804 * (caused by either a task switch or an inter-privilege IRET),
1805 * so we do not need to update the CPL here.
1806 */
a2fa3e9f 1807 to_svm(vcpu)->vmcb->save.rflags = rflags;
6aa8b732
AK
1808}
1809
6de4f3ad
AK
1810static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
1811{
1812 switch (reg) {
1813 case VCPU_EXREG_PDPTR:
1814 BUG_ON(!npt_enabled);
9f8fe504 1815 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
6de4f3ad
AK
1816 break;
1817 default:
1818 BUG();
1819 }
1820}
1821
f0b85051
AG
1822static void svm_set_vintr(struct vcpu_svm *svm)
1823{
8a05a1b8 1824 set_intercept(svm, INTERCEPT_VINTR);
f0b85051
AG
1825}
1826
1827static void svm_clear_vintr(struct vcpu_svm *svm)
1828{
8a05a1b8 1829 clr_intercept(svm, INTERCEPT_VINTR);
f0b85051
AG
1830}
1831
6aa8b732
AK
1832static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
1833{
a2fa3e9f 1834 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
6aa8b732
AK
1835
1836 switch (seg) {
1837 case VCPU_SREG_CS: return &save->cs;
1838 case VCPU_SREG_DS: return &save->ds;
1839 case VCPU_SREG_ES: return &save->es;
1840 case VCPU_SREG_FS: return &save->fs;
1841 case VCPU_SREG_GS: return &save->gs;
1842 case VCPU_SREG_SS: return &save->ss;
1843 case VCPU_SREG_TR: return &save->tr;
1844 case VCPU_SREG_LDTR: return &save->ldtr;
1845 }
1846 BUG();
8b6d44c7 1847 return NULL;
6aa8b732
AK
1848}
1849
1850static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1851{
1852 struct vmcb_seg *s = svm_seg(vcpu, seg);
1853
1854 return s->base;
1855}
1856
1857static void svm_get_segment(struct kvm_vcpu *vcpu,
1858 struct kvm_segment *var, int seg)
1859{
1860 struct vmcb_seg *s = svm_seg(vcpu, seg);
1861
1862 var->base = s->base;
1863 var->limit = s->limit;
1864 var->selector = s->selector;
1865 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
1866 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
1867 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
1868 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
1869 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
1870 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
1871 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
80112c89
JM
1872
1873 /*
1874 * AMD CPUs circa 2014 track the G bit for all segments except CS.
1875 * However, the SVM spec states that the G bit is not observed by the
1876 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
1877 * So let's synthesize a legal G bit for all segments, this helps
1878 * running KVM nested. It also helps cross-vendor migration, because
1879 * Intel's vmentry has a check on the 'G' bit.
1880 */
1881 var->g = s->limit > 0xfffff;
25022acc 1882
e0231715
JR
1883 /*
1884 * AMD's VMCB does not have an explicit unusable field, so emulate it
19bca6ab
AP
1885 * for cross vendor migration purposes by "not present"
1886 */
8eae9570 1887 var->unusable = !var->present;
19bca6ab 1888
1fbdc7a5 1889 switch (seg) {
1fbdc7a5
AP
1890 case VCPU_SREG_TR:
1891 /*
1892 * Work around a bug where the busy flag in the tr selector
1893 * isn't exposed
1894 */
c0d09828 1895 var->type |= 0x2;
1fbdc7a5
AP
1896 break;
1897 case VCPU_SREG_DS:
1898 case VCPU_SREG_ES:
1899 case VCPU_SREG_FS:
1900 case VCPU_SREG_GS:
1901 /*
1902 * The accessed bit must always be set in the segment
1903 * descriptor cache, although it can be cleared in the
1904 * descriptor, the cached bit always remains at 1. Since
1905 * Intel has a check on this, set it here to support
1906 * cross-vendor migration.
1907 */
1908 if (!var->unusable)
1909 var->type |= 0x1;
1910 break;
b586eb02 1911 case VCPU_SREG_SS:
e0231715
JR
1912 /*
1913 * On AMD CPUs sometimes the DB bit in the segment
b586eb02
AP
1914 * descriptor is left as 1, although the whole segment has
1915 * been made unusable. Clear it here to pass an Intel VMX
1916 * entry check when cross vendor migrating.
1917 */
1918 if (var->unusable)
1919 var->db = 0;
d9c1b543 1920 /* This is symmetric with svm_set_segment() */
33b458d2 1921 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
b586eb02 1922 break;
1fbdc7a5 1923 }
6aa8b732
AK
1924}
1925
2e4d2653
IE
1926static int svm_get_cpl(struct kvm_vcpu *vcpu)
1927{
1928 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
1929
1930 return save->cpl;
1931}
1932
89a27f4d 1933static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1934{
a2fa3e9f
GH
1935 struct vcpu_svm *svm = to_svm(vcpu);
1936
89a27f4d
GN
1937 dt->size = svm->vmcb->save.idtr.limit;
1938 dt->address = svm->vmcb->save.idtr.base;
6aa8b732
AK
1939}
1940
89a27f4d 1941static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1942{
a2fa3e9f
GH
1943 struct vcpu_svm *svm = to_svm(vcpu);
1944
89a27f4d
GN
1945 svm->vmcb->save.idtr.limit = dt->size;
1946 svm->vmcb->save.idtr.base = dt->address ;
17a703cb 1947 mark_dirty(svm->vmcb, VMCB_DT);
6aa8b732
AK
1948}
1949
89a27f4d 1950static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1951{
a2fa3e9f
GH
1952 struct vcpu_svm *svm = to_svm(vcpu);
1953
89a27f4d
GN
1954 dt->size = svm->vmcb->save.gdtr.limit;
1955 dt->address = svm->vmcb->save.gdtr.base;
6aa8b732
AK
1956}
1957
89a27f4d 1958static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1959{
a2fa3e9f
GH
1960 struct vcpu_svm *svm = to_svm(vcpu);
1961
89a27f4d
GN
1962 svm->vmcb->save.gdtr.limit = dt->size;
1963 svm->vmcb->save.gdtr.base = dt->address ;
17a703cb 1964 mark_dirty(svm->vmcb, VMCB_DT);
6aa8b732
AK
1965}
1966
e8467fda
AK
1967static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
1968{
1969}
1970
aff48baa
AK
1971static void svm_decache_cr3(struct kvm_vcpu *vcpu)
1972{
1973}
1974
25c4c276 1975static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
399badf3
AK
1976{
1977}
1978
d225157b
AK
1979static void update_cr0_intercept(struct vcpu_svm *svm)
1980{
1981 ulong gcr0 = svm->vcpu.arch.cr0;
1982 u64 *hcr0 = &svm->vmcb->save.cr0;
1983
bd7e5b08
PB
1984 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
1985 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
d225157b 1986
dcca1a65 1987 mark_dirty(svm->vmcb, VMCB_CR);
d225157b 1988
bd7e5b08 1989 if (gcr0 == *hcr0) {
4ee546b4
RJ
1990 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
1991 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
d225157b 1992 } else {
4ee546b4
RJ
1993 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1994 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
d225157b
AK
1995 }
1996}
1997
6aa8b732
AK
1998static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1999{
a2fa3e9f
GH
2000 struct vcpu_svm *svm = to_svm(vcpu);
2001
05b3e0c2 2002#ifdef CONFIG_X86_64
f6801dff 2003 if (vcpu->arch.efer & EFER_LME) {
707d92fa 2004 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
f6801dff 2005 vcpu->arch.efer |= EFER_LMA;
2b5203ee 2006 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
6aa8b732
AK
2007 }
2008
d77c26fc 2009 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
f6801dff 2010 vcpu->arch.efer &= ~EFER_LMA;
2b5203ee 2011 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
6aa8b732
AK
2012 }
2013 }
2014#endif
ad312c7c 2015 vcpu->arch.cr0 = cr0;
888f9f3e
AK
2016
2017 if (!npt_enabled)
2018 cr0 |= X86_CR0_PG | X86_CR0_WP;
02daab21 2019
bcf166a9
PB
2020 /*
2021 * re-enable caching here because the QEMU bios
2022 * does not do it - this results in some delay at
2023 * reboot
2024 */
2025 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2026 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
a2fa3e9f 2027 svm->vmcb->save.cr0 = cr0;
dcca1a65 2028 mark_dirty(svm->vmcb, VMCB_CR);
d225157b 2029 update_cr0_intercept(svm);
6aa8b732
AK
2030}
2031
5e1746d6 2032static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
6aa8b732 2033{
1e02ce4c 2034 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
e5eab0ce
JR
2035 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2036
5e1746d6
NHE
2037 if (cr4 & X86_CR4_VMXE)
2038 return 1;
2039
e5eab0ce 2040 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
f40f6a45 2041 svm_flush_tlb(vcpu);
6394b649 2042
ec077263
JR
2043 vcpu->arch.cr4 = cr4;
2044 if (!npt_enabled)
2045 cr4 |= X86_CR4_PAE;
6394b649 2046 cr4 |= host_cr4_mce;
ec077263 2047 to_svm(vcpu)->vmcb->save.cr4 = cr4;
dcca1a65 2048 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
5e1746d6 2049 return 0;
6aa8b732
AK
2050}
2051
2052static void svm_set_segment(struct kvm_vcpu *vcpu,
2053 struct kvm_segment *var, int seg)
2054{
a2fa3e9f 2055 struct vcpu_svm *svm = to_svm(vcpu);
6aa8b732
AK
2056 struct vmcb_seg *s = svm_seg(vcpu, seg);
2057
2058 s->base = var->base;
2059 s->limit = var->limit;
2060 s->selector = var->selector;
d9c1b543
RP
2061 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2062 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2063 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2064 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2065 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2066 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2067 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2068 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
ae9fedc7
PB
2069
2070 /*
2071 * This is always accurate, except if SYSRET returned to a segment
2072 * with SS.DPL != 3. Intel does not have this quirk, and always
2073 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2074 * would entail passing the CPL to userspace and back.
2075 */
2076 if (seg == VCPU_SREG_SS)
d9c1b543
RP
2077 /* This is symmetric with svm_get_segment() */
2078 svm->vmcb->save.cpl = (var->dpl & 3);
6aa8b732 2079
060d0c9a 2080 mark_dirty(svm->vmcb, VMCB_SEG);
6aa8b732
AK
2081}
2082
cbdb967a 2083static void update_bp_intercept(struct kvm_vcpu *vcpu)
6aa8b732 2084{
d0bfb940
JK
2085 struct vcpu_svm *svm = to_svm(vcpu);
2086
18c918c5 2087 clr_exception_intercept(svm, BP_VECTOR);
44c11430 2088
d0bfb940 2089 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
d0bfb940 2090 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
18c918c5 2091 set_exception_intercept(svm, BP_VECTOR);
d0bfb940
JK
2092 } else
2093 vcpu->guest_debug = 0;
44c11430
GN
2094}
2095
0fe1e009 2096static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
6aa8b732 2097{
0fe1e009
TH
2098 if (sd->next_asid > sd->max_asid) {
2099 ++sd->asid_generation;
2100 sd->next_asid = 1;
a2fa3e9f 2101 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
6aa8b732
AK
2102 }
2103
0fe1e009
TH
2104 svm->asid_generation = sd->asid_generation;
2105 svm->vmcb->control.asid = sd->next_asid++;
d48086d1
JR
2106
2107 mark_dirty(svm->vmcb, VMCB_ASID);
6aa8b732
AK
2108}
2109
73aaf249
JK
2110static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2111{
2112 return to_svm(vcpu)->vmcb->save.dr6;
2113}
2114
2115static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2116{
2117 struct vcpu_svm *svm = to_svm(vcpu);
2118
2119 svm->vmcb->save.dr6 = value;
2120 mark_dirty(svm->vmcb, VMCB_DR);
2121}
2122
facb0139
PB
2123static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2124{
2125 struct vcpu_svm *svm = to_svm(vcpu);
2126
2127 get_debugreg(vcpu->arch.db[0], 0);
2128 get_debugreg(vcpu->arch.db[1], 1);
2129 get_debugreg(vcpu->arch.db[2], 2);
2130 get_debugreg(vcpu->arch.db[3], 3);
2131 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2132 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2133
2134 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2135 set_dr_intercepts(svm);
2136}
2137
020df079 2138static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
6aa8b732 2139{
42dbaa5a 2140 struct vcpu_svm *svm = to_svm(vcpu);
42dbaa5a 2141
020df079 2142 svm->vmcb->save.dr7 = value;
72214b96 2143 mark_dirty(svm->vmcb, VMCB_DR);
6aa8b732
AK
2144}
2145
851ba692 2146static int pf_interception(struct vcpu_svm *svm)
6aa8b732 2147{
631bc487 2148 u64 fault_address = svm->vmcb->control.exit_info_2;
1261bfa3 2149 u64 error_code = svm->vmcb->control.exit_info_1;
6aa8b732 2150
1261bfa3 2151 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
dc25e89e 2152 svm->vmcb->control.insn_bytes,
1261bfa3 2153 svm->vmcb->control.insn_len, !npt_enabled);
6aa8b732
AK
2154}
2155
851ba692 2156static int db_interception(struct vcpu_svm *svm)
d0bfb940 2157{
851ba692
AK
2158 struct kvm_run *kvm_run = svm->vcpu.run;
2159
d0bfb940 2160 if (!(svm->vcpu.guest_debug &
44c11430 2161 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
6be7d306 2162 !svm->nmi_singlestep) {
d0bfb940
JK
2163 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2164 return 1;
2165 }
44c11430 2166
6be7d306 2167 if (svm->nmi_singlestep) {
4aebd0e9 2168 disable_nmi_singlestep(svm);
44c11430
GN
2169 }
2170
2171 if (svm->vcpu.guest_debug &
e0231715 2172 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
44c11430
GN
2173 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2174 kvm_run->debug.arch.pc =
2175 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2176 kvm_run->debug.arch.exception = DB_VECTOR;
2177 return 0;
2178 }
2179
2180 return 1;
d0bfb940
JK
2181}
2182
851ba692 2183static int bp_interception(struct vcpu_svm *svm)
d0bfb940 2184{
851ba692
AK
2185 struct kvm_run *kvm_run = svm->vcpu.run;
2186
d0bfb940
JK
2187 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2188 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2189 kvm_run->debug.arch.exception = BP_VECTOR;
2190 return 0;
2191}
2192
851ba692 2193static int ud_interception(struct vcpu_svm *svm)
7aa81cc0
AL
2194{
2195 int er;
2196
51d8b661 2197 er = emulate_instruction(&svm->vcpu, EMULTYPE_TRAP_UD);
7aa81cc0 2198 if (er != EMULATE_DONE)
7ee5d940 2199 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
7aa81cc0
AL
2200 return 1;
2201}
2202
54a20552
EN
2203static int ac_interception(struct vcpu_svm *svm)
2204{
2205 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2206 return 1;
2207}
2208
67ec6607
JR
2209static bool is_erratum_383(void)
2210{
2211 int err, i;
2212 u64 value;
2213
2214 if (!erratum_383_found)
2215 return false;
2216
2217 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2218 if (err)
2219 return false;
2220
2221 /* Bit 62 may or may not be set for this mce */
2222 value &= ~(1ULL << 62);
2223
2224 if (value != 0xb600000000010015ULL)
2225 return false;
2226
2227 /* Clear MCi_STATUS registers */
2228 for (i = 0; i < 6; ++i)
2229 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2230
2231 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2232 if (!err) {
2233 u32 low, high;
2234
2235 value &= ~(1ULL << 2);
2236 low = lower_32_bits(value);
2237 high = upper_32_bits(value);
2238
2239 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2240 }
2241
2242 /* Flush tlb to evict multi-match entries */
2243 __flush_tlb_all();
2244
2245 return true;
2246}
2247
fe5913e4 2248static void svm_handle_mce(struct vcpu_svm *svm)
53371b50 2249{
67ec6607
JR
2250 if (is_erratum_383()) {
2251 /*
2252 * Erratum 383 triggered. Guest state is corrupt so kill the
2253 * guest.
2254 */
2255 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2256
a8eeb04a 2257 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
67ec6607
JR
2258
2259 return;
2260 }
2261
53371b50
JR
2262 /*
2263 * On an #MC intercept the MCE handler is not called automatically in
2264 * the host. So do it by hand here.
2265 */
2266 asm volatile (
2267 "int $0x12\n");
2268 /* not sure if we ever come back to this point */
2269
fe5913e4
JR
2270 return;
2271}
2272
2273static int mc_interception(struct vcpu_svm *svm)
2274{
53371b50
JR
2275 return 1;
2276}
2277
851ba692 2278static int shutdown_interception(struct vcpu_svm *svm)
46fe4ddd 2279{
851ba692
AK
2280 struct kvm_run *kvm_run = svm->vcpu.run;
2281
46fe4ddd
JR
2282 /*
2283 * VMCB is undefined after a SHUTDOWN intercept
2284 * so reinitialize it.
2285 */
a2fa3e9f 2286 clear_page(svm->vmcb);
5690891b 2287 init_vmcb(svm);
46fe4ddd
JR
2288
2289 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2290 return 0;
2291}
2292
851ba692 2293static int io_interception(struct vcpu_svm *svm)
6aa8b732 2294{
cf8f70bf 2295 struct kvm_vcpu *vcpu = &svm->vcpu;
d77c26fc 2296 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
b742c1e6 2297 int size, in, string, ret;
039576c0 2298 unsigned port;
6aa8b732 2299
e756fc62 2300 ++svm->vcpu.stat.io_exits;
e70669ab 2301 string = (io_info & SVM_IOIO_STR_MASK) != 0;
039576c0 2302 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
8370c3d0 2303 if (string)
51d8b661 2304 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
cf8f70bf 2305
039576c0
AK
2306 port = io_info >> 16;
2307 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
cf8f70bf 2308 svm->next_rip = svm->vmcb->control.exit_info_2;
b742c1e6 2309 ret = kvm_skip_emulated_instruction(&svm->vcpu);
cf8f70bf 2310
b742c1e6
LP
2311 /*
2312 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
2313 * KVM_EXIT_DEBUG here.
2314 */
2315 if (in)
2316 return kvm_fast_pio_in(vcpu, size, port) && ret;
2317 else
2318 return kvm_fast_pio_out(vcpu, size, port) && ret;
6aa8b732
AK
2319}
2320
851ba692 2321static int nmi_interception(struct vcpu_svm *svm)
c47f098d
JR
2322{
2323 return 1;
2324}
2325
851ba692 2326static int intr_interception(struct vcpu_svm *svm)
a0698055
JR
2327{
2328 ++svm->vcpu.stat.irq_exits;
2329 return 1;
2330}
2331
851ba692 2332static int nop_on_interception(struct vcpu_svm *svm)
6aa8b732
AK
2333{
2334 return 1;
2335}
2336
851ba692 2337static int halt_interception(struct vcpu_svm *svm)
6aa8b732 2338{
5fdbf976 2339 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
e756fc62 2340 return kvm_emulate_halt(&svm->vcpu);
6aa8b732
AK
2341}
2342
851ba692 2343static int vmmcall_interception(struct vcpu_svm *svm)
02e235bc 2344{
5fdbf976 2345 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
0d9c055e 2346 return kvm_emulate_hypercall(&svm->vcpu);
02e235bc
AK
2347}
2348
5bd2edc3
JR
2349static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2350{
2351 struct vcpu_svm *svm = to_svm(vcpu);
2352
2353 return svm->nested.nested_cr3;
2354}
2355
e4e517b4
AK
2356static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2357{
2358 struct vcpu_svm *svm = to_svm(vcpu);
2359 u64 cr3 = svm->nested.nested_cr3;
2360 u64 pdpte;
2361 int ret;
2362
54bf36aa
PB
2363 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(cr3), &pdpte,
2364 offset_in_page(cr3) + index * 8, 8);
e4e517b4
AK
2365 if (ret)
2366 return 0;
2367 return pdpte;
2368}
2369
5bd2edc3
JR
2370static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2371 unsigned long root)
2372{
2373 struct vcpu_svm *svm = to_svm(vcpu);
2374
2375 svm->vmcb->control.nested_cr3 = root;
b2747166 2376 mark_dirty(svm->vmcb, VMCB_NPT);
f40f6a45 2377 svm_flush_tlb(vcpu);
5bd2edc3
JR
2378}
2379
6389ee94
AK
2380static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2381 struct x86_exception *fault)
5bd2edc3
JR
2382{
2383 struct vcpu_svm *svm = to_svm(vcpu);
2384
5e352519
PB
2385 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2386 /*
2387 * TODO: track the cause of the nested page fault, and
2388 * correctly fill in the high bits of exit_info_1.
2389 */
2390 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2391 svm->vmcb->control.exit_code_hi = 0;
2392 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2393 svm->vmcb->control.exit_info_2 = fault->address;
2394 }
2395
2396 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2397 svm->vmcb->control.exit_info_1 |= fault->error_code;
2398
2399 /*
2400 * The present bit is always zero for page structure faults on real
2401 * hardware.
2402 */
2403 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2404 svm->vmcb->control.exit_info_1 &= ~1;
5bd2edc3
JR
2405
2406 nested_svm_vmexit(svm);
2407}
2408
8a3c1a33 2409static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
4b16184c 2410{
ad896af0
PB
2411 WARN_ON(mmu_is_nested(vcpu));
2412 kvm_init_shadow_mmu(vcpu);
4b16184c
JR
2413 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2414 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
e4e517b4 2415 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
4b16184c
JR
2416 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
2417 vcpu->arch.mmu.shadow_root_level = get_npt_level();
c258b62b 2418 reset_shadow_zero_bits_mask(vcpu, &vcpu->arch.mmu);
4b16184c 2419 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
4b16184c
JR
2420}
2421
2422static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2423{
2424 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
2425}
2426
c0725420
AG
2427static int nested_svm_check_permissions(struct vcpu_svm *svm)
2428{
e9196ceb
DC
2429 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2430 !is_paging(&svm->vcpu)) {
c0725420
AG
2431 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2432 return 1;
2433 }
2434
2435 if (svm->vmcb->save.cpl) {
2436 kvm_inject_gp(&svm->vcpu, 0);
2437 return 1;
2438 }
2439
e9196ceb 2440 return 0;
c0725420
AG
2441}
2442
cf74a78b
AG
2443static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2444 bool has_error_code, u32 error_code)
2445{
b8e88bc8
JR
2446 int vmexit;
2447
2030753d 2448 if (!is_guest_mode(&svm->vcpu))
0295ad7d 2449 return 0;
cf74a78b 2450
adfe20fb
WL
2451 vmexit = nested_svm_intercept(svm);
2452 if (vmexit != NESTED_EXIT_DONE)
2453 return 0;
2454
0295ad7d
JR
2455 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2456 svm->vmcb->control.exit_code_hi = 0;
2457 svm->vmcb->control.exit_info_1 = error_code;
b96fb439
PB
2458
2459 /*
2460 * FIXME: we should not write CR2 when L1 intercepts an L2 #PF exception.
2461 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2462 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6 can be
2463 * written only when inject_pending_event runs (DR6 would written here
2464 * too). This should be conditional on a new capability---if the
2465 * capability is disabled, kvm_multiple_exception would write the
2466 * ancillary information to CR2 or DR6, for backwards ABI-compatibility.
2467 */
adfe20fb
WL
2468 if (svm->vcpu.arch.exception.nested_apf)
2469 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
2470 else
2471 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
b8e88bc8 2472
adfe20fb 2473 svm->nested.exit_required = true;
b8e88bc8 2474 return vmexit;
cf74a78b
AG
2475}
2476
8fe54654
JR
2477/* This function returns true if it is save to enable the irq window */
2478static inline bool nested_svm_intr(struct vcpu_svm *svm)
cf74a78b 2479{
2030753d 2480 if (!is_guest_mode(&svm->vcpu))
8fe54654 2481 return true;
cf74a78b 2482
26666957 2483 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
8fe54654 2484 return true;
cf74a78b 2485
26666957 2486 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
8fe54654 2487 return false;
cf74a78b 2488
a0a07cd2
GN
2489 /*
2490 * if vmexit was already requested (by intercepted exception
2491 * for instance) do not overwrite it with "external interrupt"
2492 * vmexit.
2493 */
2494 if (svm->nested.exit_required)
2495 return false;
2496
197717d5
JR
2497 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
2498 svm->vmcb->control.exit_info_1 = 0;
2499 svm->vmcb->control.exit_info_2 = 0;
26666957 2500
cd3ff653
JR
2501 if (svm->nested.intercept & 1ULL) {
2502 /*
2503 * The #vmexit can't be emulated here directly because this
c5ec2e56 2504 * code path runs with irqs and preemption disabled. A
cd3ff653
JR
2505 * #vmexit emulation might sleep. Only signal request for
2506 * the #vmexit here.
2507 */
2508 svm->nested.exit_required = true;
236649de 2509 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
8fe54654 2510 return false;
cf74a78b
AG
2511 }
2512
8fe54654 2513 return true;
cf74a78b
AG
2514}
2515
887f500c
JR
2516/* This function returns true if it is save to enable the nmi window */
2517static inline bool nested_svm_nmi(struct vcpu_svm *svm)
2518{
2030753d 2519 if (!is_guest_mode(&svm->vcpu))
887f500c
JR
2520 return true;
2521
2522 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
2523 return true;
2524
2525 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
2526 svm->nested.exit_required = true;
2527
2528 return false;
cf74a78b
AG
2529}
2530
7597f129 2531static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
34f80cfa
JR
2532{
2533 struct page *page;
2534
6c3bd3d7
JR
2535 might_sleep();
2536
54bf36aa 2537 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
34f80cfa
JR
2538 if (is_error_page(page))
2539 goto error;
2540
7597f129
JR
2541 *_page = page;
2542
2543 return kmap(page);
34f80cfa
JR
2544
2545error:
34f80cfa
JR
2546 kvm_inject_gp(&svm->vcpu, 0);
2547
2548 return NULL;
2549}
2550
7597f129 2551static void nested_svm_unmap(struct page *page)
34f80cfa 2552{
7597f129 2553 kunmap(page);
34f80cfa
JR
2554 kvm_release_page_dirty(page);
2555}
34f80cfa 2556
ce2ac085
JR
2557static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
2558{
9bf41833
JK
2559 unsigned port, size, iopm_len;
2560 u16 val, mask;
2561 u8 start_bit;
ce2ac085 2562 u64 gpa;
34f80cfa 2563
ce2ac085
JR
2564 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
2565 return NESTED_EXIT_HOST;
34f80cfa 2566
ce2ac085 2567 port = svm->vmcb->control.exit_info_1 >> 16;
9bf41833
JK
2568 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
2569 SVM_IOIO_SIZE_SHIFT;
ce2ac085 2570 gpa = svm->nested.vmcb_iopm + (port / 8);
9bf41833
JK
2571 start_bit = port % 8;
2572 iopm_len = (start_bit + size > 8) ? 2 : 1;
2573 mask = (0xf >> (4 - size)) << start_bit;
2574 val = 0;
ce2ac085 2575
54bf36aa 2576 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
9bf41833 2577 return NESTED_EXIT_DONE;
ce2ac085 2578
9bf41833 2579 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
34f80cfa
JR
2580}
2581
d2477826 2582static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
4c2161ae 2583{
0d6b3537
JR
2584 u32 offset, msr, value;
2585 int write, mask;
4c2161ae 2586
3d62d9aa 2587 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
d2477826 2588 return NESTED_EXIT_HOST;
3d62d9aa 2589
0d6b3537
JR
2590 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
2591 offset = svm_msrpm_offset(msr);
2592 write = svm->vmcb->control.exit_info_1 & 1;
2593 mask = 1 << ((2 * (msr & 0xf)) + write);
3d62d9aa 2594
0d6b3537
JR
2595 if (offset == MSR_INVALID)
2596 return NESTED_EXIT_DONE;
4c2161ae 2597
0d6b3537
JR
2598 /* Offset is in 32 bit units but need in 8 bit units */
2599 offset *= 4;
4c2161ae 2600
54bf36aa 2601 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
0d6b3537 2602 return NESTED_EXIT_DONE;
3d62d9aa 2603
0d6b3537 2604 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
4c2161ae
JR
2605}
2606
ab2f4d73
LP
2607/* DB exceptions for our internal use must not cause vmexit */
2608static int nested_svm_intercept_db(struct vcpu_svm *svm)
2609{
2610 unsigned long dr6;
2611
2612 /* if we're not singlestepping, it's not ours */
2613 if (!svm->nmi_singlestep)
2614 return NESTED_EXIT_DONE;
2615
2616 /* if it's not a singlestep exception, it's not ours */
2617 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
2618 return NESTED_EXIT_DONE;
2619 if (!(dr6 & DR6_BS))
2620 return NESTED_EXIT_DONE;
2621
2622 /* if the guest is singlestepping, it should get the vmexit */
2623 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
2624 disable_nmi_singlestep(svm);
2625 return NESTED_EXIT_DONE;
2626 }
2627
2628 /* it's ours, the nested hypervisor must not see this one */
2629 return NESTED_EXIT_HOST;
2630}
2631
410e4d57 2632static int nested_svm_exit_special(struct vcpu_svm *svm)
cf74a78b 2633{
cf74a78b 2634 u32 exit_code = svm->vmcb->control.exit_code;
4c2161ae 2635
410e4d57
JR
2636 switch (exit_code) {
2637 case SVM_EXIT_INTR:
2638 case SVM_EXIT_NMI:
ff47a49b 2639 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
410e4d57 2640 return NESTED_EXIT_HOST;
410e4d57 2641 case SVM_EXIT_NPF:
e0231715 2642 /* For now we are always handling NPFs when using them */
410e4d57
JR
2643 if (npt_enabled)
2644 return NESTED_EXIT_HOST;
2645 break;
410e4d57 2646 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
631bc487 2647 /* When we're shadowing, trap PFs, but not async PF */
1261bfa3 2648 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
410e4d57
JR
2649 return NESTED_EXIT_HOST;
2650 break;
2651 default:
2652 break;
cf74a78b
AG
2653 }
2654
410e4d57
JR
2655 return NESTED_EXIT_CONTINUE;
2656}
2657
2658/*
2659 * If this function returns true, this #vmexit was already handled
2660 */
b8e88bc8 2661static int nested_svm_intercept(struct vcpu_svm *svm)
410e4d57
JR
2662{
2663 u32 exit_code = svm->vmcb->control.exit_code;
2664 int vmexit = NESTED_EXIT_HOST;
2665
cf74a78b 2666 switch (exit_code) {
9c4e40b9 2667 case SVM_EXIT_MSR:
3d62d9aa 2668 vmexit = nested_svm_exit_handled_msr(svm);
9c4e40b9 2669 break;
ce2ac085
JR
2670 case SVM_EXIT_IOIO:
2671 vmexit = nested_svm_intercept_ioio(svm);
2672 break;
4ee546b4
RJ
2673 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
2674 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
2675 if (svm->nested.intercept_cr & bit)
410e4d57 2676 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2677 break;
2678 }
3aed041a
JR
2679 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
2680 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
2681 if (svm->nested.intercept_dr & bit)
410e4d57 2682 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2683 break;
2684 }
2685 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
2686 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
ab2f4d73
LP
2687 if (svm->nested.intercept_exceptions & excp_bits) {
2688 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
2689 vmexit = nested_svm_intercept_db(svm);
2690 else
2691 vmexit = NESTED_EXIT_DONE;
2692 }
631bc487
GN
2693 /* async page fault always cause vmexit */
2694 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
adfe20fb 2695 svm->vcpu.arch.exception.nested_apf != 0)
631bc487 2696 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2697 break;
2698 }
228070b1
JR
2699 case SVM_EXIT_ERR: {
2700 vmexit = NESTED_EXIT_DONE;
2701 break;
2702 }
cf74a78b
AG
2703 default: {
2704 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
aad42c64 2705 if (svm->nested.intercept & exit_bits)
410e4d57 2706 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2707 }
2708 }
2709
b8e88bc8
JR
2710 return vmexit;
2711}
2712
2713static int nested_svm_exit_handled(struct vcpu_svm *svm)
2714{
2715 int vmexit;
2716
2717 vmexit = nested_svm_intercept(svm);
2718
2719 if (vmexit == NESTED_EXIT_DONE)
9c4e40b9 2720 nested_svm_vmexit(svm);
9c4e40b9
JR
2721
2722 return vmexit;
cf74a78b
AG
2723}
2724
0460a979
JR
2725static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
2726{
2727 struct vmcb_control_area *dst = &dst_vmcb->control;
2728 struct vmcb_control_area *from = &from_vmcb->control;
2729
4ee546b4 2730 dst->intercept_cr = from->intercept_cr;
3aed041a 2731 dst->intercept_dr = from->intercept_dr;
0460a979
JR
2732 dst->intercept_exceptions = from->intercept_exceptions;
2733 dst->intercept = from->intercept;
2734 dst->iopm_base_pa = from->iopm_base_pa;
2735 dst->msrpm_base_pa = from->msrpm_base_pa;
2736 dst->tsc_offset = from->tsc_offset;
2737 dst->asid = from->asid;
2738 dst->tlb_ctl = from->tlb_ctl;
2739 dst->int_ctl = from->int_ctl;
2740 dst->int_vector = from->int_vector;
2741 dst->int_state = from->int_state;
2742 dst->exit_code = from->exit_code;
2743 dst->exit_code_hi = from->exit_code_hi;
2744 dst->exit_info_1 = from->exit_info_1;
2745 dst->exit_info_2 = from->exit_info_2;
2746 dst->exit_int_info = from->exit_int_info;
2747 dst->exit_int_info_err = from->exit_int_info_err;
2748 dst->nested_ctl = from->nested_ctl;
2749 dst->event_inj = from->event_inj;
2750 dst->event_inj_err = from->event_inj_err;
2751 dst->nested_cr3 = from->nested_cr3;
0dc92119 2752 dst->virt_ext = from->virt_ext;
0460a979
JR
2753}
2754
34f80cfa 2755static int nested_svm_vmexit(struct vcpu_svm *svm)
cf74a78b 2756{
34f80cfa 2757 struct vmcb *nested_vmcb;
e6aa9abd 2758 struct vmcb *hsave = svm->nested.hsave;
33740e40 2759 struct vmcb *vmcb = svm->vmcb;
7597f129 2760 struct page *page;
cf74a78b 2761
17897f36
JR
2762 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
2763 vmcb->control.exit_info_1,
2764 vmcb->control.exit_info_2,
2765 vmcb->control.exit_int_info,
e097e5ff
SH
2766 vmcb->control.exit_int_info_err,
2767 KVM_ISA_SVM);
17897f36 2768
7597f129 2769 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
34f80cfa
JR
2770 if (!nested_vmcb)
2771 return 1;
2772
2030753d
JR
2773 /* Exit Guest-Mode */
2774 leave_guest_mode(&svm->vcpu);
06fc7772
JR
2775 svm->nested.vmcb = 0;
2776
cf74a78b 2777 /* Give the current vmcb to the guest */
33740e40
JR
2778 disable_gif(svm);
2779
2780 nested_vmcb->save.es = vmcb->save.es;
2781 nested_vmcb->save.cs = vmcb->save.cs;
2782 nested_vmcb->save.ss = vmcb->save.ss;
2783 nested_vmcb->save.ds = vmcb->save.ds;
2784 nested_vmcb->save.gdtr = vmcb->save.gdtr;
2785 nested_vmcb->save.idtr = vmcb->save.idtr;
3f6a9d16 2786 nested_vmcb->save.efer = svm->vcpu.arch.efer;
cdbbdc12 2787 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
9f8fe504 2788 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
33740e40 2789 nested_vmcb->save.cr2 = vmcb->save.cr2;
cdbbdc12 2790 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
f6e78475 2791 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
33740e40
JR
2792 nested_vmcb->save.rip = vmcb->save.rip;
2793 nested_vmcb->save.rsp = vmcb->save.rsp;
2794 nested_vmcb->save.rax = vmcb->save.rax;
2795 nested_vmcb->save.dr7 = vmcb->save.dr7;
2796 nested_vmcb->save.dr6 = vmcb->save.dr6;
2797 nested_vmcb->save.cpl = vmcb->save.cpl;
2798
2799 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
2800 nested_vmcb->control.int_vector = vmcb->control.int_vector;
2801 nested_vmcb->control.int_state = vmcb->control.int_state;
2802 nested_vmcb->control.exit_code = vmcb->control.exit_code;
2803 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
2804 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
2805 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
2806 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
2807 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
6092d3d3
JR
2808
2809 if (svm->nrips_enabled)
2810 nested_vmcb->control.next_rip = vmcb->control.next_rip;
8d23c466
AG
2811
2812 /*
2813 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
2814 * to make sure that we do not lose injected events. So check event_inj
2815 * here and copy it to exit_int_info if it is valid.
2816 * Exit_int_info and event_inj can't be both valid because the case
2817 * below only happens on a VMRUN instruction intercept which has
2818 * no valid exit_int_info set.
2819 */
2820 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
2821 struct vmcb_control_area *nc = &nested_vmcb->control;
2822
2823 nc->exit_int_info = vmcb->control.event_inj;
2824 nc->exit_int_info_err = vmcb->control.event_inj_err;
2825 }
2826
33740e40
JR
2827 nested_vmcb->control.tlb_ctl = 0;
2828 nested_vmcb->control.event_inj = 0;
2829 nested_vmcb->control.event_inj_err = 0;
cf74a78b
AG
2830
2831 /* We always set V_INTR_MASKING and remember the old value in hflags */
2832 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
2833 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
2834
cf74a78b 2835 /* Restore the original control entries */
0460a979 2836 copy_vmcb_control_area(vmcb, hsave);
cf74a78b 2837
219b65dc
AG
2838 kvm_clear_exception_queue(&svm->vcpu);
2839 kvm_clear_interrupt_queue(&svm->vcpu);
cf74a78b 2840
4b16184c
JR
2841 svm->nested.nested_cr3 = 0;
2842
cf74a78b
AG
2843 /* Restore selected save entries */
2844 svm->vmcb->save.es = hsave->save.es;
2845 svm->vmcb->save.cs = hsave->save.cs;
2846 svm->vmcb->save.ss = hsave->save.ss;
2847 svm->vmcb->save.ds = hsave->save.ds;
2848 svm->vmcb->save.gdtr = hsave->save.gdtr;
2849 svm->vmcb->save.idtr = hsave->save.idtr;
f6e78475 2850 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
cf74a78b
AG
2851 svm_set_efer(&svm->vcpu, hsave->save.efer);
2852 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
2853 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
2854 if (npt_enabled) {
2855 svm->vmcb->save.cr3 = hsave->save.cr3;
2856 svm->vcpu.arch.cr3 = hsave->save.cr3;
2857 } else {
2390218b 2858 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
cf74a78b
AG
2859 }
2860 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
2861 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
2862 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
2863 svm->vmcb->save.dr7 = 0;
2864 svm->vmcb->save.cpl = 0;
2865 svm->vmcb->control.exit_int_info = 0;
2866
8d28fec4
RJ
2867 mark_all_dirty(svm->vmcb);
2868
7597f129 2869 nested_svm_unmap(page);
cf74a78b 2870
4b16184c 2871 nested_svm_uninit_mmu_context(&svm->vcpu);
cf74a78b
AG
2872 kvm_mmu_reset_context(&svm->vcpu);
2873 kvm_mmu_load(&svm->vcpu);
2874
2875 return 0;
2876}
3d6368ef 2877
9738b2c9 2878static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
3d6368ef 2879{
323c3d80
JR
2880 /*
2881 * This function merges the msr permission bitmaps of kvm and the
c5ec2e56 2882 * nested vmcb. It is optimized in that it only merges the parts where
323c3d80
JR
2883 * the kvm msr permission bitmap may contain zero bits
2884 */
3d6368ef 2885 int i;
9738b2c9 2886
323c3d80
JR
2887 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
2888 return true;
9738b2c9 2889
323c3d80
JR
2890 for (i = 0; i < MSRPM_OFFSETS; i++) {
2891 u32 value, p;
2892 u64 offset;
9738b2c9 2893
323c3d80
JR
2894 if (msrpm_offsets[i] == 0xffffffff)
2895 break;
3d6368ef 2896
0d6b3537
JR
2897 p = msrpm_offsets[i];
2898 offset = svm->nested.vmcb_msrpm + (p * 4);
323c3d80 2899
54bf36aa 2900 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
323c3d80
JR
2901 return false;
2902
2903 svm->nested.msrpm[p] = svm->msrpm[p] | value;
2904 }
3d6368ef 2905
323c3d80 2906 svm->vmcb->control.msrpm_base_pa = __pa(svm->nested.msrpm);
9738b2c9
JR
2907
2908 return true;
3d6368ef
AG
2909}
2910
52c65a30
JR
2911static bool nested_vmcb_checks(struct vmcb *vmcb)
2912{
2913 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
2914 return false;
2915
dbe77584
JR
2916 if (vmcb->control.asid == 0)
2917 return false;
2918
4b16184c
JR
2919 if (vmcb->control.nested_ctl && !npt_enabled)
2920 return false;
2921
52c65a30
JR
2922 return true;
2923}
2924
9738b2c9 2925static bool nested_svm_vmrun(struct vcpu_svm *svm)
3d6368ef 2926{
9738b2c9 2927 struct vmcb *nested_vmcb;
e6aa9abd 2928 struct vmcb *hsave = svm->nested.hsave;
defbba56 2929 struct vmcb *vmcb = svm->vmcb;
7597f129 2930 struct page *page;
06fc7772 2931 u64 vmcb_gpa;
3d6368ef 2932
06fc7772 2933 vmcb_gpa = svm->vmcb->save.rax;
3d6368ef 2934
7597f129 2935 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9738b2c9
JR
2936 if (!nested_vmcb)
2937 return false;
2938
52c65a30
JR
2939 if (!nested_vmcb_checks(nested_vmcb)) {
2940 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
2941 nested_vmcb->control.exit_code_hi = 0;
2942 nested_vmcb->control.exit_info_1 = 0;
2943 nested_vmcb->control.exit_info_2 = 0;
2944
2945 nested_svm_unmap(page);
2946
2947 return false;
2948 }
2949
b75f4eb3 2950 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
0ac406de
JR
2951 nested_vmcb->save.rip,
2952 nested_vmcb->control.int_ctl,
2953 nested_vmcb->control.event_inj,
2954 nested_vmcb->control.nested_ctl);
2955
4ee546b4
RJ
2956 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
2957 nested_vmcb->control.intercept_cr >> 16,
2e554e8d
JR
2958 nested_vmcb->control.intercept_exceptions,
2959 nested_vmcb->control.intercept);
2960
3d6368ef 2961 /* Clear internal status */
219b65dc
AG
2962 kvm_clear_exception_queue(&svm->vcpu);
2963 kvm_clear_interrupt_queue(&svm->vcpu);
3d6368ef 2964
e0231715
JR
2965 /*
2966 * Save the old vmcb, so we don't need to pick what we save, but can
2967 * restore everything when a VMEXIT occurs
2968 */
defbba56
JR
2969 hsave->save.es = vmcb->save.es;
2970 hsave->save.cs = vmcb->save.cs;
2971 hsave->save.ss = vmcb->save.ss;
2972 hsave->save.ds = vmcb->save.ds;
2973 hsave->save.gdtr = vmcb->save.gdtr;
2974 hsave->save.idtr = vmcb->save.idtr;
f6801dff 2975 hsave->save.efer = svm->vcpu.arch.efer;
4d4ec087 2976 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
defbba56 2977 hsave->save.cr4 = svm->vcpu.arch.cr4;
f6e78475 2978 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
b75f4eb3 2979 hsave->save.rip = kvm_rip_read(&svm->vcpu);
defbba56
JR
2980 hsave->save.rsp = vmcb->save.rsp;
2981 hsave->save.rax = vmcb->save.rax;
2982 if (npt_enabled)
2983 hsave->save.cr3 = vmcb->save.cr3;
2984 else
9f8fe504 2985 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
defbba56 2986
0460a979 2987 copy_vmcb_control_area(hsave, vmcb);
3d6368ef 2988
f6e78475 2989 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
3d6368ef
AG
2990 svm->vcpu.arch.hflags |= HF_HIF_MASK;
2991 else
2992 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
2993
4b16184c
JR
2994 if (nested_vmcb->control.nested_ctl) {
2995 kvm_mmu_unload(&svm->vcpu);
2996 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
2997 nested_svm_init_mmu_context(&svm->vcpu);
2998 }
2999
3d6368ef
AG
3000 /* Load the nested guest state */
3001 svm->vmcb->save.es = nested_vmcb->save.es;
3002 svm->vmcb->save.cs = nested_vmcb->save.cs;
3003 svm->vmcb->save.ss = nested_vmcb->save.ss;
3004 svm->vmcb->save.ds = nested_vmcb->save.ds;
3005 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3006 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
f6e78475 3007 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
3d6368ef
AG
3008 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3009 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3010 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3011 if (npt_enabled) {
3012 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3013 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
0e5cbe36 3014 } else
2390218b 3015 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
0e5cbe36
JR
3016
3017 /* Guest paging mode is active - reset mmu */
3018 kvm_mmu_reset_context(&svm->vcpu);
3019
defbba56 3020 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
3d6368ef
AG
3021 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
3022 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
3023 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
e0231715 3024
3d6368ef
AG
3025 /* In case we don't even reach vcpu_run, the fields are not updated */
3026 svm->vmcb->save.rax = nested_vmcb->save.rax;
3027 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3028 svm->vmcb->save.rip = nested_vmcb->save.rip;
3029 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3030 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3031 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3032
f7138538 3033 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
ce2ac085 3034 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
3d6368ef 3035
aad42c64 3036 /* cache intercepts */
4ee546b4 3037 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
3aed041a 3038 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
aad42c64
JR
3039 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3040 svm->nested.intercept = nested_vmcb->control.intercept;
3041
f40f6a45 3042 svm_flush_tlb(&svm->vcpu);
3d6368ef 3043 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
3d6368ef
AG
3044 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3045 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3046 else
3047 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3048
88ab24ad
JR
3049 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3050 /* We only want the cr8 intercept bits of the guest */
4ee546b4
RJ
3051 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3052 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
88ab24ad
JR
3053 }
3054
0d945bd9 3055 /* We don't want to see VMMCALLs from a nested guest */
8a05a1b8 3056 clr_intercept(svm, INTERCEPT_VMMCALL);
0d945bd9 3057
0dc92119 3058 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
3d6368ef
AG
3059 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3060 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
3061 svm->vmcb->control.tsc_offset += nested_vmcb->control.tsc_offset;
3d6368ef
AG
3062 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3063 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3064
7597f129 3065 nested_svm_unmap(page);
9738b2c9 3066
2030753d
JR
3067 /* Enter Guest-Mode */
3068 enter_guest_mode(&svm->vcpu);
3069
384c6368
JR
3070 /*
3071 * Merge guest and host intercepts - must be called with vcpu in
3072 * guest-mode to take affect here
3073 */
3074 recalc_intercepts(svm);
3075
06fc7772 3076 svm->nested.vmcb = vmcb_gpa;
9738b2c9 3077
2af9194d 3078 enable_gif(svm);
3d6368ef 3079
8d28fec4
RJ
3080 mark_all_dirty(svm->vmcb);
3081
9738b2c9 3082 return true;
3d6368ef
AG
3083}
3084
9966bf68 3085static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
5542675b
AG
3086{
3087 to_vmcb->save.fs = from_vmcb->save.fs;
3088 to_vmcb->save.gs = from_vmcb->save.gs;
3089 to_vmcb->save.tr = from_vmcb->save.tr;
3090 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3091 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3092 to_vmcb->save.star = from_vmcb->save.star;
3093 to_vmcb->save.lstar = from_vmcb->save.lstar;
3094 to_vmcb->save.cstar = from_vmcb->save.cstar;
3095 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3096 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3097 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3098 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
5542675b
AG
3099}
3100
851ba692 3101static int vmload_interception(struct vcpu_svm *svm)
5542675b 3102{
9966bf68 3103 struct vmcb *nested_vmcb;
7597f129 3104 struct page *page;
b742c1e6 3105 int ret;
9966bf68 3106
5542675b
AG
3107 if (nested_svm_check_permissions(svm))
3108 return 1;
3109
7597f129 3110 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9966bf68
JR
3111 if (!nested_vmcb)
3112 return 1;
3113
e3e9ed3d 3114 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3115 ret = kvm_skip_emulated_instruction(&svm->vcpu);
e3e9ed3d 3116
9966bf68 3117 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
7597f129 3118 nested_svm_unmap(page);
5542675b 3119
b742c1e6 3120 return ret;
5542675b
AG
3121}
3122
851ba692 3123static int vmsave_interception(struct vcpu_svm *svm)
5542675b 3124{
9966bf68 3125 struct vmcb *nested_vmcb;
7597f129 3126 struct page *page;
b742c1e6 3127 int ret;
9966bf68 3128
5542675b
AG
3129 if (nested_svm_check_permissions(svm))
3130 return 1;
3131
7597f129 3132 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9966bf68
JR
3133 if (!nested_vmcb)
3134 return 1;
3135
e3e9ed3d 3136 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3137 ret = kvm_skip_emulated_instruction(&svm->vcpu);
e3e9ed3d 3138
9966bf68 3139 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
7597f129 3140 nested_svm_unmap(page);
5542675b 3141
b742c1e6 3142 return ret;
5542675b
AG
3143}
3144
851ba692 3145static int vmrun_interception(struct vcpu_svm *svm)
3d6368ef 3146{
3d6368ef
AG
3147 if (nested_svm_check_permissions(svm))
3148 return 1;
3149
b75f4eb3
RJ
3150 /* Save rip after vmrun instruction */
3151 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
3d6368ef 3152
9738b2c9 3153 if (!nested_svm_vmrun(svm))
3d6368ef
AG
3154 return 1;
3155
9738b2c9 3156 if (!nested_svm_vmrun_msrpm(svm))
1f8da478
JR
3157 goto failed;
3158
3159 return 1;
3160
3161failed:
3162
3163 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3164 svm->vmcb->control.exit_code_hi = 0;
3165 svm->vmcb->control.exit_info_1 = 0;
3166 svm->vmcb->control.exit_info_2 = 0;
3167
3168 nested_svm_vmexit(svm);
3d6368ef
AG
3169
3170 return 1;
3171}
3172
851ba692 3173static int stgi_interception(struct vcpu_svm *svm)
1371d904 3174{
b742c1e6
LP
3175 int ret;
3176
1371d904
AG
3177 if (nested_svm_check_permissions(svm))
3178 return 1;
3179
3180 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3181 ret = kvm_skip_emulated_instruction(&svm->vcpu);
3842d135 3182 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
1371d904 3183
2af9194d 3184 enable_gif(svm);
1371d904 3185
b742c1e6 3186 return ret;
1371d904
AG
3187}
3188
851ba692 3189static int clgi_interception(struct vcpu_svm *svm)
1371d904 3190{
b742c1e6
LP
3191 int ret;
3192
1371d904
AG
3193 if (nested_svm_check_permissions(svm))
3194 return 1;
3195
3196 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3197 ret = kvm_skip_emulated_instruction(&svm->vcpu);
1371d904 3198
2af9194d 3199 disable_gif(svm);
1371d904
AG
3200
3201 /* After a CLGI no interrupts should come */
340d3bc3
SS
3202 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3203 svm_clear_vintr(svm);
3204 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3205 mark_dirty(svm->vmcb, VMCB_INTR);
3206 }
decdbf6a 3207
b742c1e6 3208 return ret;
1371d904
AG
3209}
3210
851ba692 3211static int invlpga_interception(struct vcpu_svm *svm)
ff092385
AG
3212{
3213 struct kvm_vcpu *vcpu = &svm->vcpu;
ff092385 3214
668f198f
DK
3215 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3216 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
ec1ff790 3217
ff092385 3218 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
668f198f 3219 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
ff092385
AG
3220
3221 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3222 return kvm_skip_emulated_instruction(&svm->vcpu);
ff092385
AG
3223}
3224
532a46b9
JR
3225static int skinit_interception(struct vcpu_svm *svm)
3226{
668f198f 3227 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
532a46b9
JR
3228
3229 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3230 return 1;
3231}
3232
dab429a7
DK
3233static int wbinvd_interception(struct vcpu_svm *svm)
3234{
6affcbed 3235 return kvm_emulate_wbinvd(&svm->vcpu);
dab429a7
DK
3236}
3237
81dd35d4
JR
3238static int xsetbv_interception(struct vcpu_svm *svm)
3239{
3240 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3241 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3242
3243 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3244 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3245 return kvm_skip_emulated_instruction(&svm->vcpu);
81dd35d4
JR
3246 }
3247
3248 return 1;
3249}
3250
851ba692 3251static int task_switch_interception(struct vcpu_svm *svm)
6aa8b732 3252{
37817f29 3253 u16 tss_selector;
64a7ec06
GN
3254 int reason;
3255 int int_type = svm->vmcb->control.exit_int_info &
3256 SVM_EXITINTINFO_TYPE_MASK;
8317c298 3257 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
fe8e7f83
GN
3258 uint32_t type =
3259 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3260 uint32_t idt_v =
3261 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
e269fb21
JK
3262 bool has_error_code = false;
3263 u32 error_code = 0;
37817f29
IE
3264
3265 tss_selector = (u16)svm->vmcb->control.exit_info_1;
64a7ec06 3266
37817f29
IE
3267 if (svm->vmcb->control.exit_info_2 &
3268 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
64a7ec06
GN
3269 reason = TASK_SWITCH_IRET;
3270 else if (svm->vmcb->control.exit_info_2 &
3271 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3272 reason = TASK_SWITCH_JMP;
fe8e7f83 3273 else if (idt_v)
64a7ec06
GN
3274 reason = TASK_SWITCH_GATE;
3275 else
3276 reason = TASK_SWITCH_CALL;
3277
fe8e7f83
GN
3278 if (reason == TASK_SWITCH_GATE) {
3279 switch (type) {
3280 case SVM_EXITINTINFO_TYPE_NMI:
3281 svm->vcpu.arch.nmi_injected = false;
3282 break;
3283 case SVM_EXITINTINFO_TYPE_EXEPT:
e269fb21
JK
3284 if (svm->vmcb->control.exit_info_2 &
3285 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3286 has_error_code = true;
3287 error_code =
3288 (u32)svm->vmcb->control.exit_info_2;
3289 }
fe8e7f83
GN
3290 kvm_clear_exception_queue(&svm->vcpu);
3291 break;
3292 case SVM_EXITINTINFO_TYPE_INTR:
3293 kvm_clear_interrupt_queue(&svm->vcpu);
3294 break;
3295 default:
3296 break;
3297 }
3298 }
64a7ec06 3299
8317c298
GN
3300 if (reason != TASK_SWITCH_GATE ||
3301 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3302 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
f629cf84
GN
3303 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3304 skip_emulated_instruction(&svm->vcpu);
64a7ec06 3305
7f3d35fd
KW
3306 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3307 int_vec = -1;
3308
3309 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
acb54517
GN
3310 has_error_code, error_code) == EMULATE_FAIL) {
3311 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3312 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3313 svm->vcpu.run->internal.ndata = 0;
3314 return 0;
3315 }
3316 return 1;
6aa8b732
AK
3317}
3318
851ba692 3319static int cpuid_interception(struct vcpu_svm *svm)
6aa8b732 3320{
5fdbf976 3321 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
6a908b62 3322 return kvm_emulate_cpuid(&svm->vcpu);
6aa8b732
AK
3323}
3324
851ba692 3325static int iret_interception(struct vcpu_svm *svm)
95ba8273
GN
3326{
3327 ++svm->vcpu.stat.nmi_window_exits;
8a05a1b8 3328 clr_intercept(svm, INTERCEPT_IRET);
44c11430 3329 svm->vcpu.arch.hflags |= HF_IRET_MASK;
bd3d1ec3 3330 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
f303b4ce 3331 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
95ba8273
GN
3332 return 1;
3333}
3334
851ba692 3335static int invlpg_interception(struct vcpu_svm *svm)
a7052897 3336{
df4f3108
AP
3337 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3338 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
3339
3340 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
b742c1e6 3341 return kvm_skip_emulated_instruction(&svm->vcpu);
a7052897
MT
3342}
3343
851ba692 3344static int emulate_on_interception(struct vcpu_svm *svm)
6aa8b732 3345{
51d8b661 3346 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
6aa8b732
AK
3347}
3348
332b56e4
AK
3349static int rdpmc_interception(struct vcpu_svm *svm)
3350{
3351 int err;
3352
3353 if (!static_cpu_has(X86_FEATURE_NRIPS))
3354 return emulate_on_interception(svm);
3355
3356 err = kvm_rdpmc(&svm->vcpu);
6affcbed 3357 return kvm_complete_insn_gp(&svm->vcpu, err);
332b56e4
AK
3358}
3359
52eb5a6d
XL
3360static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3361 unsigned long val)
628afd2a
JR
3362{
3363 unsigned long cr0 = svm->vcpu.arch.cr0;
3364 bool ret = false;
3365 u64 intercept;
3366
3367 intercept = svm->nested.intercept;
3368
3369 if (!is_guest_mode(&svm->vcpu) ||
3370 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3371 return false;
3372
3373 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3374 val &= ~SVM_CR0_SELECTIVE_MASK;
3375
3376 if (cr0 ^ val) {
3377 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3378 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3379 }
3380
3381 return ret;
3382}
3383
7ff76d58
AP
3384#define CR_VALID (1ULL << 63)
3385
3386static int cr_interception(struct vcpu_svm *svm)
3387{
3388 int reg, cr;
3389 unsigned long val;
3390 int err;
3391
3392 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3393 return emulate_on_interception(svm);
3394
3395 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3396 return emulate_on_interception(svm);
3397
3398 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
5e57518d
DK
3399 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3400 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3401 else
3402 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
7ff76d58
AP
3403
3404 err = 0;
3405 if (cr >= 16) { /* mov to cr */
3406 cr -= 16;
3407 val = kvm_register_read(&svm->vcpu, reg);
3408 switch (cr) {
3409 case 0:
628afd2a
JR
3410 if (!check_selective_cr0_intercepted(svm, val))
3411 err = kvm_set_cr0(&svm->vcpu, val);
977b2d03
JR
3412 else
3413 return 1;
3414
7ff76d58
AP
3415 break;
3416 case 3:
3417 err = kvm_set_cr3(&svm->vcpu, val);
3418 break;
3419 case 4:
3420 err = kvm_set_cr4(&svm->vcpu, val);
3421 break;
3422 case 8:
3423 err = kvm_set_cr8(&svm->vcpu, val);
3424 break;
3425 default:
3426 WARN(1, "unhandled write to CR%d", cr);
3427 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3428 return 1;
3429 }
3430 } else { /* mov from cr */
3431 switch (cr) {
3432 case 0:
3433 val = kvm_read_cr0(&svm->vcpu);
3434 break;
3435 case 2:
3436 val = svm->vcpu.arch.cr2;
3437 break;
3438 case 3:
9f8fe504 3439 val = kvm_read_cr3(&svm->vcpu);
7ff76d58
AP
3440 break;
3441 case 4:
3442 val = kvm_read_cr4(&svm->vcpu);
3443 break;
3444 case 8:
3445 val = kvm_get_cr8(&svm->vcpu);
3446 break;
3447 default:
3448 WARN(1, "unhandled read from CR%d", cr);
3449 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3450 return 1;
3451 }
3452 kvm_register_write(&svm->vcpu, reg, val);
3453 }
6affcbed 3454 return kvm_complete_insn_gp(&svm->vcpu, err);
7ff76d58
AP
3455}
3456
cae3797a
AP
3457static int dr_interception(struct vcpu_svm *svm)
3458{
3459 int reg, dr;
3460 unsigned long val;
cae3797a 3461
facb0139
PB
3462 if (svm->vcpu.guest_debug == 0) {
3463 /*
3464 * No more DR vmexits; force a reload of the debug registers
3465 * and reenter on this instruction. The next vmexit will
3466 * retrieve the full state of the debug registers.
3467 */
3468 clr_dr_intercepts(svm);
3469 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
3470 return 1;
3471 }
3472
cae3797a
AP
3473 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
3474 return emulate_on_interception(svm);
3475
3476 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
3477 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
3478
3479 if (dr >= 16) { /* mov to DRn */
16f8a6f9
NA
3480 if (!kvm_require_dr(&svm->vcpu, dr - 16))
3481 return 1;
cae3797a
AP
3482 val = kvm_register_read(&svm->vcpu, reg);
3483 kvm_set_dr(&svm->vcpu, dr - 16, val);
3484 } else {
16f8a6f9
NA
3485 if (!kvm_require_dr(&svm->vcpu, dr))
3486 return 1;
3487 kvm_get_dr(&svm->vcpu, dr, &val);
3488 kvm_register_write(&svm->vcpu, reg, val);
cae3797a
AP
3489 }
3490
b742c1e6 3491 return kvm_skip_emulated_instruction(&svm->vcpu);
cae3797a
AP
3492}
3493
851ba692 3494static int cr8_write_interception(struct vcpu_svm *svm)
1d075434 3495{
851ba692 3496 struct kvm_run *kvm_run = svm->vcpu.run;
eea1cff9 3497 int r;
851ba692 3498
0a5fff19
GN
3499 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
3500 /* instruction emulation calls kvm_set_cr8() */
7ff76d58 3501 r = cr_interception(svm);
35754c98 3502 if (lapic_in_kernel(&svm->vcpu))
7ff76d58 3503 return r;
0a5fff19 3504 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
7ff76d58 3505 return r;
1d075434
JR
3506 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
3507 return 0;
3508}
3509
609e36d3 3510static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
6aa8b732 3511{
a2fa3e9f
GH
3512 struct vcpu_svm *svm = to_svm(vcpu);
3513
609e36d3 3514 switch (msr_info->index) {
af24a4e4 3515 case MSR_IA32_TSC: {
609e36d3 3516 msr_info->data = svm->vmcb->control.tsc_offset +
35181e86 3517 kvm_scale_tsc(vcpu, rdtsc());
fbc0db76 3518
6aa8b732
AK
3519 break;
3520 }
8c06585d 3521 case MSR_STAR:
609e36d3 3522 msr_info->data = svm->vmcb->save.star;
6aa8b732 3523 break;
0e859cac 3524#ifdef CONFIG_X86_64
6aa8b732 3525 case MSR_LSTAR:
609e36d3 3526 msr_info->data = svm->vmcb->save.lstar;
6aa8b732
AK
3527 break;
3528 case MSR_CSTAR:
609e36d3 3529 msr_info->data = svm->vmcb->save.cstar;
6aa8b732
AK
3530 break;
3531 case MSR_KERNEL_GS_BASE:
609e36d3 3532 msr_info->data = svm->vmcb->save.kernel_gs_base;
6aa8b732
AK
3533 break;
3534 case MSR_SYSCALL_MASK:
609e36d3 3535 msr_info->data = svm->vmcb->save.sfmask;
6aa8b732
AK
3536 break;
3537#endif
3538 case MSR_IA32_SYSENTER_CS:
609e36d3 3539 msr_info->data = svm->vmcb->save.sysenter_cs;
6aa8b732
AK
3540 break;
3541 case MSR_IA32_SYSENTER_EIP:
609e36d3 3542 msr_info->data = svm->sysenter_eip;
6aa8b732
AK
3543 break;
3544 case MSR_IA32_SYSENTER_ESP:
609e36d3 3545 msr_info->data = svm->sysenter_esp;
6aa8b732 3546 break;
46896c73
PB
3547 case MSR_TSC_AUX:
3548 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
3549 return 1;
3550 msr_info->data = svm->tsc_aux;
3551 break;
e0231715
JR
3552 /*
3553 * Nobody will change the following 5 values in the VMCB so we can
3554 * safely return them on rdmsr. They will always be 0 until LBRV is
3555 * implemented.
3556 */
a2938c80 3557 case MSR_IA32_DEBUGCTLMSR:
609e36d3 3558 msr_info->data = svm->vmcb->save.dbgctl;
a2938c80
JR
3559 break;
3560 case MSR_IA32_LASTBRANCHFROMIP:
609e36d3 3561 msr_info->data = svm->vmcb->save.br_from;
a2938c80
JR
3562 break;
3563 case MSR_IA32_LASTBRANCHTOIP:
609e36d3 3564 msr_info->data = svm->vmcb->save.br_to;
a2938c80
JR
3565 break;
3566 case MSR_IA32_LASTINTFROMIP:
609e36d3 3567 msr_info->data = svm->vmcb->save.last_excp_from;
a2938c80
JR
3568 break;
3569 case MSR_IA32_LASTINTTOIP:
609e36d3 3570 msr_info->data = svm->vmcb->save.last_excp_to;
a2938c80 3571 break;
b286d5d8 3572 case MSR_VM_HSAVE_PA:
609e36d3 3573 msr_info->data = svm->nested.hsave_msr;
b286d5d8 3574 break;
eb6f302e 3575 case MSR_VM_CR:
609e36d3 3576 msr_info->data = svm->nested.vm_cr_msr;
eb6f302e 3577 break;
f6781ae1
TL
3578 case MSR_IA32_SPEC_CTRL:
3579 msr_info->data = svm->spec_ctrl;
3580 break;
c8a73f18 3581 case MSR_IA32_UCODE_REV:
609e36d3 3582 msr_info->data = 0x01000065;
c8a73f18 3583 break;
59457289
TL
3584 case MSR_AMD64_VIRT_SPEC_CTRL:
3585 if (!msr_info->host_initiated &&
3586 !guest_cpuid_has_virt_ssbd(vcpu))
3587 return 1;
3588
3589 msr_info->data = svm->virt_spec_ctrl;
3590 break;
ae8b7875
BP
3591 case MSR_F15H_IC_CFG: {
3592
3593 int family, model;
3594
3595 family = guest_cpuid_family(vcpu);
3596 model = guest_cpuid_model(vcpu);
3597
3598 if (family < 0 || model < 0)
3599 return kvm_get_msr_common(vcpu, msr_info);
3600
3601 msr_info->data = 0;
3602
3603 if (family == 0x15 &&
3604 (model >= 0x2 && model < 0x20))
3605 msr_info->data = 0x1E;
3606 }
3607 break;
6aa8b732 3608 default:
609e36d3 3609 return kvm_get_msr_common(vcpu, msr_info);
6aa8b732
AK
3610 }
3611 return 0;
3612}
3613
851ba692 3614static int rdmsr_interception(struct vcpu_svm *svm)
6aa8b732 3615{
668f198f 3616 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
609e36d3 3617 struct msr_data msr_info;
6aa8b732 3618
609e36d3
PB
3619 msr_info.index = ecx;
3620 msr_info.host_initiated = false;
3621 if (svm_get_msr(&svm->vcpu, &msr_info)) {
59200273 3622 trace_kvm_msr_read_ex(ecx);
c1a5d4f9 3623 kvm_inject_gp(&svm->vcpu, 0);
b742c1e6 3624 return 1;
59200273 3625 } else {
609e36d3 3626 trace_kvm_msr_read(ecx, msr_info.data);
af9ca2d7 3627
609e36d3
PB
3628 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
3629 msr_info.data & 0xffffffff);
3630 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
3631 msr_info.data >> 32);
5fdbf976 3632 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
b742c1e6 3633 return kvm_skip_emulated_instruction(&svm->vcpu);
6aa8b732 3634 }
6aa8b732
AK
3635}
3636
4a810181
JR
3637static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
3638{
3639 struct vcpu_svm *svm = to_svm(vcpu);
3640 int svm_dis, chg_mask;
3641
3642 if (data & ~SVM_VM_CR_VALID_MASK)
3643 return 1;
3644
3645 chg_mask = SVM_VM_CR_VALID_MASK;
3646
3647 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
3648 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
3649
3650 svm->nested.vm_cr_msr &= ~chg_mask;
3651 svm->nested.vm_cr_msr |= (data & chg_mask);
3652
3653 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
3654
3655 /* check for svm_disable while efer.svme is set */
3656 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
3657 return 1;
3658
3659 return 0;
3660}
3661
8fe8ab46 3662static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
6aa8b732 3663{
a2fa3e9f
GH
3664 struct vcpu_svm *svm = to_svm(vcpu);
3665
8fe8ab46
WA
3666 u32 ecx = msr->index;
3667 u64 data = msr->data;
6aa8b732 3668 switch (ecx) {
f4e1b3c8 3669 case MSR_IA32_TSC:
8fe8ab46 3670 kvm_write_tsc(vcpu, msr);
6aa8b732 3671 break;
59457289
TL
3672 case MSR_AMD64_VIRT_SPEC_CTRL:
3673 if (!msr->host_initiated &&
3674 !guest_cpuid_has_virt_ssbd(vcpu))
3675 return 1;
3676
3677 if (data & ~SPEC_CTRL_SSBD)
3678 return 1;
3679
3680 svm->virt_spec_ctrl = data;
3681 break;
8c06585d 3682 case MSR_STAR:
a2fa3e9f 3683 svm->vmcb->save.star = data;
6aa8b732 3684 break;
49b14f24 3685#ifdef CONFIG_X86_64
6aa8b732 3686 case MSR_LSTAR:
a2fa3e9f 3687 svm->vmcb->save.lstar = data;
6aa8b732
AK
3688 break;
3689 case MSR_CSTAR:
a2fa3e9f 3690 svm->vmcb->save.cstar = data;
6aa8b732
AK
3691 break;
3692 case MSR_KERNEL_GS_BASE:
a2fa3e9f 3693 svm->vmcb->save.kernel_gs_base = data;
6aa8b732
AK
3694 break;
3695 case MSR_SYSCALL_MASK:
a2fa3e9f 3696 svm->vmcb->save.sfmask = data;
6aa8b732
AK
3697 break;
3698#endif
3699 case MSR_IA32_SYSENTER_CS:
a2fa3e9f 3700 svm->vmcb->save.sysenter_cs = data;
6aa8b732
AK
3701 break;
3702 case MSR_IA32_SYSENTER_EIP:
017cb99e 3703 svm->sysenter_eip = data;
a2fa3e9f 3704 svm->vmcb->save.sysenter_eip = data;
6aa8b732
AK
3705 break;
3706 case MSR_IA32_SYSENTER_ESP:
017cb99e 3707 svm->sysenter_esp = data;
a2fa3e9f 3708 svm->vmcb->save.sysenter_esp = data;
6aa8b732 3709 break;
46896c73
PB
3710 case MSR_TSC_AUX:
3711 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
3712 return 1;
3713
3714 /*
3715 * This is rare, so we update the MSR here instead of using
3716 * direct_access_msrs. Doing that would require a rdmsr in
3717 * svm_vcpu_put.
3718 */
3719 svm->tsc_aux = data;
3720 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
3721 break;
a2938c80 3722 case MSR_IA32_DEBUGCTLMSR:
2a6b20b8 3723 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
a737f256
CD
3724 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
3725 __func__, data);
24e09cbf
JR
3726 break;
3727 }
3728 if (data & DEBUGCTL_RESERVED_BITS)
3729 return 1;
3730
3731 svm->vmcb->save.dbgctl = data;
b53ba3f9 3732 mark_dirty(svm->vmcb, VMCB_LBR);
24e09cbf
JR
3733 if (data & (1ULL<<0))
3734 svm_enable_lbrv(svm);
3735 else
3736 svm_disable_lbrv(svm);
a2938c80 3737 break;
b286d5d8 3738 case MSR_VM_HSAVE_PA:
e6aa9abd 3739 svm->nested.hsave_msr = data;
62b9abaa 3740 break;
3c5d0a44 3741 case MSR_VM_CR:
4a810181 3742 return svm_set_vm_cr(vcpu, data);
3c5d0a44 3743 case MSR_VM_IGNNE:
a737f256 3744 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
3c5d0a44 3745 break;
f6781ae1
TL
3746 case MSR_IA32_SPEC_CTRL:
3747 svm->spec_ctrl = data;
3748 break;
44a95dae
SS
3749 case MSR_IA32_APICBASE:
3750 if (kvm_vcpu_apicv_active(vcpu))
3751 avic_update_vapic_bar(to_svm(vcpu), data);
3752 /* Follow through */
6aa8b732 3753 default:
8fe8ab46 3754 return kvm_set_msr_common(vcpu, msr);
6aa8b732
AK
3755 }
3756 return 0;
3757}
3758
851ba692 3759static int wrmsr_interception(struct vcpu_svm *svm)
6aa8b732 3760{
8fe8ab46 3761 struct msr_data msr;
668f198f
DK
3762 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3763 u64 data = kvm_read_edx_eax(&svm->vcpu);
af9ca2d7 3764
8fe8ab46
WA
3765 msr.data = data;
3766 msr.index = ecx;
3767 msr.host_initiated = false;
af9ca2d7 3768
5fdbf976 3769 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
854e8bb1 3770 if (kvm_set_msr(&svm->vcpu, &msr)) {
59200273 3771 trace_kvm_msr_write_ex(ecx, data);
c1a5d4f9 3772 kvm_inject_gp(&svm->vcpu, 0);
b742c1e6 3773 return 1;
59200273
AK
3774 } else {
3775 trace_kvm_msr_write(ecx, data);
b742c1e6 3776 return kvm_skip_emulated_instruction(&svm->vcpu);
59200273 3777 }
6aa8b732
AK
3778}
3779
851ba692 3780static int msr_interception(struct vcpu_svm *svm)
6aa8b732 3781{
e756fc62 3782 if (svm->vmcb->control.exit_info_1)
851ba692 3783 return wrmsr_interception(svm);
6aa8b732 3784 else
851ba692 3785 return rdmsr_interception(svm);
6aa8b732
AK
3786}
3787
851ba692 3788static int interrupt_window_interception(struct vcpu_svm *svm)
c1150d8c 3789{
3842d135 3790 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
f0b85051 3791 svm_clear_vintr(svm);
85f455f7 3792 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
decdbf6a 3793 mark_dirty(svm->vmcb, VMCB_INTR);
675acb75 3794 ++svm->vcpu.stat.irq_window_exits;
c1150d8c
DL
3795 return 1;
3796}
3797
565d0998
ML
3798static int pause_interception(struct vcpu_svm *svm)
3799{
3800 kvm_vcpu_on_spin(&(svm->vcpu));
3801 return 1;
3802}
3803
87c00572
GS
3804static int nop_interception(struct vcpu_svm *svm)
3805{
b742c1e6 3806 return kvm_skip_emulated_instruction(&(svm->vcpu));
87c00572
GS
3807}
3808
3809static int monitor_interception(struct vcpu_svm *svm)
3810{
3811 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
3812 return nop_interception(svm);
3813}
3814
3815static int mwait_interception(struct vcpu_svm *svm)
3816{
3817 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
3818 return nop_interception(svm);
3819}
3820
18f40c53
SS
3821enum avic_ipi_failure_cause {
3822 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
3823 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
3824 AVIC_IPI_FAILURE_INVALID_TARGET,
3825 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
3826};
3827
3828static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
3829{
3830 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
3831 u32 icrl = svm->vmcb->control.exit_info_1;
3832 u32 id = svm->vmcb->control.exit_info_2 >> 32;
5446a979 3833 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
18f40c53
SS
3834 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3835
3836 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
3837
3838 switch (id) {
3839 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
3840 /*
3841 * AVIC hardware handles the generation of
3842 * IPIs when the specified Message Type is Fixed
3843 * (also known as fixed delivery mode) and
3844 * the Trigger Mode is edge-triggered. The hardware
3845 * also supports self and broadcast delivery modes
3846 * specified via the Destination Shorthand(DSH)
3847 * field of the ICRL. Logical and physical APIC ID
3848 * formats are supported. All other IPI types cause
3849 * a #VMEXIT, which needs to emulated.
3850 */
3851 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
3852 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
3853 break;
3854 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
3855 int i;
3856 struct kvm_vcpu *vcpu;
3857 struct kvm *kvm = svm->vcpu.kvm;
3858 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3859
3860 /*
3861 * At this point, we expect that the AVIC HW has already
3862 * set the appropriate IRR bits on the valid target
3863 * vcpus. So, we just need to kick the appropriate vcpu.
3864 */
3865 kvm_for_each_vcpu(i, vcpu, kvm) {
3866 bool m = kvm_apic_match_dest(vcpu, apic,
3867 icrl & KVM_APIC_SHORT_MASK,
3868 GET_APIC_DEST_FIELD(icrh),
3869 icrl & KVM_APIC_DEST_MASK);
3870
3871 if (m && !avic_vcpu_is_running(vcpu))
3872 kvm_vcpu_wake_up(vcpu);
3873 }
3874 break;
3875 }
3876 case AVIC_IPI_FAILURE_INVALID_TARGET:
3877 break;
3878 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
3879 WARN_ONCE(1, "Invalid backing page\n");
3880 break;
3881 default:
3882 pr_err("Unknown IPI interception\n");
3883 }
3884
3885 return 1;
3886}
3887
3888static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
3889{
3890 struct kvm_arch *vm_data = &vcpu->kvm->arch;
3891 int index;
3892 u32 *logical_apic_id_table;
3893 int dlid = GET_APIC_LOGICAL_ID(ldr);
3894
3895 if (!dlid)
3896 return NULL;
3897
3898 if (flat) { /* flat */
3899 index = ffs(dlid) - 1;
3900 if (index > 7)
3901 return NULL;
3902 } else { /* cluster */
3903 int cluster = (dlid & 0xf0) >> 4;
3904 int apic = ffs(dlid & 0x0f) - 1;
3905
3906 if ((apic < 0) || (apic > 7) ||
3907 (cluster >= 0xf))
3908 return NULL;
3909 index = (cluster << 2) + apic;
3910 }
3911
3912 logical_apic_id_table = (u32 *) page_address(vm_data->avic_logical_id_table_page);
3913
3914 return &logical_apic_id_table[index];
3915}
3916
3917static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
3918 bool valid)
3919{
3920 bool flat;
3921 u32 *entry, new_entry;
3922
3923 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
3924 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
3925 if (!entry)
3926 return -EINVAL;
3927
3928 new_entry = READ_ONCE(*entry);
3929 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
3930 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
3931 if (valid)
3932 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
3933 else
3934 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
3935 WRITE_ONCE(*entry, new_entry);
3936
3937 return 0;
3938}
3939
3940static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
3941{
3942 int ret;
3943 struct vcpu_svm *svm = to_svm(vcpu);
3944 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
3945
3946 if (!ldr)
3947 return 1;
3948
3949 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
3950 if (ret && svm->ldr_reg) {
3951 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
3952 svm->ldr_reg = 0;
3953 } else {
3954 svm->ldr_reg = ldr;
3955 }
3956 return ret;
3957}
3958
3959static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
3960{
3961 u64 *old, *new;
3962 struct vcpu_svm *svm = to_svm(vcpu);
3963 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
3964 u32 id = (apic_id_reg >> 24) & 0xff;
3965
3966 if (vcpu->vcpu_id == id)
3967 return 0;
3968
3969 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
3970 new = avic_get_physical_id_entry(vcpu, id);
3971 if (!new || !old)
3972 return 1;
3973
3974 /* We need to move physical_id_entry to new offset */
3975 *new = *old;
3976 *old = 0ULL;
3977 to_svm(vcpu)->avic_physical_id_cache = new;
3978
3979 /*
3980 * Also update the guest physical APIC ID in the logical
3981 * APIC ID table entry if already setup the LDR.
3982 */
3983 if (svm->ldr_reg)
3984 avic_handle_ldr_update(vcpu);
3985
3986 return 0;
3987}
3988
3989static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
3990{
3991 struct vcpu_svm *svm = to_svm(vcpu);
3992 struct kvm_arch *vm_data = &vcpu->kvm->arch;
3993 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
3994 u32 mod = (dfr >> 28) & 0xf;
3995
3996 /*
3997 * We assume that all local APICs are using the same type.
3998 * If this changes, we need to flush the AVIC logical
3999 * APID id table.
4000 */
4001 if (vm_data->ldr_mode == mod)
4002 return 0;
4003
4004 clear_page(page_address(vm_data->avic_logical_id_table_page));
4005 vm_data->ldr_mode = mod;
4006
4007 if (svm->ldr_reg)
4008 avic_handle_ldr_update(vcpu);
4009 return 0;
4010}
4011
4012static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4013{
4014 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4015 u32 offset = svm->vmcb->control.exit_info_1 &
4016 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4017
4018 switch (offset) {
4019 case APIC_ID:
4020 if (avic_handle_apic_id_update(&svm->vcpu))
4021 return 0;
4022 break;
4023 case APIC_LDR:
4024 if (avic_handle_ldr_update(&svm->vcpu))
4025 return 0;
4026 break;
4027 case APIC_DFR:
4028 avic_handle_dfr_update(&svm->vcpu);
4029 break;
4030 default:
4031 break;
4032 }
4033
4034 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4035
4036 return 1;
4037}
4038
4039static bool is_avic_unaccelerated_access_trap(u32 offset)
4040{
4041 bool ret = false;
4042
4043 switch (offset) {
4044 case APIC_ID:
4045 case APIC_EOI:
4046 case APIC_RRR:
4047 case APIC_LDR:
4048 case APIC_DFR:
4049 case APIC_SPIV:
4050 case APIC_ESR:
4051 case APIC_ICR:
4052 case APIC_LVTT:
4053 case APIC_LVTTHMR:
4054 case APIC_LVTPC:
4055 case APIC_LVT0:
4056 case APIC_LVT1:
4057 case APIC_LVTERR:
4058 case APIC_TMICT:
4059 case APIC_TDCR:
4060 ret = true;
4061 break;
4062 default:
4063 break;
4064 }
4065 return ret;
4066}
4067
4068static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4069{
4070 int ret = 0;
4071 u32 offset = svm->vmcb->control.exit_info_1 &
4072 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4073 u32 vector = svm->vmcb->control.exit_info_2 &
4074 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4075 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4076 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4077 bool trap = is_avic_unaccelerated_access_trap(offset);
4078
4079 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4080 trap, write, vector);
4081 if (trap) {
4082 /* Handling Trap */
4083 WARN_ONCE(!write, "svm: Handling trap read.\n");
4084 ret = avic_unaccel_trap_write(svm);
4085 } else {
4086 /* Handling Fault */
4087 ret = (emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
4088 }
4089
4090 return ret;
4091}
4092
09941fbb 4093static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
7ff76d58
AP
4094 [SVM_EXIT_READ_CR0] = cr_interception,
4095 [SVM_EXIT_READ_CR3] = cr_interception,
4096 [SVM_EXIT_READ_CR4] = cr_interception,
4097 [SVM_EXIT_READ_CR8] = cr_interception,
5e57518d 4098 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
628afd2a 4099 [SVM_EXIT_WRITE_CR0] = cr_interception,
7ff76d58
AP
4100 [SVM_EXIT_WRITE_CR3] = cr_interception,
4101 [SVM_EXIT_WRITE_CR4] = cr_interception,
e0231715 4102 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
cae3797a
AP
4103 [SVM_EXIT_READ_DR0] = dr_interception,
4104 [SVM_EXIT_READ_DR1] = dr_interception,
4105 [SVM_EXIT_READ_DR2] = dr_interception,
4106 [SVM_EXIT_READ_DR3] = dr_interception,
4107 [SVM_EXIT_READ_DR4] = dr_interception,
4108 [SVM_EXIT_READ_DR5] = dr_interception,
4109 [SVM_EXIT_READ_DR6] = dr_interception,
4110 [SVM_EXIT_READ_DR7] = dr_interception,
4111 [SVM_EXIT_WRITE_DR0] = dr_interception,
4112 [SVM_EXIT_WRITE_DR1] = dr_interception,
4113 [SVM_EXIT_WRITE_DR2] = dr_interception,
4114 [SVM_EXIT_WRITE_DR3] = dr_interception,
4115 [SVM_EXIT_WRITE_DR4] = dr_interception,
4116 [SVM_EXIT_WRITE_DR5] = dr_interception,
4117 [SVM_EXIT_WRITE_DR6] = dr_interception,
4118 [SVM_EXIT_WRITE_DR7] = dr_interception,
d0bfb940
JK
4119 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4120 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
7aa81cc0 4121 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
e0231715 4122 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
e0231715 4123 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
54a20552 4124 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
e0231715 4125 [SVM_EXIT_INTR] = intr_interception,
c47f098d 4126 [SVM_EXIT_NMI] = nmi_interception,
6aa8b732
AK
4127 [SVM_EXIT_SMI] = nop_on_interception,
4128 [SVM_EXIT_INIT] = nop_on_interception,
c1150d8c 4129 [SVM_EXIT_VINTR] = interrupt_window_interception,
332b56e4 4130 [SVM_EXIT_RDPMC] = rdpmc_interception,
6aa8b732 4131 [SVM_EXIT_CPUID] = cpuid_interception,
95ba8273 4132 [SVM_EXIT_IRET] = iret_interception,
cf5a94d1 4133 [SVM_EXIT_INVD] = emulate_on_interception,
565d0998 4134 [SVM_EXIT_PAUSE] = pause_interception,
6aa8b732 4135 [SVM_EXIT_HLT] = halt_interception,
a7052897 4136 [SVM_EXIT_INVLPG] = invlpg_interception,
ff092385 4137 [SVM_EXIT_INVLPGA] = invlpga_interception,
e0231715 4138 [SVM_EXIT_IOIO] = io_interception,
6aa8b732
AK
4139 [SVM_EXIT_MSR] = msr_interception,
4140 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
46fe4ddd 4141 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
3d6368ef 4142 [SVM_EXIT_VMRUN] = vmrun_interception,
02e235bc 4143 [SVM_EXIT_VMMCALL] = vmmcall_interception,
5542675b
AG
4144 [SVM_EXIT_VMLOAD] = vmload_interception,
4145 [SVM_EXIT_VMSAVE] = vmsave_interception,
1371d904
AG
4146 [SVM_EXIT_STGI] = stgi_interception,
4147 [SVM_EXIT_CLGI] = clgi_interception,
532a46b9 4148 [SVM_EXIT_SKINIT] = skinit_interception,
dab429a7 4149 [SVM_EXIT_WBINVD] = wbinvd_interception,
87c00572
GS
4150 [SVM_EXIT_MONITOR] = monitor_interception,
4151 [SVM_EXIT_MWAIT] = mwait_interception,
81dd35d4 4152 [SVM_EXIT_XSETBV] = xsetbv_interception,
709ddebf 4153 [SVM_EXIT_NPF] = pf_interception,
64d60670 4154 [SVM_EXIT_RSM] = emulate_on_interception,
18f40c53
SS
4155 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4156 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
6aa8b732
AK
4157};
4158
ae8cc059 4159static void dump_vmcb(struct kvm_vcpu *vcpu)
3f10c846
JR
4160{
4161 struct vcpu_svm *svm = to_svm(vcpu);
4162 struct vmcb_control_area *control = &svm->vmcb->control;
4163 struct vmcb_save_area *save = &svm->vmcb->save;
4164
4165 pr_err("VMCB Control Area:\n");
ae8cc059
JP
4166 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4167 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4168 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4169 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4170 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4171 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4172 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
4173 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4174 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4175 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4176 pr_err("%-20s%d\n", "asid:", control->asid);
4177 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4178 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4179 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4180 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4181 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4182 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4183 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4184 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4185 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4186 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4187 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
44a95dae 4188 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
ae8cc059
JP
4189 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4190 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
0dc92119 4191 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
ae8cc059 4192 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
44a95dae
SS
4193 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4194 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4195 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
3f10c846 4196 pr_err("VMCB State Save Area:\n");
ae8cc059
JP
4197 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4198 "es:",
4199 save->es.selector, save->es.attrib,
4200 save->es.limit, save->es.base);
4201 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4202 "cs:",
4203 save->cs.selector, save->cs.attrib,
4204 save->cs.limit, save->cs.base);
4205 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4206 "ss:",
4207 save->ss.selector, save->ss.attrib,
4208 save->ss.limit, save->ss.base);
4209 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4210 "ds:",
4211 save->ds.selector, save->ds.attrib,
4212 save->ds.limit, save->ds.base);
4213 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4214 "fs:",
4215 save->fs.selector, save->fs.attrib,
4216 save->fs.limit, save->fs.base);
4217 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4218 "gs:",
4219 save->gs.selector, save->gs.attrib,
4220 save->gs.limit, save->gs.base);
4221 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4222 "gdtr:",
4223 save->gdtr.selector, save->gdtr.attrib,
4224 save->gdtr.limit, save->gdtr.base);
4225 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4226 "ldtr:",
4227 save->ldtr.selector, save->ldtr.attrib,
4228 save->ldtr.limit, save->ldtr.base);
4229 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4230 "idtr:",
4231 save->idtr.selector, save->idtr.attrib,
4232 save->idtr.limit, save->idtr.base);
4233 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4234 "tr:",
4235 save->tr.selector, save->tr.attrib,
4236 save->tr.limit, save->tr.base);
3f10c846
JR
4237 pr_err("cpl: %d efer: %016llx\n",
4238 save->cpl, save->efer);
ae8cc059
JP
4239 pr_err("%-15s %016llx %-13s %016llx\n",
4240 "cr0:", save->cr0, "cr2:", save->cr2);
4241 pr_err("%-15s %016llx %-13s %016llx\n",
4242 "cr3:", save->cr3, "cr4:", save->cr4);
4243 pr_err("%-15s %016llx %-13s %016llx\n",
4244 "dr6:", save->dr6, "dr7:", save->dr7);
4245 pr_err("%-15s %016llx %-13s %016llx\n",
4246 "rip:", save->rip, "rflags:", save->rflags);
4247 pr_err("%-15s %016llx %-13s %016llx\n",
4248 "rsp:", save->rsp, "rax:", save->rax);
4249 pr_err("%-15s %016llx %-13s %016llx\n",
4250 "star:", save->star, "lstar:", save->lstar);
4251 pr_err("%-15s %016llx %-13s %016llx\n",
4252 "cstar:", save->cstar, "sfmask:", save->sfmask);
4253 pr_err("%-15s %016llx %-13s %016llx\n",
4254 "kernel_gs_base:", save->kernel_gs_base,
4255 "sysenter_cs:", save->sysenter_cs);
4256 pr_err("%-15s %016llx %-13s %016llx\n",
4257 "sysenter_esp:", save->sysenter_esp,
4258 "sysenter_eip:", save->sysenter_eip);
4259 pr_err("%-15s %016llx %-13s %016llx\n",
4260 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4261 pr_err("%-15s %016llx %-13s %016llx\n",
4262 "br_from:", save->br_from, "br_to:", save->br_to);
4263 pr_err("%-15s %016llx %-13s %016llx\n",
4264 "excp_from:", save->last_excp_from,
4265 "excp_to:", save->last_excp_to);
3f10c846
JR
4266}
4267
586f9607
AK
4268static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4269{
4270 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4271
4272 *info1 = control->exit_info_1;
4273 *info2 = control->exit_info_2;
4274}
4275
851ba692 4276static int handle_exit(struct kvm_vcpu *vcpu)
6aa8b732 4277{
04d2cc77 4278 struct vcpu_svm *svm = to_svm(vcpu);
851ba692 4279 struct kvm_run *kvm_run = vcpu->run;
a2fa3e9f 4280 u32 exit_code = svm->vmcb->control.exit_code;
6aa8b732 4281
8b89fe1f
PB
4282 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4283
0f89b207
TL
4284 vcpu->arch.gpa_available = (exit_code == SVM_EXIT_NPF);
4285
4ee546b4 4286 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
2be4fc7a
JR
4287 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4288 if (npt_enabled)
4289 vcpu->arch.cr3 = svm->vmcb->save.cr3;
af9ca2d7 4290
cd3ff653
JR
4291 if (unlikely(svm->nested.exit_required)) {
4292 nested_svm_vmexit(svm);
4293 svm->nested.exit_required = false;
4294
4295 return 1;
4296 }
4297
2030753d 4298 if (is_guest_mode(vcpu)) {
410e4d57
JR
4299 int vmexit;
4300
d8cabddf
JR
4301 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4302 svm->vmcb->control.exit_info_1,
4303 svm->vmcb->control.exit_info_2,
4304 svm->vmcb->control.exit_int_info,
e097e5ff
SH
4305 svm->vmcb->control.exit_int_info_err,
4306 KVM_ISA_SVM);
d8cabddf 4307
410e4d57
JR
4308 vmexit = nested_svm_exit_special(svm);
4309
4310 if (vmexit == NESTED_EXIT_CONTINUE)
4311 vmexit = nested_svm_exit_handled(svm);
4312
4313 if (vmexit == NESTED_EXIT_DONE)
cf74a78b 4314 return 1;
cf74a78b
AG
4315 }
4316
a5c3832d
JR
4317 svm_complete_interrupts(svm);
4318
04d2cc77
AK
4319 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4320 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4321 kvm_run->fail_entry.hardware_entry_failure_reason
4322 = svm->vmcb->control.exit_code;
3f10c846
JR
4323 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4324 dump_vmcb(vcpu);
04d2cc77
AK
4325 return 0;
4326 }
4327
a2fa3e9f 4328 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
709ddebf 4329 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
55c5e464
JR
4330 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4331 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
6614c7d0 4332 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
6aa8b732 4333 "exit_code 0x%x\n",
b8688d51 4334 __func__, svm->vmcb->control.exit_int_info,
6aa8b732
AK
4335 exit_code);
4336
9d8f549d 4337 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
56919c5c 4338 || !svm_exit_handlers[exit_code]) {
faac2458 4339 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
2bc19dc3
MT
4340 kvm_queue_exception(vcpu, UD_VECTOR);
4341 return 1;
6aa8b732
AK
4342 }
4343
851ba692 4344 return svm_exit_handlers[exit_code](svm);
6aa8b732
AK
4345}
4346
4347static void reload_tss(struct kvm_vcpu *vcpu)
4348{
4349 int cpu = raw_smp_processor_id();
4350
0fe1e009
TH
4351 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4352 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
6aa8b732
AK
4353 load_TR_desc();
4354}
4355
e756fc62 4356static void pre_svm_run(struct vcpu_svm *svm)
6aa8b732
AK
4357{
4358 int cpu = raw_smp_processor_id();
4359
0fe1e009 4360 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
6aa8b732 4361
4b656b12 4362 /* FIXME: handle wraparound of asid_generation */
0fe1e009
TH
4363 if (svm->asid_generation != sd->asid_generation)
4364 new_asid(svm, sd);
6aa8b732
AK
4365}
4366
95ba8273
GN
4367static void svm_inject_nmi(struct kvm_vcpu *vcpu)
4368{
4369 struct vcpu_svm *svm = to_svm(vcpu);
4370
4371 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
4372 vcpu->arch.hflags |= HF_NMI_MASK;
8a05a1b8 4373 set_intercept(svm, INTERCEPT_IRET);
95ba8273
GN
4374 ++vcpu->stat.nmi_injections;
4375}
6aa8b732 4376
85f455f7 4377static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
6aa8b732
AK
4378{
4379 struct vmcb_control_area *control;
4380
340d3bc3 4381 /* The following fields are ignored when AVIC is enabled */
e756fc62 4382 control = &svm->vmcb->control;
85f455f7 4383 control->int_vector = irq;
6aa8b732
AK
4384 control->int_ctl &= ~V_INTR_PRIO_MASK;
4385 control->int_ctl |= V_IRQ_MASK |
4386 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
decdbf6a 4387 mark_dirty(svm->vmcb, VMCB_INTR);
6aa8b732
AK
4388}
4389
66fd3f7f 4390static void svm_set_irq(struct kvm_vcpu *vcpu)
2a8067f1
ED
4391{
4392 struct vcpu_svm *svm = to_svm(vcpu);
4393
2af9194d 4394 BUG_ON(!(gif_set(svm)));
cf74a78b 4395
9fb2d2b4
GN
4396 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
4397 ++vcpu->stat.irq_injections;
4398
219b65dc
AG
4399 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
4400 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
2a8067f1
ED
4401}
4402
3bbf3565
SS
4403static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
4404{
4405 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
4406}
4407
95ba8273 4408static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
aaacfc9a
JR
4409{
4410 struct vcpu_svm *svm = to_svm(vcpu);
aaacfc9a 4411
3bbf3565
SS
4412 if (svm_nested_virtualize_tpr(vcpu) ||
4413 kvm_vcpu_apicv_active(vcpu))
88ab24ad
JR
4414 return;
4415
596f3142
RK
4416 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
4417
95ba8273 4418 if (irr == -1)
aaacfc9a
JR
4419 return;
4420
95ba8273 4421 if (tpr >= irr)
4ee546b4 4422 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
95ba8273 4423}
aaacfc9a 4424
8d14695f
YZ
4425static void svm_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
4426{
4427 return;
4428}
4429
d62caabb
AS
4430static bool svm_get_enable_apicv(void)
4431{
44a95dae
SS
4432 return avic;
4433}
4434
4435static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
4436{
d62caabb
AS
4437}
4438
67c9dddc 4439static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
44a95dae 4440{
d62caabb
AS
4441}
4442
44a95dae 4443/* Note: Currently only used by Hyper-V. */
d62caabb 4444static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
c7c9c56c 4445{
44a95dae
SS
4446 struct vcpu_svm *svm = to_svm(vcpu);
4447 struct vmcb *vmcb = svm->vmcb;
4448
4449 if (!avic)
4450 return;
4451
4452 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
4453 mark_dirty(vmcb, VMCB_INTR);
c7c9c56c
YZ
4454}
4455
6308630b 4456static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
c7c9c56c
YZ
4457{
4458 return;
4459}
4460
340d3bc3
SS
4461static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
4462{
4463 kvm_lapic_set_irr(vec, vcpu->arch.apic);
4464 smp_mb__after_atomic();
4465
4466 if (avic_vcpu_is_running(vcpu))
4467 wrmsrl(SVM_AVIC_DOORBELL,
7d669f50 4468 kvm_cpu_get_apicid(vcpu->cpu));
340d3bc3
SS
4469 else
4470 kvm_vcpu_wake_up(vcpu);
4471}
4472
411b44ba
SS
4473static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
4474{
4475 unsigned long flags;
4476 struct amd_svm_iommu_ir *cur;
4477
4478 spin_lock_irqsave(&svm->ir_list_lock, flags);
4479 list_for_each_entry(cur, &svm->ir_list, node) {
4480 if (cur->data != pi->ir_data)
4481 continue;
4482 list_del(&cur->node);
4483 kfree(cur);
4484 break;
4485 }
4486 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
4487}
4488
4489static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
4490{
4491 int ret = 0;
4492 unsigned long flags;
4493 struct amd_svm_iommu_ir *ir;
4494
4495 /**
4496 * In some cases, the existing irte is updaed and re-set,
4497 * so we need to check here if it's already been * added
4498 * to the ir_list.
4499 */
4500 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
4501 struct kvm *kvm = svm->vcpu.kvm;
4502 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
4503 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
4504 struct vcpu_svm *prev_svm;
4505
4506 if (!prev_vcpu) {
4507 ret = -EINVAL;
4508 goto out;
4509 }
4510
4511 prev_svm = to_svm(prev_vcpu);
4512 svm_ir_list_del(prev_svm, pi);
4513 }
4514
4515 /**
4516 * Allocating new amd_iommu_pi_data, which will get
4517 * add to the per-vcpu ir_list.
4518 */
4519 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
4520 if (!ir) {
4521 ret = -ENOMEM;
4522 goto out;
4523 }
4524 ir->data = pi->ir_data;
4525
4526 spin_lock_irqsave(&svm->ir_list_lock, flags);
4527 list_add(&ir->node, &svm->ir_list);
4528 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
4529out:
4530 return ret;
4531}
4532
4533/**
4534 * Note:
4535 * The HW cannot support posting multicast/broadcast
4536 * interrupts to a vCPU. So, we still use legacy interrupt
4537 * remapping for these kind of interrupts.
4538 *
4539 * For lowest-priority interrupts, we only support
4540 * those with single CPU as the destination, e.g. user
4541 * configures the interrupts via /proc/irq or uses
4542 * irqbalance to make the interrupts single-CPU.
4543 */
4544static int
4545get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
4546 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
4547{
4548 struct kvm_lapic_irq irq;
4549 struct kvm_vcpu *vcpu = NULL;
4550
4551 kvm_set_msi_irq(kvm, e, &irq);
4552
4553 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
4554 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
4555 __func__, irq.vector);
4556 return -1;
4557 }
4558
4559 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
4560 irq.vector);
4561 *svm = to_svm(vcpu);
4562 vcpu_info->pi_desc_addr = page_to_phys((*svm)->avic_backing_page);
4563 vcpu_info->vector = irq.vector;
4564
4565 return 0;
4566}
4567
4568/*
4569 * svm_update_pi_irte - set IRTE for Posted-Interrupts
4570 *
4571 * @kvm: kvm
4572 * @host_irq: host irq of the interrupt
4573 * @guest_irq: gsi of the interrupt
4574 * @set: set or unset PI
4575 * returns 0 on success, < 0 on failure
4576 */
4577static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
4578 uint32_t guest_irq, bool set)
4579{
4580 struct kvm_kernel_irq_routing_entry *e;
4581 struct kvm_irq_routing_table *irq_rt;
4582 int idx, ret = -EINVAL;
4583
4584 if (!kvm_arch_has_assigned_device(kvm) ||
4585 !irq_remapping_cap(IRQ_POSTING_CAP))
4586 return 0;
4587
4588 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
4589 __func__, host_irq, guest_irq, set);
4590
4591 idx = srcu_read_lock(&kvm->irq_srcu);
4592 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
4593 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
4594
4595 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
4596 struct vcpu_data vcpu_info;
4597 struct vcpu_svm *svm = NULL;
4598
4599 if (e->type != KVM_IRQ_ROUTING_MSI)
4600 continue;
4601
4602 /**
4603 * Here, we setup with legacy mode in the following cases:
4604 * 1. When cannot target interrupt to a specific vcpu.
4605 * 2. Unsetting posted interrupt.
4606 * 3. APIC virtialization is disabled for the vcpu.
4607 */
4608 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
4609 kvm_vcpu_apicv_active(&svm->vcpu)) {
4610 struct amd_iommu_pi_data pi;
4611
4612 /* Try to enable guest_mode in IRTE */
4613 pi.base = page_to_phys(svm->avic_backing_page) & AVIC_HPA_MASK;
4614 pi.ga_tag = AVIC_GATAG(kvm->arch.avic_vm_id,
4615 svm->vcpu.vcpu_id);
4616 pi.is_guest_mode = true;
4617 pi.vcpu_data = &vcpu_info;
4618 ret = irq_set_vcpu_affinity(host_irq, &pi);
4619
4620 /**
4621 * Here, we successfully setting up vcpu affinity in
4622 * IOMMU guest mode. Now, we need to store the posted
4623 * interrupt information in a per-vcpu ir_list so that
4624 * we can reference to them directly when we update vcpu
4625 * scheduling information in IOMMU irte.
4626 */
4627 if (!ret && pi.is_guest_mode)
4628 svm_ir_list_add(svm, &pi);
4629 } else {
4630 /* Use legacy mode in IRTE */
4631 struct amd_iommu_pi_data pi;
4632
4633 /**
4634 * Here, pi is used to:
4635 * - Tell IOMMU to use legacy mode for this interrupt.
4636 * - Retrieve ga_tag of prior interrupt remapping data.
4637 */
4638 pi.is_guest_mode = false;
4639 ret = irq_set_vcpu_affinity(host_irq, &pi);
4640
4641 /**
4642 * Check if the posted interrupt was previously
4643 * setup with the guest_mode by checking if the ga_tag
4644 * was cached. If so, we need to clean up the per-vcpu
4645 * ir_list.
4646 */
4647 if (!ret && pi.prev_ga_tag) {
4648 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
4649 struct kvm_vcpu *vcpu;
4650
4651 vcpu = kvm_get_vcpu_by_id(kvm, id);
4652 if (vcpu)
4653 svm_ir_list_del(to_svm(vcpu), &pi);
4654 }
4655 }
4656
4657 if (!ret && svm) {
4658 trace_kvm_pi_irte_update(svm->vcpu.vcpu_id,
4659 host_irq, e->gsi,
4660 vcpu_info.vector,
4661 vcpu_info.pi_desc_addr, set);
4662 }
4663
4664 if (ret < 0) {
4665 pr_err("%s: failed to update PI IRTE\n", __func__);
4666 goto out;
4667 }
4668 }
4669
4670 ret = 0;
4671out:
4672 srcu_read_unlock(&kvm->irq_srcu, idx);
4673 return ret;
4674}
4675
95ba8273
GN
4676static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
4677{
4678 struct vcpu_svm *svm = to_svm(vcpu);
4679 struct vmcb *vmcb = svm->vmcb;
924584cc
JR
4680 int ret;
4681 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
4682 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
4683 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
4684
4685 return ret;
aaacfc9a
JR
4686}
4687
3cfc3092
JK
4688static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
4689{
4690 struct vcpu_svm *svm = to_svm(vcpu);
4691
4692 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
4693}
4694
4695static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
4696{
4697 struct vcpu_svm *svm = to_svm(vcpu);
4698
4699 if (masked) {
4700 svm->vcpu.arch.hflags |= HF_NMI_MASK;
8a05a1b8 4701 set_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
4702 } else {
4703 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
8a05a1b8 4704 clr_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
4705 }
4706}
4707
78646121
GN
4708static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
4709{
4710 struct vcpu_svm *svm = to_svm(vcpu);
4711 struct vmcb *vmcb = svm->vmcb;
7fcdb510
JR
4712 int ret;
4713
4714 if (!gif_set(svm) ||
4715 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
4716 return 0;
4717
f6e78475 4718 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
7fcdb510 4719
2030753d 4720 if (is_guest_mode(vcpu))
7fcdb510
JR
4721 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
4722
4723 return ret;
78646121
GN
4724}
4725
c9a7953f 4726static void enable_irq_window(struct kvm_vcpu *vcpu)
6aa8b732 4727{
219b65dc 4728 struct vcpu_svm *svm = to_svm(vcpu);
219b65dc 4729
340d3bc3
SS
4730 if (kvm_vcpu_apicv_active(vcpu))
4731 return;
4732
e0231715
JR
4733 /*
4734 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
4735 * 1, because that's a separate STGI/VMRUN intercept. The next time we
4736 * get that intercept, this function will be called again though and
4737 * we'll get the vintr intercept.
4738 */
8fe54654 4739 if (gif_set(svm) && nested_svm_intr(svm)) {
219b65dc
AG
4740 svm_set_vintr(svm);
4741 svm_inject_irq(svm, 0x0);
4742 }
85f455f7
ED
4743}
4744
c9a7953f 4745static void enable_nmi_window(struct kvm_vcpu *vcpu)
c1150d8c 4746{
04d2cc77 4747 struct vcpu_svm *svm = to_svm(vcpu);
c1150d8c 4748
44c11430
GN
4749 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
4750 == HF_NMI_MASK)
c9a7953f 4751 return; /* IRET will cause a vm exit */
44c11430 4752
1a5e1852
LP
4753 if ((svm->vcpu.arch.hflags & HF_GIF_MASK) == 0)
4754 return; /* STGI will cause a vm exit */
4755
4756 if (svm->nested.exit_required)
4757 return; /* we're not going to run the guest yet */
4758
e0231715
JR
4759 /*
4760 * Something prevents NMI from been injected. Single step over possible
4761 * problem (IRET or exception injection or interrupt shadow)
4762 */
ab2f4d73 4763 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
6be7d306 4764 svm->nmi_singlestep = true;
44c11430 4765 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
c1150d8c
DL
4766}
4767
cbc94022
IE
4768static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
4769{
4770 return 0;
4771}
4772
d9e368d6
AK
4773static void svm_flush_tlb(struct kvm_vcpu *vcpu)
4774{
38e5e92f
JR
4775 struct vcpu_svm *svm = to_svm(vcpu);
4776
4777 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
4778 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
4779 else
4780 svm->asid_generation--;
d9e368d6
AK
4781}
4782
04d2cc77
AK
4783static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
4784{
4785}
4786
d7bf8221
JR
4787static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
4788{
4789 struct vcpu_svm *svm = to_svm(vcpu);
4790
3bbf3565 4791 if (svm_nested_virtualize_tpr(vcpu))
88ab24ad
JR
4792 return;
4793
4ee546b4 4794 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
d7bf8221 4795 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
615d5193 4796 kvm_set_cr8(vcpu, cr8);
d7bf8221
JR
4797 }
4798}
4799
649d6864
JR
4800static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
4801{
4802 struct vcpu_svm *svm = to_svm(vcpu);
4803 u64 cr8;
4804
3bbf3565
SS
4805 if (svm_nested_virtualize_tpr(vcpu) ||
4806 kvm_vcpu_apicv_active(vcpu))
88ab24ad
JR
4807 return;
4808
649d6864
JR
4809 cr8 = kvm_get_cr8(vcpu);
4810 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
4811 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
4812}
4813
9222be18
GN
4814static void svm_complete_interrupts(struct vcpu_svm *svm)
4815{
4816 u8 vector;
4817 int type;
4818 u32 exitintinfo = svm->vmcb->control.exit_int_info;
66b7138f
JK
4819 unsigned int3_injected = svm->int3_injected;
4820
4821 svm->int3_injected = 0;
9222be18 4822
bd3d1ec3
AK
4823 /*
4824 * If we've made progress since setting HF_IRET_MASK, we've
4825 * executed an IRET and can allow NMI injection.
4826 */
4827 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
4828 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
44c11430 4829 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
3842d135
AK
4830 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
4831 }
44c11430 4832
9222be18
GN
4833 svm->vcpu.arch.nmi_injected = false;
4834 kvm_clear_exception_queue(&svm->vcpu);
4835 kvm_clear_interrupt_queue(&svm->vcpu);
4836
4837 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
4838 return;
4839
3842d135
AK
4840 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
4841
9222be18
GN
4842 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
4843 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
4844
4845 switch (type) {
4846 case SVM_EXITINTINFO_TYPE_NMI:
4847 svm->vcpu.arch.nmi_injected = true;
4848 break;
4849 case SVM_EXITINTINFO_TYPE_EXEPT:
66b7138f
JK
4850 /*
4851 * In case of software exceptions, do not reinject the vector,
4852 * but re-execute the instruction instead. Rewind RIP first
4853 * if we emulated INT3 before.
4854 */
4855 if (kvm_exception_is_soft(vector)) {
4856 if (vector == BP_VECTOR && int3_injected &&
4857 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
4858 kvm_rip_write(&svm->vcpu,
4859 kvm_rip_read(&svm->vcpu) -
4860 int3_injected);
9222be18 4861 break;
66b7138f 4862 }
9222be18
GN
4863 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
4864 u32 err = svm->vmcb->control.exit_int_info_err;
ce7ddec4 4865 kvm_requeue_exception_e(&svm->vcpu, vector, err);
9222be18
GN
4866
4867 } else
ce7ddec4 4868 kvm_requeue_exception(&svm->vcpu, vector);
9222be18
GN
4869 break;
4870 case SVM_EXITINTINFO_TYPE_INTR:
66fd3f7f 4871 kvm_queue_interrupt(&svm->vcpu, vector, false);
9222be18
GN
4872 break;
4873 default:
4874 break;
4875 }
4876}
4877
b463a6f7
AK
4878static void svm_cancel_injection(struct kvm_vcpu *vcpu)
4879{
4880 struct vcpu_svm *svm = to_svm(vcpu);
4881 struct vmcb_control_area *control = &svm->vmcb->control;
4882
4883 control->exit_int_info = control->event_inj;
4884 control->exit_int_info_err = control->event_inj_err;
4885 control->event_inj = 0;
4886 svm_complete_interrupts(svm);
4887}
4888
851ba692 4889static void svm_vcpu_run(struct kvm_vcpu *vcpu)
6aa8b732 4890{
a2fa3e9f 4891 struct vcpu_svm *svm = to_svm(vcpu);
d9e368d6 4892
2041a06a
JR
4893 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
4894 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
4895 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
4896
cd3ff653
JR
4897 /*
4898 * A vmexit emulation is required before the vcpu can be executed
4899 * again.
4900 */
4901 if (unlikely(svm->nested.exit_required))
4902 return;
4903
a12713c2
LP
4904 /*
4905 * Disable singlestep if we're injecting an interrupt/exception.
4906 * We don't want our modified rflags to be pushed on the stack where
4907 * we might not be able to easily reset them if we disabled NMI
4908 * singlestep later.
4909 */
4910 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
4911 /*
4912 * Event injection happens before external interrupts cause a
4913 * vmexit and interrupts are disabled here, so smp_send_reschedule
4914 * is enough to force an immediate vmexit.
4915 */
4916 disable_nmi_singlestep(svm);
4917 smp_send_reschedule(vcpu->cpu);
4918 }
4919
e756fc62 4920 pre_svm_run(svm);
6aa8b732 4921
649d6864
JR
4922 sync_lapic_to_cr8(vcpu);
4923
cda0ffdd 4924 svm->vmcb->save.cr2 = vcpu->arch.cr2;
6aa8b732 4925
04d2cc77
AK
4926 clgi();
4927
4928 local_irq_enable();
36241b8c 4929
fe170612 4930 /* SMB: Don't care about ibrs_inuse but rely on guest value */
25c5c90e 4931 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
f6781ae1 4932
6aa8b732 4933 asm volatile (
7454766f
AK
4934 "push %%" _ASM_BP "; \n\t"
4935 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
4936 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
4937 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
4938 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
4939 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
4940 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
05b3e0c2 4941#ifdef CONFIG_X86_64
fb3f0f51
RR
4942 "mov %c[r8](%[svm]), %%r8 \n\t"
4943 "mov %c[r9](%[svm]), %%r9 \n\t"
4944 "mov %c[r10](%[svm]), %%r10 \n\t"
4945 "mov %c[r11](%[svm]), %%r11 \n\t"
4946 "mov %c[r12](%[svm]), %%r12 \n\t"
4947 "mov %c[r13](%[svm]), %%r13 \n\t"
4948 "mov %c[r14](%[svm]), %%r14 \n\t"
4949 "mov %c[r15](%[svm]), %%r15 \n\t"
6aa8b732
AK
4950#endif
4951
6aa8b732 4952 /* Enter guest mode */
7454766f
AK
4953 "push %%" _ASM_AX " \n\t"
4954 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
4ecac3fd
AK
4955 __ex(SVM_VMLOAD) "\n\t"
4956 __ex(SVM_VMRUN) "\n\t"
4957 __ex(SVM_VMSAVE) "\n\t"
7454766f 4958 "pop %%" _ASM_AX " \n\t"
6aa8b732
AK
4959
4960 /* Save guest registers, load host registers */
7454766f
AK
4961 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
4962 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
4963 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
4964 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
4965 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
4966 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
05b3e0c2 4967#ifdef CONFIG_X86_64
fb3f0f51
RR
4968 "mov %%r8, %c[r8](%[svm]) \n\t"
4969 "mov %%r9, %c[r9](%[svm]) \n\t"
4970 "mov %%r10, %c[r10](%[svm]) \n\t"
4971 "mov %%r11, %c[r11](%[svm]) \n\t"
4972 "mov %%r12, %c[r12](%[svm]) \n\t"
4973 "mov %%r13, %c[r13](%[svm]) \n\t"
4974 "mov %%r14, %c[r14](%[svm]) \n\t"
4975 "mov %%r15, %c[r15](%[svm]) \n\t"
65671e7a
JM
4976#endif
4977 /*
4978 * Clear host registers marked as clobbered to prevent
4979 * speculative use.
4980 */
4981 "xor %%" _ASM_BX ", %%" _ASM_BX " \n\t"
4982 "xor %%" _ASM_CX ", %%" _ASM_CX " \n\t"
4983 "xor %%" _ASM_DX ", %%" _ASM_DX " \n\t"
4984 "xor %%" _ASM_SI ", %%" _ASM_SI " \n\t"
4985 "xor %%" _ASM_DI ", %%" _ASM_DI " \n\t"
4986#ifdef CONFIG_X86_64
4987 "xor %%r8, %%r8 \n\t"
4988 "xor %%r9, %%r9 \n\t"
4989 "xor %%r10, %%r10 \n\t"
4990 "xor %%r11, %%r11 \n\t"
4991 "xor %%r12, %%r12 \n\t"
4992 "xor %%r13, %%r13 \n\t"
4993 "xor %%r14, %%r14 \n\t"
4994 "xor %%r15, %%r15 \n\t"
6aa8b732 4995#endif
7454766f 4996 "pop %%" _ASM_BP
6aa8b732 4997 :
fb3f0f51 4998 : [svm]"a"(svm),
6aa8b732 4999 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
ad312c7c
ZX
5000 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5001 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5002 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5003 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5004 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5005 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
05b3e0c2 5006#ifdef CONFIG_X86_64
ad312c7c
ZX
5007 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5008 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5009 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5010 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5011 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5012 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5013 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5014 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
6aa8b732 5015#endif
54a08c04
LV
5016 : "cc", "memory"
5017#ifdef CONFIG_X86_64
7454766f 5018 , "rbx", "rcx", "rdx", "rsi", "rdi"
54a08c04 5019 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
7454766f
AK
5020#else
5021 , "ebx", "ecx", "edx", "esi", "edi"
54a08c04
LV
5022#endif
5023 );
6aa8b732 5024
8947886c
DW
5025 /* Eliminate branch target predictions from guest mode */
5026 vmexit_fill_RSB();
5027
82ca2d10
AK
5028#ifdef CONFIG_X86_64
5029 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5030#else
dacccfdd 5031 loadsegment(fs, svm->host.fs);
831ca609
AK
5032#ifndef CONFIG_X86_32_LAZY_GS
5033 loadsegment(gs, svm->host.gs);
5034#endif
9581d442 5035#endif
6aa8b732 5036
25c5c90e 5037 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
de5594ae 5038
6aa8b732
AK
5039 reload_tss(vcpu);
5040
56ba47dd
AK
5041 local_irq_disable();
5042
13c34e07
AK
5043 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5044 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5045 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5046 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5047
3781c01c
JR
5048 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
5049 kvm_before_handle_nmi(&svm->vcpu);
5050
5051 stgi();
5052
5053 /* Any pending NMI will happen here */
5054
5055 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
5056 kvm_after_handle_nmi(&svm->vcpu);
5057
d7bf8221
JR
5058 sync_cr8_to_lapic(vcpu);
5059
a2fa3e9f 5060 svm->next_rip = 0;
9222be18 5061
38e5e92f
JR
5062 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5063
631bc487
GN
5064 /* if exit due to PF check for async PF */
5065 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
1261bfa3 5066 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
631bc487 5067
6de4f3ad
AK
5068 if (npt_enabled) {
5069 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5070 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5071 }
fe5913e4
JR
5072
5073 /*
5074 * We need to handle MC intercepts here before the vcpu has a chance to
5075 * change the physical cpu
5076 */
5077 if (unlikely(svm->vmcb->control.exit_code ==
5078 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5079 svm_handle_mce(svm);
8d28fec4
RJ
5080
5081 mark_all_clean(svm->vmcb);
6aa8b732 5082}
c207aee4 5083STACK_FRAME_NON_STANDARD(svm_vcpu_run);
6aa8b732 5084
6aa8b732
AK
5085static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5086{
a2fa3e9f
GH
5087 struct vcpu_svm *svm = to_svm(vcpu);
5088
5089 svm->vmcb->save.cr3 = root;
dcca1a65 5090 mark_dirty(svm->vmcb, VMCB_CR);
f40f6a45 5091 svm_flush_tlb(vcpu);
6aa8b732
AK
5092}
5093
1c97f0a0
JR
5094static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5095{
5096 struct vcpu_svm *svm = to_svm(vcpu);
5097
5098 svm->vmcb->control.nested_cr3 = root;
b2747166 5099 mark_dirty(svm->vmcb, VMCB_NPT);
1c97f0a0
JR
5100
5101 /* Also sync guest cr3 here in case we live migrate */
9f8fe504 5102 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
dcca1a65 5103 mark_dirty(svm->vmcb, VMCB_CR);
1c97f0a0 5104
f40f6a45 5105 svm_flush_tlb(vcpu);
1c97f0a0
JR
5106}
5107
6aa8b732
AK
5108static int is_disabled(void)
5109{
6031a61c
JR
5110 u64 vm_cr;
5111
5112 rdmsrl(MSR_VM_CR, vm_cr);
5113 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5114 return 1;
5115
6aa8b732
AK
5116 return 0;
5117}
5118
102d8325
IM
5119static void
5120svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5121{
5122 /*
5123 * Patch in the VMMCALL instruction:
5124 */
5125 hypercall[0] = 0x0f;
5126 hypercall[1] = 0x01;
5127 hypercall[2] = 0xd9;
102d8325
IM
5128}
5129
002c7f7c
YS
5130static void svm_check_processor_compat(void *rtn)
5131{
5132 *(int *)rtn = 0;
5133}
5134
774ead3a
AK
5135static bool svm_cpu_has_accelerated_tpr(void)
5136{
5137 return false;
5138}
5139
59457289 5140static bool svm_has_emulated_msr(int index)
6d396b55
PB
5141{
5142 return true;
5143}
5144
fc07e76a
PB
5145static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5146{
5147 return 0;
5148}
5149
0e851880
SY
5150static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5151{
6092d3d3 5152 struct vcpu_svm *svm = to_svm(vcpu);
46781eae 5153 struct kvm_cpuid_entry2 *entry;
6092d3d3
JR
5154
5155 /* Update nrips enabled cache */
5156 svm->nrips_enabled = !!guest_cpuid_has_nrips(&svm->vcpu);
46781eae
SS
5157
5158 if (!kvm_vcpu_apicv_active(vcpu))
5159 return;
5160
5161 entry = kvm_find_cpuid_entry(vcpu, 1, 0);
5162 if (entry)
5163 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
0e851880
SY
5164}
5165
d4330ef2
JR
5166static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5167{
c2c63a49 5168 switch (func) {
46781eae
SS
5169 case 0x1:
5170 if (avic)
5171 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5172 break;
4c62a2dc
JR
5173 case 0x80000001:
5174 if (nested)
5175 entry->ecx |= (1 << 2); /* Set SVM bit */
5176 break;
c2c63a49
JR
5177 case 0x8000000A:
5178 entry->eax = 1; /* SVM revision 1 */
5179 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5180 ASID emulation to nested SVM */
5181 entry->ecx = 0; /* Reserved */
7a190667
JR
5182 entry->edx = 0; /* Per default do not support any
5183 additional features */
5184
5185 /* Support next_rip if host supports it */
2a6b20b8 5186 if (boot_cpu_has(X86_FEATURE_NRIPS))
7a190667 5187 entry->edx |= SVM_FEATURE_NRIP;
c2c63a49 5188
3d4aeaad
JR
5189 /* Support NPT for the guest if enabled */
5190 if (npt_enabled)
5191 entry->edx |= SVM_FEATURE_NPT;
5192
c2c63a49
JR
5193 break;
5194 }
d4330ef2
JR
5195}
5196
17cc3935 5197static int svm_get_lpage_level(void)
344f414f 5198{
17cc3935 5199 return PT_PDPE_LEVEL;
344f414f
JR
5200}
5201
4e47c7a6
SY
5202static bool svm_rdtscp_supported(void)
5203{
46896c73 5204 return boot_cpu_has(X86_FEATURE_RDTSCP);
4e47c7a6
SY
5205}
5206
ad756a16
MJ
5207static bool svm_invpcid_supported(void)
5208{
5209 return false;
5210}
5211
93c4adc7
PB
5212static bool svm_mpx_supported(void)
5213{
5214 return false;
5215}
5216
55412b2e
WL
5217static bool svm_xsaves_supported(void)
5218{
5219 return false;
5220}
5221
f5f48ee1
SY
5222static bool svm_has_wbinvd_exit(void)
5223{
5224 return true;
5225}
5226
8061252e 5227#define PRE_EX(exit) { .exit_code = (exit), \
40e19b51 5228 .stage = X86_ICPT_PRE_EXCEPT, }
cfec82cb 5229#define POST_EX(exit) { .exit_code = (exit), \
40e19b51 5230 .stage = X86_ICPT_POST_EXCEPT, }
d7eb8203 5231#define POST_MEM(exit) { .exit_code = (exit), \
40e19b51 5232 .stage = X86_ICPT_POST_MEMACCESS, }
cfec82cb 5233
09941fbb 5234static const struct __x86_intercept {
cfec82cb
JR
5235 u32 exit_code;
5236 enum x86_intercept_stage stage;
cfec82cb
JR
5237} x86_intercept_map[] = {
5238 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5239 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5240 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5241 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5242 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
3b88e41a
JR
5243 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5244 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
dee6bb70
JR
5245 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5246 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5247 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5248 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5249 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5250 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5251 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5252 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
01de8b09
JR
5253 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
5254 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
5255 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
5256 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
5257 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
5258 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
5259 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
5260 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
d7eb8203
JR
5261 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
5262 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
5263 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
8061252e
JR
5264 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
5265 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
5266 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
5267 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
5268 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
5269 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
5270 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
5271 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
5272 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
bf608f88
JR
5273 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
5274 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
5275 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
5276 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
5277 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
5278 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
5279 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
f6511935
JR
5280 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
5281 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
5282 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
5283 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
cfec82cb
JR
5284};
5285
8061252e 5286#undef PRE_EX
cfec82cb 5287#undef POST_EX
d7eb8203 5288#undef POST_MEM
cfec82cb 5289
8a76d7f2
JR
5290static int svm_check_intercept(struct kvm_vcpu *vcpu,
5291 struct x86_instruction_info *info,
5292 enum x86_intercept_stage stage)
5293{
cfec82cb
JR
5294 struct vcpu_svm *svm = to_svm(vcpu);
5295 int vmexit, ret = X86EMUL_CONTINUE;
5296 struct __x86_intercept icpt_info;
5297 struct vmcb *vmcb = svm->vmcb;
5298
5299 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
5300 goto out;
5301
5302 icpt_info = x86_intercept_map[info->intercept];
5303
40e19b51 5304 if (stage != icpt_info.stage)
cfec82cb
JR
5305 goto out;
5306
5307 switch (icpt_info.exit_code) {
5308 case SVM_EXIT_READ_CR0:
5309 if (info->intercept == x86_intercept_cr_read)
5310 icpt_info.exit_code += info->modrm_reg;
5311 break;
5312 case SVM_EXIT_WRITE_CR0: {
5313 unsigned long cr0, val;
5314 u64 intercept;
5315
5316 if (info->intercept == x86_intercept_cr_write)
5317 icpt_info.exit_code += info->modrm_reg;
5318
62baf44c
JK
5319 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
5320 info->intercept == x86_intercept_clts)
cfec82cb
JR
5321 break;
5322
5323 intercept = svm->nested.intercept;
5324
5325 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
5326 break;
5327
5328 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
5329 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
5330
5331 if (info->intercept == x86_intercept_lmsw) {
5332 cr0 &= 0xfUL;
5333 val &= 0xfUL;
5334 /* lmsw can't clear PE - catch this here */
5335 if (cr0 & X86_CR0_PE)
5336 val |= X86_CR0_PE;
5337 }
5338
5339 if (cr0 ^ val)
5340 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
5341
5342 break;
5343 }
3b88e41a
JR
5344 case SVM_EXIT_READ_DR0:
5345 case SVM_EXIT_WRITE_DR0:
5346 icpt_info.exit_code += info->modrm_reg;
5347 break;
8061252e
JR
5348 case SVM_EXIT_MSR:
5349 if (info->intercept == x86_intercept_wrmsr)
5350 vmcb->control.exit_info_1 = 1;
5351 else
5352 vmcb->control.exit_info_1 = 0;
5353 break;
bf608f88
JR
5354 case SVM_EXIT_PAUSE:
5355 /*
5356 * We get this for NOP only, but pause
5357 * is rep not, check this here
5358 */
5359 if (info->rep_prefix != REPE_PREFIX)
5360 goto out;
f6511935
JR
5361 case SVM_EXIT_IOIO: {
5362 u64 exit_info;
5363 u32 bytes;
5364
f6511935
JR
5365 if (info->intercept == x86_intercept_in ||
5366 info->intercept == x86_intercept_ins) {
6cbc5f5a
JK
5367 exit_info = ((info->src_val & 0xffff) << 16) |
5368 SVM_IOIO_TYPE_MASK;
f6511935 5369 bytes = info->dst_bytes;
6493f157 5370 } else {
6cbc5f5a 5371 exit_info = (info->dst_val & 0xffff) << 16;
6493f157 5372 bytes = info->src_bytes;
f6511935
JR
5373 }
5374
5375 if (info->intercept == x86_intercept_outs ||
5376 info->intercept == x86_intercept_ins)
5377 exit_info |= SVM_IOIO_STR_MASK;
5378
5379 if (info->rep_prefix)
5380 exit_info |= SVM_IOIO_REP_MASK;
5381
5382 bytes = min(bytes, 4u);
5383
5384 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
5385
5386 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
5387
5388 vmcb->control.exit_info_1 = exit_info;
5389 vmcb->control.exit_info_2 = info->next_rip;
5390
5391 break;
5392 }
cfec82cb
JR
5393 default:
5394 break;
5395 }
5396
f104765b
BD
5397 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
5398 if (static_cpu_has(X86_FEATURE_NRIPS))
5399 vmcb->control.next_rip = info->next_rip;
cfec82cb
JR
5400 vmcb->control.exit_code = icpt_info.exit_code;
5401 vmexit = nested_svm_exit_handled(svm);
5402
5403 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
5404 : X86EMUL_CONTINUE;
5405
5406out:
5407 return ret;
8a76d7f2
JR
5408}
5409
a547c6db
YZ
5410static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
5411{
5412 local_irq_enable();
f2485b3e
PB
5413 /*
5414 * We must have an instruction with interrupts enabled, so
5415 * the timer interrupt isn't delayed by the interrupt shadow.
5416 */
5417 asm("nop");
5418 local_irq_disable();
a547c6db
YZ
5419}
5420
ae97a3b8
RK
5421static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
5422{
5423}
5424
be8ca170
SS
5425static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
5426{
5427 if (avic_handle_apic_id_update(vcpu) != 0)
5428 return;
5429 if (avic_handle_dfr_update(vcpu) != 0)
5430 return;
5431 avic_handle_ldr_update(vcpu);
5432}
5433
74f16909
BP
5434static void svm_setup_mce(struct kvm_vcpu *vcpu)
5435{
5436 /* [63:9] are reserved. */
5437 vcpu->arch.mcg_cap &= 0x1ff;
5438}
5439
404f6aac 5440static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
6aa8b732
AK
5441 .cpu_has_kvm_support = has_svm,
5442 .disabled_by_bios = is_disabled,
5443 .hardware_setup = svm_hardware_setup,
5444 .hardware_unsetup = svm_hardware_unsetup,
002c7f7c 5445 .check_processor_compatibility = svm_check_processor_compat,
6aa8b732
AK
5446 .hardware_enable = svm_hardware_enable,
5447 .hardware_disable = svm_hardware_disable,
774ead3a 5448 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
59457289 5449 .has_emulated_msr = svm_has_emulated_msr,
6aa8b732
AK
5450
5451 .vcpu_create = svm_create_vcpu,
5452 .vcpu_free = svm_free_vcpu,
04d2cc77 5453 .vcpu_reset = svm_vcpu_reset,
6aa8b732 5454
44a95dae
SS
5455 .vm_init = avic_vm_init,
5456 .vm_destroy = avic_vm_destroy,
5457
04d2cc77 5458 .prepare_guest_switch = svm_prepare_guest_switch,
6aa8b732
AK
5459 .vcpu_load = svm_vcpu_load,
5460 .vcpu_put = svm_vcpu_put,
8221c137
SS
5461 .vcpu_blocking = svm_vcpu_blocking,
5462 .vcpu_unblocking = svm_vcpu_unblocking,
6aa8b732 5463
a96036b8 5464 .update_bp_intercept = update_bp_intercept,
6aa8b732
AK
5465 .get_msr = svm_get_msr,
5466 .set_msr = svm_set_msr,
5467 .get_segment_base = svm_get_segment_base,
5468 .get_segment = svm_get_segment,
5469 .set_segment = svm_set_segment,
2e4d2653 5470 .get_cpl = svm_get_cpl,
1747fb71 5471 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
e8467fda 5472 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
aff48baa 5473 .decache_cr3 = svm_decache_cr3,
25c4c276 5474 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
6aa8b732 5475 .set_cr0 = svm_set_cr0,
6aa8b732
AK
5476 .set_cr3 = svm_set_cr3,
5477 .set_cr4 = svm_set_cr4,
5478 .set_efer = svm_set_efer,
5479 .get_idt = svm_get_idt,
5480 .set_idt = svm_set_idt,
5481 .get_gdt = svm_get_gdt,
5482 .set_gdt = svm_set_gdt,
73aaf249
JK
5483 .get_dr6 = svm_get_dr6,
5484 .set_dr6 = svm_set_dr6,
020df079 5485 .set_dr7 = svm_set_dr7,
facb0139 5486 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
6de4f3ad 5487 .cache_reg = svm_cache_reg,
6aa8b732
AK
5488 .get_rflags = svm_get_rflags,
5489 .set_rflags = svm_set_rflags,
be94f6b7 5490
6aa8b732 5491 .tlb_flush = svm_flush_tlb,
6aa8b732 5492
6aa8b732 5493 .run = svm_vcpu_run,
04d2cc77 5494 .handle_exit = handle_exit,
6aa8b732 5495 .skip_emulated_instruction = skip_emulated_instruction,
2809f5d2
GC
5496 .set_interrupt_shadow = svm_set_interrupt_shadow,
5497 .get_interrupt_shadow = svm_get_interrupt_shadow,
102d8325 5498 .patch_hypercall = svm_patch_hypercall,
2a8067f1 5499 .set_irq = svm_set_irq,
95ba8273 5500 .set_nmi = svm_inject_nmi,
298101da 5501 .queue_exception = svm_queue_exception,
b463a6f7 5502 .cancel_injection = svm_cancel_injection,
78646121 5503 .interrupt_allowed = svm_interrupt_allowed,
95ba8273 5504 .nmi_allowed = svm_nmi_allowed,
3cfc3092
JK
5505 .get_nmi_mask = svm_get_nmi_mask,
5506 .set_nmi_mask = svm_set_nmi_mask,
95ba8273
GN
5507 .enable_nmi_window = enable_nmi_window,
5508 .enable_irq_window = enable_irq_window,
5509 .update_cr8_intercept = update_cr8_intercept,
8d14695f 5510 .set_virtual_x2apic_mode = svm_set_virtual_x2apic_mode,
d62caabb
AS
5511 .get_enable_apicv = svm_get_enable_apicv,
5512 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
c7c9c56c 5513 .load_eoi_exitmap = svm_load_eoi_exitmap,
44a95dae
SS
5514 .hwapic_irr_update = svm_hwapic_irr_update,
5515 .hwapic_isr_update = svm_hwapic_isr_update,
be8ca170 5516 .apicv_post_state_restore = avic_post_state_restore,
cbc94022
IE
5517
5518 .set_tss_addr = svm_set_tss_addr,
67253af5 5519 .get_tdp_level = get_npt_level,
4b12f0de 5520 .get_mt_mask = svm_get_mt_mask,
229456fc 5521
586f9607 5522 .get_exit_info = svm_get_exit_info,
586f9607 5523
17cc3935 5524 .get_lpage_level = svm_get_lpage_level,
0e851880
SY
5525
5526 .cpuid_update = svm_cpuid_update,
4e47c7a6
SY
5527
5528 .rdtscp_supported = svm_rdtscp_supported,
ad756a16 5529 .invpcid_supported = svm_invpcid_supported,
93c4adc7 5530 .mpx_supported = svm_mpx_supported,
55412b2e 5531 .xsaves_supported = svm_xsaves_supported,
d4330ef2
JR
5532
5533 .set_supported_cpuid = svm_set_supported_cpuid,
f5f48ee1
SY
5534
5535 .has_wbinvd_exit = svm_has_wbinvd_exit,
99e3e30a
ZA
5536
5537 .write_tsc_offset = svm_write_tsc_offset,
1c97f0a0
JR
5538
5539 .set_tdp_cr3 = set_tdp_cr3,
8a76d7f2
JR
5540
5541 .check_intercept = svm_check_intercept,
a547c6db 5542 .handle_external_intr = svm_handle_external_intr,
ae97a3b8
RK
5543
5544 .sched_in = svm_sched_in,
25462f7f
WH
5545
5546 .pmu_ops = &amd_pmu_ops,
340d3bc3 5547 .deliver_posted_interrupt = svm_deliver_avic_intr,
411b44ba 5548 .update_pi_irte = svm_update_pi_irte,
74f16909 5549 .setup_mce = svm_setup_mce,
6aa8b732
AK
5550};
5551
5552static int __init svm_init(void)
5553{
cb498ea2 5554 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
0ee75bea 5555 __alignof__(struct vcpu_svm), THIS_MODULE);
6aa8b732
AK
5556}
5557
5558static void __exit svm_exit(void)
5559{
cb498ea2 5560 kvm_exit();
6aa8b732
AK
5561}
5562
5563module_init(svm_init)
5564module_exit(svm_exit)