1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
4 * Copyright (C) 2002-2006 Novell, Inc.
5 * Jan Beulich <jbeulich@novell.com>
7 * A simple API for unwinding kernel stacks. This is used for
8 * debugging and error reporting purposes. The kernel doesn't need
9 * full-blown stack unwinding with all the bells and whistles, so there
10 * is not much point in implementing the full Dwarf2 unwind API.
13 #include <linux/sched.h>
14 #include <linux/module.h>
15 #include <linux/memblock.h>
16 #include <linux/sort.h>
17 #include <linux/slab.h>
18 #include <linux/stop_machine.h>
19 #include <linux/uaccess.h>
20 #include <linux/ptrace.h>
21 #include <asm/sections.h>
22 #include <linux/unaligned.h>
23 #include <asm/unwind.h>
25 extern char __start_unwind
[], __end_unwind
[];
26 /* extern const u8 __start_unwind_hdr[], __end_unwind_hdr[];*/
28 /* #define UNWIND_DEBUG */
32 #define unw_debug(fmt, ...) \
35 pr_info(fmt, ##__VA_ARGS__); \
38 #define unw_debug(fmt, ...)
41 #define MAX_STACK_DEPTH 8
43 #define EXTRA_INFO(f) { \
44 BUILD_BUG_ON_ZERO(offsetof(struct unwind_frame_info, f) \
45 % sizeof_field(struct unwind_frame_info, f)) \
46 + offsetof(struct unwind_frame_info, f) \
47 / sizeof_field(struct unwind_frame_info, f), \
48 sizeof_field(struct unwind_frame_info, f) \
50 #define PTREGS_INFO(f) EXTRA_INFO(regs.f)
53 unsigned offs
:BITS_PER_LONG
/ 2;
54 unsigned width
:BITS_PER_LONG
/ 2;
62 #define REG_INVALID(r) (reg_info[r].width == 0)
65 #define DW_CFA_nop 0x00
66 #define DW_CFA_set_loc 0x01
67 #define DW_CFA_advance_loc1 0x02
68 #define DW_CFA_advance_loc2 0x03
69 #define DW_CFA_advance_loc4 0x04
70 #define DW_CFA_offset_extended 0x05
71 #define DW_CFA_restore_extended 0x06
72 #define DW_CFA_undefined 0x07
73 #define DW_CFA_same_value 0x08
74 #define DW_CFA_register 0x09
75 #define DW_CFA_remember_state 0x0a
76 #define DW_CFA_restore_state 0x0b
77 #define DW_CFA_def_cfa 0x0c
78 #define DW_CFA_def_cfa_register 0x0d
79 #define DW_CFA_def_cfa_offset 0x0e
80 #define DW_CFA_def_cfa_expression 0x0f
81 #define DW_CFA_expression 0x10
82 #define DW_CFA_offset_extended_sf 0x11
83 #define DW_CFA_def_cfa_sf 0x12
84 #define DW_CFA_def_cfa_offset_sf 0x13
85 #define DW_CFA_val_offset 0x14
86 #define DW_CFA_val_offset_sf 0x15
87 #define DW_CFA_val_expression 0x16
88 #define DW_CFA_lo_user 0x1c
89 #define DW_CFA_GNU_window_save 0x2d
90 #define DW_CFA_GNU_args_size 0x2e
91 #define DW_CFA_GNU_negative_offset_extended 0x2f
92 #define DW_CFA_hi_user 0x3f
94 #define DW_EH_PE_FORM 0x07
95 #define DW_EH_PE_native 0x00
96 #define DW_EH_PE_leb128 0x01
97 #define DW_EH_PE_data2 0x02
98 #define DW_EH_PE_data4 0x03
99 #define DW_EH_PE_data8 0x04
100 #define DW_EH_PE_signed 0x08
101 #define DW_EH_PE_ADJUST 0x70
102 #define DW_EH_PE_abs 0x00
103 #define DW_EH_PE_pcrel 0x10
104 #define DW_EH_PE_textrel 0x20
105 #define DW_EH_PE_datarel 0x30
106 #define DW_EH_PE_funcrel 0x40
107 #define DW_EH_PE_aligned 0x50
108 #define DW_EH_PE_indirect 0x80
109 #define DW_EH_PE_omit 0xff
113 typedef unsigned long uleb128_t
;
114 typedef signed long sleb128_t
;
116 static struct unwind_table
{
123 const unsigned char *header
;
125 struct unwind_table
*link
;
139 struct unwind_state
{
141 const u8
*cieStart
, *cieEnd
;
147 struct unwind_item regs
[ARRAY_SIZE(reg_info
)];
148 unsigned stackDepth
:8;
151 const u8
*stack
[MAX_STACK_DEPTH
];
154 static const struct cfa badCFA
= { ARRAY_SIZE(reg_info
), 1 };
156 static struct unwind_table
*find_table(unsigned long pc
)
158 struct unwind_table
*table
;
160 for (table
= &root_table
; table
; table
= table
->link
)
161 if ((pc
>= table
->core
.pc
162 && pc
< table
->core
.pc
+ table
->core
.range
)
163 || (pc
>= table
->init
.pc
164 && pc
< table
->init
.pc
+ table
->init
.range
))
170 static unsigned long read_pointer(const u8
**pLoc
,
171 const void *end
, signed ptrType
);
172 static void init_unwind_hdr(struct unwind_table
*table
,
173 void *(*alloc
) (unsigned long));
176 * wrappers for header alloc (vs. calling one vs. other at call site)
177 * to elide section mismatches warnings
179 static void *__init
unw_hdr_alloc_early(unsigned long sz
)
181 return memblock_alloc_from(sz
, sizeof(unsigned int), MAX_DMA_ADDRESS
);
184 static void init_unwind_table(struct unwind_table
*table
, const char *name
,
185 const void *core_start
, unsigned long core_size
,
186 const void *init_start
, unsigned long init_size
,
187 const void *table_start
, unsigned long table_size
,
188 const u8
*header_start
, unsigned long header_size
)
190 table
->core
.pc
= (unsigned long)core_start
;
191 table
->core
.range
= core_size
;
192 table
->init
.pc
= (unsigned long)init_start
;
193 table
->init
.range
= init_size
;
194 table
->address
= table_start
;
195 table
->size
= table_size
;
196 /* To avoid the pointer addition with NULL pointer.*/
197 if (header_start
!= NULL
) {
198 const u8
*ptr
= header_start
+ 4;
199 const u8
*end
= header_start
+ header_size
;
200 /* See if the linker provided table looks valid. */
202 || header_start
[0] != 1
203 || (void *)read_pointer(&ptr
, end
, header_start
[1])
205 || header_start
[2] == DW_EH_PE_omit
206 || read_pointer(&ptr
, end
, header_start
[2]) <= 0
207 || header_start
[3] == DW_EH_PE_omit
)
210 table
->hdrsz
= header_size
;
212 table
->header
= header_start
;
217 void __init
arc_unwind_init(void)
219 init_unwind_table(&root_table
, "kernel", _text
, _end
- _text
, NULL
, 0,
220 __start_unwind
, __end_unwind
- __start_unwind
,
222 /*__start_unwind_hdr, __end_unwind_hdr - __start_unwind_hdr);*/
224 init_unwind_hdr(&root_table
, unw_hdr_alloc_early
);
227 static const u32 bad_cie
, not_fde
;
228 static const u32
*cie_for_fde(const u32
*fde
, const struct unwind_table
*);
229 static const u32
*__cie_for_fde(const u32
*fde
);
230 static signed fde_pointer_type(const u32
*cie
);
232 struct eh_frame_hdr_table_entry
{
233 unsigned long start
, fde
;
236 static int cmp_eh_frame_hdr_table_entries(const void *p1
, const void *p2
)
238 const struct eh_frame_hdr_table_entry
*e1
= p1
;
239 const struct eh_frame_hdr_table_entry
*e2
= p2
;
241 return (e1
->start
> e2
->start
) - (e1
->start
< e2
->start
);
244 static void swap_eh_frame_hdr_table_entries(void *p1
, void *p2
, int size
)
246 struct eh_frame_hdr_table_entry
*e1
= p1
;
247 struct eh_frame_hdr_table_entry
*e2
= p2
;
249 swap(e1
->start
, e2
->start
);
250 swap(e1
->fde
, e2
->fde
);
253 static void init_unwind_hdr(struct unwind_table
*table
,
254 void *(*alloc
) (unsigned long))
257 unsigned long tableSize
= table
->size
, hdrSize
;
265 unsigned long eh_frame_ptr
;
266 unsigned int fde_count
;
267 struct eh_frame_hdr_table_entry table
[];
268 } __attribute__ ((__packed__
)) *header
;
274 pr_warn(".eh_frame_hdr for '%s' present but unusable\n",
277 if (tableSize
& (sizeof(*fde
) - 1))
280 for (fde
= table
->address
, n
= 0;
281 tableSize
> sizeof(*fde
) && tableSize
- sizeof(*fde
) >= *fde
;
282 tableSize
-= sizeof(*fde
) + *fde
, fde
+= 1 + *fde
/ sizeof(*fde
)) {
283 const u32
*cie
= cie_for_fde(fde
, table
);
288 if (cie
== NULL
|| cie
== &bad_cie
)
290 ptrType
= fde_pointer_type(cie
);
294 ptr
= (const u8
*)(fde
+ 2);
295 if (!read_pointer(&ptr
, (const u8
*)(fde
+ 1) + *fde
,
297 /* FIXME_Rajesh We have 4 instances of null addresses
298 * instead of the initial loc addr
301 WARN(1, "unwinder: FDE->initial_location NULL %p\n",
302 (const u8
*)(fde
+ 1) + *fde
);
310 hdrSize
= 4 + sizeof(unsigned long) + sizeof(unsigned int)
311 + 2 * n
* sizeof(unsigned long);
313 header
= alloc(hdrSize
);
318 header
->eh_frame_ptr_enc
= DW_EH_PE_abs
| DW_EH_PE_native
;
319 header
->fde_count_enc
= DW_EH_PE_abs
| DW_EH_PE_data4
;
320 header
->table_enc
= DW_EH_PE_abs
| DW_EH_PE_native
;
321 put_unaligned((unsigned long)table
->address
, &header
->eh_frame_ptr
);
322 BUILD_BUG_ON(offsetof(typeof(*header
), fde_count
)
323 % __alignof(typeof(header
->fde_count
)));
324 header
->fde_count
= n
;
326 BUILD_BUG_ON(offsetof(typeof(*header
), table
)
327 % __alignof(typeof(*header
->table
)));
328 for (fde
= table
->address
, tableSize
= table
->size
, n
= 0;
330 tableSize
-= sizeof(*fde
) + *fde
, fde
+= 1 + *fde
/ sizeof(*fde
)) {
331 const u32
*cie
= __cie_for_fde(fde
);
333 if (fde
[1] == CIE_ID
)
334 continue; /* this is a CIE */
335 ptr
= (const u8
*)(fde
+ 2);
336 header
->table
[n
].start
= read_pointer(&ptr
,
337 (const u8
*)(fde
+ 1) +
339 fde_pointer_type(cie
));
340 header
->table
[n
].fde
= (unsigned long)fde
;
343 WARN_ON(n
!= header
->fde_count
);
347 sizeof(*header
->table
),
348 cmp_eh_frame_hdr_table_entries
, swap_eh_frame_hdr_table_entries
);
350 table
->hdrsz
= hdrSize
;
352 table
->header
= (const void *)header
;
356 panic("Attention !!! Dwarf FDE parsing errors\n");
359 #ifdef CONFIG_MODULES
360 static void *unw_hdr_alloc(unsigned long sz
)
362 return kmalloc(sz
, GFP_KERNEL
);
365 static struct unwind_table
*last_table
;
367 /* Must be called with module_mutex held. */
368 void *unwind_add_table(struct module
*module
, const void *table_start
,
369 unsigned long table_size
)
371 struct unwind_table
*table
;
372 struct module_memory
*core_text
;
373 struct module_memory
*init_text
;
378 table
= kmalloc(sizeof(*table
), GFP_KERNEL
);
382 core_text
= &module
->mem
[MOD_TEXT
];
383 init_text
= &module
->mem
[MOD_INIT_TEXT
];
385 init_unwind_table(table
, module
->name
, core_text
->base
, core_text
->size
,
386 init_text
->base
, init_text
->size
, table_start
, table_size
, NULL
, 0);
388 init_unwind_hdr(table
, unw_hdr_alloc
);
391 unw_debug("Table added for [%s] %lx %lx\n",
392 module
->name
, table
->core
.pc
, table
->core
.range
);
395 last_table
->link
= table
;
397 root_table
.link
= table
;
403 struct unlink_table_info
{
404 struct unwind_table
*table
;
408 static int unlink_table(void *arg
)
410 struct unlink_table_info
*info
= arg
;
411 struct unwind_table
*table
= info
->table
, *prev
;
413 for (prev
= &root_table
; prev
->link
&& prev
->link
!= table
;
418 if (info
->init_only
) {
420 table
->init
.range
= 0;
423 prev
->link
= table
->link
;
433 /* Must be called with module_mutex held. */
434 void unwind_remove_table(void *handle
, int init_only
)
436 struct unwind_table
*table
= handle
;
437 struct unlink_table_info info
;
439 if (!table
|| table
== &root_table
)
442 if (init_only
&& table
== last_table
) {
444 table
->init
.range
= 0;
449 info
.init_only
= init_only
;
451 unlink_table(&info
); /* XXX: SMP */
452 kfree(table
->header
);
456 #endif /* CONFIG_MODULES */
458 static uleb128_t
get_uleb128(const u8
**pcur
, const u8
*end
)
460 const u8
*cur
= *pcur
;
464 for (shift
= 0, value
= 0; cur
< end
; shift
+= 7) {
465 if (shift
+ 7 > 8 * sizeof(value
)
466 && (*cur
& 0x7fU
) >= (1U << (8 * sizeof(value
) - shift
))) {
470 value
|= (uleb128_t
) (*cur
& 0x7f) << shift
;
471 if (!(*cur
++ & 0x80))
479 static sleb128_t
get_sleb128(const u8
**pcur
, const u8
*end
)
481 const u8
*cur
= *pcur
;
485 for (shift
= 0, value
= 0; cur
< end
; shift
+= 7) {
486 if (shift
+ 7 > 8 * sizeof(value
)
487 && (*cur
& 0x7fU
) >= (1U << (8 * sizeof(value
) - shift
))) {
491 value
|= (sleb128_t
) (*cur
& 0x7f) << shift
;
492 if (!(*cur
& 0x80)) {
493 value
|= -(*cur
++ & 0x40) << shift
;
502 static const u32
*__cie_for_fde(const u32
*fde
)
506 cie
= fde
+ 1 - fde
[1] / sizeof(*fde
);
511 static const u32
*cie_for_fde(const u32
*fde
, const struct unwind_table
*table
)
515 if (!*fde
|| (*fde
& (sizeof(*fde
) - 1)))
518 if (fde
[1] == CIE_ID
)
519 return ¬_fde
; /* this is a CIE */
521 if ((fde
[1] & (sizeof(*fde
) - 1)))
522 /* || fde[1] > (unsigned long)(fde + 1) - (unsigned long)table->address) */
523 return NULL
; /* this is not a valid FDE */
525 cie
= __cie_for_fde(fde
);
527 if (*cie
<= sizeof(*cie
) + 4 || *cie
>= fde
[1] - sizeof(*fde
)
528 || (*cie
& (sizeof(*cie
) - 1))
529 || (cie
[1] != CIE_ID
))
530 return NULL
; /* this is not a (valid) CIE */
534 static unsigned long read_pointer(const u8
**pLoc
, const void *end
,
537 unsigned long value
= 0;
544 const unsigned long *pul
;
547 if (ptrType
< 0 || ptrType
== DW_EH_PE_omit
)
550 switch (ptrType
& DW_EH_PE_FORM
) {
552 if (end
< (const void *)(ptr
.p16u
+ 1))
554 if (ptrType
& DW_EH_PE_signed
)
555 value
= get_unaligned((u16
*) ptr
.p16s
++);
557 value
= get_unaligned((u16
*) ptr
.p16u
++);
561 if (end
< (const void *)(ptr
.p32u
+ 1))
563 if (ptrType
& DW_EH_PE_signed
)
564 value
= get_unaligned(ptr
.p32s
++);
566 value
= get_unaligned(ptr
.p32u
++);
569 BUILD_BUG_ON(sizeof(u64
) != sizeof(value
));
571 BUILD_BUG_ON(sizeof(u32
) != sizeof(value
));
574 case DW_EH_PE_native
:
575 if (end
< (const void *)(ptr
.pul
+ 1))
577 value
= get_unaligned((unsigned long *)ptr
.pul
++);
579 case DW_EH_PE_leb128
:
580 BUILD_BUG_ON(sizeof(uleb128_t
) > sizeof(value
));
581 value
= ptrType
& DW_EH_PE_signed
? get_sleb128(&ptr
.p8
, end
)
582 : get_uleb128(&ptr
.p8
, end
);
583 if ((const void *)ptr
.p8
> end
)
589 switch (ptrType
& DW_EH_PE_ADJUST
) {
593 value
+= (unsigned long)*pLoc
;
598 if ((ptrType
& DW_EH_PE_indirect
)
599 && __get_user(value
, (unsigned long __user
*)value
))
606 static signed fde_pointer_type(const u32
*cie
)
608 const u8
*ptr
= (const u8
*)(cie
+ 2);
609 unsigned int version
= *ptr
;
613 const u8
*end
= (const u8
*)(cie
+ 1) + *cie
;
616 /* check if augmentation size is first (and thus present) */
620 /* check if augmentation string is nul-terminated */
621 aug
= (const void *)ptr
;
622 ptr
= memchr(aug
, 0, end
- ptr
);
626 ++ptr
; /* skip terminator */
627 get_uleb128(&ptr
, end
); /* skip code alignment */
628 get_sleb128(&ptr
, end
); /* skip data alignment */
629 /* skip return address column */
630 version
<= 1 ? (void) ++ptr
: (void)get_uleb128(&ptr
, end
);
631 len
= get_uleb128(&ptr
, end
); /* augmentation length */
633 if (ptr
+ len
< ptr
|| ptr
+ len
> end
)
645 signed ptrType
= *ptr
++;
647 if (!read_pointer(&ptr
, end
, ptrType
)
659 return DW_EH_PE_native
| DW_EH_PE_abs
;
662 static int advance_loc(unsigned long delta
, struct unwind_state
*state
)
664 state
->loc
+= delta
* state
->codeAlign
;
666 /* FIXME_Rajesh: Probably we are defining for the initial range as well;
669 unw_debug("delta %3lu => loc 0x%lx: ", delta
, state
->loc
);
673 static void set_rule(uleb128_t reg
, enum item_location where
, uleb128_t value
,
674 struct unwind_state
*state
)
676 if (reg
< ARRAY_SIZE(state
->regs
)) {
677 state
->regs
[reg
].where
= where
;
678 state
->regs
[reg
].value
= value
;
681 unw_debug("r%lu: ", reg
);
687 unw_debug("c(%lu) ", value
);
690 unw_debug("r(%lu) ", value
);
693 unw_debug("v(%lu) ", value
);
702 static int processCFI(const u8
*start
, const u8
*end
, unsigned long targetLoc
,
703 signed ptrType
, struct unwind_state
*state
)
713 if (start
!= state
->cieStart
) {
714 state
->loc
= state
->org
;
716 processCFI(state
->cieStart
, state
->cieEnd
, 0, ptrType
,
718 if (targetLoc
== 0 && state
->label
== NULL
)
721 for (ptr
.p8
= start
; result
&& ptr
.p8
< end
;) {
722 switch (*ptr
.p8
>> 6) {
730 unw_debug("cfa nop ");
733 state
->loc
= read_pointer(&ptr
.p8
, end
,
737 unw_debug("cfa_set_loc: 0x%lx ", state
->loc
);
739 case DW_CFA_advance_loc1
:
740 unw_debug("\ncfa advance loc1:");
741 result
= ptr
.p8
< end
742 && advance_loc(*ptr
.p8
++, state
);
744 case DW_CFA_advance_loc2
:
746 value
+= *ptr
.p8
++ << 8;
747 unw_debug("\ncfa advance loc2:");
748 result
= ptr
.p8
<= end
+ 2
749 /* && advance_loc(*ptr.p16++, state); */
750 && advance_loc(value
, state
);
752 case DW_CFA_advance_loc4
:
753 unw_debug("\ncfa advance loc4:");
754 result
= ptr
.p8
<= end
+ 4
755 && advance_loc(*ptr
.p32
++, state
);
757 case DW_CFA_offset_extended
:
758 value
= get_uleb128(&ptr
.p8
, end
);
759 unw_debug("cfa_offset_extended: ");
760 set_rule(value
, Memory
,
761 get_uleb128(&ptr
.p8
, end
), state
);
763 case DW_CFA_val_offset
:
764 value
= get_uleb128(&ptr
.p8
, end
);
765 set_rule(value
, Value
,
766 get_uleb128(&ptr
.p8
, end
), state
);
768 case DW_CFA_offset_extended_sf
:
769 value
= get_uleb128(&ptr
.p8
, end
);
770 set_rule(value
, Memory
,
771 get_sleb128(&ptr
.p8
, end
), state
);
773 case DW_CFA_val_offset_sf
:
774 value
= get_uleb128(&ptr
.p8
, end
);
775 set_rule(value
, Value
,
776 get_sleb128(&ptr
.p8
, end
), state
);
778 case DW_CFA_restore_extended
:
779 unw_debug("cfa_restore_extended: ");
780 case DW_CFA_undefined
:
781 unw_debug("cfa_undefined: ");
782 case DW_CFA_same_value
:
783 unw_debug("cfa_same_value: ");
784 set_rule(get_uleb128(&ptr
.p8
, end
), Nowhere
, 0,
787 case DW_CFA_register
:
788 unw_debug("cfa_register: ");
789 value
= get_uleb128(&ptr
.p8
, end
);
792 get_uleb128(&ptr
.p8
, end
), state
);
794 case DW_CFA_remember_state
:
795 unw_debug("cfa_remember_state: ");
796 if (ptr
.p8
== state
->label
) {
800 if (state
->stackDepth
>= MAX_STACK_DEPTH
)
802 state
->stack
[state
->stackDepth
++] = ptr
.p8
;
804 case DW_CFA_restore_state
:
805 unw_debug("cfa_restore_state: ");
806 if (state
->stackDepth
) {
807 const uleb128_t loc
= state
->loc
;
808 const u8
*label
= state
->label
;
811 state
->stack
[state
->stackDepth
- 1];
812 memcpy(&state
->cfa
, &badCFA
,
814 memset(state
->regs
, 0,
815 sizeof(state
->regs
));
816 state
->stackDepth
= 0;
818 processCFI(start
, end
, 0, ptrType
,
821 state
->label
= label
;
826 state
->cfa
.reg
= get_uleb128(&ptr
.p8
, end
);
827 unw_debug("cfa_def_cfa: r%lu ", state
->cfa
.reg
);
829 case DW_CFA_def_cfa_offset
:
830 state
->cfa
.offs
= get_uleb128(&ptr
.p8
, end
);
831 unw_debug("cfa_def_cfa_offset: 0x%lx ",
834 case DW_CFA_def_cfa_sf
:
835 state
->cfa
.reg
= get_uleb128(&ptr
.p8
, end
);
837 case DW_CFA_def_cfa_offset_sf
:
838 state
->cfa
.offs
= get_sleb128(&ptr
.p8
, end
)
841 case DW_CFA_def_cfa_register
:
842 unw_debug("cfa_def_cfa_register: ");
843 state
->cfa
.reg
= get_uleb128(&ptr
.p8
, end
);
845 /*todo case DW_CFA_def_cfa_expression: */
846 /*todo case DW_CFA_expression: */
847 /*todo case DW_CFA_val_expression: */
848 case DW_CFA_GNU_args_size
:
849 get_uleb128(&ptr
.p8
, end
);
851 case DW_CFA_GNU_negative_offset_extended
:
852 value
= get_uleb128(&ptr
.p8
, end
);
855 (uleb128_t
) 0 - get_uleb128(&ptr
.p8
,
859 case DW_CFA_GNU_window_save
:
861 unw_debug("UNKNOWN OPCODE 0x%x\n", opcode
);
867 unw_debug("\ncfa_adv_loc: ");
868 result
= advance_loc(*ptr
.p8
++ & 0x3f, state
);
871 unw_debug("cfa_offset: ");
872 value
= *ptr
.p8
++ & 0x3f;
873 set_rule(value
, Memory
, get_uleb128(&ptr
.p8
, end
),
877 unw_debug("cfa_restore: ");
878 set_rule(*ptr
.p8
++ & 0x3f, Nowhere
, 0, state
);
884 if (result
&& targetLoc
!= 0 && targetLoc
< state
->loc
)
888 return result
&& ptr
.p8
== end
&& (targetLoc
== 0 || (
889 /*todo While in theory this should apply, gcc in practice omits
890 everything past the function prolog, and hence the location
891 never reaches the end of the function.
892 targetLoc < state->loc && */ state
->label
== NULL
));
895 /* Unwind to previous to frame. Returns 0 if successful, negative
896 * number in case of an error. */
897 int arc_unwind(struct unwind_frame_info
*frame
)
899 #define FRAME_REG(r, t) (((t *)frame)[reg_info[r].offs])
900 const u32
*fde
= NULL
, *cie
= NULL
;
901 const u8
*ptr
= NULL
, *end
= NULL
;
902 unsigned long pc
= UNW_PC(frame
) - frame
->call_frame
;
903 unsigned long startLoc
= 0, endLoc
= 0, cfa
;
906 uleb128_t retAddrReg
= 0;
907 const struct unwind_table
*table
;
908 struct unwind_state state
;
912 unw_debug("\n\nUNWIND FRAME:\n");
913 unw_debug("PC: 0x%lx BLINK: 0x%lx, SP: 0x%lx, FP: 0x%x\n",
914 UNW_PC(frame
), UNW_BLINK(frame
), UNW_SP(frame
),
917 if (UNW_PC(frame
) == 0)
922 unsigned long *sptr
= (unsigned long *)UNW_SP(frame
);
923 unw_debug("\nStack Dump:\n");
924 for (i
= 0; i
< 20; i
++, sptr
++)
925 unw_debug("0x%p: 0x%lx\n", sptr
, *sptr
);
930 table
= find_table(pc
);
932 && !(table
->size
& (sizeof(*fde
) - 1))) {
933 const u8
*hdr
= table
->header
;
934 unsigned long tableSize
;
937 if (hdr
&& hdr
[0] == 1) {
938 switch (hdr
[3] & DW_EH_PE_FORM
) {
939 case DW_EH_PE_native
:
940 tableSize
= sizeof(unsigned long);
956 end
= hdr
+ table
->hdrsz
;
957 if (tableSize
&& read_pointer(&ptr
, end
, hdr
[1])
958 == (unsigned long)table
->address
959 && (i
= read_pointer(&ptr
, end
, hdr
[2])) > 0
960 && i
== (end
- ptr
) / (2 * tableSize
)
961 && !((end
- ptr
) % (2 * tableSize
))) {
964 ptr
+ (i
/ 2) * (2 * tableSize
);
966 startLoc
= read_pointer(&cur
,
972 ptr
= cur
- tableSize
;
975 } while (startLoc
&& i
> 1);
977 && (startLoc
= read_pointer(&ptr
,
981 fde
= (void *)read_pointer(&ptr
,
989 cie
= cie_for_fde(fde
, table
);
990 ptr
= (const u8
*)(fde
+ 2);
994 && (ptrType
= fde_pointer_type(cie
)) >= 0
995 && read_pointer(&ptr
,
996 (const u8
*)(fde
+ 1) + *fde
,
997 ptrType
) == startLoc
) {
998 if (!(ptrType
& DW_EH_PE_indirect
))
1000 DW_EH_PE_FORM
| DW_EH_PE_signed
;
1002 startLoc
+ read_pointer(&ptr
,
1017 memset(&state
, 0, sizeof(state
));
1018 state
.cieEnd
= ptr
; /* keep here temporarily */
1019 ptr
= (const u8
*)(cie
+ 2);
1020 end
= (const u8
*)(cie
+ 1) + *cie
;
1021 frame
->call_frame
= 1;
1023 /* check if augmentation size is first (thus present) */
1025 while (++ptr
< end
&& *ptr
) {
1027 /* chk for ignorable or already handled
1028 * nul-terminated augmentation string */
1034 frame
->call_frame
= 0;
1042 if (ptr
>= end
|| *ptr
)
1048 /* get code alignment factor */
1049 state
.codeAlign
= get_uleb128(&ptr
, end
);
1050 /* get data alignment factor */
1051 state
.dataAlign
= get_sleb128(&ptr
, end
);
1052 if (state
.codeAlign
== 0 || state
.dataAlign
== 0 || ptr
>= end
)
1056 state
.version
<= 1 ? *ptr
++ : get_uleb128(&ptr
,
1058 unw_debug("CIE Frame Info:\n");
1059 unw_debug("return Address register 0x%lx\n",
1061 unw_debug("data Align: %ld\n", state
.dataAlign
);
1062 unw_debug("code Align: %lu\n", state
.codeAlign
);
1063 /* skip augmentation */
1064 if (((const char *)(cie
+ 2))[1] == 'z') {
1065 uleb128_t augSize
= get_uleb128(&ptr
, end
);
1069 if (ptr
> end
|| retAddrReg
>= ARRAY_SIZE(reg_info
)
1070 || REG_INVALID(retAddrReg
)
1071 || reg_info
[retAddrReg
].width
!=
1072 sizeof(unsigned long))
1077 state
.cieStart
= ptr
;
1080 end
= (const u8
*)(fde
+ 1) + *fde
;
1081 /* skip augmentation */
1082 if (((const char *)(cie
+ 2))[1] == 'z') {
1083 uleb128_t augSize
= get_uleb128(&ptr
, end
);
1085 if ((ptr
+= augSize
) > end
)
1089 if (cie
== NULL
|| fde
== NULL
) {
1090 #ifdef CONFIG_FRAME_POINTER
1091 unsigned long top
, bottom
;
1093 top
= STACK_TOP_UNW(frame
->task
);
1094 bottom
= STACK_BOTTOM_UNW(frame
->task
);
1095 #if FRAME_RETADDR_OFFSET < 0
1096 if (UNW_SP(frame
) < top
&& UNW_FP(frame
) <= UNW_SP(frame
)
1097 && bottom
< UNW_FP(frame
)
1099 if (UNW_SP(frame
) > top
&& UNW_FP(frame
) >= UNW_SP(frame
)
1100 && bottom
> UNW_FP(frame
)
1102 && !((UNW_SP(frame
) | UNW_FP(frame
))
1103 & (sizeof(unsigned long) - 1))) {
1106 if (!__get_user(link
, (unsigned long *)
1107 (UNW_FP(frame
) + FRAME_LINK_OFFSET
))
1108 #if FRAME_RETADDR_OFFSET < 0
1109 && link
> bottom
&& link
< UNW_FP(frame
)
1111 && link
> UNW_FP(frame
) && link
< bottom
1113 && !(link
& (sizeof(link
) - 1))
1114 && !__get_user(UNW_PC(frame
),
1115 (unsigned long *)(UNW_FP(frame
)
1116 + FRAME_RETADDR_OFFSET
)))
1119 UNW_FP(frame
) + FRAME_RETADDR_OFFSET
1120 #if FRAME_RETADDR_OFFSET < 0
1125 sizeof(UNW_PC(frame
));
1126 UNW_FP(frame
) = link
;
1133 state
.org
= startLoc
;
1134 memcpy(&state
.cfa
, &badCFA
, sizeof(state
.cfa
));
1136 unw_debug("\nProcess instructions\n");
1138 /* process instructions
1139 * For ARC, we optimize by having blink(retAddrReg) with
1140 * the sameValue in the leaf function, so we should not check
1141 * state.regs[retAddrReg].where == Nowhere
1143 if (!processCFI(ptr
, end
, pc
, ptrType
, &state
)
1144 || state
.loc
> endLoc
1145 /* || state.regs[retAddrReg].where == Nowhere */
1146 || state
.cfa
.reg
>= ARRAY_SIZE(reg_info
)
1147 || reg_info
[state
.cfa
.reg
].width
!= sizeof(unsigned long)
1148 || state
.cfa
.offs
% sizeof(unsigned long))
1154 unw_debug("\nRegister State Based on the rules parsed from FDE:\n");
1155 for (i
= 0; i
< ARRAY_SIZE(state
.regs
); ++i
) {
1160 switch (state
.regs
[i
].where
) {
1164 unw_debug(" r%d: c(%lu),", i
, state
.regs
[i
].value
);
1167 unw_debug(" r%d: r(%lu),", i
, state
.regs
[i
].value
);
1170 unw_debug(" r%d: v(%lu),", i
, state
.regs
[i
].value
);
1179 if (frame
->call_frame
1180 && !UNW_DEFAULT_RA(state
.regs
[retAddrReg
], state
.dataAlign
))
1181 frame
->call_frame
= 0;
1182 cfa
= FRAME_REG(state
.cfa
.reg
, unsigned long) + state
.cfa
.offs
;
1183 startLoc
= min_t(unsigned long, UNW_SP(frame
), cfa
);
1184 endLoc
= max_t(unsigned long, UNW_SP(frame
), cfa
);
1185 if (STACK_LIMIT(startLoc
) != STACK_LIMIT(endLoc
)) {
1186 startLoc
= min(STACK_LIMIT(cfa
), cfa
);
1187 endLoc
= max(STACK_LIMIT(cfa
), cfa
);
1190 unw_debug("\nCFA reg: 0x%lx, offset: 0x%lx => 0x%lx\n",
1191 state
.cfa
.reg
, state
.cfa
.offs
, cfa
);
1193 for (i
= 0; i
< ARRAY_SIZE(state
.regs
); ++i
) {
1194 if (REG_INVALID(i
)) {
1195 if (state
.regs
[i
].where
== Nowhere
)
1199 switch (state
.regs
[i
].where
) {
1203 if (state
.regs
[i
].value
>= ARRAY_SIZE(reg_info
)
1204 || REG_INVALID(state
.regs
[i
].value
)
1205 || reg_info
[i
].width
>
1206 reg_info
[state
.regs
[i
].value
].width
)
1208 switch (reg_info
[state
.regs
[i
].value
].width
) {
1210 state
.regs
[i
].value
=
1211 FRAME_REG(state
.regs
[i
].value
, const u8
);
1214 state
.regs
[i
].value
=
1215 FRAME_REG(state
.regs
[i
].value
, const u16
);
1218 state
.regs
[i
].value
=
1219 FRAME_REG(state
.regs
[i
].value
, const u32
);
1223 state
.regs
[i
].value
=
1224 FRAME_REG(state
.regs
[i
].value
, const u64
);
1234 unw_debug("\nRegister state after evaluation with realtime Stack:\n");
1235 fptr
= (unsigned long *)(&frame
->regs
);
1236 for (i
= 0; i
< ARRAY_SIZE(state
.regs
); ++i
, fptr
++) {
1240 switch (state
.regs
[i
].where
) {
1242 if (reg_info
[i
].width
!= sizeof(UNW_SP(frame
))
1243 || &FRAME_REG(i
, __typeof__(UNW_SP(frame
)))
1246 UNW_SP(frame
) = cfa
;
1249 switch (reg_info
[i
].width
) {
1251 FRAME_REG(i
, u8
) = state
.regs
[i
].value
;
1254 FRAME_REG(i
, u16
) = state
.regs
[i
].value
;
1257 FRAME_REG(i
, u32
) = state
.regs
[i
].value
;
1261 FRAME_REG(i
, u64
) = state
.regs
[i
].value
;
1269 if (reg_info
[i
].width
!= sizeof(unsigned long))
1271 FRAME_REG(i
, unsigned long) = cfa
+ state
.regs
[i
].value
1275 addr
= cfa
+ state
.regs
[i
].value
* state
.dataAlign
;
1277 if ((state
.regs
[i
].value
* state
.dataAlign
)
1278 % sizeof(unsigned long)
1280 || addr
+ sizeof(unsigned long) < addr
1281 || addr
+ sizeof(unsigned long) > endLoc
)
1284 switch (reg_info
[i
].width
) {
1286 __get_user(FRAME_REG(i
, u8
),
1290 __get_user(FRAME_REG(i
, u16
),
1291 (u16 __user
*)addr
);
1294 __get_user(FRAME_REG(i
, u32
),
1295 (u32 __user
*)addr
);
1299 __get_user(FRAME_REG(i
, u64
),
1300 (u64 __user
*)addr
);
1309 unw_debug("r%d: 0x%lx ", i
, *fptr
);
1315 EXPORT_SYMBOL(arc_unwind
);