blob: 8b30cc36744f8c2c1d5c24fcaebc9d2cfbd1889e [file] [log] [blame]
Randy Dunlapdcecc6c2007-07-15 23:41:15 -07001#!/bin/sh
2# Disassemble the Code: line in Linux oopses
3# usage: decodecode < oops.file
4#
5# options: set env. variable AFLAGS=options to pass options to "as";
6# e.g., to decode an i386 oops on an x86_64 system, use:
7# AFLAGS=--32 decodecode < 386.oops
8
Randy Dunlapfa220d82008-01-14 15:18:31 -08009cleanup() {
Rabin Vincent5358db02010-01-05 20:27:58 +053010 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
Randy Dunlapfa220d82008-01-14 15:18:31 -080011 exit 1
12}
13
14die() {
15 echo "$@"
16 exit 1
17}
18
19trap cleanup EXIT
20
21T=`mktemp` || die "cannot create temp file"
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070022code=
23
24while read i ; do
25
26case "$i" in
27*Code:*)
28 code=$i
29 ;;
30esac
31
32done
33
34if [ -z "$code" ]; then
Randy Dunlapfa220d82008-01-14 15:18:31 -080035 rm $T
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070036 exit
37fi
38
39echo $code
40code=`echo $code | sed -e 's/.*Code: //'`
41
Rabin Vincent5358db02010-01-05 20:27:58 +053042width=`expr index "$code" ' '`
43width=$[($width-1)/2]
44case $width in
451) type=byte ;;
462) type=2byte ;;
474) type=4byte ;;
48esac
49
50disas() {
51 ${CROSS_COMPILE}as $AFLAGS -o $1.o $1.s &> /dev/null
52
53 if [ "$ARCH" == "arm" ]; then
54 if [ $width == 2 ]; then
55 OBJDUMPFLAGS="-M force-thumb"
56 fi
57
58 ${CROSS_COMPILE}strip $1.o
59 fi
60
61 ${CROSS_COMPILE}objdump $OBJDUMPFLAGS -S $1.o | \
62 grep -v "/tmp\|Disassembly\|\.text\|^$" &> $1.dis
63}
64
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070065marker=`expr index "$code" "\<"`
66if [ $marker -eq 0 ]; then
67 marker=`expr index "$code" "\("`
68fi
69
Arjan van de Ven846442c2008-12-01 14:21:06 -080070touch $T.oo
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070071if [ $marker -ne 0 ]; then
Arjan van de Ven846442c2008-12-01 14:21:06 -080072 echo All code >> $T.oo
73 echo ======== >> $T.oo
74 beforemark=`echo "$code"`
Rabin Vincent5358db02010-01-05 20:27:58 +053075 echo -n " .$type 0x" > $T.s
76 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
77 disas $T
78 cat $T.dis >> $T.oo
79 rm -f $T.o $T.s $T.dis
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070080
81# and fix code at-and-after marker
82 code=`echo "$code" | cut -c$((${marker} + 1))-`
83fi
Arjan van de Ven846442c2008-12-01 14:21:06 -080084echo Code starting with the faulting instruction > $T.aa
85echo =========================================== >> $T.aa
Rabin Vincent5358db02010-01-05 20:27:58 +053086code=`echo $code | sed -e 's/ [<(]/ /;s/[>)] / /;s/ /,0x/g; s/[>)]$//'`
87echo -n " .$type 0x" > $T.s
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070088echo $code >> $T.s
Rabin Vincent5358db02010-01-05 20:27:58 +053089disas $T
90cat $T.dis >> $T.aa
Arjan van de Ven846442c2008-12-01 14:21:06 -080091
Rabin Vincent5358db02010-01-05 20:27:58 +053092faultline=`cat $T.dis | head -1 | cut -d":" -f2`
93faultline=`echo "$faultline" | sed -e 's/\[/\\\[/g; s/\]/\\\]/g'`
Arjan van de Ven846442c2008-12-01 14:21:06 -080094
95cat $T.oo | sed -e "s/\($faultline\)/\*\1 <-- trapping instruction/g"
96echo
97cat $T.aa
98cleanup