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