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