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