Blame view

scripts/decodecode 2.15 KB
dcecc6c70   Randy Dunlap   doc/oops-tracing:...
1
2
3
4
5
6
7
  #!/bin/sh
  # Disassemble the Code: line in Linux oopses
  # usage: decodecode < oops.file
  #
  # options: set env. variable AFLAGS=options to pass options to "as";
  # e.g., to decode an i386 oops on an x86_64 system, use:
  # AFLAGS=--32 decodecode < 386.oops
fa220d89a   Randy Dunlap   kbuild: minor scr...
8
  cleanup() {
5358db0b0   Rabin Vincent   scripts: add ARM ...
9
  	rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
fa220d89a   Randy Dunlap   kbuild: minor scr...
10
11
12
13
14
15
16
17
18
19
20
  	exit 1
  }
  
  die() {
  	echo "$@"
  	exit 1
  }
  
  trap cleanup EXIT
  
  T=`mktemp` || die "cannot create temp file"
dcecc6c70   Randy Dunlap   doc/oops-tracing:...
21
22
23
24
25
26
27
28
29
30
31
32
33
  code=
  
  while read i ; do
  
  case "$i" in
  *Code:*)
  	code=$i
  	;;
  esac
  
  done
  
  if [ -z "$code" ]; then
fa220d89a   Randy Dunlap   kbuild: minor scr...
34
  	rm $T
dcecc6c70   Randy Dunlap   doc/oops-tracing:...
35
36
37
38
39
  	exit
  fi
  
  echo $code
  code=`echo $code | sed -e 's/.*Code: //'`
5358db0b0   Rabin Vincent   scripts: add ARM ...
40
  width=`expr index "$code" ' '`
b396aa030   Rabin Vincent   scripts: decodeco...
41
  width=$((($width-1)/2))
5358db0b0   Rabin Vincent   scripts: add ARM ...
42
43
44
45
46
47
48
  case $width in
  1) type=byte ;;
  2) type=2byte ;;
  4) type=4byte ;;
  esac
  
  disas() {
b396aa030   Rabin Vincent   scripts: decodeco...
49
  	${CROSS_COMPILE}as $AFLAGS -o $1.o $1.s > /dev/null 2>&1
5358db0b0   Rabin Vincent   scripts: add ARM ...
50

b396aa030   Rabin Vincent   scripts: decodeco...
51
52
  	if [ "$ARCH" = "arm" ]; then
  		if [ $width -eq 2 ]; then
5358db0b0   Rabin Vincent   scripts: add ARM ...
53
54
55
56
57
58
59
  			OBJDUMPFLAGS="-M force-thumb"
  		fi
  
  		${CROSS_COMPILE}strip $1.o
  	fi
  
  	${CROSS_COMPILE}objdump $OBJDUMPFLAGS -S $1.o | \
b396aa030   Rabin Vincent   scripts: decodeco...
60
  		grep -v "/tmp\|Disassembly\|\.text\|^$" > $1.dis 2>&1
5358db0b0   Rabin Vincent   scripts: add ARM ...
61
  }
dcecc6c70   Randy Dunlap   doc/oops-tracing:...
62
63
64
65
  marker=`expr index "$code" "\<"`
  if [ $marker -eq 0 ]; then
  	marker=`expr index "$code" "\("`
  fi
846442c8d   Arjan van de Ven   scripts: improve ...
66
  touch $T.oo
dcecc6c70   Randy Dunlap   doc/oops-tracing:...
67
  if [ $marker -ne 0 ]; then
846442c8d   Arjan van de Ven   scripts: improve ...
68
69
70
  	echo All code >> $T.oo
  	echo ======== >> $T.oo
  	beforemark=`echo "$code"`
5358db0b0   Rabin Vincent   scripts: add ARM ...
71
72
73
74
75
  	echo -n "	.$type 0x" > $T.s
  	echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
  	disas $T
  	cat $T.dis >> $T.oo
  	rm -f $T.o $T.s $T.dis
dcecc6c70   Randy Dunlap   doc/oops-tracing:...
76
77
78
79
  
  # and fix code at-and-after marker
  	code=`echo "$code" | cut -c$((${marker} + 1))-`
  fi
846442c8d   Arjan van de Ven   scripts: improve ...
80
81
  echo Code starting with the faulting instruction  > $T.aa
  echo =========================================== >> $T.aa
5358db0b0   Rabin Vincent   scripts: add ARM ...
82
83
  code=`echo $code | sed -e 's/ [<(]/ /;s/[>)] / /;s/ /,0x/g; s/[>)]$//'`
  echo -n "	.$type 0x" > $T.s
dcecc6c70   Randy Dunlap   doc/oops-tracing:...
84
  echo $code >> $T.s
5358db0b0   Rabin Vincent   scripts: add ARM ...
85
86
  disas $T
  cat $T.dis >> $T.aa
846442c8d   Arjan van de Ven   scripts: improve ...
87

18ff44b18   Borislav Petkov   scripts/decodecod...
88
89
90
91
92
  # (lines of whole $T.oo) - (lines of $T.aa, i.e. "Code starting") + 3,
  # i.e. the title + the "===..=" line (sed is counting from 1, 0 address is
  # special)
  faultlinenum=$(( $(wc -l $T.oo  | cut -d" " -f1) - \
  		 $(wc -l $T.aa  | cut -d" " -f1) + 3))
2a95e37c1   Borislav Petkov   scripts/decodecod...
93
  faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
5358db0b0   Rabin Vincent   scripts: add ARM ...
94
  faultline=`echo "$faultline" | sed -e 's/\[/\\\[/g; s/\]/\\\]/g'`
846442c8d   Arjan van de Ven   scripts: improve ...
95

18ff44b18   Borislav Petkov   scripts/decodecod...
96
  cat $T.oo | sed -e "${faultlinenum}s/^\(.*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/"
846442c8d   Arjan van de Ven   scripts: improve ...
97
98
99
  echo
  cat $T.aa
  cleanup