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