2 * arch/arm/kernel/unwind.c
4 * Copyright (C) 2008 ARM Limited
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 * Stack unwinding support for ARM
22 * An ARM EABI version of gcc is required to generate the unwind
23 * tables. For information about the structure of the unwind tables,
24 * see "Exception Handling ABI for the ARM Architecture" at:
26 * http://infocenter.arm.com/help/topic/com.arm.doc.subset.swdev.abi/index.html
30 #if !defined (__ARM_EABI__)
31 #warning Your compiler does not have EABI support.
32 #warning ARM unwind is known to compile only with EABI compilers.
33 #warning Change compiler or disable ARM_UNWIND option.
34 #elif (__GNUC__ == 4 && __GNUC_MINOR__ <= 2)
35 #warning Your compiler is too buggy; it is known to not compile ARM unwind support.
36 #warning Change compiler or disable ARM_UNWIND option.
38 #endif /* __CHECKER__ */
40 #include <linux/kernel.h>
41 #include <linux/init.h>
42 #include <linux/export.h>
43 #include <linux/sched.h>
44 #include <linux/slab.h>
45 #include <linux/spinlock.h>
46 #include <linux/list.h>
48 #include <asm/stacktrace.h>
49 #include <asm/traps.h>
50 #include <asm/unwind.h>
52 /* Dummy functions to avoid linker complaints */
53 void __aeabi_unwind_cpp_pr0(void)
56 EXPORT_SYMBOL(__aeabi_unwind_cpp_pr0
);
58 void __aeabi_unwind_cpp_pr1(void)
61 EXPORT_SYMBOL(__aeabi_unwind_cpp_pr1
);
63 void __aeabi_unwind_cpp_pr2(void)
66 EXPORT_SYMBOL(__aeabi_unwind_cpp_pr2
);
68 struct unwind_ctrl_block
{
69 unsigned long vrs
[16]; /* virtual register set */
70 const unsigned long *insn
; /* pointer to the current instructions word */
71 int entries
; /* number of entries left to interpret */
72 int byte
; /* current byte number in the instructions word */
76 #ifdef CONFIG_THUMB2_KERNEL
86 extern const struct unwind_idx __start_unwind_idx
[];
87 static const struct unwind_idx
*__origin_unwind_idx
;
88 extern const struct unwind_idx __stop_unwind_idx
[];
90 static DEFINE_SPINLOCK(unwind_lock
);
91 static LIST_HEAD(unwind_tables
);
93 /* Convert a prel31 symbol to an absolute address */
94 #define prel31_to_addr(ptr) \
96 /* sign-extend to 32 bits */ \
97 long offset = (((long)*(ptr)) << 1) >> 1; \
98 (unsigned long)(ptr) + offset; \
102 * Binary search in the unwind index. The entries are
103 * guaranteed to be sorted in ascending order by the linker.
105 * start = first entry
106 * origin = first entry with positive offset (or stop if there is no such entry)
107 * stop - 1 = last entry
109 static const struct unwind_idx
*search_index(unsigned long addr
,
110 const struct unwind_idx
*start
,
111 const struct unwind_idx
*origin
,
112 const struct unwind_idx
*stop
)
114 unsigned long addr_prel31
;
116 pr_debug("%s(%08lx, %p, %p, %p)\n",
117 __func__
, addr
, start
, origin
, stop
);
120 * only search in the section with the matching sign. This way the
121 * prel31 numbers can be compared as unsigned longs.
123 if (addr
< (unsigned long)start
)
124 /* negative offsets: [start; origin) */
127 /* positive offsets: [origin; stop) */
130 /* prel31 for address relavive to start */
131 addr_prel31
= (addr
- (unsigned long)start
) & 0x7fffffff;
133 while (start
< stop
- 1) {
134 const struct unwind_idx
*mid
= start
+ ((stop
- start
) >> 1);
137 * As addr_prel31 is relative to start an offset is needed to
138 * make it relative to mid.
140 if (addr_prel31
- ((unsigned long)mid
- (unsigned long)start
) <
144 /* keep addr_prel31 relative to start */
145 addr_prel31
-= ((unsigned long)mid
-
146 (unsigned long)start
);
151 if (likely(start
->addr_offset
<= addr_prel31
))
154 pr_warning("unwind: Unknown symbol address %08lx\n", addr
);
159 static const struct unwind_idx
*unwind_find_origin(
160 const struct unwind_idx
*start
, const struct unwind_idx
*stop
)
162 pr_debug("%s(%p, %p)\n", __func__
, start
, stop
);
163 while (start
< stop
) {
164 const struct unwind_idx
*mid
= start
+ ((stop
- start
) >> 1);
166 if (mid
->addr_offset
>= 0x40000000)
167 /* negative offset */
170 /* positive offset */
173 pr_debug("%s -> %p\n", __func__
, stop
);
177 static const struct unwind_idx
*unwind_find_idx(unsigned long addr
)
179 const struct unwind_idx
*idx
= NULL
;
182 pr_debug("%s(%08lx)\n", __func__
, addr
);
184 if (core_kernel_text(addr
)) {
185 if (unlikely(!__origin_unwind_idx
))
186 __origin_unwind_idx
=
187 unwind_find_origin(__start_unwind_idx
,
190 /* main unwind table */
191 idx
= search_index(addr
, __start_unwind_idx
,
195 /* module unwind tables */
196 struct unwind_table
*table
;
198 spin_lock_irqsave(&unwind_lock
, flags
);
199 list_for_each_entry(table
, &unwind_tables
, list
) {
200 if (addr
>= table
->begin_addr
&&
201 addr
< table
->end_addr
) {
202 idx
= search_index(addr
, table
->start
,
205 /* Move-to-front to exploit common traces */
206 list_move(&table
->list
, &unwind_tables
);
210 spin_unlock_irqrestore(&unwind_lock
, flags
);
213 pr_debug("%s: idx = %p\n", __func__
, idx
);
217 static unsigned long unwind_get_byte(struct unwind_ctrl_block
*ctrl
)
221 if (ctrl
->entries
<= 0) {
222 pr_warning("unwind: Corrupt unwind table\n");
226 ret
= (*ctrl
->insn
>> (ctrl
->byte
* 8)) & 0xff;
228 if (ctrl
->byte
== 0) {
239 * Execute the current unwind instruction.
241 static int unwind_exec_insn(struct unwind_ctrl_block
*ctrl
)
243 unsigned long insn
= unwind_get_byte(ctrl
);
245 pr_debug("%s: insn = %08lx\n", __func__
, insn
);
247 if ((insn
& 0xc0) == 0x00)
248 ctrl
->vrs
[SP
] += ((insn
& 0x3f) << 2) + 4;
249 else if ((insn
& 0xc0) == 0x40)
250 ctrl
->vrs
[SP
] -= ((insn
& 0x3f) << 2) + 4;
251 else if ((insn
& 0xf0) == 0x80) {
253 unsigned long *vsp
= (unsigned long *)ctrl
->vrs
[SP
];
254 int load_sp
, reg
= 4;
256 insn
= (insn
<< 8) | unwind_get_byte(ctrl
);
257 mask
= insn
& 0x0fff;
259 pr_warning("unwind: 'Refuse to unwind' instruction %04lx\n",
264 /* pop R4-R15 according to mask */
265 load_sp
= mask
& (1 << (13 - 4));
268 ctrl
->vrs
[reg
] = *vsp
++;
273 ctrl
->vrs
[SP
] = (unsigned long)vsp
;
274 } else if ((insn
& 0xf0) == 0x90 &&
275 (insn
& 0x0d) != 0x0d)
276 ctrl
->vrs
[SP
] = ctrl
->vrs
[insn
& 0x0f];
277 else if ((insn
& 0xf0) == 0xa0) {
278 unsigned long *vsp
= (unsigned long *)ctrl
->vrs
[SP
];
281 /* pop R4-R[4+bbb] */
282 for (reg
= 4; reg
<= 4 + (insn
& 7); reg
++)
283 ctrl
->vrs
[reg
] = *vsp
++;
285 ctrl
->vrs
[14] = *vsp
++;
286 ctrl
->vrs
[SP
] = (unsigned long)vsp
;
287 } else if (insn
== 0xb0) {
288 if (ctrl
->vrs
[PC
] == 0)
289 ctrl
->vrs
[PC
] = ctrl
->vrs
[LR
];
290 /* no further processing */
292 } else if (insn
== 0xb1) {
293 unsigned long mask
= unwind_get_byte(ctrl
);
294 unsigned long *vsp
= (unsigned long *)ctrl
->vrs
[SP
];
297 if (mask
== 0 || mask
& 0xf0) {
298 pr_warning("unwind: Spare encoding %04lx\n",
303 /* pop R0-R3 according to mask */
306 ctrl
->vrs
[reg
] = *vsp
++;
310 ctrl
->vrs
[SP
] = (unsigned long)vsp
;
311 } else if (insn
== 0xb2) {
312 unsigned long uleb128
= unwind_get_byte(ctrl
);
314 ctrl
->vrs
[SP
] += 0x204 + (uleb128
<< 2);
316 pr_warning("unwind: Unhandled instruction %02lx\n", insn
);
320 pr_debug("%s: fp = %08lx sp = %08lx lr = %08lx pc = %08lx\n", __func__
,
321 ctrl
->vrs
[FP
], ctrl
->vrs
[SP
], ctrl
->vrs
[LR
], ctrl
->vrs
[PC
]);
327 * Unwind a single frame starting with *sp for the symbol at *pc. It
328 * updates the *pc and *sp with the new values.
330 int unwind_frame(struct stackframe
*frame
)
332 unsigned long high
, low
;
333 const struct unwind_idx
*idx
;
334 struct unwind_ctrl_block ctrl
;
336 /* only go to a higher address on the stack */
338 high
= ALIGN(low
, THREAD_SIZE
);
340 pr_debug("%s(pc = %08lx lr = %08lx sp = %08lx)\n", __func__
,
341 frame
->pc
, frame
->lr
, frame
->sp
);
343 if (!kernel_text_address(frame
->pc
))
346 idx
= unwind_find_idx(frame
->pc
);
348 pr_warning("unwind: Index not found %08lx\n", frame
->pc
);
352 ctrl
.vrs
[FP
] = frame
->fp
;
353 ctrl
.vrs
[SP
] = frame
->sp
;
354 ctrl
.vrs
[LR
] = frame
->lr
;
360 else if ((idx
->insn
& 0x80000000) == 0)
361 /* prel31 to the unwind table */
362 ctrl
.insn
= (unsigned long *)prel31_to_addr(&idx
->insn
);
363 else if ((idx
->insn
& 0xff000000) == 0x80000000)
364 /* only personality routine 0 supported in the index */
365 ctrl
.insn
= &idx
->insn
;
367 pr_warning("unwind: Unsupported personality routine %08lx in the index at %p\n",
372 /* check the personality routine */
373 if ((*ctrl
.insn
& 0xff000000) == 0x80000000) {
376 } else if ((*ctrl
.insn
& 0xff000000) == 0x81000000) {
378 ctrl
.entries
= 1 + ((*ctrl
.insn
& 0x00ff0000) >> 16);
380 pr_warning("unwind: Unsupported personality routine %08lx at %p\n",
381 *ctrl
.insn
, ctrl
.insn
);
385 while (ctrl
.entries
> 0) {
386 int urc
= unwind_exec_insn(&ctrl
);
389 if (ctrl
.vrs
[SP
] < low
|| ctrl
.vrs
[SP
] >= high
)
393 if (ctrl
.vrs
[PC
] == 0)
394 ctrl
.vrs
[PC
] = ctrl
.vrs
[LR
];
396 /* check for infinite loop */
397 if (frame
->pc
== ctrl
.vrs
[PC
])
400 frame
->fp
= ctrl
.vrs
[FP
];
401 frame
->sp
= ctrl
.vrs
[SP
];
402 frame
->lr
= ctrl
.vrs
[LR
];
403 frame
->pc
= ctrl
.vrs
[PC
];
408 void unwind_backtrace(struct pt_regs
*regs
, struct task_struct
*tsk
)
410 struct stackframe frame
;
411 register unsigned long current_sp
asm ("sp");
413 pr_debug("%s(regs = %p tsk = %p)\n", __func__
, regs
, tsk
);
419 frame
.fp
= regs
->ARM_fp
;
420 frame
.sp
= regs
->ARM_sp
;
421 frame
.lr
= regs
->ARM_lr
;
422 /* PC might be corrupted, use LR in that case. */
423 frame
.pc
= kernel_text_address(regs
->ARM_pc
)
424 ? regs
->ARM_pc
: regs
->ARM_lr
;
425 } else if (tsk
== current
) {
426 frame
.fp
= (unsigned long)__builtin_frame_address(0);
427 frame
.sp
= current_sp
;
428 frame
.lr
= (unsigned long)__builtin_return_address(0);
429 frame
.pc
= (unsigned long)unwind_backtrace
;
431 /* task blocked in __switch_to */
432 frame
.fp
= thread_saved_fp(tsk
);
433 frame
.sp
= thread_saved_sp(tsk
);
435 * The function calling __switch_to cannot be a leaf function
436 * so LR is recovered from the stack.
439 frame
.pc
= thread_saved_pc(tsk
);
444 unsigned long where
= frame
.pc
;
446 urc
= unwind_frame(&frame
);
449 dump_backtrace_entry(where
, frame
.pc
, frame
.sp
- 4);
453 struct unwind_table
*unwind_table_add(unsigned long start
, unsigned long size
,
454 unsigned long text_addr
,
455 unsigned long text_size
)
458 struct unwind_table
*tab
= kmalloc(sizeof(*tab
), GFP_KERNEL
);
460 pr_debug("%s(%08lx, %08lx, %08lx, %08lx)\n", __func__
, start
, size
,
461 text_addr
, text_size
);
466 tab
->start
= (const struct unwind_idx
*)start
;
467 tab
->stop
= (const struct unwind_idx
*)(start
+ size
);
468 tab
->origin
= unwind_find_origin(tab
->start
, tab
->stop
);
469 tab
->begin_addr
= text_addr
;
470 tab
->end_addr
= text_addr
+ text_size
;
472 spin_lock_irqsave(&unwind_lock
, flags
);
473 list_add_tail(&tab
->list
, &unwind_tables
);
474 spin_unlock_irqrestore(&unwind_lock
, flags
);
479 void unwind_table_del(struct unwind_table
*tab
)
486 spin_lock_irqsave(&unwind_lock
, flags
);
487 list_del(&tab
->list
);
488 spin_unlock_irqrestore(&unwind_lock
, flags
);