1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 2017 Arm Ltd.
3 #define pr_fmt(fmt) "sdei: " fmt
5 #include <linux/arm-smccc.h>
6 #include <linux/arm_sdei.h>
7 #include <linux/hardirq.h>
8 #include <linux/irqflags.h>
9 #include <linux/sched/task_stack.h>
10 #include <linux/uaccess.h>
12 #include <asm/alternative.h>
13 #include <asm/kprobes.h>
15 #include <asm/ptrace.h>
16 #include <asm/sections.h>
17 #include <asm/stacktrace.h>
18 #include <asm/sysreg.h>
19 #include <asm/vmap_stack.h>
21 unsigned long sdei_exit_mode
;
24 * VMAP'd stacks checking for stack overflow on exception using sp as a scratch
25 * register, meaning SDEI has to switch to its own stack. We need two stacks as
26 * a critical event may interrupt a normal event that has just taken a
27 * synchronous exception, and is using sp as scratch register. For a critical
28 * event interrupting a normal event, we can't reliably tell if we were on the
30 * For now, we allocate stacks when the driver is probed.
32 DECLARE_PER_CPU(unsigned long *, sdei_stack_normal_ptr
);
33 DECLARE_PER_CPU(unsigned long *, sdei_stack_critical_ptr
);
35 #ifdef CONFIG_VMAP_STACK
36 DEFINE_PER_CPU(unsigned long *, sdei_stack_normal_ptr
);
37 DEFINE_PER_CPU(unsigned long *, sdei_stack_critical_ptr
);
40 static void _free_sdei_stack(unsigned long * __percpu
*ptr
, int cpu
)
44 p
= per_cpu(*ptr
, cpu
);
46 per_cpu(*ptr
, cpu
) = NULL
;
51 static void free_sdei_stacks(void)
55 for_each_possible_cpu(cpu
) {
56 _free_sdei_stack(&sdei_stack_normal_ptr
, cpu
);
57 _free_sdei_stack(&sdei_stack_critical_ptr
, cpu
);
61 static int _init_sdei_stack(unsigned long * __percpu
*ptr
, int cpu
)
65 p
= arch_alloc_vmap_stack(SDEI_STACK_SIZE
, cpu_to_node(cpu
));
68 per_cpu(*ptr
, cpu
) = p
;
73 static int init_sdei_stacks(void)
78 for_each_possible_cpu(cpu
) {
79 err
= _init_sdei_stack(&sdei_stack_normal_ptr
, cpu
);
82 err
= _init_sdei_stack(&sdei_stack_critical_ptr
, cpu
);
93 static bool on_sdei_normal_stack(unsigned long sp
, struct stack_info
*info
)
95 unsigned long low
= (unsigned long)raw_cpu_read(sdei_stack_normal_ptr
);
96 unsigned long high
= low
+ SDEI_STACK_SIZE
;
101 if (sp
< low
|| sp
>= high
)
107 info
->type
= STACK_TYPE_SDEI_NORMAL
;
113 static bool on_sdei_critical_stack(unsigned long sp
, struct stack_info
*info
)
115 unsigned long low
= (unsigned long)raw_cpu_read(sdei_stack_critical_ptr
);
116 unsigned long high
= low
+ SDEI_STACK_SIZE
;
121 if (sp
< low
|| sp
>= high
)
127 info
->type
= STACK_TYPE_SDEI_CRITICAL
;
133 bool _on_sdei_stack(unsigned long sp
, struct stack_info
*info
)
135 if (!IS_ENABLED(CONFIG_VMAP_STACK
))
138 if (on_sdei_critical_stack(sp
, info
))
141 if (on_sdei_normal_stack(sp
, info
))
147 unsigned long sdei_arch_get_entry_point(int conduit
)
150 * SDEI works between adjacent exception levels. If we booted at EL1 we
151 * assume a hypervisor is marshalling events. If we booted at EL2 and
152 * dropped to EL1 because we don't support VHE, then we can't support
155 if (is_hyp_mode_available() && !is_kernel_in_hyp_mode()) {
156 pr_err("Not supported on this hardware/boot configuration\n");
160 if (IS_ENABLED(CONFIG_VMAP_STACK
)) {
161 if (init_sdei_stacks())
165 sdei_exit_mode
= (conduit
== SMCCC_CONDUIT_HVC
) ? SDEI_EXIT_HVC
: SDEI_EXIT_SMC
;
167 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
168 if (arm64_kernel_unmapped_at_el0()) {
169 unsigned long offset
;
171 offset
= (unsigned long)__sdei_asm_entry_trampoline
-
172 (unsigned long)__entry_tramp_text_start
;
173 return TRAMP_VALIAS
+ offset
;
175 #endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
176 return (unsigned long)__sdei_asm_handler
;
181 * __sdei_handler() returns one of:
182 * SDEI_EV_HANDLED - success, return to the interrupted context.
183 * SDEI_EV_FAILED - failure, return this error code to firmare.
184 * virtual-address - success, return to this address.
186 static __kprobes
unsigned long _sdei_handler(struct pt_regs
*regs
,
187 struct sdei_registered_event
*arg
)
191 int clobbered_registers
= 4;
192 u64 elr
= read_sysreg(elr_el1
);
193 u32 kernel_mode
= read_sysreg(CurrentEL
) | 1; /* +SPSel */
194 unsigned long vbar
= read_sysreg(vbar_el1
);
196 if (arm64_kernel_unmapped_at_el0())
197 clobbered_registers
++;
199 /* Retrieve the missing registers values */
200 for (i
= 0; i
< clobbered_registers
; i
++) {
201 /* from within the handler, this call always succeeds */
202 sdei_api_event_context(i
, ®s
->regs
[i
]);
206 * We didn't take an exception to get here, set PAN. UAO will be cleared
207 * by sdei_event_handler()s set_fs(USER_DS) call.
209 __uaccess_enable_hw_pan();
211 err
= sdei_event_handler(regs
, arg
);
213 return SDEI_EV_FAILED
;
215 if (elr
!= read_sysreg(elr_el1
)) {
217 * We took a synchronous exception from the SDEI handler.
218 * This could deadlock, and if you interrupt KVM it will
221 pr_warn("unsafe: exception during handler\n");
224 mode
= regs
->pstate
& (PSR_MODE32_BIT
| PSR_MODE_MASK
);
227 * If we interrupted the kernel with interrupts masked, we always go
228 * back to wherever we came from.
230 if (mode
== kernel_mode
&& !interrupts_enabled(regs
))
231 return SDEI_EV_HANDLED
;
234 * Otherwise, we pretend this was an IRQ. This lets user space tasks
235 * receive signals before we return to them, and KVM to invoke it's
236 * world switch to do the same.
238 * See DDI0487B.a Table D1-7 'Vector offsets from vector table base
241 if (mode
== kernel_mode
)
243 else if (mode
& PSR_MODE32_BIT
)
250 asmlinkage __kprobes notrace
unsigned long
251 __sdei_handler(struct pt_regs
*regs
, struct sdei_registered_event
*arg
)
254 bool do_nmi_exit
= false;
257 * nmi_enter() deals with printk() re-entrance and use of RCU when
258 * RCU believed this CPU was idle. Because critical events can
259 * interrupt normal events, we may already be in_nmi().
266 ret
= _sdei_handler(regs
, arg
);