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