blob: c711a196511c666edfda6ef9cc0dbe1875c5592a [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
Borislav Petkovd72e7202020-10-13 16:48:14 -07009# PC=hex - the PC (program counter) the oops points to
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070010
Randy Dunlapfa220d82008-01-14 15:18:31 -080011cleanup() {
Rabin Vincent5358db02010-01-05 20:27:58 +053012 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
Randy Dunlapfa220d82008-01-14 15:18:31 -080013 exit 1
14}
15
16die() {
17 echo "$@"
18 exit 1
19}
20
21trap cleanup EXIT
22
23T=`mktemp` || die "cannot create temp file"
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070024code=
Andy Shevchenko7e68b362018-01-31 16:14:10 -080025cont=
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070026
27while read i ; do
28
29case "$i" in
30*Code:*)
31 code=$i
Andy Shevchenko7e68b362018-01-31 16:14:10 -080032 cont=yes
33 ;;
34*)
35 [ -n "$cont" ] && {
36 xdump="$(echo $i | grep '^[[:xdigit:]<>[:space:]]\+$')"
37 if [ -n "$xdump" ]; then
38 code="$code $xdump"
39 else
40 cont=
41 fi
42 }
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070043 ;;
44esac
45
46done
47
48if [ -z "$code" ]; then
Randy Dunlapfa220d82008-01-14 15:18:31 -080049 rm $T
Randy Dunlapdcecc6c2007-07-15 23:41:15 -070050 exit
51fi
52
53echo $code
54code=`echo $code | sed -e 's/.*Code: //'`
55
Rabin Vincent5358db02010-01-05 20:27:58 +053056width=`expr index "$code" ' '`
Rabin Vincentb396aa02010-06-03 22:48:12 +053057width=$((($width-1)/2))
Rabin Vincent5358db02010-01-05 20:27:58 +053058case $width in
591) type=byte ;;
602) type=2byte ;;
614) type=4byte ;;
62esac
63
Marc Zyngierc5cfb62f2018-12-28 00:31:21 -080064if [ -z "$ARCH" ]; then
65 case `uname -m` in
66 aarch64*) ARCH=arm64 ;;
67 arm*) ARCH=arm ;;
68 esac
69fi
70
Borislav Petkovd72e7202020-10-13 16:48:14 -070071# Params: (tmp_file, pc_sub)
Rabin Vincent5358db02010-01-05 20:27:58 +053072disas() {
Borislav Petkovd72e7202020-10-13 16:48:14 -070073 t=$1
74 pc_sub=$2
75
76 ${CROSS_COMPILE}as $AFLAGS -o $t.o $t.s > /dev/null 2>&1
Rabin Vincent5358db02010-01-05 20:27:58 +053077
Rabin Vincentb396aa02010-06-03 22:48:12 +053078 if [ "$ARCH" = "arm" ]; then
79 if [ $width -eq 2 ]; then
Rabin Vincent5358db02010-01-05 20:27:58 +053080 OBJDUMPFLAGS="-M force-thumb"
81 fi
82
Borislav Petkovd72e7202020-10-13 16:48:14 -070083 ${CROSS_COMPILE}strip $t.o
Rabin Vincent5358db02010-01-05 20:27:58 +053084 fi
85
Will Deaconbe9fa662018-01-18 16:33:57 -080086 if [ "$ARCH" = "arm64" ]; then
87 if [ $width -eq 4 ]; then
88 type=inst
89 fi
90
Borislav Petkovd72e7202020-10-13 16:48:14 -070091 ${CROSS_COMPILE}strip $t.o
Will Deaconbe9fa662018-01-18 16:33:57 -080092 fi
93
Borislav Petkovd72e7202020-10-13 16:48:14 -070094 if [ $pc_sub -ne 0 ]; then
95 if [ $PC ]; then
96 adj_vma=$(( $PC - $pc_sub ))
97 OBJDUMPFLAGS="$OBJDUMPFLAGS --adjust-vma=$adj_vma"
98 fi
99 fi
100
101 ${CROSS_COMPILE}objdump $OBJDUMPFLAGS -S $t.o | \
102 grep -v "/tmp\|Disassembly\|\.text\|^$" > $t.dis 2>&1
Rabin Vincent5358db02010-01-05 20:27:58 +0530103}
104
Randy Dunlapdcecc6c2007-07-15 23:41:15 -0700105marker=`expr index "$code" "\<"`
106if [ $marker -eq 0 ]; then
107 marker=`expr index "$code" "\("`
108fi
109
Borislav Petkovd72e7202020-10-13 16:48:14 -0700110
Arjan van de Ven846442c2008-12-01 14:21:06 -0800111touch $T.oo
Randy Dunlapdcecc6c2007-07-15 23:41:15 -0700112if [ $marker -ne 0 ]; then
Borislav Petkovd72e7202020-10-13 16:48:14 -0700113 # 2 opcode bytes and a single space
114 pc_sub=$(( $marker / 3 ))
Arjan van de Ven846442c2008-12-01 14:21:06 -0800115 echo All code >> $T.oo
116 echo ======== >> $T.oo
117 beforemark=`echo "$code"`
Rabin Vincent5358db02010-01-05 20:27:58 +0530118 echo -n " .$type 0x" > $T.s
119 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
Borislav Petkovd72e7202020-10-13 16:48:14 -0700120 disas $T $pc_sub
Rabin Vincent5358db02010-01-05 20:27:58 +0530121 cat $T.dis >> $T.oo
122 rm -f $T.o $T.s $T.dis
Randy Dunlapdcecc6c2007-07-15 23:41:15 -0700123
124# and fix code at-and-after marker
125 code=`echo "$code" | cut -c$((${marker} + 1))-`
126fi
Arjan van de Ven846442c2008-12-01 14:21:06 -0800127echo Code starting with the faulting instruction > $T.aa
128echo =========================================== >> $T.aa
weidonghui75e2f712021-11-05 13:34:42 -0700129code=`echo $code | sed -e 's/\r//;s/ [<(]/ /;s/[>)] / /;s/ /,0x/g; s/[>)]$//'`
Rabin Vincent5358db02010-01-05 20:27:58 +0530130echo -n " .$type 0x" > $T.s
Randy Dunlapdcecc6c2007-07-15 23:41:15 -0700131echo $code >> $T.s
Borislav Petkovd72e7202020-10-13 16:48:14 -0700132disas $T 0
Rabin Vincent5358db02010-01-05 20:27:58 +0530133cat $T.dis >> $T.aa
Arjan van de Ven846442c2008-12-01 14:21:06 -0800134
Borislav Petkov18ff44b2013-04-29 15:05:54 -0700135# (lines of whole $T.oo) - (lines of $T.aa, i.e. "Code starting") + 3,
136# i.e. the title + the "===..=" line (sed is counting from 1, 0 address is
137# special)
138faultlinenum=$(( $(wc -l $T.oo | cut -d" " -f1) - \
139 $(wc -l $T.aa | cut -d" " -f1) + 3))
140
Borislav Petkov2a95e372012-08-15 13:00:51 +0200141faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
Rabin Vincent5358db02010-01-05 20:27:58 +0530142faultline=`echo "$faultline" | sed -e 's/\[/\\\[/g; s/\]/\\\]/g'`
Arjan van de Ven846442c2008-12-01 14:21:06 -0800143
Ivan Delalandee08df072020-05-07 18:35:53 -0700144cat $T.oo | sed -e "${faultlinenum}s/^\([^:]*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/"
Arjan van de Ven846442c2008-12-01 14:21:06 -0800145echo
146cat $T.aa
147cleanup