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