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