How to make sense of a stack trace

Stefan Sperling stsp at stsp.in-berlin.de
Tue Jan 9 12:46:55 CET 2007


Hi everyone,

I've written a small guide for making sense of strack traces
for the wiki.

Since the wiki keeps timing out on me at the moment, I thought
I'd send this here right now since someone (John?) may need it
before dslinux.org is in shape again. I don't know how much time
it will take until the site is fixed...


== Data aborts ==

Here is a small example of how to debug a program that fails with a data abort (invalid memory reference).
It's based on a question and example by John in [http://www.dslinux.org/index.php?showtopic=1966&hl= this thread].

John posted the following data abort he got from the ''dropbear'' program:
 Data abort: pc=0x08246ce4
             lr=0x08243dfc
             sp=0x0237fc80
 Possible stack trace:
 01: 08243dfc
 02: 08249ce4
 03: 0824c0fc
 04: 0824bf00
 05: 0825a668
 06: 0825a640
 07: 082589b8
 08: 08262680
 09: 08262680
 10: 082561d8
 11: 08262688
 12: 0824008c
 13: 08240088
 14: 08262688

His question was:
 "Is there a dummies guide to getting something useful out of these numbers?"

There wasn't at the time of writing, so I made one:

Let's consider this section first:
 Data abort: pc=0x08246ce4
             lr=0x08243dfc
             sp=0x0237fc80

The symbols mean:
* pc = instruction pointer address
* lr = address of previous stack frame (i.e. function symbol we are coming from).
* sp = stack pointer (current top of stack)

Since binaries run in DSLinux are relocated at run time, you need the offset the binary
was loaded at in memory to make sense of any of these numbers.

Run this command on the cross-compilation host to enable flat binary format verbosity
(a.k.a "kernel-traced load") for the given binary (in this case, ''dropbear''):
 arm-linux-elf-flthdr -k dropbear

When you run that dropbear binary on the DS, it should now print something like this on the console:
 BINFMT_FLAT: Loading file /bin/dropbear
 Mapping is 21bee44, Entry point is 50, data_start is 2c300
 Load /bin/dropbear: TEXT='''21bee84'''-21eb144 DATA=810004-8185534 BSS=8185534-8188e4

The numbers are ripped off a traced load of busybox in this example,
so they're not accurate for our dropbear example.
Anyway, what you want to know is the number marked bold (21bee84), which is the start of the
program's text segment in memory. Substract that number from a symbol printed in the trace to
map it to a numeric symbol in the binary.

The mapping of symbol names in code, such as function and variable names, and numeric symbols in
the binary is referred to as a ''symbolmap''. It can be obtained by running the symbolmap.sh script,
which is part of the DSLinux toolchain, on the .gdb file of the binary.
So for ''dropbear'', we'd run:
 symbolmap.sh user/dropbear/dropbear.gdb
to obtain a symbol map for dropbear.

Now on to the stack trace:
 Possible stack trace:
 01: 08243dfc
 02: 08249ce4
 03: 0824c0fc
 ...
Note that this is a '''possible''' trace: it is very likely inaccurate.
Lacking a better method to produce a trace, we simply walk up the stack and print everything
that looks like it was an address in range of the text segment of the faulting binary.
So the trace may contain garbage.

To get any idea at all of what the trace might actually be, substract the text segment offset
obtained above from each address printed in the trace, and look up the result in the symbol map.

For example, if this was a snippet from the binary's symbol map: 
 ...
 00019cc0 W strcoll
 00019ce0 T strcpy
 00019cfc T strdup
 00019d30 T strlen
 ...
and the result of the substraction was in range 19ce0 to 19cfb inclusive, then the function in question
is strcpy. By the way, "T" in the symbol map means that the symbol is in the text segment of the binary.
You can look up the meaning of the letters in the symbol map in the ''nm(1)'' man page.

It would nice if we had a script that automated this process a little...

-- 
stefan
http://stsp.in-berlin.de                                 PGP Key: 0xF59D25F0
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 187 bytes
Desc: not available
Url : http://mailman.dslinux.in-berlin.de/pipermail/dslinux-devel-dslinux.in-berlin.de/attachments/20070109/35e8a564/attachment.pgp 


More information about the dslinux-devel mailing list