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