blob: 314cfb232a6353165dc899f35e5747a27a7ef617 [file] [log] [blame]
Catalin Marinasbff595c2009-02-16 11:41:36 +01001/*
2 * arch/arm/kernel/unwind.c
3 *
4 * Copyright (C) 2008 ARM Limited
5 *
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.
9 *
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.
14 *
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
18 *
19 *
20 * Stack unwinding support for ARM
21 *
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:
25 *
26 * http://infocenter.arm.com/help/topic/com.arm.doc.subset.swdev.abi/index.html
27 */
28
Alexander Shishkin830703c2010-05-21 12:32:07 +010029#ifndef __CHECKER__
Claudio Scordino6603a4f2009-10-30 12:06:05 +010030#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.
Mark Charleboise6b80752014-02-11 19:26:08 -080034#elif (__GNUC__ == 4 && __GNUC_MINOR__ <= 2) && !defined(__clang__)
Claudio Scordino6603a4f2009-10-30 12:06:05 +010035#warning Your compiler is too buggy; it is known to not compile ARM unwind support.
36#warning Change compiler or disable ARM_UNWIND option.
37#endif
Alexander Shishkin830703c2010-05-21 12:32:07 +010038#endif /* __CHECKER__ */
Claudio Scordino6603a4f2009-10-30 12:06:05 +010039
Catalin Marinasbff595c2009-02-16 11:41:36 +010040#include <linux/kernel.h>
41#include <linux/init.h>
Paul Gortmakerecea4ab2011-07-22 10:58:34 -040042#include <linux/export.h>
Catalin Marinasbff595c2009-02-16 11:41:36 +010043#include <linux/sched.h>
44#include <linux/slab.h>
45#include <linux/spinlock.h>
46#include <linux/list.h>
47
48#include <asm/stacktrace.h>
49#include <asm/traps.h>
50#include <asm/unwind.h>
51
52/* Dummy functions to avoid linker complaints */
53void __aeabi_unwind_cpp_pr0(void)
54{
55};
56EXPORT_SYMBOL(__aeabi_unwind_cpp_pr0);
57
58void __aeabi_unwind_cpp_pr1(void)
59{
60};
61EXPORT_SYMBOL(__aeabi_unwind_cpp_pr1);
62
63void __aeabi_unwind_cpp_pr2(void)
64{
65};
66EXPORT_SYMBOL(__aeabi_unwind_cpp_pr2);
67
68struct unwind_ctrl_block {
69 unsigned long vrs[16]; /* virtual register set */
Uwe Kleine-Königde66a972011-12-05 09:39:59 +010070 const unsigned long *insn; /* pointer to the current instructions word */
Anurag Aggarwala5134572014-02-24 11:17:36 +010071 unsigned long sp_high; /* highest value of sp allowed */
72 /*
73 * 1 : check for stack overflow for each register pop.
74 * 0 : save overhead if there is plenty of stack remaining.
75 */
76 int check_each_pop;
Catalin Marinasbff595c2009-02-16 11:41:36 +010077 int entries; /* number of entries left to interpret */
78 int byte; /* current byte number in the instructions word */
79};
80
81enum regs {
Catalin Marinasb86040a2009-07-24 12:32:54 +010082#ifdef CONFIG_THUMB2_KERNEL
83 FP = 7,
84#else
Catalin Marinasbff595c2009-02-16 11:41:36 +010085 FP = 11,
Catalin Marinasb86040a2009-07-24 12:32:54 +010086#endif
Catalin Marinasbff595c2009-02-16 11:41:36 +010087 SP = 13,
88 LR = 14,
89 PC = 15
90};
91
Uwe Kleine-Königde66a972011-12-05 09:39:59 +010092extern const struct unwind_idx __start_unwind_idx[];
93static const struct unwind_idx *__origin_unwind_idx;
94extern const struct unwind_idx __stop_unwind_idx[];
Catalin Marinasbff595c2009-02-16 11:41:36 +010095
Sebastian Andrzej Siewior43e01fe2019-02-13 17:14:42 +010096static DEFINE_RAW_SPINLOCK(unwind_lock);
Catalin Marinasbff595c2009-02-16 11:41:36 +010097static LIST_HEAD(unwind_tables);
98
99/* Convert a prel31 symbol to an absolute address */
100#define prel31_to_addr(ptr) \
101({ \
102 /* sign-extend to 32 bits */ \
103 long offset = (((long)*(ptr)) << 1) >> 1; \
104 (unsigned long)(ptr) + offset; \
105})
106
107/*
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100108 * Binary search in the unwind index. The entries are
Catalin Marinasbff595c2009-02-16 11:41:36 +0100109 * guaranteed to be sorted in ascending order by the linker.
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100110 *
111 * start = first entry
112 * origin = first entry with positive offset (or stop if there is no such entry)
113 * stop - 1 = last entry
Catalin Marinasbff595c2009-02-16 11:41:36 +0100114 */
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100115static const struct unwind_idx *search_index(unsigned long addr,
116 const struct unwind_idx *start,
117 const struct unwind_idx *origin,
118 const struct unwind_idx *stop)
Catalin Marinasbff595c2009-02-16 11:41:36 +0100119{
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100120 unsigned long addr_prel31;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100121
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100122 pr_debug("%s(%08lx, %p, %p, %p)\n",
123 __func__, addr, start, origin, stop);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100124
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100125 /*
126 * only search in the section with the matching sign. This way the
127 * prel31 numbers can be compared as unsigned longs.
128 */
129 if (addr < (unsigned long)start)
130 /* negative offsets: [start; origin) */
131 stop = origin;
132 else
133 /* positive offsets: [origin; stop) */
134 start = origin;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100135
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100136 /* prel31 for address relavive to start */
137 addr_prel31 = (addr - (unsigned long)start) & 0x7fffffff;
138
139 while (start < stop - 1) {
140 const struct unwind_idx *mid = start + ((stop - start) >> 1);
141
142 /*
143 * As addr_prel31 is relative to start an offset is needed to
144 * make it relative to mid.
145 */
146 if (addr_prel31 - ((unsigned long)mid - (unsigned long)start) <
147 mid->addr_offset)
148 stop = mid;
149 else {
150 /* keep addr_prel31 relative to start */
151 addr_prel31 -= ((unsigned long)mid -
152 (unsigned long)start);
153 start = mid;
154 }
Catalin Marinasbff595c2009-02-16 11:41:36 +0100155 }
156
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100157 if (likely(start->addr_offset <= addr_prel31))
158 return start;
159 else {
Joe Perches8b521cb2014-09-16 20:41:43 +0100160 pr_warn("unwind: Unknown symbol address %08lx\n", addr);
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100161 return NULL;
162 }
Catalin Marinasbff595c2009-02-16 11:41:36 +0100163}
164
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100165static const struct unwind_idx *unwind_find_origin(
166 const struct unwind_idx *start, const struct unwind_idx *stop)
Catalin Marinasbff595c2009-02-16 11:41:36 +0100167{
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100168 pr_debug("%s(%p, %p)\n", __func__, start, stop);
Uwe Kleine-Königddf5a252011-12-15 21:47:56 +0100169 while (start < stop) {
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100170 const struct unwind_idx *mid = start + ((stop - start) >> 1);
171
172 if (mid->addr_offset >= 0x40000000)
173 /* negative offset */
Uwe Kleine-Königddf5a252011-12-15 21:47:56 +0100174 start = mid + 1;
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100175 else
176 /* positive offset */
177 stop = mid;
178 }
179 pr_debug("%s -> %p\n", __func__, stop);
180 return stop;
181}
182
183static const struct unwind_idx *unwind_find_idx(unsigned long addr)
184{
185 const struct unwind_idx *idx = NULL;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100186 unsigned long flags;
187
188 pr_debug("%s(%08lx)\n", __func__, addr);
189
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100190 if (core_kernel_text(addr)) {
191 if (unlikely(!__origin_unwind_idx))
192 __origin_unwind_idx =
193 unwind_find_origin(__start_unwind_idx,
194 __stop_unwind_idx);
195
Catalin Marinasbff595c2009-02-16 11:41:36 +0100196 /* main unwind table */
197 idx = search_index(addr, __start_unwind_idx,
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100198 __origin_unwind_idx,
199 __stop_unwind_idx);
200 } else {
Catalin Marinasbff595c2009-02-16 11:41:36 +0100201 /* module unwind tables */
202 struct unwind_table *table;
203
Sebastian Andrzej Siewior43e01fe2019-02-13 17:14:42 +0100204 raw_spin_lock_irqsave(&unwind_lock, flags);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100205 list_for_each_entry(table, &unwind_tables, list) {
206 if (addr >= table->begin_addr &&
207 addr < table->end_addr) {
208 idx = search_index(addr, table->start,
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100209 table->origin,
210 table->stop);
Phil Carmody5333a3d2010-08-19 15:20:37 +0100211 /* Move-to-front to exploit common traces */
212 list_move(&table->list, &unwind_tables);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100213 break;
214 }
215 }
Sebastian Andrzej Siewior43e01fe2019-02-13 17:14:42 +0100216 raw_spin_unlock_irqrestore(&unwind_lock, flags);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100217 }
218
219 pr_debug("%s: idx = %p\n", __func__, idx);
220 return idx;
221}
222
223static unsigned long unwind_get_byte(struct unwind_ctrl_block *ctrl)
224{
225 unsigned long ret;
226
227 if (ctrl->entries <= 0) {
Joe Perches8b521cb2014-09-16 20:41:43 +0100228 pr_warn("unwind: Corrupt unwind table\n");
Catalin Marinasbff595c2009-02-16 11:41:36 +0100229 return 0;
230 }
231
232 ret = (*ctrl->insn >> (ctrl->byte * 8)) & 0xff;
233
234 if (ctrl->byte == 0) {
235 ctrl->insn++;
236 ctrl->entries--;
237 ctrl->byte = 3;
238 } else
239 ctrl->byte--;
240
241 return ret;
242}
243
Anurag Aggarwala5134572014-02-24 11:17:36 +0100244/* Before poping a register check whether it is feasible or not */
245static int unwind_pop_register(struct unwind_ctrl_block *ctrl,
246 unsigned long **vsp, unsigned int reg)
247{
248 if (unlikely(ctrl->check_each_pop))
249 if (*vsp >= (unsigned long *)ctrl->sp_high)
250 return -URC_FAILURE;
251
252 ctrl->vrs[reg] = *(*vsp)++;
253 return URC_OK;
254}
255
256/* Helper functions to execute the instructions */
257static int unwind_exec_pop_subset_r4_to_r13(struct unwind_ctrl_block *ctrl,
258 unsigned long mask)
259{
260 unsigned long *vsp = (unsigned long *)ctrl->vrs[SP];
261 int load_sp, reg = 4;
262
263 load_sp = mask & (1 << (13 - 4));
264 while (mask) {
265 if (mask & 1)
266 if (unwind_pop_register(ctrl, &vsp, reg))
267 return -URC_FAILURE;
268 mask >>= 1;
269 reg++;
270 }
271 if (!load_sp)
272 ctrl->vrs[SP] = (unsigned long)vsp;
273
274 return URC_OK;
275}
276
277static int unwind_exec_pop_r4_to_rN(struct unwind_ctrl_block *ctrl,
278 unsigned long insn)
279{
280 unsigned long *vsp = (unsigned long *)ctrl->vrs[SP];
281 int reg;
282
283 /* pop R4-R[4+bbb] */
284 for (reg = 4; reg <= 4 + (insn & 7); reg++)
285 if (unwind_pop_register(ctrl, &vsp, reg))
286 return -URC_FAILURE;
287
Nikolay Borisov8203d5b2014-05-08 15:54:26 +0100288 if (insn & 0x8)
Anurag Aggarwala5134572014-02-24 11:17:36 +0100289 if (unwind_pop_register(ctrl, &vsp, 14))
290 return -URC_FAILURE;
291
292 ctrl->vrs[SP] = (unsigned long)vsp;
293
294 return URC_OK;
295}
296
297static int unwind_exec_pop_subset_r0_to_r3(struct unwind_ctrl_block *ctrl,
298 unsigned long mask)
299{
300 unsigned long *vsp = (unsigned long *)ctrl->vrs[SP];
301 int reg = 0;
302
303 /* pop R0-R3 according to mask */
304 while (mask) {
305 if (mask & 1)
306 if (unwind_pop_register(ctrl, &vsp, reg))
307 return -URC_FAILURE;
308 mask >>= 1;
309 reg++;
310 }
311 ctrl->vrs[SP] = (unsigned long)vsp;
312
313 return URC_OK;
314}
315
Catalin Marinasbff595c2009-02-16 11:41:36 +0100316/*
317 * Execute the current unwind instruction.
318 */
319static int unwind_exec_insn(struct unwind_ctrl_block *ctrl)
320{
321 unsigned long insn = unwind_get_byte(ctrl);
Anurag Aggarwala5134572014-02-24 11:17:36 +0100322 int ret = URC_OK;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100323
324 pr_debug("%s: insn = %08lx\n", __func__, insn);
325
326 if ((insn & 0xc0) == 0x00)
327 ctrl->vrs[SP] += ((insn & 0x3f) << 2) + 4;
328 else if ((insn & 0xc0) == 0x40)
329 ctrl->vrs[SP] -= ((insn & 0x3f) << 2) + 4;
330 else if ((insn & 0xf0) == 0x80) {
331 unsigned long mask;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100332
333 insn = (insn << 8) | unwind_get_byte(ctrl);
334 mask = insn & 0x0fff;
335 if (mask == 0) {
Joe Perches8b521cb2014-09-16 20:41:43 +0100336 pr_warn("unwind: 'Refuse to unwind' instruction %04lx\n",
337 insn);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100338 return -URC_FAILURE;
339 }
340
Anurag Aggarwala5134572014-02-24 11:17:36 +0100341 ret = unwind_exec_pop_subset_r4_to_r13(ctrl, mask);
342 if (ret)
343 goto error;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100344 } else if ((insn & 0xf0) == 0x90 &&
345 (insn & 0x0d) != 0x0d)
346 ctrl->vrs[SP] = ctrl->vrs[insn & 0x0f];
347 else if ((insn & 0xf0) == 0xa0) {
Anurag Aggarwala5134572014-02-24 11:17:36 +0100348 ret = unwind_exec_pop_r4_to_rN(ctrl, insn);
349 if (ret)
350 goto error;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100351 } else if (insn == 0xb0) {
Catalin Marinasc894ed62009-06-19 16:42:11 +0100352 if (ctrl->vrs[PC] == 0)
353 ctrl->vrs[PC] = ctrl->vrs[LR];
Catalin Marinasbff595c2009-02-16 11:41:36 +0100354 /* no further processing */
355 ctrl->entries = 0;
356 } else if (insn == 0xb1) {
357 unsigned long mask = unwind_get_byte(ctrl);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100358
359 if (mask == 0 || mask & 0xf0) {
Joe Perches8b521cb2014-09-16 20:41:43 +0100360 pr_warn("unwind: Spare encoding %04lx\n",
361 (insn << 8) | mask);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100362 return -URC_FAILURE;
363 }
364
Anurag Aggarwala5134572014-02-24 11:17:36 +0100365 ret = unwind_exec_pop_subset_r0_to_r3(ctrl, mask);
366 if (ret)
367 goto error;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100368 } else if (insn == 0xb2) {
369 unsigned long uleb128 = unwind_get_byte(ctrl);
370
371 ctrl->vrs[SP] += 0x204 + (uleb128 << 2);
372 } else {
Joe Perches8b521cb2014-09-16 20:41:43 +0100373 pr_warn("unwind: Unhandled instruction %02lx\n", insn);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100374 return -URC_FAILURE;
375 }
376
377 pr_debug("%s: fp = %08lx sp = %08lx lr = %08lx pc = %08lx\n", __func__,
378 ctrl->vrs[FP], ctrl->vrs[SP], ctrl->vrs[LR], ctrl->vrs[PC]);
379
Anurag Aggarwala5134572014-02-24 11:17:36 +0100380error:
381 return ret;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100382}
383
384/*
385 * Unwind a single frame starting with *sp for the symbol at *pc. It
386 * updates the *pc and *sp with the new values.
387 */
388int unwind_frame(struct stackframe *frame)
389{
Anurag Aggarwala5134572014-02-24 11:17:36 +0100390 unsigned long low;
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100391 const struct unwind_idx *idx;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100392 struct unwind_ctrl_block ctrl;
393
Anurag Aggarwala5134572014-02-24 11:17:36 +0100394 /* store the highest address on the stack to avoid crossing it*/
Catalin Marinasbff595c2009-02-16 11:41:36 +0100395 low = frame->sp;
Anurag Aggarwala5134572014-02-24 11:17:36 +0100396 ctrl.sp_high = ALIGN(low, THREAD_SIZE);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100397
398 pr_debug("%s(pc = %08lx lr = %08lx sp = %08lx)\n", __func__,
399 frame->pc, frame->lr, frame->sp);
400
401 if (!kernel_text_address(frame->pc))
402 return -URC_FAILURE;
403
404 idx = unwind_find_idx(frame->pc);
405 if (!idx) {
Joe Perches8b521cb2014-09-16 20:41:43 +0100406 pr_warn("unwind: Index not found %08lx\n", frame->pc);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100407 return -URC_FAILURE;
408 }
409
410 ctrl.vrs[FP] = frame->fp;
411 ctrl.vrs[SP] = frame->sp;
412 ctrl.vrs[LR] = frame->lr;
413 ctrl.vrs[PC] = 0;
414
415 if (idx->insn == 1)
416 /* can't unwind */
417 return -URC_FAILURE;
418 else if ((idx->insn & 0x80000000) == 0)
419 /* prel31 to the unwind table */
420 ctrl.insn = (unsigned long *)prel31_to_addr(&idx->insn);
421 else if ((idx->insn & 0xff000000) == 0x80000000)
422 /* only personality routine 0 supported in the index */
423 ctrl.insn = &idx->insn;
424 else {
Joe Perches8b521cb2014-09-16 20:41:43 +0100425 pr_warn("unwind: Unsupported personality routine %08lx in the index at %p\n",
426 idx->insn, idx);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100427 return -URC_FAILURE;
428 }
429
430 /* check the personality routine */
431 if ((*ctrl.insn & 0xff000000) == 0x80000000) {
432 ctrl.byte = 2;
433 ctrl.entries = 1;
434 } else if ((*ctrl.insn & 0xff000000) == 0x81000000) {
435 ctrl.byte = 1;
436 ctrl.entries = 1 + ((*ctrl.insn & 0x00ff0000) >> 16);
437 } else {
Joe Perches8b521cb2014-09-16 20:41:43 +0100438 pr_warn("unwind: Unsupported personality routine %08lx at %p\n",
439 *ctrl.insn, ctrl.insn);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100440 return -URC_FAILURE;
441 }
442
Anurag Aggarwala5134572014-02-24 11:17:36 +0100443 ctrl.check_each_pop = 0;
444
Catalin Marinasbff595c2009-02-16 11:41:36 +0100445 while (ctrl.entries > 0) {
Anurag Aggarwala5134572014-02-24 11:17:36 +0100446 int urc;
447 if ((ctrl.sp_high - ctrl.vrs[SP]) < sizeof(ctrl.vrs))
448 ctrl.check_each_pop = 1;
449 urc = unwind_exec_insn(&ctrl);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100450 if (urc < 0)
451 return urc;
Anurag Aggarwala5134572014-02-24 11:17:36 +0100452 if (ctrl.vrs[SP] < low || ctrl.vrs[SP] >= ctrl.sp_high)
Catalin Marinasc894ed62009-06-19 16:42:11 +0100453 return -URC_FAILURE;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100454 }
455
456 if (ctrl.vrs[PC] == 0)
457 ctrl.vrs[PC] = ctrl.vrs[LR];
458
Catalin Marinasc894ed62009-06-19 16:42:11 +0100459 /* check for infinite loop */
460 if (frame->pc == ctrl.vrs[PC])
461 return -URC_FAILURE;
462
Catalin Marinasbff595c2009-02-16 11:41:36 +0100463 frame->fp = ctrl.vrs[FP];
464 frame->sp = ctrl.vrs[SP];
465 frame->lr = ctrl.vrs[LR];
466 frame->pc = ctrl.vrs[PC];
467
468 return URC_OK;
469}
470
471void unwind_backtrace(struct pt_regs *regs, struct task_struct *tsk)
472{
473 struct stackframe frame;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100474
475 pr_debug("%s(regs = %p tsk = %p)\n", __func__, regs, tsk);
476
477 if (!tsk)
478 tsk = current;
479
480 if (regs) {
Nikolay Borisovc8bee0a2014-06-03 19:49:14 +0100481 arm_get_current_stackframe(regs, &frame);
Laurent Pinchart51d47992010-03-04 15:33:16 +0100482 /* PC might be corrupted, use LR in that case. */
Nikolay Borisovc8bee0a2014-06-03 19:49:14 +0100483 if (!kernel_text_address(regs->ARM_pc))
484 frame.pc = regs->ARM_lr;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100485 } else if (tsk == current) {
486 frame.fp = (unsigned long)__builtin_frame_address(0);
Behan Webster0bf49542014-09-27 00:31:10 +0100487 frame.sp = current_stack_pointer;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100488 frame.lr = (unsigned long)__builtin_return_address(0);
489 frame.pc = (unsigned long)unwind_backtrace;
490 } else {
491 /* task blocked in __switch_to */
492 frame.fp = thread_saved_fp(tsk);
493 frame.sp = thread_saved_sp(tsk);
494 /*
495 * The function calling __switch_to cannot be a leaf function
496 * so LR is recovered from the stack.
497 */
498 frame.lr = 0;
499 frame.pc = thread_saved_pc(tsk);
500 }
501
Catalin Marinasbff595c2009-02-16 11:41:36 +0100502 while (1) {
503 int urc;
504 unsigned long where = frame.pc;
505
506 urc = unwind_frame(&frame);
507 if (urc < 0)
508 break;
509 dump_backtrace_entry(where, frame.pc, frame.sp - 4);
510 }
511}
512
513struct unwind_table *unwind_table_add(unsigned long start, unsigned long size,
514 unsigned long text_addr,
515 unsigned long text_size)
516{
517 unsigned long flags;
Catalin Marinasbff595c2009-02-16 11:41:36 +0100518 struct unwind_table *tab = kmalloc(sizeof(*tab), GFP_KERNEL);
519
520 pr_debug("%s(%08lx, %08lx, %08lx, %08lx)\n", __func__, start, size,
521 text_addr, text_size);
522
523 if (!tab)
524 return tab;
525
Uwe Kleine-Königde66a972011-12-05 09:39:59 +0100526 tab->start = (const struct unwind_idx *)start;
527 tab->stop = (const struct unwind_idx *)(start + size);
528 tab->origin = unwind_find_origin(tab->start, tab->stop);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100529 tab->begin_addr = text_addr;
530 tab->end_addr = text_addr + text_size;
531
Sebastian Andrzej Siewior43e01fe2019-02-13 17:14:42 +0100532 raw_spin_lock_irqsave(&unwind_lock, flags);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100533 list_add_tail(&tab->list, &unwind_tables);
Sebastian Andrzej Siewior43e01fe2019-02-13 17:14:42 +0100534 raw_spin_unlock_irqrestore(&unwind_lock, flags);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100535
536 return tab;
537}
538
539void unwind_table_del(struct unwind_table *tab)
540{
541 unsigned long flags;
542
543 if (!tab)
544 return;
545
Sebastian Andrzej Siewior43e01fe2019-02-13 17:14:42 +0100546 raw_spin_lock_irqsave(&unwind_lock, flags);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100547 list_del(&tab->list);
Sebastian Andrzej Siewior43e01fe2019-02-13 17:14:42 +0100548 raw_spin_unlock_irqrestore(&unwind_lock, flags);
Catalin Marinasbff595c2009-02-16 11:41:36 +0100549
550 kfree(tab);
551}