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