blob: 9cef558528aac890dfc2d2545aa9eb2fd8be3934 [file] [log] [blame]
Randy Dunlapdcecc6c2007-07-15 23:41:15 -07001#!/bin/sh
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01002# SPDX-License-Identifier: GPL-2.0
Randy Dunlapdcecc6c2007-07-15 23:41:15 -07003# Disassemble the Code: line in Linux oopses
4# usage: decodecode < oops.file
5#
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
9
Randy Dunlapfa220d82008-01-14 15:18:31 -080010cleanup() {
Rabin Vincent5358db02010-01-05 20:27:58 +053011 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
Randy Dunlapfa220d82008-01-14 15:18:31 -080012 exit 1
13}
14
15die() {
16 echo "$@"
17 exit 1
18}
19
20trap cleanup EXIT
21
22T=`mktemp` || die "cannot create temp file"
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070023code=
Andy Shevchenko7e68b362018-01-31 16:14:10 -080024cont=
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070025
26while read i ; do
27
28case "$i" in
29*Code:*)
30 code=$i
Andy Shevchenko7e68b362018-01-31 16:14:10 -080031 cont=yes
32 ;;
33*)
34 [ -n "$cont" ] && {
35 xdump="$(echo $i | grep '^[[:xdigit:]<>[:space:]]\+$')"
36 if [ -n "$xdump" ]; then
37 code="$code $xdump"
38 else
39 cont=
40 fi
41 }
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070042 ;;
43esac
44
45done
46
47if [ -z "$code" ]; then
Randy Dunlapfa220d82008-01-14 15:18:31 -080048 rm $T
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070049 exit
50fi
51
52echo $code
53code=`echo $code | sed -e 's/.*Code: //'`
54
Rabin Vincent5358db02010-01-05 20:27:58 +053055width=`expr index "$code" ' '`
Rabin Vincentb396aa02010-06-03 22:48:12 +053056width=$((($width-1)/2))
Rabin Vincent5358db02010-01-05 20:27:58 +053057case $width in
581) type=byte ;;
592) type=2byte ;;
604) type=4byte ;;
61esac
62
63disas() {
Rabin Vincentb396aa02010-06-03 22:48:12 +053064 ${CROSS_COMPILE}as $AFLAGS -o $1.o $1.s > /dev/null 2>&1
Rabin Vincent5358db02010-01-05 20:27:58 +053065
Rabin Vincentb396aa02010-06-03 22:48:12 +053066 if [ "$ARCH" = "arm" ]; then
67 if [ $width -eq 2 ]; then
Rabin Vincent5358db02010-01-05 20:27:58 +053068 OBJDUMPFLAGS="-M force-thumb"
69 fi
70
71 ${CROSS_COMPILE}strip $1.o
72 fi
73
Will Deaconbe9fa662018-01-18 16:33:57 -080074 if [ "$ARCH" = "arm64" ]; then
75 if [ $width -eq 4 ]; then
76 type=inst
77 fi
78
79 ${CROSS_COMPILE}strip $1.o
80 fi
81
Rabin Vincent5358db02010-01-05 20:27:58 +053082 ${CROSS_COMPILE}objdump $OBJDUMPFLAGS -S $1.o | \
Rabin Vincentb396aa02010-06-03 22:48:12 +053083 grep -v "/tmp\|Disassembly\|\.text\|^$" > $1.dis 2>&1
Rabin Vincent5358db02010-01-05 20:27:58 +053084}
85
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070086marker=`expr index "$code" "\<"`
87if [ $marker -eq 0 ]; then
88 marker=`expr index "$code" "\("`
89fi
90
Arjan van de Ven846442c2008-12-01 14:21:06 -080091touch $T.oo
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070092if [ $marker -ne 0 ]; then
Arjan van de Ven846442c2008-12-01 14:21:06 -080093 echo All code >> $T.oo
94 echo ======== >> $T.oo
95 beforemark=`echo "$code"`
Rabin Vincent5358db02010-01-05 20:27:58 +053096 echo -n " .$type 0x" > $T.s
97 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
98 disas $T
99 cat $T.dis >> $T.oo
100 rm -f $T.o $T.s $T.dis
Randy Dunlapdcecc6c2007-07-15 23:41:15 -0700101
102# and fix code at-and-after marker
103 code=`echo "$code" | cut -c$((${marker} + 1))-`
104fi
Arjan van de Ven846442c2008-12-01 14:21:06 -0800105echo Code starting with the faulting instruction > $T.aa
106echo =========================================== >> $T.aa
Rabin Vincent5358db02010-01-05 20:27:58 +0530107code=`echo $code | sed -e 's/ [<(]/ /;s/[>)] / /;s/ /,0x/g; s/[>)]$//'`
108echo -n " .$type 0x" > $T.s
Randy Dunlapdcecc6c2007-07-15 23:41:15 -0700109echo $code >> $T.s
Rabin Vincent5358db02010-01-05 20:27:58 +0530110disas $T
111cat $T.dis >> $T.aa
Arjan van de Ven846442c2008-12-01 14:21:06 -0800112
Borislav Petkov18ff44b2013-04-29 15:05:54 -0700113# (lines of whole $T.oo) - (lines of $T.aa, i.e. "Code starting") + 3,
114# i.e. the title + the "===..=" line (sed is counting from 1, 0 address is
115# special)
116faultlinenum=$(( $(wc -l $T.oo | cut -d" " -f1) - \
117 $(wc -l $T.aa | cut -d" " -f1) + 3))
118
Borislav Petkov2a95e372012-08-15 13:00:51 +0200119faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
Rabin Vincent5358db02010-01-05 20:27:58 +0530120faultline=`echo "$faultline" | sed -e 's/\[/\\\[/g; s/\]/\\\]/g'`
Arjan van de Ven846442c2008-12-01 14:21:06 -0800121
Borislav Petkov18ff44b2013-04-29 15:05:54 -0700122cat $T.oo | sed -e "${faultlinenum}s/^\(.*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/"
Arjan van de Ven846442c2008-12-01 14:21:06 -0800123echo
124cat $T.aa
125cleanup