Loading...
1/*
2 * Fault injection for both 32 and 64bit guests.
3 *
4 * Copyright (C) 2012,2013 - ARM Ltd
5 * Author: Marc Zyngier <marc.zyngier@arm.com>
6 *
7 * Based on arch/arm/kvm/emulate.c
8 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
9 * Author: Christoffer Dall <c.dall@virtualopensystems.com>
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24#include <linux/kvm_host.h>
25#include <asm/kvm_emulate.h>
26#include <asm/esr.h>
27
28#define PSTATE_FAULT_BITS_64 (PSR_MODE_EL1h | PSR_A_BIT | PSR_F_BIT | \
29 PSR_I_BIT | PSR_D_BIT)
30
31#define CURRENT_EL_SP_EL0_VECTOR 0x0
32#define CURRENT_EL_SP_ELx_VECTOR 0x200
33#define LOWER_EL_AArch64_VECTOR 0x400
34#define LOWER_EL_AArch32_VECTOR 0x600
35
36enum exception_type {
37 except_type_sync = 0,
38 except_type_irq = 0x80,
39 except_type_fiq = 0x100,
40 except_type_serror = 0x180,
41};
42
43static u64 get_except_vector(struct kvm_vcpu *vcpu, enum exception_type type)
44{
45 u64 exc_offset;
46
47 switch (*vcpu_cpsr(vcpu) & (PSR_MODE_MASK | PSR_MODE32_BIT)) {
48 case PSR_MODE_EL1t:
49 exc_offset = CURRENT_EL_SP_EL0_VECTOR;
50 break;
51 case PSR_MODE_EL1h:
52 exc_offset = CURRENT_EL_SP_ELx_VECTOR;
53 break;
54 case PSR_MODE_EL0t:
55 exc_offset = LOWER_EL_AArch64_VECTOR;
56 break;
57 default:
58 exc_offset = LOWER_EL_AArch32_VECTOR;
59 }
60
61 return vcpu_read_sys_reg(vcpu, VBAR_EL1) + exc_offset + type;
62}
63
64static void inject_abt64(struct kvm_vcpu *vcpu, bool is_iabt, unsigned long addr)
65{
66 unsigned long cpsr = *vcpu_cpsr(vcpu);
67 bool is_aarch32 = vcpu_mode_is_32bit(vcpu);
68 u32 esr = 0;
69
70 vcpu_write_elr_el1(vcpu, *vcpu_pc(vcpu));
71 *vcpu_pc(vcpu) = get_except_vector(vcpu, except_type_sync);
72
73 *vcpu_cpsr(vcpu) = PSTATE_FAULT_BITS_64;
74 vcpu_write_spsr(vcpu, cpsr);
75
76 vcpu_write_sys_reg(vcpu, addr, FAR_EL1);
77
78 /*
79 * Build an {i,d}abort, depending on the level and the
80 * instruction set. Report an external synchronous abort.
81 */
82 if (kvm_vcpu_trap_il_is32bit(vcpu))
83 esr |= ESR_ELx_IL;
84
85 /*
86 * Here, the guest runs in AArch64 mode when in EL1. If we get
87 * an AArch32 fault, it means we managed to trap an EL0 fault.
88 */
89 if (is_aarch32 || (cpsr & PSR_MODE_MASK) == PSR_MODE_EL0t)
90 esr |= (ESR_ELx_EC_IABT_LOW << ESR_ELx_EC_SHIFT);
91 else
92 esr |= (ESR_ELx_EC_IABT_CUR << ESR_ELx_EC_SHIFT);
93
94 if (!is_iabt)
95 esr |= ESR_ELx_EC_DABT_LOW << ESR_ELx_EC_SHIFT;
96
97 vcpu_write_sys_reg(vcpu, esr | ESR_ELx_FSC_EXTABT, ESR_EL1);
98}
99
100static void inject_undef64(struct kvm_vcpu *vcpu)
101{
102 unsigned long cpsr = *vcpu_cpsr(vcpu);
103 u32 esr = (ESR_ELx_EC_UNKNOWN << ESR_ELx_EC_SHIFT);
104
105 vcpu_write_elr_el1(vcpu, *vcpu_pc(vcpu));
106 *vcpu_pc(vcpu) = get_except_vector(vcpu, except_type_sync);
107
108 *vcpu_cpsr(vcpu) = PSTATE_FAULT_BITS_64;
109 vcpu_write_spsr(vcpu, cpsr);
110
111 /*
112 * Build an unknown exception, depending on the instruction
113 * set.
114 */
115 if (kvm_vcpu_trap_il_is32bit(vcpu))
116 esr |= ESR_ELx_IL;
117
118 vcpu_write_sys_reg(vcpu, esr, ESR_EL1);
119}
120
121/**
122 * kvm_inject_dabt - inject a data abort into the guest
123 * @vcpu: The VCPU to receive the undefined exception
124 * @addr: The address to report in the DFAR
125 *
126 * It is assumed that this code is called from the VCPU thread and that the
127 * VCPU therefore is not currently executing guest code.
128 */
129void kvm_inject_dabt(struct kvm_vcpu *vcpu, unsigned long addr)
130{
131 if (vcpu_el1_is_32bit(vcpu))
132 kvm_inject_dabt32(vcpu, addr);
133 else
134 inject_abt64(vcpu, false, addr);
135}
136
137/**
138 * kvm_inject_pabt - inject a prefetch abort into the guest
139 * @vcpu: The VCPU to receive the undefined exception
140 * @addr: The address to report in the DFAR
141 *
142 * It is assumed that this code is called from the VCPU thread and that the
143 * VCPU therefore is not currently executing guest code.
144 */
145void kvm_inject_pabt(struct kvm_vcpu *vcpu, unsigned long addr)
146{
147 if (vcpu_el1_is_32bit(vcpu))
148 kvm_inject_pabt32(vcpu, addr);
149 else
150 inject_abt64(vcpu, true, addr);
151}
152
153/**
154 * kvm_inject_undefined - inject an undefined instruction into the guest
155 *
156 * It is assumed that this code is called from the VCPU thread and that the
157 * VCPU therefore is not currently executing guest code.
158 */
159void kvm_inject_undefined(struct kvm_vcpu *vcpu)
160{
161 if (vcpu_el1_is_32bit(vcpu))
162 kvm_inject_undef32(vcpu);
163 else
164 inject_undef64(vcpu);
165}
166
167static void pend_guest_serror(struct kvm_vcpu *vcpu, u64 esr)
168{
169 vcpu_set_vsesr(vcpu, esr);
170 *vcpu_hcr(vcpu) |= HCR_VSE;
171}
172
173/**
174 * kvm_inject_vabt - inject an async abort / SError into the guest
175 * @vcpu: The VCPU to receive the exception
176 *
177 * It is assumed that this code is called from the VCPU thread and that the
178 * VCPU therefore is not currently executing guest code.
179 *
180 * Systems with the RAS Extensions specify an imp-def ESR (ISV/IDS = 1) with
181 * the remaining ISS all-zeros so that this error is not interpreted as an
182 * uncategorized RAS error. Without the RAS Extensions we can't specify an ESR
183 * value, so the CPU generates an imp-def value.
184 */
185void kvm_inject_vabt(struct kvm_vcpu *vcpu)
186{
187 pend_guest_serror(vcpu, ESR_ELx_ISV);
188}
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/kvm_nested.h>
16#include <asm/esr.h>
17
18static void pend_sync_exception(struct kvm_vcpu *vcpu)
19{
20 /* If not nesting, EL1 is the only possible exception target */
21 if (likely(!vcpu_has_nv(vcpu))) {
22 kvm_pend_exception(vcpu, EXCEPT_AA64_EL1_SYNC);
23 return;
24 }
25
26 /*
27 * With NV, we need to pick between EL1 and EL2. Note that we
28 * never deal with a nesting exception here, hence never
29 * changing context, and the exception itself can be delayed
30 * until the next entry.
31 */
32 switch(*vcpu_cpsr(vcpu) & PSR_MODE_MASK) {
33 case PSR_MODE_EL2h:
34 case PSR_MODE_EL2t:
35 kvm_pend_exception(vcpu, EXCEPT_AA64_EL2_SYNC);
36 break;
37 case PSR_MODE_EL1h:
38 case PSR_MODE_EL1t:
39 kvm_pend_exception(vcpu, EXCEPT_AA64_EL1_SYNC);
40 break;
41 case PSR_MODE_EL0t:
42 if (vcpu_el2_tge_is_set(vcpu))
43 kvm_pend_exception(vcpu, EXCEPT_AA64_EL2_SYNC);
44 else
45 kvm_pend_exception(vcpu, EXCEPT_AA64_EL1_SYNC);
46 break;
47 default:
48 BUG();
49 }
50}
51
52static bool match_target_el(struct kvm_vcpu *vcpu, unsigned long target)
53{
54 return (vcpu_get_flag(vcpu, EXCEPT_MASK) == target);
55}
56
57static void inject_abt64(struct kvm_vcpu *vcpu, bool is_iabt, unsigned long addr)
58{
59 unsigned long cpsr = *vcpu_cpsr(vcpu);
60 bool is_aarch32 = vcpu_mode_is_32bit(vcpu);
61 u64 esr = 0;
62
63 pend_sync_exception(vcpu);
64
65 /*
66 * Build an {i,d}abort, depending on the level and the
67 * instruction set. Report an external synchronous abort.
68 */
69 if (kvm_vcpu_trap_il_is32bit(vcpu))
70 esr |= ESR_ELx_IL;
71
72 /*
73 * Here, the guest runs in AArch64 mode when in EL1. If we get
74 * an AArch32 fault, it means we managed to trap an EL0 fault.
75 */
76 if (is_aarch32 || (cpsr & PSR_MODE_MASK) == PSR_MODE_EL0t)
77 esr |= (ESR_ELx_EC_IABT_LOW << ESR_ELx_EC_SHIFT);
78 else
79 esr |= (ESR_ELx_EC_IABT_CUR << ESR_ELx_EC_SHIFT);
80
81 if (!is_iabt)
82 esr |= ESR_ELx_EC_DABT_LOW << ESR_ELx_EC_SHIFT;
83
84 esr |= ESR_ELx_FSC_EXTABT;
85
86 if (match_target_el(vcpu, unpack_vcpu_flag(EXCEPT_AA64_EL1_SYNC))) {
87 vcpu_write_sys_reg(vcpu, addr, FAR_EL1);
88 vcpu_write_sys_reg(vcpu, esr, ESR_EL1);
89 } else {
90 vcpu_write_sys_reg(vcpu, addr, FAR_EL2);
91 vcpu_write_sys_reg(vcpu, esr, ESR_EL2);
92 }
93}
94
95static void inject_undef64(struct kvm_vcpu *vcpu)
96{
97 u64 esr = (ESR_ELx_EC_UNKNOWN << ESR_ELx_EC_SHIFT);
98
99 pend_sync_exception(vcpu);
100
101 /*
102 * Build an unknown exception, depending on the instruction
103 * set.
104 */
105 if (kvm_vcpu_trap_il_is32bit(vcpu))
106 esr |= ESR_ELx_IL;
107
108 if (match_target_el(vcpu, unpack_vcpu_flag(EXCEPT_AA64_EL1_SYNC)))
109 vcpu_write_sys_reg(vcpu, esr, ESR_EL1);
110 else
111 vcpu_write_sys_reg(vcpu, esr, ESR_EL2);
112}
113
114#define DFSR_FSC_EXTABT_LPAE 0x10
115#define DFSR_FSC_EXTABT_nLPAE 0x08
116#define DFSR_LPAE BIT(9)
117#define TTBCR_EAE BIT(31)
118
119static void inject_undef32(struct kvm_vcpu *vcpu)
120{
121 kvm_pend_exception(vcpu, EXCEPT_AA32_UND);
122}
123
124/*
125 * Modelled after TakeDataAbortException() and TakePrefetchAbortException
126 * pseudocode.
127 */
128static void inject_abt32(struct kvm_vcpu *vcpu, bool is_pabt, u32 addr)
129{
130 u64 far;
131 u32 fsr;
132
133 /* Give the guest an IMPLEMENTATION DEFINED exception */
134 if (vcpu_read_sys_reg(vcpu, TCR_EL1) & TTBCR_EAE) {
135 fsr = DFSR_LPAE | DFSR_FSC_EXTABT_LPAE;
136 } else {
137 /* no need to shuffle FS[4] into DFSR[10] as its 0 */
138 fsr = DFSR_FSC_EXTABT_nLPAE;
139 }
140
141 far = vcpu_read_sys_reg(vcpu, FAR_EL1);
142
143 if (is_pabt) {
144 kvm_pend_exception(vcpu, EXCEPT_AA32_IABT);
145 far &= GENMASK(31, 0);
146 far |= (u64)addr << 32;
147 vcpu_write_sys_reg(vcpu, fsr, IFSR32_EL2);
148 } else { /* !iabt */
149 kvm_pend_exception(vcpu, EXCEPT_AA32_DABT);
150 far &= GENMASK(63, 32);
151 far |= addr;
152 vcpu_write_sys_reg(vcpu, fsr, ESR_EL1);
153 }
154
155 vcpu_write_sys_reg(vcpu, far, FAR_EL1);
156}
157
158/**
159 * kvm_inject_dabt - inject a data abort into the guest
160 * @vcpu: The VCPU to receive the data abort
161 * @addr: The address to report in the DFAR
162 *
163 * It is assumed that this code is called from the VCPU thread and that the
164 * VCPU therefore is not currently executing guest code.
165 */
166void kvm_inject_dabt(struct kvm_vcpu *vcpu, unsigned long addr)
167{
168 if (vcpu_el1_is_32bit(vcpu))
169 inject_abt32(vcpu, false, addr);
170 else
171 inject_abt64(vcpu, false, addr);
172}
173
174/**
175 * kvm_inject_pabt - inject a prefetch abort into the guest
176 * @vcpu: The VCPU to receive the prefetch abort
177 * @addr: The address to report in the DFAR
178 *
179 * It is assumed that this code is called from the VCPU thread and that the
180 * VCPU therefore is not currently executing guest code.
181 */
182void kvm_inject_pabt(struct kvm_vcpu *vcpu, unsigned long addr)
183{
184 if (vcpu_el1_is_32bit(vcpu))
185 inject_abt32(vcpu, true, addr);
186 else
187 inject_abt64(vcpu, true, addr);
188}
189
190void kvm_inject_size_fault(struct kvm_vcpu *vcpu)
191{
192 unsigned long addr, esr;
193
194 addr = kvm_vcpu_get_fault_ipa(vcpu);
195 addr |= kvm_vcpu_get_hfar(vcpu) & GENMASK(11, 0);
196
197 if (kvm_vcpu_trap_is_iabt(vcpu))
198 kvm_inject_pabt(vcpu, addr);
199 else
200 kvm_inject_dabt(vcpu, addr);
201
202 /*
203 * If AArch64 or LPAE, set FSC to 0 to indicate an Address
204 * Size Fault at level 0, as if exceeding PARange.
205 *
206 * Non-LPAE guests will only get the external abort, as there
207 * is no way to describe the ASF.
208 */
209 if (vcpu_el1_is_32bit(vcpu) &&
210 !(vcpu_read_sys_reg(vcpu, TCR_EL1) & TTBCR_EAE))
211 return;
212
213 esr = vcpu_read_sys_reg(vcpu, ESR_EL1);
214 esr &= ~GENMASK_ULL(5, 0);
215 vcpu_write_sys_reg(vcpu, esr, ESR_EL1);
216}
217
218/**
219 * kvm_inject_undefined - inject an undefined instruction into the guest
220 * @vcpu: The vCPU in which to inject the exception
221 *
222 * It is assumed that this code is called from the VCPU thread and that the
223 * VCPU therefore is not currently executing guest code.
224 */
225void kvm_inject_undefined(struct kvm_vcpu *vcpu)
226{
227 if (vcpu_el1_is_32bit(vcpu))
228 inject_undef32(vcpu);
229 else
230 inject_undef64(vcpu);
231}
232
233void kvm_set_sei_esr(struct kvm_vcpu *vcpu, u64 esr)
234{
235 vcpu_set_vsesr(vcpu, esr & ESR_ELx_ISS_MASK);
236 *vcpu_hcr(vcpu) |= HCR_VSE;
237}
238
239/**
240 * kvm_inject_vabt - inject an async abort / SError into the guest
241 * @vcpu: The VCPU to receive the exception
242 *
243 * It is assumed that this code is called from the VCPU thread and that the
244 * VCPU therefore is not currently executing guest code.
245 *
246 * Systems with the RAS Extensions specify an imp-def ESR (ISV/IDS = 1) with
247 * the remaining ISS all-zeros so that this error is not interpreted as an
248 * uncategorized RAS error. Without the RAS Extensions we can't specify an ESR
249 * value, so the CPU generates an imp-def value.
250 */
251void kvm_inject_vabt(struct kvm_vcpu *vcpu)
252{
253 kvm_set_sei_esr(vcpu, ESR_ELx_ISV);
254}