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