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