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