Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Fault injection for both 32 and 64bit guests.
4 *
5 * Copyright (C) 2012,2013 - ARM Ltd
6 * Author: Marc Zyngier <marc.zyngier@arm.com>
7 *
8 * Based on arch/arm/kvm/emulate.c
9 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
10 * Author: Christoffer Dall <c.dall@virtualopensystems.com>
11 */
12
13#include <linux/kvm_host.h>
14#include <asm/kvm_emulate.h>
15#include <asm/esr.h>
16
17#define PSTATE_FAULT_BITS_64 (PSR_MODE_EL1h | PSR_A_BIT | PSR_F_BIT | \
18 PSR_I_BIT | PSR_D_BIT)
19
20#define CURRENT_EL_SP_EL0_VECTOR 0x0
21#define CURRENT_EL_SP_ELx_VECTOR 0x200
22#define LOWER_EL_AArch64_VECTOR 0x400
23#define LOWER_EL_AArch32_VECTOR 0x600
24
25enum exception_type {
26 except_type_sync = 0,
27 except_type_irq = 0x80,
28 except_type_fiq = 0x100,
29 except_type_serror = 0x180,
30};
31
32static u64 get_except_vector(struct kvm_vcpu *vcpu, enum exception_type type)
33{
34 u64 exc_offset;
35
36 switch (*vcpu_cpsr(vcpu) & (PSR_MODE_MASK | PSR_MODE32_BIT)) {
37 case PSR_MODE_EL1t:
38 exc_offset = CURRENT_EL_SP_EL0_VECTOR;
39 break;
40 case PSR_MODE_EL1h:
41 exc_offset = CURRENT_EL_SP_ELx_VECTOR;
42 break;
43 case PSR_MODE_EL0t:
44 exc_offset = LOWER_EL_AArch64_VECTOR;
45 break;
46 default:
47 exc_offset = LOWER_EL_AArch32_VECTOR;
48 }
49
50 return vcpu_read_sys_reg(vcpu, VBAR_EL1) + exc_offset + type;
51}
52
53static void inject_abt64(struct kvm_vcpu *vcpu, bool is_iabt, unsigned long addr)
54{
55 unsigned long cpsr = *vcpu_cpsr(vcpu);
56 bool is_aarch32 = vcpu_mode_is_32bit(vcpu);
57 u32 esr = 0;
58
59 vcpu_write_elr_el1(vcpu, *vcpu_pc(vcpu));
60 *vcpu_pc(vcpu) = get_except_vector(vcpu, except_type_sync);
61
62 *vcpu_cpsr(vcpu) = PSTATE_FAULT_BITS_64;
63 vcpu_write_spsr(vcpu, cpsr);
64
65 vcpu_write_sys_reg(vcpu, addr, FAR_EL1);
66
67 /*
68 * Build an {i,d}abort, depending on the level and the
69 * instruction set. Report an external synchronous abort.
70 */
71 if (kvm_vcpu_trap_il_is32bit(vcpu))
72 esr |= ESR_ELx_IL;
73
74 /*
75 * Here, the guest runs in AArch64 mode when in EL1. If we get
76 * an AArch32 fault, it means we managed to trap an EL0 fault.
77 */
78 if (is_aarch32 || (cpsr & PSR_MODE_MASK) == PSR_MODE_EL0t)
79 esr |= (ESR_ELx_EC_IABT_LOW << ESR_ELx_EC_SHIFT);
80 else
81 esr |= (ESR_ELx_EC_IABT_CUR << ESR_ELx_EC_SHIFT);
82
83 if (!is_iabt)
84 esr |= ESR_ELx_EC_DABT_LOW << ESR_ELx_EC_SHIFT;
85
86 vcpu_write_sys_reg(vcpu, esr | ESR_ELx_FSC_EXTABT, ESR_EL1);
87}
88
89static void inject_undef64(struct kvm_vcpu *vcpu)
90{
91 unsigned long cpsr = *vcpu_cpsr(vcpu);
92 u32 esr = (ESR_ELx_EC_UNKNOWN << ESR_ELx_EC_SHIFT);
93
94 vcpu_write_elr_el1(vcpu, *vcpu_pc(vcpu));
95 *vcpu_pc(vcpu) = get_except_vector(vcpu, except_type_sync);
96
97 *vcpu_cpsr(vcpu) = PSTATE_FAULT_BITS_64;
98 vcpu_write_spsr(vcpu, cpsr);
99
100 /*
101 * Build an unknown exception, depending on the instruction
102 * set.
103 */
104 if (kvm_vcpu_trap_il_is32bit(vcpu))
105 esr |= ESR_ELx_IL;
106
107 vcpu_write_sys_reg(vcpu, esr, ESR_EL1);
108}
109
110/**
111 * kvm_inject_dabt - inject a data abort into the guest
112 * @vcpu: The VCPU to receive the undefined exception
113 * @addr: The address to report in the DFAR
114 *
115 * It is assumed that this code is called from the VCPU thread and that the
116 * VCPU therefore is not currently executing guest code.
117 */
118void kvm_inject_dabt(struct kvm_vcpu *vcpu, unsigned long addr)
119{
120 if (vcpu_el1_is_32bit(vcpu))
121 kvm_inject_dabt32(vcpu, addr);
122 else
123 inject_abt64(vcpu, false, addr);
124}
125
126/**
127 * kvm_inject_pabt - inject a prefetch abort into the guest
128 * @vcpu: The VCPU to receive the undefined exception
129 * @addr: The address to report in the DFAR
130 *
131 * It is assumed that this code is called from the VCPU thread and that the
132 * VCPU therefore is not currently executing guest code.
133 */
134void kvm_inject_pabt(struct kvm_vcpu *vcpu, unsigned long addr)
135{
136 if (vcpu_el1_is_32bit(vcpu))
137 kvm_inject_pabt32(vcpu, addr);
138 else
139 inject_abt64(vcpu, true, addr);
140}
141
142/**
143 * kvm_inject_undefined - inject an undefined instruction into the guest
144 *
145 * It is assumed that this code is called from the VCPU thread and that the
146 * VCPU therefore is not currently executing guest code.
147 */
148void kvm_inject_undefined(struct kvm_vcpu *vcpu)
149{
150 if (vcpu_el1_is_32bit(vcpu))
151 kvm_inject_undef32(vcpu);
152 else
153 inject_undef64(vcpu);
154}
155
156void kvm_set_sei_esr(struct kvm_vcpu *vcpu, u64 esr)
157{
158 vcpu_set_vsesr(vcpu, esr & ESR_ELx_ISS_MASK);
159 *vcpu_hcr(vcpu) |= HCR_VSE;
160}
161
162/**
163 * kvm_inject_vabt - inject an async abort / SError into the guest
164 * @vcpu: The VCPU to receive the exception
165 *
166 * It is assumed that this code is called from the VCPU thread and that the
167 * VCPU therefore is not currently executing guest code.
168 *
169 * Systems with the RAS Extensions specify an imp-def ESR (ISV/IDS = 1) with
170 * the remaining ISS all-zeros so that this error is not interpreted as an
171 * uncategorized RAS error. Without the RAS Extensions we can't specify an ESR
172 * value, so the CPU generates an imp-def value.
173 */
174void kvm_inject_vabt(struct kvm_vcpu *vcpu)
175{
176 kvm_set_sei_esr(vcpu, ESR_ELx_ISV);
177}
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Fault injection for both 32 and 64bit guests.
4 *
5 * Copyright (C) 2012,2013 - ARM Ltd
6 * Author: Marc Zyngier <marc.zyngier@arm.com>
7 *
8 * Based on arch/arm/kvm/emulate.c
9 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
10 * Author: Christoffer Dall <c.dall@virtualopensystems.com>
11 */
12
13#include <linux/kvm_host.h>
14#include <asm/kvm_emulate.h>
15#include <asm/esr.h>
16
17static void inject_abt64(struct kvm_vcpu *vcpu, bool is_iabt, unsigned long addr)
18{
19 unsigned long cpsr = *vcpu_cpsr(vcpu);
20 bool is_aarch32 = vcpu_mode_is_32bit(vcpu);
21 u64 esr = 0;
22
23 kvm_pend_exception(vcpu, EXCEPT_AA64_EL1_SYNC);
24
25 vcpu_write_sys_reg(vcpu, addr, FAR_EL1);
26
27 /*
28 * Build an {i,d}abort, depending on the level and the
29 * instruction set. Report an external synchronous abort.
30 */
31 if (kvm_vcpu_trap_il_is32bit(vcpu))
32 esr |= ESR_ELx_IL;
33
34 /*
35 * Here, the guest runs in AArch64 mode when in EL1. If we get
36 * an AArch32 fault, it means we managed to trap an EL0 fault.
37 */
38 if (is_aarch32 || (cpsr & PSR_MODE_MASK) == PSR_MODE_EL0t)
39 esr |= (ESR_ELx_EC_IABT_LOW << ESR_ELx_EC_SHIFT);
40 else
41 esr |= (ESR_ELx_EC_IABT_CUR << ESR_ELx_EC_SHIFT);
42
43 if (!is_iabt)
44 esr |= ESR_ELx_EC_DABT_LOW << ESR_ELx_EC_SHIFT;
45
46 vcpu_write_sys_reg(vcpu, esr | ESR_ELx_FSC_EXTABT, ESR_EL1);
47}
48
49static void inject_undef64(struct kvm_vcpu *vcpu)
50{
51 u64 esr = (ESR_ELx_EC_UNKNOWN << ESR_ELx_EC_SHIFT);
52
53 kvm_pend_exception(vcpu, EXCEPT_AA64_EL1_SYNC);
54
55 /*
56 * Build an unknown exception, depending on the instruction
57 * set.
58 */
59 if (kvm_vcpu_trap_il_is32bit(vcpu))
60 esr |= ESR_ELx_IL;
61
62 vcpu_write_sys_reg(vcpu, esr, ESR_EL1);
63}
64
65#define DFSR_FSC_EXTABT_LPAE 0x10
66#define DFSR_FSC_EXTABT_nLPAE 0x08
67#define DFSR_LPAE BIT(9)
68#define TTBCR_EAE BIT(31)
69
70static void inject_undef32(struct kvm_vcpu *vcpu)
71{
72 kvm_pend_exception(vcpu, EXCEPT_AA32_UND);
73}
74
75/*
76 * Modelled after TakeDataAbortException() and TakePrefetchAbortException
77 * pseudocode.
78 */
79static void inject_abt32(struct kvm_vcpu *vcpu, bool is_pabt, u32 addr)
80{
81 u64 far;
82 u32 fsr;
83
84 /* Give the guest an IMPLEMENTATION DEFINED exception */
85 if (vcpu_read_sys_reg(vcpu, TCR_EL1) & TTBCR_EAE) {
86 fsr = DFSR_LPAE | DFSR_FSC_EXTABT_LPAE;
87 } else {
88 /* no need to shuffle FS[4] into DFSR[10] as its 0 */
89 fsr = DFSR_FSC_EXTABT_nLPAE;
90 }
91
92 far = vcpu_read_sys_reg(vcpu, FAR_EL1);
93
94 if (is_pabt) {
95 kvm_pend_exception(vcpu, EXCEPT_AA32_IABT);
96 far &= GENMASK(31, 0);
97 far |= (u64)addr << 32;
98 vcpu_write_sys_reg(vcpu, fsr, IFSR32_EL2);
99 } else { /* !iabt */
100 kvm_pend_exception(vcpu, EXCEPT_AA32_DABT);
101 far &= GENMASK(63, 32);
102 far |= addr;
103 vcpu_write_sys_reg(vcpu, fsr, ESR_EL1);
104 }
105
106 vcpu_write_sys_reg(vcpu, far, FAR_EL1);
107}
108
109/**
110 * kvm_inject_dabt - inject a data abort into the guest
111 * @vcpu: The VCPU to receive the data abort
112 * @addr: The address to report in the DFAR
113 *
114 * It is assumed that this code is called from the VCPU thread and that the
115 * VCPU therefore is not currently executing guest code.
116 */
117void kvm_inject_dabt(struct kvm_vcpu *vcpu, unsigned long addr)
118{
119 if (vcpu_el1_is_32bit(vcpu))
120 inject_abt32(vcpu, false, addr);
121 else
122 inject_abt64(vcpu, false, addr);
123}
124
125/**
126 * kvm_inject_pabt - inject a prefetch abort into the guest
127 * @vcpu: The VCPU to receive the prefetch abort
128 * @addr: The address to report in the DFAR
129 *
130 * It is assumed that this code is called from the VCPU thread and that the
131 * VCPU therefore is not currently executing guest code.
132 */
133void kvm_inject_pabt(struct kvm_vcpu *vcpu, unsigned long addr)
134{
135 if (vcpu_el1_is_32bit(vcpu))
136 inject_abt32(vcpu, true, addr);
137 else
138 inject_abt64(vcpu, true, addr);
139}
140
141void kvm_inject_size_fault(struct kvm_vcpu *vcpu)
142{
143 unsigned long addr, esr;
144
145 addr = kvm_vcpu_get_fault_ipa(vcpu);
146 addr |= kvm_vcpu_get_hfar(vcpu) & GENMASK(11, 0);
147
148 if (kvm_vcpu_trap_is_iabt(vcpu))
149 kvm_inject_pabt(vcpu, addr);
150 else
151 kvm_inject_dabt(vcpu, addr);
152
153 /*
154 * If AArch64 or LPAE, set FSC to 0 to indicate an Address
155 * Size Fault at level 0, as if exceeding PARange.
156 *
157 * Non-LPAE guests will only get the external abort, as there
158 * is no way to to describe the ASF.
159 */
160 if (vcpu_el1_is_32bit(vcpu) &&
161 !(vcpu_read_sys_reg(vcpu, TCR_EL1) & TTBCR_EAE))
162 return;
163
164 esr = vcpu_read_sys_reg(vcpu, ESR_EL1);
165 esr &= ~GENMASK_ULL(5, 0);
166 vcpu_write_sys_reg(vcpu, esr, ESR_EL1);
167}
168
169/**
170 * kvm_inject_undefined - inject an undefined instruction into the guest
171 * @vcpu: The vCPU in which to inject the exception
172 *
173 * It is assumed that this code is called from the VCPU thread and that the
174 * VCPU therefore is not currently executing guest code.
175 */
176void kvm_inject_undefined(struct kvm_vcpu *vcpu)
177{
178 if (vcpu_el1_is_32bit(vcpu))
179 inject_undef32(vcpu);
180 else
181 inject_undef64(vcpu);
182}
183
184void kvm_set_sei_esr(struct kvm_vcpu *vcpu, u64 esr)
185{
186 vcpu_set_vsesr(vcpu, esr & ESR_ELx_ISS_MASK);
187 *vcpu_hcr(vcpu) |= HCR_VSE;
188}
189
190/**
191 * kvm_inject_vabt - inject an async abort / SError into the guest
192 * @vcpu: The VCPU to receive the exception
193 *
194 * It is assumed that this code is called from the VCPU thread and that the
195 * VCPU therefore is not currently executing guest code.
196 *
197 * Systems with the RAS Extensions specify an imp-def ESR (ISV/IDS = 1) with
198 * the remaining ISS all-zeros so that this error is not interpreted as an
199 * uncategorized RAS error. Without the RAS Extensions we can't specify an ESR
200 * value, so the CPU generates an imp-def value.
201 */
202void kvm_inject_vabt(struct kvm_vcpu *vcpu)
203{
204 kvm_set_sei_esr(vcpu, ESR_ELx_ISV);
205}