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