License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / scripts / decodecode
blob438120da1361002833a2014b1ca3fb02cc0aa539
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
3 # Disassemble the Code: line in Linux oopses
4 # usage: decodecode < oops.file
6 # options: set env. variable AFLAGS=options to pass options to "as";
7 # e.g., to decode an i386 oops on an x86_64 system, use:
8 # AFLAGS=--32 decodecode < 386.oops
10 cleanup() {
11 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
12 exit 1
15 die() {
16 echo "$@"
17 exit 1
20 trap cleanup EXIT
22 T=`mktemp` || die "cannot create temp file"
23 code=
25 while read i ; do
27 case "$i" in
28 *Code:*)
29 code=$i
31 esac
33 done
35 if [ -z "$code" ]; then
36 rm $T
37 exit
40 echo $code
41 code=`echo $code | sed -e 's/.*Code: //'`
43 width=`expr index "$code" ' '`
44 width=$((($width-1)/2))
45 case $width in
46 1) type=byte ;;
47 2) type=2byte ;;
48 4) type=4byte ;;
49 esac
51 disas() {
52 ${CROSS_COMPILE}as $AFLAGS -o $1.o $1.s > /dev/null 2>&1
54 if [ "$ARCH" = "arm" ]; then
55 if [ $width -eq 2 ]; then
56 OBJDUMPFLAGS="-M force-thumb"
59 ${CROSS_COMPILE}strip $1.o
62 ${CROSS_COMPILE}objdump $OBJDUMPFLAGS -S $1.o | \
63 grep -v "/tmp\|Disassembly\|\.text\|^$" > $1.dis 2>&1
66 marker=`expr index "$code" "\<"`
67 if [ $marker -eq 0 ]; then
68 marker=`expr index "$code" "\("`
71 touch $T.oo
72 if [ $marker -ne 0 ]; then
73 echo All code >> $T.oo
74 echo ======== >> $T.oo
75 beforemark=`echo "$code"`
76 echo -n " .$type 0x" > $T.s
77 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
78 disas $T
79 cat $T.dis >> $T.oo
80 rm -f $T.o $T.s $T.dis
82 # and fix code at-and-after marker
83 code=`echo "$code" | cut -c$((${marker} + 1))-`
85 echo Code starting with the faulting instruction > $T.aa
86 echo =========================================== >> $T.aa
87 code=`echo $code | sed -e 's/ [<(]/ /;s/[>)] / /;s/ /,0x/g; s/[>)]$//'`
88 echo -n " .$type 0x" > $T.s
89 echo $code >> $T.s
90 disas $T
91 cat $T.dis >> $T.aa
93 # (lines of whole $T.oo) - (lines of $T.aa, i.e. "Code starting") + 3,
94 # i.e. the title + the "===..=" line (sed is counting from 1, 0 address is
95 # special)
96 faultlinenum=$(( $(wc -l $T.oo | cut -d" " -f1) - \
97 $(wc -l $T.aa | cut -d" " -f1) + 3))
99 faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
100 faultline=`echo "$faultline" | sed -e 's/\[/\\\[/g; s/\]/\\\]/g'`
102 cat $T.oo | sed -e "${faultlinenum}s/^\(.*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/"
103 echo
104 cat $T.aa
105 cleanup