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