]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kvm/svm.c
Merge tag 'kvm-s390-next-20140910' of git://git.kernel.org/pub/scm/linux/kernel/git...
[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);
673 __get_cpu_var(current_tsc_ratio) = TSC_RATIO_DEFAULT;
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
f1e2b260
MT
1059 WARN_ON(adjustment < 0);
1060 if (host)
1061 adjustment = svm_scale_tsc(vcpu, adjustment);
1062
e48672fa 1063 svm->vmcb->control.tsc_offset += adjustment;
2030753d 1064 if (is_guest_mode(vcpu))
e48672fa 1065 svm->nested.hsave->control.tsc_offset += adjustment;
489223ed
YY
1066 else
1067 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1068 svm->vmcb->control.tsc_offset - adjustment,
1069 svm->vmcb->control.tsc_offset);
1070
116a0a23 1071 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
e48672fa
ZA
1072}
1073
857e4099
JR
1074static u64 svm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1075{
1076 u64 tsc;
1077
1078 tsc = svm_scale_tsc(vcpu, native_read_tsc());
1079
1080 return target_tsc - tsc;
1081}
1082
e6101a96 1083static void init_vmcb(struct vcpu_svm *svm)
6aa8b732 1084{
e6101a96
JR
1085 struct vmcb_control_area *control = &svm->vmcb->control;
1086 struct vmcb_save_area *save = &svm->vmcb->save;
6aa8b732 1087
bff78274 1088 svm->vcpu.fpu_active = 1;
4ee546b4 1089 svm->vcpu.arch.hflags = 0;
bff78274 1090
4ee546b4
RJ
1091 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1092 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1093 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1094 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1095 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1096 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
1097 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
6aa8b732 1098
5315c716 1099 set_dr_intercepts(svm);
6aa8b732 1100
18c918c5
JR
1101 set_exception_intercept(svm, PF_VECTOR);
1102 set_exception_intercept(svm, UD_VECTOR);
1103 set_exception_intercept(svm, MC_VECTOR);
6aa8b732 1104
8a05a1b8
JR
1105 set_intercept(svm, INTERCEPT_INTR);
1106 set_intercept(svm, INTERCEPT_NMI);
1107 set_intercept(svm, INTERCEPT_SMI);
1108 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
332b56e4 1109 set_intercept(svm, INTERCEPT_RDPMC);
8a05a1b8
JR
1110 set_intercept(svm, INTERCEPT_CPUID);
1111 set_intercept(svm, INTERCEPT_INVD);
1112 set_intercept(svm, INTERCEPT_HLT);
1113 set_intercept(svm, INTERCEPT_INVLPG);
1114 set_intercept(svm, INTERCEPT_INVLPGA);
1115 set_intercept(svm, INTERCEPT_IOIO_PROT);
1116 set_intercept(svm, INTERCEPT_MSR_PROT);
1117 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1118 set_intercept(svm, INTERCEPT_SHUTDOWN);
1119 set_intercept(svm, INTERCEPT_VMRUN);
1120 set_intercept(svm, INTERCEPT_VMMCALL);
1121 set_intercept(svm, INTERCEPT_VMLOAD);
1122 set_intercept(svm, INTERCEPT_VMSAVE);
1123 set_intercept(svm, INTERCEPT_STGI);
1124 set_intercept(svm, INTERCEPT_CLGI);
1125 set_intercept(svm, INTERCEPT_SKINIT);
1126 set_intercept(svm, INTERCEPT_WBINVD);
1127 set_intercept(svm, INTERCEPT_MONITOR);
1128 set_intercept(svm, INTERCEPT_MWAIT);
81dd35d4 1129 set_intercept(svm, INTERCEPT_XSETBV);
6aa8b732
AK
1130
1131 control->iopm_base_pa = iopm_base;
f65c229c 1132 control->msrpm_base_pa = __pa(svm->msrpm);
6aa8b732
AK
1133 control->int_ctl = V_INTR_MASKING_MASK;
1134
1135 init_seg(&save->es);
1136 init_seg(&save->ss);
1137 init_seg(&save->ds);
1138 init_seg(&save->fs);
1139 init_seg(&save->gs);
1140
1141 save->cs.selector = 0xf000;
04b66839 1142 save->cs.base = 0xffff0000;
6aa8b732
AK
1143 /* Executable/Readable Code Segment */
1144 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1145 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1146 save->cs.limit = 0xffff;
6aa8b732
AK
1147
1148 save->gdtr.limit = 0xffff;
1149 save->idtr.limit = 0xffff;
1150
1151 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1152 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1153
eaa48512 1154 svm_set_efer(&svm->vcpu, 0);
d77c26fc 1155 save->dr6 = 0xffff0ff0;
f6e78475 1156 kvm_set_rflags(&svm->vcpu, 2);
6aa8b732 1157 save->rip = 0x0000fff0;
5fdbf976 1158 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
6aa8b732 1159
e0231715
JR
1160 /*
1161 * This is the guest-visible cr0 value.
18fa000a 1162 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
6aa8b732 1163 */
678041ad
MT
1164 svm->vcpu.arch.cr0 = 0;
1165 (void)kvm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
18fa000a 1166
66aee91a 1167 save->cr4 = X86_CR4_PAE;
6aa8b732 1168 /* rdx = ?? */
709ddebf
JR
1169
1170 if (npt_enabled) {
1171 /* Setup VMCB for Nested Paging */
1172 control->nested_ctl = 1;
8a05a1b8 1173 clr_intercept(svm, INTERCEPT_INVLPG);
18c918c5 1174 clr_exception_intercept(svm, PF_VECTOR);
4ee546b4
RJ
1175 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1176 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
709ddebf 1177 save->g_pat = 0x0007040600070406ULL;
709ddebf
JR
1178 save->cr3 = 0;
1179 save->cr4 = 0;
1180 }
f40f6a45 1181 svm->asid_generation = 0;
1371d904 1182
e6aa9abd 1183 svm->nested.vmcb = 0;
2af9194d
JR
1184 svm->vcpu.arch.hflags = 0;
1185
2a6b20b8 1186 if (boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
565d0998 1187 control->pause_filter_count = 3000;
8a05a1b8 1188 set_intercept(svm, INTERCEPT_PAUSE);
565d0998
ML
1189 }
1190
8d28fec4
RJ
1191 mark_all_dirty(svm->vmcb);
1192
2af9194d 1193 enable_gif(svm);
6aa8b732
AK
1194}
1195
57f252f2 1196static void svm_vcpu_reset(struct kvm_vcpu *vcpu)
04d2cc77
AK
1197{
1198 struct vcpu_svm *svm = to_svm(vcpu);
66f7b72e
JS
1199 u32 dummy;
1200 u32 eax = 1;
04d2cc77 1201
e6101a96 1202 init_vmcb(svm);
70433389 1203
66f7b72e
JS
1204 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy);
1205 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
04d2cc77
AK
1206}
1207
fb3f0f51 1208static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
6aa8b732 1209{
a2fa3e9f 1210 struct vcpu_svm *svm;
6aa8b732 1211 struct page *page;
f65c229c 1212 struct page *msrpm_pages;
b286d5d8 1213 struct page *hsave_page;
3d6368ef 1214 struct page *nested_msrpm_pages;
fb3f0f51 1215 int err;
6aa8b732 1216
c16f862d 1217 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
fb3f0f51
RR
1218 if (!svm) {
1219 err = -ENOMEM;
1220 goto out;
1221 }
1222
fbc0db76
JR
1223 svm->tsc_ratio = TSC_RATIO_DEFAULT;
1224
fb3f0f51
RR
1225 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
1226 if (err)
1227 goto free_svm;
1228
b7af4043 1229 err = -ENOMEM;
6aa8b732 1230 page = alloc_page(GFP_KERNEL);
b7af4043 1231 if (!page)
fb3f0f51 1232 goto uninit;
6aa8b732 1233
f65c229c
JR
1234 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1235 if (!msrpm_pages)
b7af4043 1236 goto free_page1;
3d6368ef
AG
1237
1238 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1239 if (!nested_msrpm_pages)
b7af4043 1240 goto free_page2;
f65c229c 1241
b286d5d8
AG
1242 hsave_page = alloc_page(GFP_KERNEL);
1243 if (!hsave_page)
b7af4043
TY
1244 goto free_page3;
1245
e6aa9abd 1246 svm->nested.hsave = page_address(hsave_page);
b286d5d8 1247
b7af4043
TY
1248 svm->msrpm = page_address(msrpm_pages);
1249 svm_vcpu_init_msrpm(svm->msrpm);
1250
e6aa9abd 1251 svm->nested.msrpm = page_address(nested_msrpm_pages);
323c3d80 1252 svm_vcpu_init_msrpm(svm->nested.msrpm);
3d6368ef 1253
a2fa3e9f
GH
1254 svm->vmcb = page_address(page);
1255 clear_page(svm->vmcb);
1256 svm->vmcb_pa = page_to_pfn(page) << PAGE_SHIFT;
1257 svm->asid_generation = 0;
e6101a96 1258 init_vmcb(svm);
a2fa3e9f 1259
ad312c7c 1260 svm->vcpu.arch.apic_base = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
c5af89b6 1261 if (kvm_vcpu_is_bsp(&svm->vcpu))
ad312c7c 1262 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
6aa8b732 1263
2b036c6b
BO
1264 svm_init_osvw(&svm->vcpu);
1265
fb3f0f51 1266 return &svm->vcpu;
36241b8c 1267
b7af4043
TY
1268free_page3:
1269 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
1270free_page2:
1271 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
1272free_page1:
1273 __free_page(page);
fb3f0f51
RR
1274uninit:
1275 kvm_vcpu_uninit(&svm->vcpu);
1276free_svm:
a4770347 1277 kmem_cache_free(kvm_vcpu_cache, svm);
fb3f0f51
RR
1278out:
1279 return ERR_PTR(err);
6aa8b732
AK
1280}
1281
1282static void svm_free_vcpu(struct kvm_vcpu *vcpu)
1283{
a2fa3e9f
GH
1284 struct vcpu_svm *svm = to_svm(vcpu);
1285
fb3f0f51 1286 __free_page(pfn_to_page(svm->vmcb_pa >> PAGE_SHIFT));
f65c229c 1287 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
e6aa9abd
JR
1288 __free_page(virt_to_page(svm->nested.hsave));
1289 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
fb3f0f51 1290 kvm_vcpu_uninit(vcpu);
a4770347 1291 kmem_cache_free(kvm_vcpu_cache, svm);
6aa8b732
AK
1292}
1293
15ad7146 1294static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
6aa8b732 1295{
a2fa3e9f 1296 struct vcpu_svm *svm = to_svm(vcpu);
15ad7146 1297 int i;
0cc5064d 1298
0cc5064d 1299 if (unlikely(cpu != vcpu->cpu)) {
4b656b12 1300 svm->asid_generation = 0;
8d28fec4 1301 mark_all_dirty(svm->vmcb);
0cc5064d 1302 }
94dfbdb3 1303
82ca2d10
AK
1304#ifdef CONFIG_X86_64
1305 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
1306#endif
dacccfdd
AK
1307 savesegment(fs, svm->host.fs);
1308 savesegment(gs, svm->host.gs);
1309 svm->host.ldt = kvm_read_ldt();
1310
94dfbdb3 1311 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 1312 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
fbc0db76
JR
1313
1314 if (static_cpu_has(X86_FEATURE_TSCRATEMSR) &&
1315 svm->tsc_ratio != __get_cpu_var(current_tsc_ratio)) {
1316 __get_cpu_var(current_tsc_ratio) = svm->tsc_ratio;
1317 wrmsrl(MSR_AMD64_TSC_RATIO, svm->tsc_ratio);
1318 }
6aa8b732
AK
1319}
1320
1321static void svm_vcpu_put(struct kvm_vcpu *vcpu)
1322{
a2fa3e9f 1323 struct vcpu_svm *svm = to_svm(vcpu);
94dfbdb3
AL
1324 int i;
1325
e1beb1d3 1326 ++vcpu->stat.host_state_reload;
dacccfdd
AK
1327 kvm_load_ldt(svm->host.ldt);
1328#ifdef CONFIG_X86_64
1329 loadsegment(fs, svm->host.fs);
dacccfdd 1330 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gs);
893a5ab6 1331 load_gs_index(svm->host.gs);
dacccfdd 1332#else
831ca609 1333#ifdef CONFIG_X86_32_LAZY_GS
dacccfdd 1334 loadsegment(gs, svm->host.gs);
831ca609 1335#endif
dacccfdd 1336#endif
94dfbdb3 1337 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 1338 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
6aa8b732
AK
1339}
1340
6aa8b732
AK
1341static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
1342{
a2fa3e9f 1343 return to_svm(vcpu)->vmcb->save.rflags;
6aa8b732
AK
1344}
1345
1346static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1347{
ae9fedc7
PB
1348 /*
1349 * Any change of EFLAGS.VM is accompained by a reload of SS
1350 * (caused by either a task switch or an inter-privilege IRET),
1351 * so we do not need to update the CPL here.
1352 */
a2fa3e9f 1353 to_svm(vcpu)->vmcb->save.rflags = rflags;
6aa8b732
AK
1354}
1355
6de4f3ad
AK
1356static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
1357{
1358 switch (reg) {
1359 case VCPU_EXREG_PDPTR:
1360 BUG_ON(!npt_enabled);
9f8fe504 1361 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
6de4f3ad
AK
1362 break;
1363 default:
1364 BUG();
1365 }
1366}
1367
f0b85051
AG
1368static void svm_set_vintr(struct vcpu_svm *svm)
1369{
8a05a1b8 1370 set_intercept(svm, INTERCEPT_VINTR);
f0b85051
AG
1371}
1372
1373static void svm_clear_vintr(struct vcpu_svm *svm)
1374{
8a05a1b8 1375 clr_intercept(svm, INTERCEPT_VINTR);
f0b85051
AG
1376}
1377
6aa8b732
AK
1378static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
1379{
a2fa3e9f 1380 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
6aa8b732
AK
1381
1382 switch (seg) {
1383 case VCPU_SREG_CS: return &save->cs;
1384 case VCPU_SREG_DS: return &save->ds;
1385 case VCPU_SREG_ES: return &save->es;
1386 case VCPU_SREG_FS: return &save->fs;
1387 case VCPU_SREG_GS: return &save->gs;
1388 case VCPU_SREG_SS: return &save->ss;
1389 case VCPU_SREG_TR: return &save->tr;
1390 case VCPU_SREG_LDTR: return &save->ldtr;
1391 }
1392 BUG();
8b6d44c7 1393 return NULL;
6aa8b732
AK
1394}
1395
1396static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1397{
1398 struct vmcb_seg *s = svm_seg(vcpu, seg);
1399
1400 return s->base;
1401}
1402
1403static void svm_get_segment(struct kvm_vcpu *vcpu,
1404 struct kvm_segment *var, int seg)
1405{
1406 struct vmcb_seg *s = svm_seg(vcpu, seg);
1407
1408 var->base = s->base;
1409 var->limit = s->limit;
1410 var->selector = s->selector;
1411 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
1412 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
1413 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
1414 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
1415 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
1416 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
1417 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
80112c89
JM
1418
1419 /*
1420 * AMD CPUs circa 2014 track the G bit for all segments except CS.
1421 * However, the SVM spec states that the G bit is not observed by the
1422 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
1423 * So let's synthesize a legal G bit for all segments, this helps
1424 * running KVM nested. It also helps cross-vendor migration, because
1425 * Intel's vmentry has a check on the 'G' bit.
1426 */
1427 var->g = s->limit > 0xfffff;
25022acc 1428
e0231715
JR
1429 /*
1430 * AMD's VMCB does not have an explicit unusable field, so emulate it
19bca6ab
AP
1431 * for cross vendor migration purposes by "not present"
1432 */
1433 var->unusable = !var->present || (var->type == 0);
1434
1fbdc7a5 1435 switch (seg) {
1fbdc7a5
AP
1436 case VCPU_SREG_TR:
1437 /*
1438 * Work around a bug where the busy flag in the tr selector
1439 * isn't exposed
1440 */
c0d09828 1441 var->type |= 0x2;
1fbdc7a5
AP
1442 break;
1443 case VCPU_SREG_DS:
1444 case VCPU_SREG_ES:
1445 case VCPU_SREG_FS:
1446 case VCPU_SREG_GS:
1447 /*
1448 * The accessed bit must always be set in the segment
1449 * descriptor cache, although it can be cleared in the
1450 * descriptor, the cached bit always remains at 1. Since
1451 * Intel has a check on this, set it here to support
1452 * cross-vendor migration.
1453 */
1454 if (!var->unusable)
1455 var->type |= 0x1;
1456 break;
b586eb02 1457 case VCPU_SREG_SS:
e0231715
JR
1458 /*
1459 * On AMD CPUs sometimes the DB bit in the segment
b586eb02
AP
1460 * descriptor is left as 1, although the whole segment has
1461 * been made unusable. Clear it here to pass an Intel VMX
1462 * entry check when cross vendor migrating.
1463 */
1464 if (var->unusable)
1465 var->db = 0;
33b458d2 1466 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
b586eb02 1467 break;
1fbdc7a5 1468 }
6aa8b732
AK
1469}
1470
2e4d2653
IE
1471static int svm_get_cpl(struct kvm_vcpu *vcpu)
1472{
1473 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
1474
1475 return save->cpl;
1476}
1477
89a27f4d 1478static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1479{
a2fa3e9f
GH
1480 struct vcpu_svm *svm = to_svm(vcpu);
1481
89a27f4d
GN
1482 dt->size = svm->vmcb->save.idtr.limit;
1483 dt->address = svm->vmcb->save.idtr.base;
6aa8b732
AK
1484}
1485
89a27f4d 1486static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1487{
a2fa3e9f
GH
1488 struct vcpu_svm *svm = to_svm(vcpu);
1489
89a27f4d
GN
1490 svm->vmcb->save.idtr.limit = dt->size;
1491 svm->vmcb->save.idtr.base = dt->address ;
17a703cb 1492 mark_dirty(svm->vmcb, VMCB_DT);
6aa8b732
AK
1493}
1494
89a27f4d 1495static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1496{
a2fa3e9f
GH
1497 struct vcpu_svm *svm = to_svm(vcpu);
1498
89a27f4d
GN
1499 dt->size = svm->vmcb->save.gdtr.limit;
1500 dt->address = svm->vmcb->save.gdtr.base;
6aa8b732
AK
1501}
1502
89a27f4d 1503static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1504{
a2fa3e9f
GH
1505 struct vcpu_svm *svm = to_svm(vcpu);
1506
89a27f4d
GN
1507 svm->vmcb->save.gdtr.limit = dt->size;
1508 svm->vmcb->save.gdtr.base = dt->address ;
17a703cb 1509 mark_dirty(svm->vmcb, VMCB_DT);
6aa8b732
AK
1510}
1511
e8467fda
AK
1512static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
1513{
1514}
1515
aff48baa
AK
1516static void svm_decache_cr3(struct kvm_vcpu *vcpu)
1517{
1518}
1519
25c4c276 1520static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
399badf3
AK
1521{
1522}
1523
d225157b
AK
1524static void update_cr0_intercept(struct vcpu_svm *svm)
1525{
1526 ulong gcr0 = svm->vcpu.arch.cr0;
1527 u64 *hcr0 = &svm->vmcb->save.cr0;
1528
1529 if (!svm->vcpu.fpu_active)
1530 *hcr0 |= SVM_CR0_SELECTIVE_MASK;
1531 else
1532 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
1533 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
1534
dcca1a65 1535 mark_dirty(svm->vmcb, VMCB_CR);
d225157b
AK
1536
1537 if (gcr0 == *hcr0 && svm->vcpu.fpu_active) {
4ee546b4
RJ
1538 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
1539 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
d225157b 1540 } else {
4ee546b4
RJ
1541 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1542 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
d225157b
AK
1543 }
1544}
1545
6aa8b732
AK
1546static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1547{
a2fa3e9f
GH
1548 struct vcpu_svm *svm = to_svm(vcpu);
1549
05b3e0c2 1550#ifdef CONFIG_X86_64
f6801dff 1551 if (vcpu->arch.efer & EFER_LME) {
707d92fa 1552 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
f6801dff 1553 vcpu->arch.efer |= EFER_LMA;
2b5203ee 1554 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
6aa8b732
AK
1555 }
1556
d77c26fc 1557 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
f6801dff 1558 vcpu->arch.efer &= ~EFER_LMA;
2b5203ee 1559 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
6aa8b732
AK
1560 }
1561 }
1562#endif
ad312c7c 1563 vcpu->arch.cr0 = cr0;
888f9f3e
AK
1564
1565 if (!npt_enabled)
1566 cr0 |= X86_CR0_PG | X86_CR0_WP;
02daab21
AK
1567
1568 if (!vcpu->fpu_active)
334df50a 1569 cr0 |= X86_CR0_TS;
709ddebf
JR
1570 /*
1571 * re-enable caching here because the QEMU bios
1572 * does not do it - this results in some delay at
1573 * reboot
1574 */
1575 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
a2fa3e9f 1576 svm->vmcb->save.cr0 = cr0;
dcca1a65 1577 mark_dirty(svm->vmcb, VMCB_CR);
d225157b 1578 update_cr0_intercept(svm);
6aa8b732
AK
1579}
1580
5e1746d6 1581static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
6aa8b732 1582{
6394b649 1583 unsigned long host_cr4_mce = read_cr4() & X86_CR4_MCE;
e5eab0ce
JR
1584 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
1585
5e1746d6
NHE
1586 if (cr4 & X86_CR4_VMXE)
1587 return 1;
1588
e5eab0ce 1589 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
f40f6a45 1590 svm_flush_tlb(vcpu);
6394b649 1591
ec077263
JR
1592 vcpu->arch.cr4 = cr4;
1593 if (!npt_enabled)
1594 cr4 |= X86_CR4_PAE;
6394b649 1595 cr4 |= host_cr4_mce;
ec077263 1596 to_svm(vcpu)->vmcb->save.cr4 = cr4;
dcca1a65 1597 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
5e1746d6 1598 return 0;
6aa8b732
AK
1599}
1600
1601static void svm_set_segment(struct kvm_vcpu *vcpu,
1602 struct kvm_segment *var, int seg)
1603{
a2fa3e9f 1604 struct vcpu_svm *svm = to_svm(vcpu);
6aa8b732
AK
1605 struct vmcb_seg *s = svm_seg(vcpu, seg);
1606
1607 s->base = var->base;
1608 s->limit = var->limit;
1609 s->selector = var->selector;
1610 if (var->unusable)
1611 s->attrib = 0;
1612 else {
1613 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
1614 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
1615 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
1616 s->attrib |= (var->present & 1) << SVM_SELECTOR_P_SHIFT;
1617 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
1618 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
1619 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
1620 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
1621 }
ae9fedc7
PB
1622
1623 /*
1624 * This is always accurate, except if SYSRET returned to a segment
1625 * with SS.DPL != 3. Intel does not have this quirk, and always
1626 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
1627 * would entail passing the CPL to userspace and back.
1628 */
1629 if (seg == VCPU_SREG_SS)
1630 svm->vmcb->save.cpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
6aa8b732 1631
060d0c9a 1632 mark_dirty(svm->vmcb, VMCB_SEG);
6aa8b732
AK
1633}
1634
c8639010 1635static void update_db_bp_intercept(struct kvm_vcpu *vcpu)
6aa8b732 1636{
d0bfb940
JK
1637 struct vcpu_svm *svm = to_svm(vcpu);
1638
18c918c5
JR
1639 clr_exception_intercept(svm, DB_VECTOR);
1640 clr_exception_intercept(svm, BP_VECTOR);
44c11430 1641
6be7d306 1642 if (svm->nmi_singlestep)
18c918c5 1643 set_exception_intercept(svm, DB_VECTOR);
44c11430 1644
d0bfb940
JK
1645 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
1646 if (vcpu->guest_debug &
1647 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
18c918c5 1648 set_exception_intercept(svm, DB_VECTOR);
d0bfb940 1649 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
18c918c5 1650 set_exception_intercept(svm, BP_VECTOR);
d0bfb940
JK
1651 } else
1652 vcpu->guest_debug = 0;
44c11430
GN
1653}
1654
0fe1e009 1655static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
6aa8b732 1656{
0fe1e009
TH
1657 if (sd->next_asid > sd->max_asid) {
1658 ++sd->asid_generation;
1659 sd->next_asid = 1;
a2fa3e9f 1660 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
6aa8b732
AK
1661 }
1662
0fe1e009
TH
1663 svm->asid_generation = sd->asid_generation;
1664 svm->vmcb->control.asid = sd->next_asid++;
d48086d1
JR
1665
1666 mark_dirty(svm->vmcb, VMCB_ASID);
6aa8b732
AK
1667}
1668
73aaf249
JK
1669static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
1670{
1671 return to_svm(vcpu)->vmcb->save.dr6;
1672}
1673
1674static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
1675{
1676 struct vcpu_svm *svm = to_svm(vcpu);
1677
1678 svm->vmcb->save.dr6 = value;
1679 mark_dirty(svm->vmcb, VMCB_DR);
1680}
1681
facb0139
PB
1682static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
1683{
1684 struct vcpu_svm *svm = to_svm(vcpu);
1685
1686 get_debugreg(vcpu->arch.db[0], 0);
1687 get_debugreg(vcpu->arch.db[1], 1);
1688 get_debugreg(vcpu->arch.db[2], 2);
1689 get_debugreg(vcpu->arch.db[3], 3);
1690 vcpu->arch.dr6 = svm_get_dr6(vcpu);
1691 vcpu->arch.dr7 = svm->vmcb->save.dr7;
1692
1693 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
1694 set_dr_intercepts(svm);
1695}
1696
020df079 1697static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
6aa8b732 1698{
42dbaa5a 1699 struct vcpu_svm *svm = to_svm(vcpu);
42dbaa5a 1700
020df079 1701 svm->vmcb->save.dr7 = value;
72214b96 1702 mark_dirty(svm->vmcb, VMCB_DR);
6aa8b732
AK
1703}
1704
851ba692 1705static int pf_interception(struct vcpu_svm *svm)
6aa8b732 1706{
631bc487 1707 u64 fault_address = svm->vmcb->control.exit_info_2;
6aa8b732 1708 u32 error_code;
631bc487 1709 int r = 1;
6aa8b732 1710
631bc487
GN
1711 switch (svm->apf_reason) {
1712 default:
1713 error_code = svm->vmcb->control.exit_info_1;
af9ca2d7 1714
631bc487
GN
1715 trace_kvm_page_fault(fault_address, error_code);
1716 if (!npt_enabled && kvm_event_needs_reinjection(&svm->vcpu))
1717 kvm_mmu_unprotect_page_virt(&svm->vcpu, fault_address);
dc25e89e
AP
1718 r = kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
1719 svm->vmcb->control.insn_bytes,
1720 svm->vmcb->control.insn_len);
631bc487
GN
1721 break;
1722 case KVM_PV_REASON_PAGE_NOT_PRESENT:
1723 svm->apf_reason = 0;
1724 local_irq_disable();
1725 kvm_async_pf_task_wait(fault_address);
1726 local_irq_enable();
1727 break;
1728 case KVM_PV_REASON_PAGE_READY:
1729 svm->apf_reason = 0;
1730 local_irq_disable();
1731 kvm_async_pf_task_wake(fault_address);
1732 local_irq_enable();
1733 break;
1734 }
1735 return r;
6aa8b732
AK
1736}
1737
851ba692 1738static int db_interception(struct vcpu_svm *svm)
d0bfb940 1739{
851ba692
AK
1740 struct kvm_run *kvm_run = svm->vcpu.run;
1741
d0bfb940 1742 if (!(svm->vcpu.guest_debug &
44c11430 1743 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
6be7d306 1744 !svm->nmi_singlestep) {
d0bfb940
JK
1745 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
1746 return 1;
1747 }
44c11430 1748
6be7d306
JK
1749 if (svm->nmi_singlestep) {
1750 svm->nmi_singlestep = false;
44c11430
GN
1751 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP))
1752 svm->vmcb->save.rflags &=
1753 ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
c8639010 1754 update_db_bp_intercept(&svm->vcpu);
44c11430
GN
1755 }
1756
1757 if (svm->vcpu.guest_debug &
e0231715 1758 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
44c11430
GN
1759 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1760 kvm_run->debug.arch.pc =
1761 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1762 kvm_run->debug.arch.exception = DB_VECTOR;
1763 return 0;
1764 }
1765
1766 return 1;
d0bfb940
JK
1767}
1768
851ba692 1769static int bp_interception(struct vcpu_svm *svm)
d0bfb940 1770{
851ba692
AK
1771 struct kvm_run *kvm_run = svm->vcpu.run;
1772
d0bfb940
JK
1773 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1774 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1775 kvm_run->debug.arch.exception = BP_VECTOR;
1776 return 0;
1777}
1778
851ba692 1779static int ud_interception(struct vcpu_svm *svm)
7aa81cc0
AL
1780{
1781 int er;
1782
51d8b661 1783 er = emulate_instruction(&svm->vcpu, EMULTYPE_TRAP_UD);
7aa81cc0 1784 if (er != EMULATE_DONE)
7ee5d940 1785 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
7aa81cc0
AL
1786 return 1;
1787}
1788
6b52d186 1789static void svm_fpu_activate(struct kvm_vcpu *vcpu)
7807fa6c 1790{
6b52d186 1791 struct vcpu_svm *svm = to_svm(vcpu);
66a562f7 1792
18c918c5 1793 clr_exception_intercept(svm, NM_VECTOR);
66a562f7 1794
e756fc62 1795 svm->vcpu.fpu_active = 1;
d225157b 1796 update_cr0_intercept(svm);
6b52d186 1797}
a2fa3e9f 1798
6b52d186
AK
1799static int nm_interception(struct vcpu_svm *svm)
1800{
1801 svm_fpu_activate(&svm->vcpu);
a2fa3e9f 1802 return 1;
7807fa6c
AL
1803}
1804
67ec6607
JR
1805static bool is_erratum_383(void)
1806{
1807 int err, i;
1808 u64 value;
1809
1810 if (!erratum_383_found)
1811 return false;
1812
1813 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
1814 if (err)
1815 return false;
1816
1817 /* Bit 62 may or may not be set for this mce */
1818 value &= ~(1ULL << 62);
1819
1820 if (value != 0xb600000000010015ULL)
1821 return false;
1822
1823 /* Clear MCi_STATUS registers */
1824 for (i = 0; i < 6; ++i)
1825 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
1826
1827 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
1828 if (!err) {
1829 u32 low, high;
1830
1831 value &= ~(1ULL << 2);
1832 low = lower_32_bits(value);
1833 high = upper_32_bits(value);
1834
1835 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
1836 }
1837
1838 /* Flush tlb to evict multi-match entries */
1839 __flush_tlb_all();
1840
1841 return true;
1842}
1843
fe5913e4 1844static void svm_handle_mce(struct vcpu_svm *svm)
53371b50 1845{
67ec6607
JR
1846 if (is_erratum_383()) {
1847 /*
1848 * Erratum 383 triggered. Guest state is corrupt so kill the
1849 * guest.
1850 */
1851 pr_err("KVM: Guest triggered AMD Erratum 383\n");
1852
a8eeb04a 1853 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
67ec6607
JR
1854
1855 return;
1856 }
1857
53371b50
JR
1858 /*
1859 * On an #MC intercept the MCE handler is not called automatically in
1860 * the host. So do it by hand here.
1861 */
1862 asm volatile (
1863 "int $0x12\n");
1864 /* not sure if we ever come back to this point */
1865
fe5913e4
JR
1866 return;
1867}
1868
1869static int mc_interception(struct vcpu_svm *svm)
1870{
53371b50
JR
1871 return 1;
1872}
1873
851ba692 1874static int shutdown_interception(struct vcpu_svm *svm)
46fe4ddd 1875{
851ba692
AK
1876 struct kvm_run *kvm_run = svm->vcpu.run;
1877
46fe4ddd
JR
1878 /*
1879 * VMCB is undefined after a SHUTDOWN intercept
1880 * so reinitialize it.
1881 */
a2fa3e9f 1882 clear_page(svm->vmcb);
e6101a96 1883 init_vmcb(svm);
46fe4ddd
JR
1884
1885 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
1886 return 0;
1887}
1888
851ba692 1889static int io_interception(struct vcpu_svm *svm)
6aa8b732 1890{
cf8f70bf 1891 struct kvm_vcpu *vcpu = &svm->vcpu;
d77c26fc 1892 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
34c33d16 1893 int size, in, string;
039576c0 1894 unsigned port;
6aa8b732 1895
e756fc62 1896 ++svm->vcpu.stat.io_exits;
e70669ab 1897 string = (io_info & SVM_IOIO_STR_MASK) != 0;
039576c0 1898 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
cf8f70bf 1899 if (string || in)
51d8b661 1900 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
cf8f70bf 1901
039576c0
AK
1902 port = io_info >> 16;
1903 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
cf8f70bf 1904 svm->next_rip = svm->vmcb->control.exit_info_2;
e93f36bc 1905 skip_emulated_instruction(&svm->vcpu);
cf8f70bf
GN
1906
1907 return kvm_fast_pio_out(vcpu, size, port);
6aa8b732
AK
1908}
1909
851ba692 1910static int nmi_interception(struct vcpu_svm *svm)
c47f098d
JR
1911{
1912 return 1;
1913}
1914
851ba692 1915static int intr_interception(struct vcpu_svm *svm)
a0698055
JR
1916{
1917 ++svm->vcpu.stat.irq_exits;
1918 return 1;
1919}
1920
851ba692 1921static int nop_on_interception(struct vcpu_svm *svm)
6aa8b732
AK
1922{
1923 return 1;
1924}
1925
851ba692 1926static int halt_interception(struct vcpu_svm *svm)
6aa8b732 1927{
5fdbf976 1928 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
e756fc62
RR
1929 skip_emulated_instruction(&svm->vcpu);
1930 return kvm_emulate_halt(&svm->vcpu);
6aa8b732
AK
1931}
1932
851ba692 1933static int vmmcall_interception(struct vcpu_svm *svm)
02e235bc 1934{
5fdbf976 1935 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
e756fc62 1936 skip_emulated_instruction(&svm->vcpu);
7aa81cc0
AL
1937 kvm_emulate_hypercall(&svm->vcpu);
1938 return 1;
02e235bc
AK
1939}
1940
5bd2edc3
JR
1941static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
1942{
1943 struct vcpu_svm *svm = to_svm(vcpu);
1944
1945 return svm->nested.nested_cr3;
1946}
1947
e4e517b4
AK
1948static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
1949{
1950 struct vcpu_svm *svm = to_svm(vcpu);
1951 u64 cr3 = svm->nested.nested_cr3;
1952 u64 pdpte;
1953 int ret;
1954
1955 ret = kvm_read_guest_page(vcpu->kvm, gpa_to_gfn(cr3), &pdpte,
1956 offset_in_page(cr3) + index * 8, 8);
1957 if (ret)
1958 return 0;
1959 return pdpte;
1960}
1961
5bd2edc3
JR
1962static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
1963 unsigned long root)
1964{
1965 struct vcpu_svm *svm = to_svm(vcpu);
1966
1967 svm->vmcb->control.nested_cr3 = root;
b2747166 1968 mark_dirty(svm->vmcb, VMCB_NPT);
f40f6a45 1969 svm_flush_tlb(vcpu);
5bd2edc3
JR
1970}
1971
6389ee94
AK
1972static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
1973 struct x86_exception *fault)
5bd2edc3
JR
1974{
1975 struct vcpu_svm *svm = to_svm(vcpu);
1976
5e352519
PB
1977 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
1978 /*
1979 * TODO: track the cause of the nested page fault, and
1980 * correctly fill in the high bits of exit_info_1.
1981 */
1982 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
1983 svm->vmcb->control.exit_code_hi = 0;
1984 svm->vmcb->control.exit_info_1 = (1ULL << 32);
1985 svm->vmcb->control.exit_info_2 = fault->address;
1986 }
1987
1988 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
1989 svm->vmcb->control.exit_info_1 |= fault->error_code;
1990
1991 /*
1992 * The present bit is always zero for page structure faults on real
1993 * hardware.
1994 */
1995 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
1996 svm->vmcb->control.exit_info_1 &= ~1;
5bd2edc3
JR
1997
1998 nested_svm_vmexit(svm);
1999}
2000
8a3c1a33 2001static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
4b16184c 2002{
8a3c1a33 2003 kvm_init_shadow_mmu(vcpu, &vcpu->arch.mmu);
4b16184c
JR
2004
2005 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2006 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
e4e517b4 2007 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
4b16184c
JR
2008 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
2009 vcpu->arch.mmu.shadow_root_level = get_npt_level();
2010 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
4b16184c
JR
2011}
2012
2013static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2014{
2015 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
2016}
2017
c0725420
AG
2018static int nested_svm_check_permissions(struct vcpu_svm *svm)
2019{
f6801dff 2020 if (!(svm->vcpu.arch.efer & EFER_SVME)
c0725420
AG
2021 || !is_paging(&svm->vcpu)) {
2022 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2023 return 1;
2024 }
2025
2026 if (svm->vmcb->save.cpl) {
2027 kvm_inject_gp(&svm->vcpu, 0);
2028 return 1;
2029 }
2030
2031 return 0;
2032}
2033
cf74a78b
AG
2034static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2035 bool has_error_code, u32 error_code)
2036{
b8e88bc8
JR
2037 int vmexit;
2038
2030753d 2039 if (!is_guest_mode(&svm->vcpu))
0295ad7d 2040 return 0;
cf74a78b 2041
0295ad7d
JR
2042 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2043 svm->vmcb->control.exit_code_hi = 0;
2044 svm->vmcb->control.exit_info_1 = error_code;
2045 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
2046
b8e88bc8
JR
2047 vmexit = nested_svm_intercept(svm);
2048 if (vmexit == NESTED_EXIT_DONE)
2049 svm->nested.exit_required = true;
2050
2051 return vmexit;
cf74a78b
AG
2052}
2053
8fe54654
JR
2054/* This function returns true if it is save to enable the irq window */
2055static inline bool nested_svm_intr(struct vcpu_svm *svm)
cf74a78b 2056{
2030753d 2057 if (!is_guest_mode(&svm->vcpu))
8fe54654 2058 return true;
cf74a78b 2059
26666957 2060 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
8fe54654 2061 return true;
cf74a78b 2062
26666957 2063 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
8fe54654 2064 return false;
cf74a78b 2065
a0a07cd2
GN
2066 /*
2067 * if vmexit was already requested (by intercepted exception
2068 * for instance) do not overwrite it with "external interrupt"
2069 * vmexit.
2070 */
2071 if (svm->nested.exit_required)
2072 return false;
2073
197717d5
JR
2074 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
2075 svm->vmcb->control.exit_info_1 = 0;
2076 svm->vmcb->control.exit_info_2 = 0;
26666957 2077
cd3ff653
JR
2078 if (svm->nested.intercept & 1ULL) {
2079 /*
2080 * The #vmexit can't be emulated here directly because this
c5ec2e56 2081 * code path runs with irqs and preemption disabled. A
cd3ff653
JR
2082 * #vmexit emulation might sleep. Only signal request for
2083 * the #vmexit here.
2084 */
2085 svm->nested.exit_required = true;
236649de 2086 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
8fe54654 2087 return false;
cf74a78b
AG
2088 }
2089
8fe54654 2090 return true;
cf74a78b
AG
2091}
2092
887f500c
JR
2093/* This function returns true if it is save to enable the nmi window */
2094static inline bool nested_svm_nmi(struct vcpu_svm *svm)
2095{
2030753d 2096 if (!is_guest_mode(&svm->vcpu))
887f500c
JR
2097 return true;
2098
2099 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
2100 return true;
2101
2102 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
2103 svm->nested.exit_required = true;
2104
2105 return false;
cf74a78b
AG
2106}
2107
7597f129 2108static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
34f80cfa
JR
2109{
2110 struct page *page;
2111
6c3bd3d7
JR
2112 might_sleep();
2113
34f80cfa 2114 page = gfn_to_page(svm->vcpu.kvm, gpa >> PAGE_SHIFT);
34f80cfa
JR
2115 if (is_error_page(page))
2116 goto error;
2117
7597f129
JR
2118 *_page = page;
2119
2120 return kmap(page);
34f80cfa
JR
2121
2122error:
34f80cfa
JR
2123 kvm_inject_gp(&svm->vcpu, 0);
2124
2125 return NULL;
2126}
2127
7597f129 2128static void nested_svm_unmap(struct page *page)
34f80cfa 2129{
7597f129 2130 kunmap(page);
34f80cfa
JR
2131 kvm_release_page_dirty(page);
2132}
34f80cfa 2133
ce2ac085
JR
2134static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
2135{
9bf41833
JK
2136 unsigned port, size, iopm_len;
2137 u16 val, mask;
2138 u8 start_bit;
ce2ac085 2139 u64 gpa;
34f80cfa 2140
ce2ac085
JR
2141 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
2142 return NESTED_EXIT_HOST;
34f80cfa 2143
ce2ac085 2144 port = svm->vmcb->control.exit_info_1 >> 16;
9bf41833
JK
2145 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
2146 SVM_IOIO_SIZE_SHIFT;
ce2ac085 2147 gpa = svm->nested.vmcb_iopm + (port / 8);
9bf41833
JK
2148 start_bit = port % 8;
2149 iopm_len = (start_bit + size > 8) ? 2 : 1;
2150 mask = (0xf >> (4 - size)) << start_bit;
2151 val = 0;
ce2ac085 2152
9bf41833
JK
2153 if (kvm_read_guest(svm->vcpu.kvm, gpa, &val, iopm_len))
2154 return NESTED_EXIT_DONE;
ce2ac085 2155
9bf41833 2156 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
34f80cfa
JR
2157}
2158
d2477826 2159static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
4c2161ae 2160{
0d6b3537
JR
2161 u32 offset, msr, value;
2162 int write, mask;
4c2161ae 2163
3d62d9aa 2164 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
d2477826 2165 return NESTED_EXIT_HOST;
3d62d9aa 2166
0d6b3537
JR
2167 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
2168 offset = svm_msrpm_offset(msr);
2169 write = svm->vmcb->control.exit_info_1 & 1;
2170 mask = 1 << ((2 * (msr & 0xf)) + write);
3d62d9aa 2171
0d6b3537
JR
2172 if (offset == MSR_INVALID)
2173 return NESTED_EXIT_DONE;
4c2161ae 2174
0d6b3537
JR
2175 /* Offset is in 32 bit units but need in 8 bit units */
2176 offset *= 4;
4c2161ae 2177
0d6b3537
JR
2178 if (kvm_read_guest(svm->vcpu.kvm, svm->nested.vmcb_msrpm + offset, &value, 4))
2179 return NESTED_EXIT_DONE;
3d62d9aa 2180
0d6b3537 2181 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
4c2161ae
JR
2182}
2183
410e4d57 2184static int nested_svm_exit_special(struct vcpu_svm *svm)
cf74a78b 2185{
cf74a78b 2186 u32 exit_code = svm->vmcb->control.exit_code;
4c2161ae 2187
410e4d57
JR
2188 switch (exit_code) {
2189 case SVM_EXIT_INTR:
2190 case SVM_EXIT_NMI:
ff47a49b 2191 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
410e4d57 2192 return NESTED_EXIT_HOST;
410e4d57 2193 case SVM_EXIT_NPF:
e0231715 2194 /* For now we are always handling NPFs when using them */
410e4d57
JR
2195 if (npt_enabled)
2196 return NESTED_EXIT_HOST;
2197 break;
410e4d57 2198 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
631bc487
GN
2199 /* When we're shadowing, trap PFs, but not async PF */
2200 if (!npt_enabled && svm->apf_reason == 0)
410e4d57
JR
2201 return NESTED_EXIT_HOST;
2202 break;
66a562f7
JR
2203 case SVM_EXIT_EXCP_BASE + NM_VECTOR:
2204 nm_interception(svm);
2205 break;
410e4d57
JR
2206 default:
2207 break;
cf74a78b
AG
2208 }
2209
410e4d57
JR
2210 return NESTED_EXIT_CONTINUE;
2211}
2212
2213/*
2214 * If this function returns true, this #vmexit was already handled
2215 */
b8e88bc8 2216static int nested_svm_intercept(struct vcpu_svm *svm)
410e4d57
JR
2217{
2218 u32 exit_code = svm->vmcb->control.exit_code;
2219 int vmexit = NESTED_EXIT_HOST;
2220
cf74a78b 2221 switch (exit_code) {
9c4e40b9 2222 case SVM_EXIT_MSR:
3d62d9aa 2223 vmexit = nested_svm_exit_handled_msr(svm);
9c4e40b9 2224 break;
ce2ac085
JR
2225 case SVM_EXIT_IOIO:
2226 vmexit = nested_svm_intercept_ioio(svm);
2227 break;
4ee546b4
RJ
2228 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
2229 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
2230 if (svm->nested.intercept_cr & bit)
410e4d57 2231 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2232 break;
2233 }
3aed041a
JR
2234 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
2235 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
2236 if (svm->nested.intercept_dr & bit)
410e4d57 2237 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2238 break;
2239 }
2240 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
2241 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
aad42c64 2242 if (svm->nested.intercept_exceptions & excp_bits)
410e4d57 2243 vmexit = NESTED_EXIT_DONE;
631bc487
GN
2244 /* async page fault always cause vmexit */
2245 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
2246 svm->apf_reason != 0)
2247 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2248 break;
2249 }
228070b1
JR
2250 case SVM_EXIT_ERR: {
2251 vmexit = NESTED_EXIT_DONE;
2252 break;
2253 }
cf74a78b
AG
2254 default: {
2255 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
aad42c64 2256 if (svm->nested.intercept & exit_bits)
410e4d57 2257 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2258 }
2259 }
2260
b8e88bc8
JR
2261 return vmexit;
2262}
2263
2264static int nested_svm_exit_handled(struct vcpu_svm *svm)
2265{
2266 int vmexit;
2267
2268 vmexit = nested_svm_intercept(svm);
2269
2270 if (vmexit == NESTED_EXIT_DONE)
9c4e40b9 2271 nested_svm_vmexit(svm);
9c4e40b9
JR
2272
2273 return vmexit;
cf74a78b
AG
2274}
2275
0460a979
JR
2276static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
2277{
2278 struct vmcb_control_area *dst = &dst_vmcb->control;
2279 struct vmcb_control_area *from = &from_vmcb->control;
2280
4ee546b4 2281 dst->intercept_cr = from->intercept_cr;
3aed041a 2282 dst->intercept_dr = from->intercept_dr;
0460a979
JR
2283 dst->intercept_exceptions = from->intercept_exceptions;
2284 dst->intercept = from->intercept;
2285 dst->iopm_base_pa = from->iopm_base_pa;
2286 dst->msrpm_base_pa = from->msrpm_base_pa;
2287 dst->tsc_offset = from->tsc_offset;
2288 dst->asid = from->asid;
2289 dst->tlb_ctl = from->tlb_ctl;
2290 dst->int_ctl = from->int_ctl;
2291 dst->int_vector = from->int_vector;
2292 dst->int_state = from->int_state;
2293 dst->exit_code = from->exit_code;
2294 dst->exit_code_hi = from->exit_code_hi;
2295 dst->exit_info_1 = from->exit_info_1;
2296 dst->exit_info_2 = from->exit_info_2;
2297 dst->exit_int_info = from->exit_int_info;
2298 dst->exit_int_info_err = from->exit_int_info_err;
2299 dst->nested_ctl = from->nested_ctl;
2300 dst->event_inj = from->event_inj;
2301 dst->event_inj_err = from->event_inj_err;
2302 dst->nested_cr3 = from->nested_cr3;
2303 dst->lbr_ctl = from->lbr_ctl;
2304}
2305
34f80cfa 2306static int nested_svm_vmexit(struct vcpu_svm *svm)
cf74a78b 2307{
34f80cfa 2308 struct vmcb *nested_vmcb;
e6aa9abd 2309 struct vmcb *hsave = svm->nested.hsave;
33740e40 2310 struct vmcb *vmcb = svm->vmcb;
7597f129 2311 struct page *page;
cf74a78b 2312
17897f36
JR
2313 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
2314 vmcb->control.exit_info_1,
2315 vmcb->control.exit_info_2,
2316 vmcb->control.exit_int_info,
e097e5ff
SH
2317 vmcb->control.exit_int_info_err,
2318 KVM_ISA_SVM);
17897f36 2319
7597f129 2320 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
34f80cfa
JR
2321 if (!nested_vmcb)
2322 return 1;
2323
2030753d
JR
2324 /* Exit Guest-Mode */
2325 leave_guest_mode(&svm->vcpu);
06fc7772
JR
2326 svm->nested.vmcb = 0;
2327
cf74a78b 2328 /* Give the current vmcb to the guest */
33740e40
JR
2329 disable_gif(svm);
2330
2331 nested_vmcb->save.es = vmcb->save.es;
2332 nested_vmcb->save.cs = vmcb->save.cs;
2333 nested_vmcb->save.ss = vmcb->save.ss;
2334 nested_vmcb->save.ds = vmcb->save.ds;
2335 nested_vmcb->save.gdtr = vmcb->save.gdtr;
2336 nested_vmcb->save.idtr = vmcb->save.idtr;
3f6a9d16 2337 nested_vmcb->save.efer = svm->vcpu.arch.efer;
cdbbdc12 2338 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
9f8fe504 2339 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
33740e40 2340 nested_vmcb->save.cr2 = vmcb->save.cr2;
cdbbdc12 2341 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
f6e78475 2342 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
33740e40
JR
2343 nested_vmcb->save.rip = vmcb->save.rip;
2344 nested_vmcb->save.rsp = vmcb->save.rsp;
2345 nested_vmcb->save.rax = vmcb->save.rax;
2346 nested_vmcb->save.dr7 = vmcb->save.dr7;
2347 nested_vmcb->save.dr6 = vmcb->save.dr6;
2348 nested_vmcb->save.cpl = vmcb->save.cpl;
2349
2350 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
2351 nested_vmcb->control.int_vector = vmcb->control.int_vector;
2352 nested_vmcb->control.int_state = vmcb->control.int_state;
2353 nested_vmcb->control.exit_code = vmcb->control.exit_code;
2354 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
2355 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
2356 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
2357 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
2358 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
7a190667 2359 nested_vmcb->control.next_rip = vmcb->control.next_rip;
8d23c466
AG
2360
2361 /*
2362 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
2363 * to make sure that we do not lose injected events. So check event_inj
2364 * here and copy it to exit_int_info if it is valid.
2365 * Exit_int_info and event_inj can't be both valid because the case
2366 * below only happens on a VMRUN instruction intercept which has
2367 * no valid exit_int_info set.
2368 */
2369 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
2370 struct vmcb_control_area *nc = &nested_vmcb->control;
2371
2372 nc->exit_int_info = vmcb->control.event_inj;
2373 nc->exit_int_info_err = vmcb->control.event_inj_err;
2374 }
2375
33740e40
JR
2376 nested_vmcb->control.tlb_ctl = 0;
2377 nested_vmcb->control.event_inj = 0;
2378 nested_vmcb->control.event_inj_err = 0;
cf74a78b
AG
2379
2380 /* We always set V_INTR_MASKING and remember the old value in hflags */
2381 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
2382 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
2383
cf74a78b 2384 /* Restore the original control entries */
0460a979 2385 copy_vmcb_control_area(vmcb, hsave);
cf74a78b 2386
219b65dc
AG
2387 kvm_clear_exception_queue(&svm->vcpu);
2388 kvm_clear_interrupt_queue(&svm->vcpu);
cf74a78b 2389
4b16184c
JR
2390 svm->nested.nested_cr3 = 0;
2391
cf74a78b
AG
2392 /* Restore selected save entries */
2393 svm->vmcb->save.es = hsave->save.es;
2394 svm->vmcb->save.cs = hsave->save.cs;
2395 svm->vmcb->save.ss = hsave->save.ss;
2396 svm->vmcb->save.ds = hsave->save.ds;
2397 svm->vmcb->save.gdtr = hsave->save.gdtr;
2398 svm->vmcb->save.idtr = hsave->save.idtr;
f6e78475 2399 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
cf74a78b
AG
2400 svm_set_efer(&svm->vcpu, hsave->save.efer);
2401 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
2402 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
2403 if (npt_enabled) {
2404 svm->vmcb->save.cr3 = hsave->save.cr3;
2405 svm->vcpu.arch.cr3 = hsave->save.cr3;
2406 } else {
2390218b 2407 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
cf74a78b
AG
2408 }
2409 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
2410 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
2411 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
2412 svm->vmcb->save.dr7 = 0;
2413 svm->vmcb->save.cpl = 0;
2414 svm->vmcb->control.exit_int_info = 0;
2415
8d28fec4
RJ
2416 mark_all_dirty(svm->vmcb);
2417
7597f129 2418 nested_svm_unmap(page);
cf74a78b 2419
4b16184c 2420 nested_svm_uninit_mmu_context(&svm->vcpu);
cf74a78b
AG
2421 kvm_mmu_reset_context(&svm->vcpu);
2422 kvm_mmu_load(&svm->vcpu);
2423
2424 return 0;
2425}
3d6368ef 2426
9738b2c9 2427static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
3d6368ef 2428{
323c3d80
JR
2429 /*
2430 * This function merges the msr permission bitmaps of kvm and the
c5ec2e56 2431 * nested vmcb. It is optimized in that it only merges the parts where
323c3d80
JR
2432 * the kvm msr permission bitmap may contain zero bits
2433 */
3d6368ef 2434 int i;
9738b2c9 2435
323c3d80
JR
2436 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
2437 return true;
9738b2c9 2438
323c3d80
JR
2439 for (i = 0; i < MSRPM_OFFSETS; i++) {
2440 u32 value, p;
2441 u64 offset;
9738b2c9 2442
323c3d80
JR
2443 if (msrpm_offsets[i] == 0xffffffff)
2444 break;
3d6368ef 2445
0d6b3537
JR
2446 p = msrpm_offsets[i];
2447 offset = svm->nested.vmcb_msrpm + (p * 4);
323c3d80
JR
2448
2449 if (kvm_read_guest(svm->vcpu.kvm, offset, &value, 4))
2450 return false;
2451
2452 svm->nested.msrpm[p] = svm->msrpm[p] | value;
2453 }
3d6368ef 2454
323c3d80 2455 svm->vmcb->control.msrpm_base_pa = __pa(svm->nested.msrpm);
9738b2c9
JR
2456
2457 return true;
3d6368ef
AG
2458}
2459
52c65a30
JR
2460static bool nested_vmcb_checks(struct vmcb *vmcb)
2461{
2462 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
2463 return false;
2464
dbe77584
JR
2465 if (vmcb->control.asid == 0)
2466 return false;
2467
4b16184c
JR
2468 if (vmcb->control.nested_ctl && !npt_enabled)
2469 return false;
2470
52c65a30
JR
2471 return true;
2472}
2473
9738b2c9 2474static bool nested_svm_vmrun(struct vcpu_svm *svm)
3d6368ef 2475{
9738b2c9 2476 struct vmcb *nested_vmcb;
e6aa9abd 2477 struct vmcb *hsave = svm->nested.hsave;
defbba56 2478 struct vmcb *vmcb = svm->vmcb;
7597f129 2479 struct page *page;
06fc7772 2480 u64 vmcb_gpa;
3d6368ef 2481
06fc7772 2482 vmcb_gpa = svm->vmcb->save.rax;
3d6368ef 2483
7597f129 2484 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9738b2c9
JR
2485 if (!nested_vmcb)
2486 return false;
2487
52c65a30
JR
2488 if (!nested_vmcb_checks(nested_vmcb)) {
2489 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
2490 nested_vmcb->control.exit_code_hi = 0;
2491 nested_vmcb->control.exit_info_1 = 0;
2492 nested_vmcb->control.exit_info_2 = 0;
2493
2494 nested_svm_unmap(page);
2495
2496 return false;
2497 }
2498
b75f4eb3 2499 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
0ac406de
JR
2500 nested_vmcb->save.rip,
2501 nested_vmcb->control.int_ctl,
2502 nested_vmcb->control.event_inj,
2503 nested_vmcb->control.nested_ctl);
2504
4ee546b4
RJ
2505 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
2506 nested_vmcb->control.intercept_cr >> 16,
2e554e8d
JR
2507 nested_vmcb->control.intercept_exceptions,
2508 nested_vmcb->control.intercept);
2509
3d6368ef 2510 /* Clear internal status */
219b65dc
AG
2511 kvm_clear_exception_queue(&svm->vcpu);
2512 kvm_clear_interrupt_queue(&svm->vcpu);
3d6368ef 2513
e0231715
JR
2514 /*
2515 * Save the old vmcb, so we don't need to pick what we save, but can
2516 * restore everything when a VMEXIT occurs
2517 */
defbba56
JR
2518 hsave->save.es = vmcb->save.es;
2519 hsave->save.cs = vmcb->save.cs;
2520 hsave->save.ss = vmcb->save.ss;
2521 hsave->save.ds = vmcb->save.ds;
2522 hsave->save.gdtr = vmcb->save.gdtr;
2523 hsave->save.idtr = vmcb->save.idtr;
f6801dff 2524 hsave->save.efer = svm->vcpu.arch.efer;
4d4ec087 2525 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
defbba56 2526 hsave->save.cr4 = svm->vcpu.arch.cr4;
f6e78475 2527 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
b75f4eb3 2528 hsave->save.rip = kvm_rip_read(&svm->vcpu);
defbba56
JR
2529 hsave->save.rsp = vmcb->save.rsp;
2530 hsave->save.rax = vmcb->save.rax;
2531 if (npt_enabled)
2532 hsave->save.cr3 = vmcb->save.cr3;
2533 else
9f8fe504 2534 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
defbba56 2535
0460a979 2536 copy_vmcb_control_area(hsave, vmcb);
3d6368ef 2537
f6e78475 2538 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
3d6368ef
AG
2539 svm->vcpu.arch.hflags |= HF_HIF_MASK;
2540 else
2541 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
2542
4b16184c
JR
2543 if (nested_vmcb->control.nested_ctl) {
2544 kvm_mmu_unload(&svm->vcpu);
2545 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
2546 nested_svm_init_mmu_context(&svm->vcpu);
2547 }
2548
3d6368ef
AG
2549 /* Load the nested guest state */
2550 svm->vmcb->save.es = nested_vmcb->save.es;
2551 svm->vmcb->save.cs = nested_vmcb->save.cs;
2552 svm->vmcb->save.ss = nested_vmcb->save.ss;
2553 svm->vmcb->save.ds = nested_vmcb->save.ds;
2554 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
2555 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
f6e78475 2556 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
3d6368ef
AG
2557 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
2558 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
2559 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
2560 if (npt_enabled) {
2561 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
2562 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
0e5cbe36 2563 } else
2390218b 2564 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
0e5cbe36
JR
2565
2566 /* Guest paging mode is active - reset mmu */
2567 kvm_mmu_reset_context(&svm->vcpu);
2568
defbba56 2569 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
3d6368ef
AG
2570 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
2571 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
2572 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
e0231715 2573
3d6368ef
AG
2574 /* In case we don't even reach vcpu_run, the fields are not updated */
2575 svm->vmcb->save.rax = nested_vmcb->save.rax;
2576 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
2577 svm->vmcb->save.rip = nested_vmcb->save.rip;
2578 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
2579 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
2580 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
2581
f7138538 2582 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
ce2ac085 2583 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
3d6368ef 2584
aad42c64 2585 /* cache intercepts */
4ee546b4 2586 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
3aed041a 2587 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
aad42c64
JR
2588 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
2589 svm->nested.intercept = nested_vmcb->control.intercept;
2590
f40f6a45 2591 svm_flush_tlb(&svm->vcpu);
3d6368ef 2592 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
3d6368ef
AG
2593 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
2594 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
2595 else
2596 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
2597
88ab24ad
JR
2598 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
2599 /* We only want the cr8 intercept bits of the guest */
4ee546b4
RJ
2600 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
2601 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
88ab24ad
JR
2602 }
2603
0d945bd9 2604 /* We don't want to see VMMCALLs from a nested guest */
8a05a1b8 2605 clr_intercept(svm, INTERCEPT_VMMCALL);
0d945bd9 2606
88ab24ad 2607 svm->vmcb->control.lbr_ctl = nested_vmcb->control.lbr_ctl;
3d6368ef
AG
2608 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
2609 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
2610 svm->vmcb->control.tsc_offset += nested_vmcb->control.tsc_offset;
3d6368ef
AG
2611 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
2612 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
2613
7597f129 2614 nested_svm_unmap(page);
9738b2c9 2615
2030753d
JR
2616 /* Enter Guest-Mode */
2617 enter_guest_mode(&svm->vcpu);
2618
384c6368
JR
2619 /*
2620 * Merge guest and host intercepts - must be called with vcpu in
2621 * guest-mode to take affect here
2622 */
2623 recalc_intercepts(svm);
2624
06fc7772 2625 svm->nested.vmcb = vmcb_gpa;
9738b2c9 2626
2af9194d 2627 enable_gif(svm);
3d6368ef 2628
8d28fec4
RJ
2629 mark_all_dirty(svm->vmcb);
2630
9738b2c9 2631 return true;
3d6368ef
AG
2632}
2633
9966bf68 2634static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
5542675b
AG
2635{
2636 to_vmcb->save.fs = from_vmcb->save.fs;
2637 to_vmcb->save.gs = from_vmcb->save.gs;
2638 to_vmcb->save.tr = from_vmcb->save.tr;
2639 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
2640 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
2641 to_vmcb->save.star = from_vmcb->save.star;
2642 to_vmcb->save.lstar = from_vmcb->save.lstar;
2643 to_vmcb->save.cstar = from_vmcb->save.cstar;
2644 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
2645 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
2646 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
2647 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
5542675b
AG
2648}
2649
851ba692 2650static int vmload_interception(struct vcpu_svm *svm)
5542675b 2651{
9966bf68 2652 struct vmcb *nested_vmcb;
7597f129 2653 struct page *page;
9966bf68 2654
5542675b
AG
2655 if (nested_svm_check_permissions(svm))
2656 return 1;
2657
7597f129 2658 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9966bf68
JR
2659 if (!nested_vmcb)
2660 return 1;
2661
e3e9ed3d
JR
2662 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2663 skip_emulated_instruction(&svm->vcpu);
2664
9966bf68 2665 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
7597f129 2666 nested_svm_unmap(page);
5542675b
AG
2667
2668 return 1;
2669}
2670
851ba692 2671static int vmsave_interception(struct vcpu_svm *svm)
5542675b 2672{
9966bf68 2673 struct vmcb *nested_vmcb;
7597f129 2674 struct page *page;
9966bf68 2675
5542675b
AG
2676 if (nested_svm_check_permissions(svm))
2677 return 1;
2678
7597f129 2679 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9966bf68
JR
2680 if (!nested_vmcb)
2681 return 1;
2682
e3e9ed3d
JR
2683 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2684 skip_emulated_instruction(&svm->vcpu);
2685
9966bf68 2686 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
7597f129 2687 nested_svm_unmap(page);
5542675b
AG
2688
2689 return 1;
2690}
2691
851ba692 2692static int vmrun_interception(struct vcpu_svm *svm)
3d6368ef 2693{
3d6368ef
AG
2694 if (nested_svm_check_permissions(svm))
2695 return 1;
2696
b75f4eb3
RJ
2697 /* Save rip after vmrun instruction */
2698 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
3d6368ef 2699
9738b2c9 2700 if (!nested_svm_vmrun(svm))
3d6368ef
AG
2701 return 1;
2702
9738b2c9 2703 if (!nested_svm_vmrun_msrpm(svm))
1f8da478
JR
2704 goto failed;
2705
2706 return 1;
2707
2708failed:
2709
2710 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
2711 svm->vmcb->control.exit_code_hi = 0;
2712 svm->vmcb->control.exit_info_1 = 0;
2713 svm->vmcb->control.exit_info_2 = 0;
2714
2715 nested_svm_vmexit(svm);
3d6368ef
AG
2716
2717 return 1;
2718}
2719
851ba692 2720static int stgi_interception(struct vcpu_svm *svm)
1371d904
AG
2721{
2722 if (nested_svm_check_permissions(svm))
2723 return 1;
2724
2725 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2726 skip_emulated_instruction(&svm->vcpu);
3842d135 2727 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
1371d904 2728
2af9194d 2729 enable_gif(svm);
1371d904
AG
2730
2731 return 1;
2732}
2733
851ba692 2734static int clgi_interception(struct vcpu_svm *svm)
1371d904
AG
2735{
2736 if (nested_svm_check_permissions(svm))
2737 return 1;
2738
2739 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2740 skip_emulated_instruction(&svm->vcpu);
2741
2af9194d 2742 disable_gif(svm);
1371d904
AG
2743
2744 /* After a CLGI no interrupts should come */
2745 svm_clear_vintr(svm);
2746 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
2747
decdbf6a
JR
2748 mark_dirty(svm->vmcb, VMCB_INTR);
2749
1371d904
AG
2750 return 1;
2751}
2752
851ba692 2753static int invlpga_interception(struct vcpu_svm *svm)
ff092385
AG
2754{
2755 struct kvm_vcpu *vcpu = &svm->vcpu;
ff092385 2756
ec1ff790
JR
2757 trace_kvm_invlpga(svm->vmcb->save.rip, vcpu->arch.regs[VCPU_REGS_RCX],
2758 vcpu->arch.regs[VCPU_REGS_RAX]);
2759
ff092385
AG
2760 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
2761 kvm_mmu_invlpg(vcpu, vcpu->arch.regs[VCPU_REGS_RAX]);
2762
2763 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2764 skip_emulated_instruction(&svm->vcpu);
2765 return 1;
2766}
2767
532a46b9
JR
2768static int skinit_interception(struct vcpu_svm *svm)
2769{
2770 trace_kvm_skinit(svm->vmcb->save.rip, svm->vcpu.arch.regs[VCPU_REGS_RAX]);
2771
2772 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2773 return 1;
2774}
2775
81dd35d4
JR
2776static int xsetbv_interception(struct vcpu_svm *svm)
2777{
2778 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
2779 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
2780
2781 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
2782 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2783 skip_emulated_instruction(&svm->vcpu);
2784 }
2785
2786 return 1;
2787}
2788
851ba692 2789static int task_switch_interception(struct vcpu_svm *svm)
6aa8b732 2790{
37817f29 2791 u16 tss_selector;
64a7ec06
GN
2792 int reason;
2793 int int_type = svm->vmcb->control.exit_int_info &
2794 SVM_EXITINTINFO_TYPE_MASK;
8317c298 2795 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
fe8e7f83
GN
2796 uint32_t type =
2797 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
2798 uint32_t idt_v =
2799 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
e269fb21
JK
2800 bool has_error_code = false;
2801 u32 error_code = 0;
37817f29
IE
2802
2803 tss_selector = (u16)svm->vmcb->control.exit_info_1;
64a7ec06 2804
37817f29
IE
2805 if (svm->vmcb->control.exit_info_2 &
2806 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
64a7ec06
GN
2807 reason = TASK_SWITCH_IRET;
2808 else if (svm->vmcb->control.exit_info_2 &
2809 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
2810 reason = TASK_SWITCH_JMP;
fe8e7f83 2811 else if (idt_v)
64a7ec06
GN
2812 reason = TASK_SWITCH_GATE;
2813 else
2814 reason = TASK_SWITCH_CALL;
2815
fe8e7f83
GN
2816 if (reason == TASK_SWITCH_GATE) {
2817 switch (type) {
2818 case SVM_EXITINTINFO_TYPE_NMI:
2819 svm->vcpu.arch.nmi_injected = false;
2820 break;
2821 case SVM_EXITINTINFO_TYPE_EXEPT:
e269fb21
JK
2822 if (svm->vmcb->control.exit_info_2 &
2823 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
2824 has_error_code = true;
2825 error_code =
2826 (u32)svm->vmcb->control.exit_info_2;
2827 }
fe8e7f83
GN
2828 kvm_clear_exception_queue(&svm->vcpu);
2829 break;
2830 case SVM_EXITINTINFO_TYPE_INTR:
2831 kvm_clear_interrupt_queue(&svm->vcpu);
2832 break;
2833 default:
2834 break;
2835 }
2836 }
64a7ec06 2837
8317c298
GN
2838 if (reason != TASK_SWITCH_GATE ||
2839 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
2840 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
f629cf84
GN
2841 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
2842 skip_emulated_instruction(&svm->vcpu);
64a7ec06 2843
7f3d35fd
KW
2844 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
2845 int_vec = -1;
2846
2847 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
acb54517
GN
2848 has_error_code, error_code) == EMULATE_FAIL) {
2849 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
2850 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
2851 svm->vcpu.run->internal.ndata = 0;
2852 return 0;
2853 }
2854 return 1;
6aa8b732
AK
2855}
2856
851ba692 2857static int cpuid_interception(struct vcpu_svm *svm)
6aa8b732 2858{
5fdbf976 2859 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
e756fc62 2860 kvm_emulate_cpuid(&svm->vcpu);
06465c5a 2861 return 1;
6aa8b732
AK
2862}
2863
851ba692 2864static int iret_interception(struct vcpu_svm *svm)
95ba8273
GN
2865{
2866 ++svm->vcpu.stat.nmi_window_exits;
8a05a1b8 2867 clr_intercept(svm, INTERCEPT_IRET);
44c11430 2868 svm->vcpu.arch.hflags |= HF_IRET_MASK;
bd3d1ec3 2869 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
f303b4ce 2870 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
95ba8273
GN
2871 return 1;
2872}
2873
851ba692 2874static int invlpg_interception(struct vcpu_svm *svm)
a7052897 2875{
df4f3108
AP
2876 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
2877 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
2878
2879 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
2880 skip_emulated_instruction(&svm->vcpu);
2881 return 1;
a7052897
MT
2882}
2883
851ba692 2884static int emulate_on_interception(struct vcpu_svm *svm)
6aa8b732 2885{
51d8b661 2886 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
6aa8b732
AK
2887}
2888
332b56e4
AK
2889static int rdpmc_interception(struct vcpu_svm *svm)
2890{
2891 int err;
2892
2893 if (!static_cpu_has(X86_FEATURE_NRIPS))
2894 return emulate_on_interception(svm);
2895
2896 err = kvm_rdpmc(&svm->vcpu);
2897 kvm_complete_insn_gp(&svm->vcpu, err);
2898
2899 return 1;
2900}
2901
628afd2a
JR
2902bool check_selective_cr0_intercepted(struct vcpu_svm *svm, unsigned long val)
2903{
2904 unsigned long cr0 = svm->vcpu.arch.cr0;
2905 bool ret = false;
2906 u64 intercept;
2907
2908 intercept = svm->nested.intercept;
2909
2910 if (!is_guest_mode(&svm->vcpu) ||
2911 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
2912 return false;
2913
2914 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
2915 val &= ~SVM_CR0_SELECTIVE_MASK;
2916
2917 if (cr0 ^ val) {
2918 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
2919 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
2920 }
2921
2922 return ret;
2923}
2924
7ff76d58
AP
2925#define CR_VALID (1ULL << 63)
2926
2927static int cr_interception(struct vcpu_svm *svm)
2928{
2929 int reg, cr;
2930 unsigned long val;
2931 int err;
2932
2933 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
2934 return emulate_on_interception(svm);
2935
2936 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
2937 return emulate_on_interception(svm);
2938
2939 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
2940 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
2941
2942 err = 0;
2943 if (cr >= 16) { /* mov to cr */
2944 cr -= 16;
2945 val = kvm_register_read(&svm->vcpu, reg);
2946 switch (cr) {
2947 case 0:
628afd2a
JR
2948 if (!check_selective_cr0_intercepted(svm, val))
2949 err = kvm_set_cr0(&svm->vcpu, val);
977b2d03
JR
2950 else
2951 return 1;
2952
7ff76d58
AP
2953 break;
2954 case 3:
2955 err = kvm_set_cr3(&svm->vcpu, val);
2956 break;
2957 case 4:
2958 err = kvm_set_cr4(&svm->vcpu, val);
2959 break;
2960 case 8:
2961 err = kvm_set_cr8(&svm->vcpu, val);
2962 break;
2963 default:
2964 WARN(1, "unhandled write to CR%d", cr);
2965 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2966 return 1;
2967 }
2968 } else { /* mov from cr */
2969 switch (cr) {
2970 case 0:
2971 val = kvm_read_cr0(&svm->vcpu);
2972 break;
2973 case 2:
2974 val = svm->vcpu.arch.cr2;
2975 break;
2976 case 3:
9f8fe504 2977 val = kvm_read_cr3(&svm->vcpu);
7ff76d58
AP
2978 break;
2979 case 4:
2980 val = kvm_read_cr4(&svm->vcpu);
2981 break;
2982 case 8:
2983 val = kvm_get_cr8(&svm->vcpu);
2984 break;
2985 default:
2986 WARN(1, "unhandled read from CR%d", cr);
2987 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2988 return 1;
2989 }
2990 kvm_register_write(&svm->vcpu, reg, val);
2991 }
2992 kvm_complete_insn_gp(&svm->vcpu, err);
2993
2994 return 1;
2995}
2996
cae3797a
AP
2997static int dr_interception(struct vcpu_svm *svm)
2998{
2999 int reg, dr;
3000 unsigned long val;
3001 int err;
3002
facb0139
PB
3003 if (svm->vcpu.guest_debug == 0) {
3004 /*
3005 * No more DR vmexits; force a reload of the debug registers
3006 * and reenter on this instruction. The next vmexit will
3007 * retrieve the full state of the debug registers.
3008 */
3009 clr_dr_intercepts(svm);
3010 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
3011 return 1;
3012 }
3013
cae3797a
AP
3014 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
3015 return emulate_on_interception(svm);
3016
3017 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
3018 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
3019
3020 if (dr >= 16) { /* mov to DRn */
3021 val = kvm_register_read(&svm->vcpu, reg);
3022 kvm_set_dr(&svm->vcpu, dr - 16, val);
3023 } else {
3024 err = kvm_get_dr(&svm->vcpu, dr, &val);
3025 if (!err)
3026 kvm_register_write(&svm->vcpu, reg, val);
3027 }
3028
2c46d2ae
JR
3029 skip_emulated_instruction(&svm->vcpu);
3030
cae3797a
AP
3031 return 1;
3032}
3033
851ba692 3034static int cr8_write_interception(struct vcpu_svm *svm)
1d075434 3035{
851ba692 3036 struct kvm_run *kvm_run = svm->vcpu.run;
eea1cff9 3037 int r;
851ba692 3038
0a5fff19
GN
3039 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
3040 /* instruction emulation calls kvm_set_cr8() */
7ff76d58 3041 r = cr_interception(svm);
596f3142 3042 if (irqchip_in_kernel(svm->vcpu.kvm))
7ff76d58 3043 return r;
0a5fff19 3044 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
7ff76d58 3045 return r;
1d075434
JR
3046 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
3047 return 0;
3048}
3049
48d89b92 3050static u64 svm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
d5c1785d
NHE
3051{
3052 struct vmcb *vmcb = get_host_vmcb(to_svm(vcpu));
3053 return vmcb->control.tsc_offset +
886b470c 3054 svm_scale_tsc(vcpu, host_tsc);
d5c1785d
NHE
3055}
3056
6aa8b732
AK
3057static int svm_get_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 *data)
3058{
a2fa3e9f
GH
3059 struct vcpu_svm *svm = to_svm(vcpu);
3060
6aa8b732 3061 switch (ecx) {
af24a4e4 3062 case MSR_IA32_TSC: {
45133eca 3063 *data = svm->vmcb->control.tsc_offset +
fbc0db76
JR
3064 svm_scale_tsc(vcpu, native_read_tsc());
3065
6aa8b732
AK
3066 break;
3067 }
8c06585d 3068 case MSR_STAR:
a2fa3e9f 3069 *data = svm->vmcb->save.star;
6aa8b732 3070 break;
0e859cac 3071#ifdef CONFIG_X86_64
6aa8b732 3072 case MSR_LSTAR:
a2fa3e9f 3073 *data = svm->vmcb->save.lstar;
6aa8b732
AK
3074 break;
3075 case MSR_CSTAR:
a2fa3e9f 3076 *data = svm->vmcb->save.cstar;
6aa8b732
AK
3077 break;
3078 case MSR_KERNEL_GS_BASE:
a2fa3e9f 3079 *data = svm->vmcb->save.kernel_gs_base;
6aa8b732
AK
3080 break;
3081 case MSR_SYSCALL_MASK:
a2fa3e9f 3082 *data = svm->vmcb->save.sfmask;
6aa8b732
AK
3083 break;
3084#endif
3085 case MSR_IA32_SYSENTER_CS:
a2fa3e9f 3086 *data = svm->vmcb->save.sysenter_cs;
6aa8b732
AK
3087 break;
3088 case MSR_IA32_SYSENTER_EIP:
017cb99e 3089 *data = svm->sysenter_eip;
6aa8b732
AK
3090 break;
3091 case MSR_IA32_SYSENTER_ESP:
017cb99e 3092 *data = svm->sysenter_esp;
6aa8b732 3093 break;
e0231715
JR
3094 /*
3095 * Nobody will change the following 5 values in the VMCB so we can
3096 * safely return them on rdmsr. They will always be 0 until LBRV is
3097 * implemented.
3098 */
a2938c80
JR
3099 case MSR_IA32_DEBUGCTLMSR:
3100 *data = svm->vmcb->save.dbgctl;
3101 break;
3102 case MSR_IA32_LASTBRANCHFROMIP:
3103 *data = svm->vmcb->save.br_from;
3104 break;
3105 case MSR_IA32_LASTBRANCHTOIP:
3106 *data = svm->vmcb->save.br_to;
3107 break;
3108 case MSR_IA32_LASTINTFROMIP:
3109 *data = svm->vmcb->save.last_excp_from;
3110 break;
3111 case MSR_IA32_LASTINTTOIP:
3112 *data = svm->vmcb->save.last_excp_to;
3113 break;
b286d5d8 3114 case MSR_VM_HSAVE_PA:
e6aa9abd 3115 *data = svm->nested.hsave_msr;
b286d5d8 3116 break;
eb6f302e 3117 case MSR_VM_CR:
4a810181 3118 *data = svm->nested.vm_cr_msr;
eb6f302e 3119 break;
c8a73f18
AG
3120 case MSR_IA32_UCODE_REV:
3121 *data = 0x01000065;
3122 break;
6aa8b732 3123 default:
3bab1f5d 3124 return kvm_get_msr_common(vcpu, ecx, data);
6aa8b732
AK
3125 }
3126 return 0;
3127}
3128
851ba692 3129static int rdmsr_interception(struct vcpu_svm *svm)
6aa8b732 3130{
ad312c7c 3131 u32 ecx = svm->vcpu.arch.regs[VCPU_REGS_RCX];
6aa8b732
AK
3132 u64 data;
3133
59200273
AK
3134 if (svm_get_msr(&svm->vcpu, ecx, &data)) {
3135 trace_kvm_msr_read_ex(ecx);
c1a5d4f9 3136 kvm_inject_gp(&svm->vcpu, 0);
59200273 3137 } else {
229456fc 3138 trace_kvm_msr_read(ecx, data);
af9ca2d7 3139
5fdbf976 3140 svm->vcpu.arch.regs[VCPU_REGS_RAX] = data & 0xffffffff;
ad312c7c 3141 svm->vcpu.arch.regs[VCPU_REGS_RDX] = data >> 32;
5fdbf976 3142 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
e756fc62 3143 skip_emulated_instruction(&svm->vcpu);
6aa8b732
AK
3144 }
3145 return 1;
3146}
3147
4a810181
JR
3148static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
3149{
3150 struct vcpu_svm *svm = to_svm(vcpu);
3151 int svm_dis, chg_mask;
3152
3153 if (data & ~SVM_VM_CR_VALID_MASK)
3154 return 1;
3155
3156 chg_mask = SVM_VM_CR_VALID_MASK;
3157
3158 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
3159 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
3160
3161 svm->nested.vm_cr_msr &= ~chg_mask;
3162 svm->nested.vm_cr_msr |= (data & chg_mask);
3163
3164 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
3165
3166 /* check for svm_disable while efer.svme is set */
3167 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
3168 return 1;
3169
3170 return 0;
3171}
3172
8fe8ab46 3173static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
6aa8b732 3174{
a2fa3e9f
GH
3175 struct vcpu_svm *svm = to_svm(vcpu);
3176
8fe8ab46
WA
3177 u32 ecx = msr->index;
3178 u64 data = msr->data;
6aa8b732 3179 switch (ecx) {
f4e1b3c8 3180 case MSR_IA32_TSC:
8fe8ab46 3181 kvm_write_tsc(vcpu, msr);
6aa8b732 3182 break;
8c06585d 3183 case MSR_STAR:
a2fa3e9f 3184 svm->vmcb->save.star = data;
6aa8b732 3185 break;
49b14f24 3186#ifdef CONFIG_X86_64
6aa8b732 3187 case MSR_LSTAR:
a2fa3e9f 3188 svm->vmcb->save.lstar = data;
6aa8b732
AK
3189 break;
3190 case MSR_CSTAR:
a2fa3e9f 3191 svm->vmcb->save.cstar = data;
6aa8b732
AK
3192 break;
3193 case MSR_KERNEL_GS_BASE:
a2fa3e9f 3194 svm->vmcb->save.kernel_gs_base = data;
6aa8b732
AK
3195 break;
3196 case MSR_SYSCALL_MASK:
a2fa3e9f 3197 svm->vmcb->save.sfmask = data;
6aa8b732
AK
3198 break;
3199#endif
3200 case MSR_IA32_SYSENTER_CS:
a2fa3e9f 3201 svm->vmcb->save.sysenter_cs = data;
6aa8b732
AK
3202 break;
3203 case MSR_IA32_SYSENTER_EIP:
017cb99e 3204 svm->sysenter_eip = data;
a2fa3e9f 3205 svm->vmcb->save.sysenter_eip = data;
6aa8b732
AK
3206 break;
3207 case MSR_IA32_SYSENTER_ESP:
017cb99e 3208 svm->sysenter_esp = data;
a2fa3e9f 3209 svm->vmcb->save.sysenter_esp = data;
6aa8b732 3210 break;
a2938c80 3211 case MSR_IA32_DEBUGCTLMSR:
2a6b20b8 3212 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
a737f256
CD
3213 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
3214 __func__, data);
24e09cbf
JR
3215 break;
3216 }
3217 if (data & DEBUGCTL_RESERVED_BITS)
3218 return 1;
3219
3220 svm->vmcb->save.dbgctl = data;
b53ba3f9 3221 mark_dirty(svm->vmcb, VMCB_LBR);
24e09cbf
JR
3222 if (data & (1ULL<<0))
3223 svm_enable_lbrv(svm);
3224 else
3225 svm_disable_lbrv(svm);
a2938c80 3226 break;
b286d5d8 3227 case MSR_VM_HSAVE_PA:
e6aa9abd 3228 svm->nested.hsave_msr = data;
62b9abaa 3229 break;
3c5d0a44 3230 case MSR_VM_CR:
4a810181 3231 return svm_set_vm_cr(vcpu, data);
3c5d0a44 3232 case MSR_VM_IGNNE:
a737f256 3233 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
3c5d0a44 3234 break;
6aa8b732 3235 default:
8fe8ab46 3236 return kvm_set_msr_common(vcpu, msr);
6aa8b732
AK
3237 }
3238 return 0;
3239}
3240
851ba692 3241static int wrmsr_interception(struct vcpu_svm *svm)
6aa8b732 3242{
8fe8ab46 3243 struct msr_data msr;
ad312c7c 3244 u32 ecx = svm->vcpu.arch.regs[VCPU_REGS_RCX];
5fdbf976 3245 u64 data = (svm->vcpu.arch.regs[VCPU_REGS_RAX] & -1u)
ad312c7c 3246 | ((u64)(svm->vcpu.arch.regs[VCPU_REGS_RDX] & -1u) << 32);
af9ca2d7 3247
8fe8ab46
WA
3248 msr.data = data;
3249 msr.index = ecx;
3250 msr.host_initiated = false;
af9ca2d7 3251
5fdbf976 3252 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
8fe8ab46 3253 if (svm_set_msr(&svm->vcpu, &msr)) {
59200273 3254 trace_kvm_msr_write_ex(ecx, data);
c1a5d4f9 3255 kvm_inject_gp(&svm->vcpu, 0);
59200273
AK
3256 } else {
3257 trace_kvm_msr_write(ecx, data);
e756fc62 3258 skip_emulated_instruction(&svm->vcpu);
59200273 3259 }
6aa8b732
AK
3260 return 1;
3261}
3262
851ba692 3263static int msr_interception(struct vcpu_svm *svm)
6aa8b732 3264{
e756fc62 3265 if (svm->vmcb->control.exit_info_1)
851ba692 3266 return wrmsr_interception(svm);
6aa8b732 3267 else
851ba692 3268 return rdmsr_interception(svm);
6aa8b732
AK
3269}
3270
851ba692 3271static int interrupt_window_interception(struct vcpu_svm *svm)
c1150d8c 3272{
851ba692
AK
3273 struct kvm_run *kvm_run = svm->vcpu.run;
3274
3842d135 3275 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
f0b85051 3276 svm_clear_vintr(svm);
85f455f7 3277 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
decdbf6a 3278 mark_dirty(svm->vmcb, VMCB_INTR);
675acb75 3279 ++svm->vcpu.stat.irq_window_exits;
c1150d8c
DL
3280 /*
3281 * If the user space waits to inject interrupts, exit as soon as
3282 * possible
3283 */
8061823a
GN
3284 if (!irqchip_in_kernel(svm->vcpu.kvm) &&
3285 kvm_run->request_interrupt_window &&
3286 !kvm_cpu_has_interrupt(&svm->vcpu)) {
c1150d8c
DL
3287 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
3288 return 0;
3289 }
3290
3291 return 1;
3292}
3293
565d0998
ML
3294static int pause_interception(struct vcpu_svm *svm)
3295{
3296 kvm_vcpu_on_spin(&(svm->vcpu));
3297 return 1;
3298}
3299
87c00572
GS
3300static int nop_interception(struct vcpu_svm *svm)
3301{
3302 skip_emulated_instruction(&(svm->vcpu));
3303 return 1;
3304}
3305
3306static int monitor_interception(struct vcpu_svm *svm)
3307{
3308 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
3309 return nop_interception(svm);
3310}
3311
3312static int mwait_interception(struct vcpu_svm *svm)
3313{
3314 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
3315 return nop_interception(svm);
3316}
3317
09941fbb 3318static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
7ff76d58
AP
3319 [SVM_EXIT_READ_CR0] = cr_interception,
3320 [SVM_EXIT_READ_CR3] = cr_interception,
3321 [SVM_EXIT_READ_CR4] = cr_interception,
3322 [SVM_EXIT_READ_CR8] = cr_interception,
d225157b 3323 [SVM_EXIT_CR0_SEL_WRITE] = emulate_on_interception,
628afd2a 3324 [SVM_EXIT_WRITE_CR0] = cr_interception,
7ff76d58
AP
3325 [SVM_EXIT_WRITE_CR3] = cr_interception,
3326 [SVM_EXIT_WRITE_CR4] = cr_interception,
e0231715 3327 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
cae3797a
AP
3328 [SVM_EXIT_READ_DR0] = dr_interception,
3329 [SVM_EXIT_READ_DR1] = dr_interception,
3330 [SVM_EXIT_READ_DR2] = dr_interception,
3331 [SVM_EXIT_READ_DR3] = dr_interception,
3332 [SVM_EXIT_READ_DR4] = dr_interception,
3333 [SVM_EXIT_READ_DR5] = dr_interception,
3334 [SVM_EXIT_READ_DR6] = dr_interception,
3335 [SVM_EXIT_READ_DR7] = dr_interception,
3336 [SVM_EXIT_WRITE_DR0] = dr_interception,
3337 [SVM_EXIT_WRITE_DR1] = dr_interception,
3338 [SVM_EXIT_WRITE_DR2] = dr_interception,
3339 [SVM_EXIT_WRITE_DR3] = dr_interception,
3340 [SVM_EXIT_WRITE_DR4] = dr_interception,
3341 [SVM_EXIT_WRITE_DR5] = dr_interception,
3342 [SVM_EXIT_WRITE_DR6] = dr_interception,
3343 [SVM_EXIT_WRITE_DR7] = dr_interception,
d0bfb940
JK
3344 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
3345 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
7aa81cc0 3346 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
e0231715
JR
3347 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
3348 [SVM_EXIT_EXCP_BASE + NM_VECTOR] = nm_interception,
3349 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
3350 [SVM_EXIT_INTR] = intr_interception,
c47f098d 3351 [SVM_EXIT_NMI] = nmi_interception,
6aa8b732
AK
3352 [SVM_EXIT_SMI] = nop_on_interception,
3353 [SVM_EXIT_INIT] = nop_on_interception,
c1150d8c 3354 [SVM_EXIT_VINTR] = interrupt_window_interception,
332b56e4 3355 [SVM_EXIT_RDPMC] = rdpmc_interception,
6aa8b732 3356 [SVM_EXIT_CPUID] = cpuid_interception,
95ba8273 3357 [SVM_EXIT_IRET] = iret_interception,
cf5a94d1 3358 [SVM_EXIT_INVD] = emulate_on_interception,
565d0998 3359 [SVM_EXIT_PAUSE] = pause_interception,
6aa8b732 3360 [SVM_EXIT_HLT] = halt_interception,
a7052897 3361 [SVM_EXIT_INVLPG] = invlpg_interception,
ff092385 3362 [SVM_EXIT_INVLPGA] = invlpga_interception,
e0231715 3363 [SVM_EXIT_IOIO] = io_interception,
6aa8b732
AK
3364 [SVM_EXIT_MSR] = msr_interception,
3365 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
46fe4ddd 3366 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
3d6368ef 3367 [SVM_EXIT_VMRUN] = vmrun_interception,
02e235bc 3368 [SVM_EXIT_VMMCALL] = vmmcall_interception,
5542675b
AG
3369 [SVM_EXIT_VMLOAD] = vmload_interception,
3370 [SVM_EXIT_VMSAVE] = vmsave_interception,
1371d904
AG
3371 [SVM_EXIT_STGI] = stgi_interception,
3372 [SVM_EXIT_CLGI] = clgi_interception,
532a46b9 3373 [SVM_EXIT_SKINIT] = skinit_interception,
cf5a94d1 3374 [SVM_EXIT_WBINVD] = emulate_on_interception,
87c00572
GS
3375 [SVM_EXIT_MONITOR] = monitor_interception,
3376 [SVM_EXIT_MWAIT] = mwait_interception,
81dd35d4 3377 [SVM_EXIT_XSETBV] = xsetbv_interception,
709ddebf 3378 [SVM_EXIT_NPF] = pf_interception,
6aa8b732
AK
3379};
3380
ae8cc059 3381static void dump_vmcb(struct kvm_vcpu *vcpu)
3f10c846
JR
3382{
3383 struct vcpu_svm *svm = to_svm(vcpu);
3384 struct vmcb_control_area *control = &svm->vmcb->control;
3385 struct vmcb_save_area *save = &svm->vmcb->save;
3386
3387 pr_err("VMCB Control Area:\n");
ae8cc059
JP
3388 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
3389 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
3390 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
3391 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
3392 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
3393 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
3394 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
3395 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
3396 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
3397 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
3398 pr_err("%-20s%d\n", "asid:", control->asid);
3399 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
3400 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
3401 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
3402 pr_err("%-20s%08x\n", "int_state:", control->int_state);
3403 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
3404 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
3405 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
3406 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
3407 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
3408 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
3409 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
3410 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
3411 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
3412 pr_err("%-20s%lld\n", "lbr_ctl:", control->lbr_ctl);
3413 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
3f10c846 3414 pr_err("VMCB State Save Area:\n");
ae8cc059
JP
3415 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3416 "es:",
3417 save->es.selector, save->es.attrib,
3418 save->es.limit, save->es.base);
3419 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3420 "cs:",
3421 save->cs.selector, save->cs.attrib,
3422 save->cs.limit, save->cs.base);
3423 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3424 "ss:",
3425 save->ss.selector, save->ss.attrib,
3426 save->ss.limit, save->ss.base);
3427 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3428 "ds:",
3429 save->ds.selector, save->ds.attrib,
3430 save->ds.limit, save->ds.base);
3431 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3432 "fs:",
3433 save->fs.selector, save->fs.attrib,
3434 save->fs.limit, save->fs.base);
3435 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3436 "gs:",
3437 save->gs.selector, save->gs.attrib,
3438 save->gs.limit, save->gs.base);
3439 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3440 "gdtr:",
3441 save->gdtr.selector, save->gdtr.attrib,
3442 save->gdtr.limit, save->gdtr.base);
3443 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3444 "ldtr:",
3445 save->ldtr.selector, save->ldtr.attrib,
3446 save->ldtr.limit, save->ldtr.base);
3447 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3448 "idtr:",
3449 save->idtr.selector, save->idtr.attrib,
3450 save->idtr.limit, save->idtr.base);
3451 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3452 "tr:",
3453 save->tr.selector, save->tr.attrib,
3454 save->tr.limit, save->tr.base);
3f10c846
JR
3455 pr_err("cpl: %d efer: %016llx\n",
3456 save->cpl, save->efer);
ae8cc059
JP
3457 pr_err("%-15s %016llx %-13s %016llx\n",
3458 "cr0:", save->cr0, "cr2:", save->cr2);
3459 pr_err("%-15s %016llx %-13s %016llx\n",
3460 "cr3:", save->cr3, "cr4:", save->cr4);
3461 pr_err("%-15s %016llx %-13s %016llx\n",
3462 "dr6:", save->dr6, "dr7:", save->dr7);
3463 pr_err("%-15s %016llx %-13s %016llx\n",
3464 "rip:", save->rip, "rflags:", save->rflags);
3465 pr_err("%-15s %016llx %-13s %016llx\n",
3466 "rsp:", save->rsp, "rax:", save->rax);
3467 pr_err("%-15s %016llx %-13s %016llx\n",
3468 "star:", save->star, "lstar:", save->lstar);
3469 pr_err("%-15s %016llx %-13s %016llx\n",
3470 "cstar:", save->cstar, "sfmask:", save->sfmask);
3471 pr_err("%-15s %016llx %-13s %016llx\n",
3472 "kernel_gs_base:", save->kernel_gs_base,
3473 "sysenter_cs:", save->sysenter_cs);
3474 pr_err("%-15s %016llx %-13s %016llx\n",
3475 "sysenter_esp:", save->sysenter_esp,
3476 "sysenter_eip:", save->sysenter_eip);
3477 pr_err("%-15s %016llx %-13s %016llx\n",
3478 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
3479 pr_err("%-15s %016llx %-13s %016llx\n",
3480 "br_from:", save->br_from, "br_to:", save->br_to);
3481 pr_err("%-15s %016llx %-13s %016llx\n",
3482 "excp_from:", save->last_excp_from,
3483 "excp_to:", save->last_excp_to);
3f10c846
JR
3484}
3485
586f9607
AK
3486static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
3487{
3488 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
3489
3490 *info1 = control->exit_info_1;
3491 *info2 = control->exit_info_2;
3492}
3493
851ba692 3494static int handle_exit(struct kvm_vcpu *vcpu)
6aa8b732 3495{
04d2cc77 3496 struct vcpu_svm *svm = to_svm(vcpu);
851ba692 3497 struct kvm_run *kvm_run = vcpu->run;
a2fa3e9f 3498 u32 exit_code = svm->vmcb->control.exit_code;
6aa8b732 3499
4ee546b4 3500 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
2be4fc7a
JR
3501 vcpu->arch.cr0 = svm->vmcb->save.cr0;
3502 if (npt_enabled)
3503 vcpu->arch.cr3 = svm->vmcb->save.cr3;
af9ca2d7 3504
cd3ff653
JR
3505 if (unlikely(svm->nested.exit_required)) {
3506 nested_svm_vmexit(svm);
3507 svm->nested.exit_required = false;
3508
3509 return 1;
3510 }
3511
2030753d 3512 if (is_guest_mode(vcpu)) {
410e4d57
JR
3513 int vmexit;
3514
d8cabddf
JR
3515 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
3516 svm->vmcb->control.exit_info_1,
3517 svm->vmcb->control.exit_info_2,
3518 svm->vmcb->control.exit_int_info,
e097e5ff
SH
3519 svm->vmcb->control.exit_int_info_err,
3520 KVM_ISA_SVM);
d8cabddf 3521
410e4d57
JR
3522 vmexit = nested_svm_exit_special(svm);
3523
3524 if (vmexit == NESTED_EXIT_CONTINUE)
3525 vmexit = nested_svm_exit_handled(svm);
3526
3527 if (vmexit == NESTED_EXIT_DONE)
cf74a78b 3528 return 1;
cf74a78b
AG
3529 }
3530
a5c3832d
JR
3531 svm_complete_interrupts(svm);
3532
04d2cc77
AK
3533 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
3534 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3535 kvm_run->fail_entry.hardware_entry_failure_reason
3536 = svm->vmcb->control.exit_code;
3f10c846
JR
3537 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
3538 dump_vmcb(vcpu);
04d2cc77
AK
3539 return 0;
3540 }
3541
a2fa3e9f 3542 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
709ddebf 3543 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
55c5e464
JR
3544 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
3545 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
6614c7d0 3546 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
6aa8b732 3547 "exit_code 0x%x\n",
b8688d51 3548 __func__, svm->vmcb->control.exit_int_info,
6aa8b732
AK
3549 exit_code);
3550
9d8f549d 3551 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
56919c5c 3552 || !svm_exit_handlers[exit_code]) {
6aa8b732 3553 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
364b625b 3554 kvm_run->hw.hardware_exit_reason = exit_code;
6aa8b732
AK
3555 return 0;
3556 }
3557
851ba692 3558 return svm_exit_handlers[exit_code](svm);
6aa8b732
AK
3559}
3560
3561static void reload_tss(struct kvm_vcpu *vcpu)
3562{
3563 int cpu = raw_smp_processor_id();
3564
0fe1e009
TH
3565 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
3566 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
6aa8b732
AK
3567 load_TR_desc();
3568}
3569
e756fc62 3570static void pre_svm_run(struct vcpu_svm *svm)
6aa8b732
AK
3571{
3572 int cpu = raw_smp_processor_id();
3573
0fe1e009 3574 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
6aa8b732 3575
4b656b12 3576 /* FIXME: handle wraparound of asid_generation */
0fe1e009
TH
3577 if (svm->asid_generation != sd->asid_generation)
3578 new_asid(svm, sd);
6aa8b732
AK
3579}
3580
95ba8273
GN
3581static void svm_inject_nmi(struct kvm_vcpu *vcpu)
3582{
3583 struct vcpu_svm *svm = to_svm(vcpu);
3584
3585 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
3586 vcpu->arch.hflags |= HF_NMI_MASK;
8a05a1b8 3587 set_intercept(svm, INTERCEPT_IRET);
95ba8273
GN
3588 ++vcpu->stat.nmi_injections;
3589}
6aa8b732 3590
85f455f7 3591static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
6aa8b732
AK
3592{
3593 struct vmcb_control_area *control;
3594
e756fc62 3595 control = &svm->vmcb->control;
85f455f7 3596 control->int_vector = irq;
6aa8b732
AK
3597 control->int_ctl &= ~V_INTR_PRIO_MASK;
3598 control->int_ctl |= V_IRQ_MASK |
3599 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
decdbf6a 3600 mark_dirty(svm->vmcb, VMCB_INTR);
6aa8b732
AK
3601}
3602
66fd3f7f 3603static void svm_set_irq(struct kvm_vcpu *vcpu)
2a8067f1
ED
3604{
3605 struct vcpu_svm *svm = to_svm(vcpu);
3606
2af9194d 3607 BUG_ON(!(gif_set(svm)));
cf74a78b 3608
9fb2d2b4
GN
3609 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
3610 ++vcpu->stat.irq_injections;
3611
219b65dc
AG
3612 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
3613 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
2a8067f1
ED
3614}
3615
95ba8273 3616static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
aaacfc9a
JR
3617{
3618 struct vcpu_svm *svm = to_svm(vcpu);
aaacfc9a 3619
2030753d 3620 if (is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK))
88ab24ad
JR
3621 return;
3622
596f3142
RK
3623 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
3624
95ba8273 3625 if (irr == -1)
aaacfc9a
JR
3626 return;
3627
95ba8273 3628 if (tpr >= irr)
4ee546b4 3629 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
95ba8273 3630}
aaacfc9a 3631
8d14695f
YZ
3632static void svm_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
3633{
3634 return;
3635}
3636
c7c9c56c
YZ
3637static int svm_vm_has_apicv(struct kvm *kvm)
3638{
3639 return 0;
3640}
3641
3642static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
3643{
3644 return;
3645}
3646
3647static void svm_hwapic_isr_update(struct kvm *kvm, int isr)
3648{
3649 return;
3650}
3651
a20ed54d
YZ
3652static void svm_sync_pir_to_irr(struct kvm_vcpu *vcpu)
3653{
3654 return;
3655}
3656
95ba8273
GN
3657static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
3658{
3659 struct vcpu_svm *svm = to_svm(vcpu);
3660 struct vmcb *vmcb = svm->vmcb;
924584cc
JR
3661 int ret;
3662 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
3663 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
3664 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
3665
3666 return ret;
aaacfc9a
JR
3667}
3668
3cfc3092
JK
3669static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
3670{
3671 struct vcpu_svm *svm = to_svm(vcpu);
3672
3673 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
3674}
3675
3676static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
3677{
3678 struct vcpu_svm *svm = to_svm(vcpu);
3679
3680 if (masked) {
3681 svm->vcpu.arch.hflags |= HF_NMI_MASK;
8a05a1b8 3682 set_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
3683 } else {
3684 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
8a05a1b8 3685 clr_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
3686 }
3687}
3688
78646121
GN
3689static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
3690{
3691 struct vcpu_svm *svm = to_svm(vcpu);
3692 struct vmcb *vmcb = svm->vmcb;
7fcdb510
JR
3693 int ret;
3694
3695 if (!gif_set(svm) ||
3696 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
3697 return 0;
3698
f6e78475 3699 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
7fcdb510 3700
2030753d 3701 if (is_guest_mode(vcpu))
7fcdb510
JR
3702 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
3703
3704 return ret;
78646121
GN
3705}
3706
c9a7953f 3707static void enable_irq_window(struct kvm_vcpu *vcpu)
6aa8b732 3708{
219b65dc 3709 struct vcpu_svm *svm = to_svm(vcpu);
219b65dc 3710
e0231715
JR
3711 /*
3712 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
3713 * 1, because that's a separate STGI/VMRUN intercept. The next time we
3714 * get that intercept, this function will be called again though and
3715 * we'll get the vintr intercept.
3716 */
8fe54654 3717 if (gif_set(svm) && nested_svm_intr(svm)) {
219b65dc
AG
3718 svm_set_vintr(svm);
3719 svm_inject_irq(svm, 0x0);
3720 }
85f455f7
ED
3721}
3722
c9a7953f 3723static void enable_nmi_window(struct kvm_vcpu *vcpu)
c1150d8c 3724{
04d2cc77 3725 struct vcpu_svm *svm = to_svm(vcpu);
c1150d8c 3726
44c11430
GN
3727 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
3728 == HF_NMI_MASK)
c9a7953f 3729 return; /* IRET will cause a vm exit */
44c11430 3730
e0231715
JR
3731 /*
3732 * Something prevents NMI from been injected. Single step over possible
3733 * problem (IRET or exception injection or interrupt shadow)
3734 */
6be7d306 3735 svm->nmi_singlestep = true;
44c11430 3736 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
c8639010 3737 update_db_bp_intercept(vcpu);
c1150d8c
DL
3738}
3739
cbc94022
IE
3740static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
3741{
3742 return 0;
3743}
3744
d9e368d6
AK
3745static void svm_flush_tlb(struct kvm_vcpu *vcpu)
3746{
38e5e92f
JR
3747 struct vcpu_svm *svm = to_svm(vcpu);
3748
3749 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
3750 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
3751 else
3752 svm->asid_generation--;
d9e368d6
AK
3753}
3754
04d2cc77
AK
3755static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
3756{
3757}
3758
d7bf8221
JR
3759static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
3760{
3761 struct vcpu_svm *svm = to_svm(vcpu);
3762
2030753d 3763 if (is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK))
88ab24ad
JR
3764 return;
3765
4ee546b4 3766 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
d7bf8221 3767 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
615d5193 3768 kvm_set_cr8(vcpu, cr8);
d7bf8221
JR
3769 }
3770}
3771
649d6864
JR
3772static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
3773{
3774 struct vcpu_svm *svm = to_svm(vcpu);
3775 u64 cr8;
3776
2030753d 3777 if (is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK))
88ab24ad
JR
3778 return;
3779
649d6864
JR
3780 cr8 = kvm_get_cr8(vcpu);
3781 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
3782 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
3783}
3784
9222be18
GN
3785static void svm_complete_interrupts(struct vcpu_svm *svm)
3786{
3787 u8 vector;
3788 int type;
3789 u32 exitintinfo = svm->vmcb->control.exit_int_info;
66b7138f
JK
3790 unsigned int3_injected = svm->int3_injected;
3791
3792 svm->int3_injected = 0;
9222be18 3793
bd3d1ec3
AK
3794 /*
3795 * If we've made progress since setting HF_IRET_MASK, we've
3796 * executed an IRET and can allow NMI injection.
3797 */
3798 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
3799 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
44c11430 3800 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
3842d135
AK
3801 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
3802 }
44c11430 3803
9222be18
GN
3804 svm->vcpu.arch.nmi_injected = false;
3805 kvm_clear_exception_queue(&svm->vcpu);
3806 kvm_clear_interrupt_queue(&svm->vcpu);
3807
3808 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
3809 return;
3810
3842d135
AK
3811 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
3812
9222be18
GN
3813 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
3814 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
3815
3816 switch (type) {
3817 case SVM_EXITINTINFO_TYPE_NMI:
3818 svm->vcpu.arch.nmi_injected = true;
3819 break;
3820 case SVM_EXITINTINFO_TYPE_EXEPT:
66b7138f
JK
3821 /*
3822 * In case of software exceptions, do not reinject the vector,
3823 * but re-execute the instruction instead. Rewind RIP first
3824 * if we emulated INT3 before.
3825 */
3826 if (kvm_exception_is_soft(vector)) {
3827 if (vector == BP_VECTOR && int3_injected &&
3828 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
3829 kvm_rip_write(&svm->vcpu,
3830 kvm_rip_read(&svm->vcpu) -
3831 int3_injected);
9222be18 3832 break;
66b7138f 3833 }
9222be18
GN
3834 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
3835 u32 err = svm->vmcb->control.exit_int_info_err;
ce7ddec4 3836 kvm_requeue_exception_e(&svm->vcpu, vector, err);
9222be18
GN
3837
3838 } else
ce7ddec4 3839 kvm_requeue_exception(&svm->vcpu, vector);
9222be18
GN
3840 break;
3841 case SVM_EXITINTINFO_TYPE_INTR:
66fd3f7f 3842 kvm_queue_interrupt(&svm->vcpu, vector, false);
9222be18
GN
3843 break;
3844 default:
3845 break;
3846 }
3847}
3848
b463a6f7
AK
3849static void svm_cancel_injection(struct kvm_vcpu *vcpu)
3850{
3851 struct vcpu_svm *svm = to_svm(vcpu);
3852 struct vmcb_control_area *control = &svm->vmcb->control;
3853
3854 control->exit_int_info = control->event_inj;
3855 control->exit_int_info_err = control->event_inj_err;
3856 control->event_inj = 0;
3857 svm_complete_interrupts(svm);
3858}
3859
851ba692 3860static void svm_vcpu_run(struct kvm_vcpu *vcpu)
6aa8b732 3861{
a2fa3e9f 3862 struct vcpu_svm *svm = to_svm(vcpu);
d9e368d6 3863
2041a06a
JR
3864 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
3865 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
3866 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
3867
cd3ff653
JR
3868 /*
3869 * A vmexit emulation is required before the vcpu can be executed
3870 * again.
3871 */
3872 if (unlikely(svm->nested.exit_required))
3873 return;
3874
e756fc62 3875 pre_svm_run(svm);
6aa8b732 3876
649d6864
JR
3877 sync_lapic_to_cr8(vcpu);
3878
cda0ffdd 3879 svm->vmcb->save.cr2 = vcpu->arch.cr2;
6aa8b732 3880
04d2cc77
AK
3881 clgi();
3882
3883 local_irq_enable();
36241b8c 3884
6aa8b732 3885 asm volatile (
7454766f
AK
3886 "push %%" _ASM_BP "; \n\t"
3887 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
3888 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
3889 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
3890 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
3891 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
3892 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
05b3e0c2 3893#ifdef CONFIG_X86_64
fb3f0f51
RR
3894 "mov %c[r8](%[svm]), %%r8 \n\t"
3895 "mov %c[r9](%[svm]), %%r9 \n\t"
3896 "mov %c[r10](%[svm]), %%r10 \n\t"
3897 "mov %c[r11](%[svm]), %%r11 \n\t"
3898 "mov %c[r12](%[svm]), %%r12 \n\t"
3899 "mov %c[r13](%[svm]), %%r13 \n\t"
3900 "mov %c[r14](%[svm]), %%r14 \n\t"
3901 "mov %c[r15](%[svm]), %%r15 \n\t"
6aa8b732
AK
3902#endif
3903
6aa8b732 3904 /* Enter guest mode */
7454766f
AK
3905 "push %%" _ASM_AX " \n\t"
3906 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
4ecac3fd
AK
3907 __ex(SVM_VMLOAD) "\n\t"
3908 __ex(SVM_VMRUN) "\n\t"
3909 __ex(SVM_VMSAVE) "\n\t"
7454766f 3910 "pop %%" _ASM_AX " \n\t"
6aa8b732
AK
3911
3912 /* Save guest registers, load host registers */
7454766f
AK
3913 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
3914 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
3915 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
3916 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
3917 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
3918 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
05b3e0c2 3919#ifdef CONFIG_X86_64
fb3f0f51
RR
3920 "mov %%r8, %c[r8](%[svm]) \n\t"
3921 "mov %%r9, %c[r9](%[svm]) \n\t"
3922 "mov %%r10, %c[r10](%[svm]) \n\t"
3923 "mov %%r11, %c[r11](%[svm]) \n\t"
3924 "mov %%r12, %c[r12](%[svm]) \n\t"
3925 "mov %%r13, %c[r13](%[svm]) \n\t"
3926 "mov %%r14, %c[r14](%[svm]) \n\t"
3927 "mov %%r15, %c[r15](%[svm]) \n\t"
6aa8b732 3928#endif
7454766f 3929 "pop %%" _ASM_BP
6aa8b732 3930 :
fb3f0f51 3931 : [svm]"a"(svm),
6aa8b732 3932 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
ad312c7c
ZX
3933 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
3934 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
3935 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
3936 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
3937 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
3938 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
05b3e0c2 3939#ifdef CONFIG_X86_64
ad312c7c
ZX
3940 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
3941 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
3942 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
3943 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
3944 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
3945 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
3946 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
3947 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
6aa8b732 3948#endif
54a08c04
LV
3949 : "cc", "memory"
3950#ifdef CONFIG_X86_64
7454766f 3951 , "rbx", "rcx", "rdx", "rsi", "rdi"
54a08c04 3952 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
7454766f
AK
3953#else
3954 , "ebx", "ecx", "edx", "esi", "edi"
54a08c04
LV
3955#endif
3956 );
6aa8b732 3957
82ca2d10
AK
3958#ifdef CONFIG_X86_64
3959 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
3960#else
dacccfdd 3961 loadsegment(fs, svm->host.fs);
831ca609
AK
3962#ifndef CONFIG_X86_32_LAZY_GS
3963 loadsegment(gs, svm->host.gs);
3964#endif
9581d442 3965#endif
6aa8b732
AK
3966
3967 reload_tss(vcpu);
3968
56ba47dd
AK
3969 local_irq_disable();
3970
13c34e07
AK
3971 vcpu->arch.cr2 = svm->vmcb->save.cr2;
3972 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
3973 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
3974 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
3975
1e2b1dd7
JK
3976 trace_kvm_exit(svm->vmcb->control.exit_code, vcpu, KVM_ISA_SVM);
3977
3781c01c
JR
3978 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
3979 kvm_before_handle_nmi(&svm->vcpu);
3980
3981 stgi();
3982
3983 /* Any pending NMI will happen here */
3984
3985 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
3986 kvm_after_handle_nmi(&svm->vcpu);
3987
d7bf8221
JR
3988 sync_cr8_to_lapic(vcpu);
3989
a2fa3e9f 3990 svm->next_rip = 0;
9222be18 3991
38e5e92f
JR
3992 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
3993
631bc487
GN
3994 /* if exit due to PF check for async PF */
3995 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
3996 svm->apf_reason = kvm_read_and_reset_pf_reason();
3997
6de4f3ad
AK
3998 if (npt_enabled) {
3999 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
4000 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
4001 }
fe5913e4
JR
4002
4003 /*
4004 * We need to handle MC intercepts here before the vcpu has a chance to
4005 * change the physical cpu
4006 */
4007 if (unlikely(svm->vmcb->control.exit_code ==
4008 SVM_EXIT_EXCP_BASE + MC_VECTOR))
4009 svm_handle_mce(svm);
8d28fec4
RJ
4010
4011 mark_all_clean(svm->vmcb);
6aa8b732
AK
4012}
4013
6aa8b732
AK
4014static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
4015{
a2fa3e9f
GH
4016 struct vcpu_svm *svm = to_svm(vcpu);
4017
4018 svm->vmcb->save.cr3 = root;
dcca1a65 4019 mark_dirty(svm->vmcb, VMCB_CR);
f40f6a45 4020 svm_flush_tlb(vcpu);
6aa8b732
AK
4021}
4022
1c97f0a0
JR
4023static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
4024{
4025 struct vcpu_svm *svm = to_svm(vcpu);
4026
4027 svm->vmcb->control.nested_cr3 = root;
b2747166 4028 mark_dirty(svm->vmcb, VMCB_NPT);
1c97f0a0
JR
4029
4030 /* Also sync guest cr3 here in case we live migrate */
9f8fe504 4031 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
dcca1a65 4032 mark_dirty(svm->vmcb, VMCB_CR);
1c97f0a0 4033
f40f6a45 4034 svm_flush_tlb(vcpu);
1c97f0a0
JR
4035}
4036
6aa8b732
AK
4037static int is_disabled(void)
4038{
6031a61c
JR
4039 u64 vm_cr;
4040
4041 rdmsrl(MSR_VM_CR, vm_cr);
4042 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
4043 return 1;
4044
6aa8b732
AK
4045 return 0;
4046}
4047
102d8325
IM
4048static void
4049svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4050{
4051 /*
4052 * Patch in the VMMCALL instruction:
4053 */
4054 hypercall[0] = 0x0f;
4055 hypercall[1] = 0x01;
4056 hypercall[2] = 0xd9;
102d8325
IM
4057}
4058
002c7f7c
YS
4059static void svm_check_processor_compat(void *rtn)
4060{
4061 *(int *)rtn = 0;
4062}
4063
774ead3a
AK
4064static bool svm_cpu_has_accelerated_tpr(void)
4065{
4066 return false;
4067}
4068
4b12f0de 4069static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
64d4d521
SY
4070{
4071 return 0;
4072}
4073
0e851880
SY
4074static void svm_cpuid_update(struct kvm_vcpu *vcpu)
4075{
4076}
4077
d4330ef2
JR
4078static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
4079{
c2c63a49 4080 switch (func) {
4c62a2dc
JR
4081 case 0x80000001:
4082 if (nested)
4083 entry->ecx |= (1 << 2); /* Set SVM bit */
4084 break;
c2c63a49
JR
4085 case 0x8000000A:
4086 entry->eax = 1; /* SVM revision 1 */
4087 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
4088 ASID emulation to nested SVM */
4089 entry->ecx = 0; /* Reserved */
7a190667
JR
4090 entry->edx = 0; /* Per default do not support any
4091 additional features */
4092
4093 /* Support next_rip if host supports it */
2a6b20b8 4094 if (boot_cpu_has(X86_FEATURE_NRIPS))
7a190667 4095 entry->edx |= SVM_FEATURE_NRIP;
c2c63a49 4096
3d4aeaad
JR
4097 /* Support NPT for the guest if enabled */
4098 if (npt_enabled)
4099 entry->edx |= SVM_FEATURE_NPT;
4100
c2c63a49
JR
4101 break;
4102 }
d4330ef2
JR
4103}
4104
17cc3935 4105static int svm_get_lpage_level(void)
344f414f 4106{
17cc3935 4107 return PT_PDPE_LEVEL;
344f414f
JR
4108}
4109
4e47c7a6
SY
4110static bool svm_rdtscp_supported(void)
4111{
4112 return false;
4113}
4114
ad756a16
MJ
4115static bool svm_invpcid_supported(void)
4116{
4117 return false;
4118}
4119
93c4adc7
PB
4120static bool svm_mpx_supported(void)
4121{
4122 return false;
4123}
4124
f5f48ee1
SY
4125static bool svm_has_wbinvd_exit(void)
4126{
4127 return true;
4128}
4129
02daab21
AK
4130static void svm_fpu_deactivate(struct kvm_vcpu *vcpu)
4131{
4132 struct vcpu_svm *svm = to_svm(vcpu);
4133
18c918c5 4134 set_exception_intercept(svm, NM_VECTOR);
66a562f7 4135 update_cr0_intercept(svm);
02daab21
AK
4136}
4137
8061252e 4138#define PRE_EX(exit) { .exit_code = (exit), \
40e19b51 4139 .stage = X86_ICPT_PRE_EXCEPT, }
cfec82cb 4140#define POST_EX(exit) { .exit_code = (exit), \
40e19b51 4141 .stage = X86_ICPT_POST_EXCEPT, }
d7eb8203 4142#define POST_MEM(exit) { .exit_code = (exit), \
40e19b51 4143 .stage = X86_ICPT_POST_MEMACCESS, }
cfec82cb 4144
09941fbb 4145static const struct __x86_intercept {
cfec82cb
JR
4146 u32 exit_code;
4147 enum x86_intercept_stage stage;
cfec82cb
JR
4148} x86_intercept_map[] = {
4149 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
4150 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
4151 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
4152 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
4153 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
3b88e41a
JR
4154 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
4155 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
dee6bb70
JR
4156 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
4157 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
4158 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
4159 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
4160 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
4161 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
4162 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
4163 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
01de8b09
JR
4164 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
4165 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
4166 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
4167 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
4168 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
4169 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
4170 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
4171 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
d7eb8203
JR
4172 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
4173 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
4174 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
8061252e
JR
4175 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
4176 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
4177 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
4178 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
4179 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
4180 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
4181 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
4182 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
4183 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
bf608f88
JR
4184 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
4185 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
4186 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
4187 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
4188 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
4189 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
4190 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
f6511935
JR
4191 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
4192 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
4193 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
4194 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
cfec82cb
JR
4195};
4196
8061252e 4197#undef PRE_EX
cfec82cb 4198#undef POST_EX
d7eb8203 4199#undef POST_MEM
cfec82cb 4200
8a76d7f2
JR
4201static int svm_check_intercept(struct kvm_vcpu *vcpu,
4202 struct x86_instruction_info *info,
4203 enum x86_intercept_stage stage)
4204{
cfec82cb
JR
4205 struct vcpu_svm *svm = to_svm(vcpu);
4206 int vmexit, ret = X86EMUL_CONTINUE;
4207 struct __x86_intercept icpt_info;
4208 struct vmcb *vmcb = svm->vmcb;
4209
4210 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
4211 goto out;
4212
4213 icpt_info = x86_intercept_map[info->intercept];
4214
40e19b51 4215 if (stage != icpt_info.stage)
cfec82cb
JR
4216 goto out;
4217
4218 switch (icpt_info.exit_code) {
4219 case SVM_EXIT_READ_CR0:
4220 if (info->intercept == x86_intercept_cr_read)
4221 icpt_info.exit_code += info->modrm_reg;
4222 break;
4223 case SVM_EXIT_WRITE_CR0: {
4224 unsigned long cr0, val;
4225 u64 intercept;
4226
4227 if (info->intercept == x86_intercept_cr_write)
4228 icpt_info.exit_code += info->modrm_reg;
4229
62baf44c
JK
4230 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
4231 info->intercept == x86_intercept_clts)
cfec82cb
JR
4232 break;
4233
4234 intercept = svm->nested.intercept;
4235
4236 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
4237 break;
4238
4239 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
4240 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
4241
4242 if (info->intercept == x86_intercept_lmsw) {
4243 cr0 &= 0xfUL;
4244 val &= 0xfUL;
4245 /* lmsw can't clear PE - catch this here */
4246 if (cr0 & X86_CR0_PE)
4247 val |= X86_CR0_PE;
4248 }
4249
4250 if (cr0 ^ val)
4251 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
4252
4253 break;
4254 }
3b88e41a
JR
4255 case SVM_EXIT_READ_DR0:
4256 case SVM_EXIT_WRITE_DR0:
4257 icpt_info.exit_code += info->modrm_reg;
4258 break;
8061252e
JR
4259 case SVM_EXIT_MSR:
4260 if (info->intercept == x86_intercept_wrmsr)
4261 vmcb->control.exit_info_1 = 1;
4262 else
4263 vmcb->control.exit_info_1 = 0;
4264 break;
bf608f88
JR
4265 case SVM_EXIT_PAUSE:
4266 /*
4267 * We get this for NOP only, but pause
4268 * is rep not, check this here
4269 */
4270 if (info->rep_prefix != REPE_PREFIX)
4271 goto out;
f6511935
JR
4272 case SVM_EXIT_IOIO: {
4273 u64 exit_info;
4274 u32 bytes;
4275
f6511935
JR
4276 if (info->intercept == x86_intercept_in ||
4277 info->intercept == x86_intercept_ins) {
6cbc5f5a
JK
4278 exit_info = ((info->src_val & 0xffff) << 16) |
4279 SVM_IOIO_TYPE_MASK;
f6511935 4280 bytes = info->dst_bytes;
6493f157 4281 } else {
6cbc5f5a 4282 exit_info = (info->dst_val & 0xffff) << 16;
6493f157 4283 bytes = info->src_bytes;
f6511935
JR
4284 }
4285
4286 if (info->intercept == x86_intercept_outs ||
4287 info->intercept == x86_intercept_ins)
4288 exit_info |= SVM_IOIO_STR_MASK;
4289
4290 if (info->rep_prefix)
4291 exit_info |= SVM_IOIO_REP_MASK;
4292
4293 bytes = min(bytes, 4u);
4294
4295 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
4296
4297 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
4298
4299 vmcb->control.exit_info_1 = exit_info;
4300 vmcb->control.exit_info_2 = info->next_rip;
4301
4302 break;
4303 }
cfec82cb
JR
4304 default:
4305 break;
4306 }
4307
4308 vmcb->control.next_rip = info->next_rip;
4309 vmcb->control.exit_code = icpt_info.exit_code;
4310 vmexit = nested_svm_exit_handled(svm);
4311
4312 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
4313 : X86EMUL_CONTINUE;
4314
4315out:
4316 return ret;
8a76d7f2
JR
4317}
4318
a547c6db
YZ
4319static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
4320{
4321 local_irq_enable();
4322}
4323
ae97a3b8
RK
4324static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
4325{
4326}
4327
cbdd1bea 4328static struct kvm_x86_ops svm_x86_ops = {
6aa8b732
AK
4329 .cpu_has_kvm_support = has_svm,
4330 .disabled_by_bios = is_disabled,
4331 .hardware_setup = svm_hardware_setup,
4332 .hardware_unsetup = svm_hardware_unsetup,
002c7f7c 4333 .check_processor_compatibility = svm_check_processor_compat,
6aa8b732
AK
4334 .hardware_enable = svm_hardware_enable,
4335 .hardware_disable = svm_hardware_disable,
774ead3a 4336 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
6aa8b732
AK
4337
4338 .vcpu_create = svm_create_vcpu,
4339 .vcpu_free = svm_free_vcpu,
04d2cc77 4340 .vcpu_reset = svm_vcpu_reset,
6aa8b732 4341
04d2cc77 4342 .prepare_guest_switch = svm_prepare_guest_switch,
6aa8b732
AK
4343 .vcpu_load = svm_vcpu_load,
4344 .vcpu_put = svm_vcpu_put,
4345
c8639010 4346 .update_db_bp_intercept = update_db_bp_intercept,
6aa8b732
AK
4347 .get_msr = svm_get_msr,
4348 .set_msr = svm_set_msr,
4349 .get_segment_base = svm_get_segment_base,
4350 .get_segment = svm_get_segment,
4351 .set_segment = svm_set_segment,
2e4d2653 4352 .get_cpl = svm_get_cpl,
1747fb71 4353 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
e8467fda 4354 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
aff48baa 4355 .decache_cr3 = svm_decache_cr3,
25c4c276 4356 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
6aa8b732 4357 .set_cr0 = svm_set_cr0,
6aa8b732
AK
4358 .set_cr3 = svm_set_cr3,
4359 .set_cr4 = svm_set_cr4,
4360 .set_efer = svm_set_efer,
4361 .get_idt = svm_get_idt,
4362 .set_idt = svm_set_idt,
4363 .get_gdt = svm_get_gdt,
4364 .set_gdt = svm_set_gdt,
73aaf249
JK
4365 .get_dr6 = svm_get_dr6,
4366 .set_dr6 = svm_set_dr6,
020df079 4367 .set_dr7 = svm_set_dr7,
facb0139 4368 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
6de4f3ad 4369 .cache_reg = svm_cache_reg,
6aa8b732
AK
4370 .get_rflags = svm_get_rflags,
4371 .set_rflags = svm_set_rflags,
02daab21 4372 .fpu_deactivate = svm_fpu_deactivate,
6aa8b732 4373
6aa8b732 4374 .tlb_flush = svm_flush_tlb,
6aa8b732 4375
6aa8b732 4376 .run = svm_vcpu_run,
04d2cc77 4377 .handle_exit = handle_exit,
6aa8b732 4378 .skip_emulated_instruction = skip_emulated_instruction,
2809f5d2
GC
4379 .set_interrupt_shadow = svm_set_interrupt_shadow,
4380 .get_interrupt_shadow = svm_get_interrupt_shadow,
102d8325 4381 .patch_hypercall = svm_patch_hypercall,
2a8067f1 4382 .set_irq = svm_set_irq,
95ba8273 4383 .set_nmi = svm_inject_nmi,
298101da 4384 .queue_exception = svm_queue_exception,
b463a6f7 4385 .cancel_injection = svm_cancel_injection,
78646121 4386 .interrupt_allowed = svm_interrupt_allowed,
95ba8273 4387 .nmi_allowed = svm_nmi_allowed,
3cfc3092
JK
4388 .get_nmi_mask = svm_get_nmi_mask,
4389 .set_nmi_mask = svm_set_nmi_mask,
95ba8273
GN
4390 .enable_nmi_window = enable_nmi_window,
4391 .enable_irq_window = enable_irq_window,
4392 .update_cr8_intercept = update_cr8_intercept,
8d14695f 4393 .set_virtual_x2apic_mode = svm_set_virtual_x2apic_mode,
c7c9c56c
YZ
4394 .vm_has_apicv = svm_vm_has_apicv,
4395 .load_eoi_exitmap = svm_load_eoi_exitmap,
4396 .hwapic_isr_update = svm_hwapic_isr_update,
a20ed54d 4397 .sync_pir_to_irr = svm_sync_pir_to_irr,
cbc94022
IE
4398
4399 .set_tss_addr = svm_set_tss_addr,
67253af5 4400 .get_tdp_level = get_npt_level,
4b12f0de 4401 .get_mt_mask = svm_get_mt_mask,
229456fc 4402
586f9607 4403 .get_exit_info = svm_get_exit_info,
586f9607 4404
17cc3935 4405 .get_lpage_level = svm_get_lpage_level,
0e851880
SY
4406
4407 .cpuid_update = svm_cpuid_update,
4e47c7a6
SY
4408
4409 .rdtscp_supported = svm_rdtscp_supported,
ad756a16 4410 .invpcid_supported = svm_invpcid_supported,
93c4adc7 4411 .mpx_supported = svm_mpx_supported,
d4330ef2
JR
4412
4413 .set_supported_cpuid = svm_set_supported_cpuid,
f5f48ee1
SY
4414
4415 .has_wbinvd_exit = svm_has_wbinvd_exit,
99e3e30a 4416
4051b188 4417 .set_tsc_khz = svm_set_tsc_khz,
ba904635 4418 .read_tsc_offset = svm_read_tsc_offset,
99e3e30a 4419 .write_tsc_offset = svm_write_tsc_offset,
e48672fa 4420 .adjust_tsc_offset = svm_adjust_tsc_offset,
857e4099 4421 .compute_tsc_offset = svm_compute_tsc_offset,
d5c1785d 4422 .read_l1_tsc = svm_read_l1_tsc,
1c97f0a0
JR
4423
4424 .set_tdp_cr3 = set_tdp_cr3,
8a76d7f2
JR
4425
4426 .check_intercept = svm_check_intercept,
a547c6db 4427 .handle_external_intr = svm_handle_external_intr,
ae97a3b8
RK
4428
4429 .sched_in = svm_sched_in,
6aa8b732
AK
4430};
4431
4432static int __init svm_init(void)
4433{
cb498ea2 4434 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
0ee75bea 4435 __alignof__(struct vcpu_svm), THIS_MODULE);
6aa8b732
AK
4436}
4437
4438static void __exit svm_exit(void)
4439{
cb498ea2 4440 kvm_exit();
6aa8b732
AK
4441}
4442
4443module_init(svm_init)
4444module_exit(svm_exit)