blob: e31e253fe5bd6ba3f9f9e0ad4d452f0845f4a9a1 [file] [log] [blame]
Sasha Levindbd1abb2014-06-04 11:39:23 -04001#!/bin/bash
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01002# SPDX-License-Identifier: GPL-2.0
Sasha Levindbd1abb2014-06-04 11:39:23 -04003# (c) 2014, Sasha Levin <sasha.levin@oracle.com>
4#set -x
5
Konstantin Khlebnikovecda6e22020-08-06 23:17:38 -07006if [[ $# < 1 ]]; then
Sasha Levindbd1abb2014-06-04 11:39:23 -04007 echo "Usage:"
Konstantin Khlebnikovecda6e22020-08-06 23:17:38 -07008 echo " $0 <vmlinux> [base path] [modules path]"
Sasha Levindbd1abb2014-06-04 11:39:23 -04009 exit 1
10fi
11
12vmlinux=$1
Konstantin Khlebnikovecda6e22020-08-06 23:17:38 -070013basepath=${2-auto}
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070014modpath=$3
Konstantin Khlebnikov431151b2020-08-06 23:17:41 -070015release=""
16
Sasha Levindbd1abb2014-06-04 11:39:23 -040017declare -A cache
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070018declare -A modcache
Sasha Levindbd1abb2014-06-04 11:39:23 -040019
Konstantin Khlebnikov431151b2020-08-06 23:17:41 -070020find_module() {
21 if [[ "$modpath" != "" ]] ; then
22 for fn in $(find "$modpath" -name "${module//_/[-_]}.ko*") ; do
23 if readelf -WS "$fn" | grep -qwF .debug_line ; then
24 echo $fn
25 return
26 fi
27 done
28 return 1
29 fi
30
31 modpath=$(dirname "$vmlinux")
32 find_module && return
33
34 if [[ $release == "" ]] ; then
35 release=$(gdb -ex 'print init_uts_ns.name.release' -ex 'quit' -quiet -batch "$vmlinux" | sed -n 's/\$1 = "\(.*\)".*/\1/p')
36 fi
37
38 for dn in {/usr/lib/debug,}/lib/modules/$release ; do
39 if [ -e "$dn" ] ; then
40 modpath="$dn"
41 find_module && return
42 fi
43 done
44
45 modpath=""
46 return 1
47}
48
Sasha Levindbd1abb2014-06-04 11:39:23 -040049parse_symbol() {
50 # The structure of symbol at this point is:
Robert Jarzmike260fe02015-09-04 15:43:26 -070051 # ([name]+[offset]/[total length])
Sasha Levindbd1abb2014-06-04 11:39:23 -040052 #
53 # For example:
54 # do_basic_setup+0x9c/0xbf
55
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070056 if [[ $module == "" ]] ; then
57 local objfile=$vmlinux
58 elif [[ "${modcache[$module]+isset}" == "isset" ]]; then
59 local objfile=${modcache[$module]}
60 else
Konstantin Khlebnikov431151b2020-08-06 23:17:41 -070061 local objfile=$(find_module)
62 if [[ $objfile == "" ]] ; then
Sasha Levina5dc8302020-06-15 18:24:27 -040063 echo "WARNING! Modules path isn't set, but is needed to parse this symbol" >&2
64 return
65 fi
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070066 modcache[$module]=$objfile
67 fi
68
Robert Jarzmike260fe02015-09-04 15:43:26 -070069 # Remove the englobing parenthesis
70 symbol=${symbol#\(}
71 symbol=${symbol%\)}
Sasha Levindbd1abb2014-06-04 11:39:23 -040072
Konstantin Khlebnikov1d6693f2019-03-05 15:41:34 -080073 # Strip segment
74 local segment
75 if [[ $symbol == *:* ]] ; then
76 segment=${symbol%%:*}:
77 symbol=${symbol#*:}
78 fi
79
Sasha Levindbd1abb2014-06-04 11:39:23 -040080 # Strip the symbol name so that we could look it up
81 local name=${symbol%+*}
82
83 # Use 'nm vmlinux' to figure out the base address of said symbol.
84 # It's actually faster to call it every time than to load it
85 # all into bash.
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070086 if [[ "${cache[$module,$name]+isset}" == "isset" ]]; then
87 local base_addr=${cache[$module,$name]}
Sasha Levindbd1abb2014-06-04 11:39:23 -040088 else
Konstantin Khlebnikovf643b9e2020-08-06 23:17:35 -070089 local base_addr=$(nm "$objfile" | awk '$3 == "'$name'" && ($2 == "t" || $2 == "T") {print $1; exit}')
90 if [[ $base_addr == "" ]] ; then
91 # address not found
92 return
93 fi
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070094 cache[$module,$name]="$base_addr"
Sasha Levindbd1abb2014-06-04 11:39:23 -040095 fi
96 # Let's start doing the math to get the exact address into the
97 # symbol. First, strip out the symbol total length.
98 local expr=${symbol%/*}
99
100 # Now, replace the symbol name with the base address we found
101 # before.
102 expr=${expr/$name/0x$base_addr}
103
104 # Evaluate it to find the actual address
105 expr=$((expr))
106 local address=$(printf "%x\n" "$expr")
107
108 # Pass it to addr2line to get filename and line number
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -0700109 # Could get more than one result
110 if [[ "${cache[$module,$address]+isset}" == "isset" ]]; then
111 local code=${cache[$module,$address]}
Sasha Levindbd1abb2014-06-04 11:39:23 -0400112 else
Manuel Trautc04e32e2019-06-13 15:55:52 -0700113 local code=$(${CROSS_COMPILE}addr2line -i -e "$objfile" "$address")
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -0700114 cache[$module,$address]=$code
Sasha Levindbd1abb2014-06-04 11:39:23 -0400115 fi
116
117 # addr2line doesn't return a proper error code if it fails, so
118 # we detect it using the value it prints so that we could preserve
119 # the offset/size into the function and bail out
120 if [[ $code == "??:0" ]]; then
121 return
122 fi
123
Pi-Hsun Shihd1787702020-07-23 21:15:43 -0700124 # Strip out the base of the path on each line
125 code=$(while read -r line; do echo "${line#$basepath/}"; done <<< "$code")
Sasha Levindbd1abb2014-06-04 11:39:23 -0400126
127 # In the case of inlines, move everything to same line
128 code=${code//$'\n'/' '}
129
130 # Replace old address with pretty line numbers
Konstantin Khlebnikov1d6693f2019-03-05 15:41:34 -0800131 symbol="$segment$name ($code)"
Sasha Levindbd1abb2014-06-04 11:39:23 -0400132}
133
134decode_code() {
135 local scripts=`dirname "${BASH_SOURCE[0]}"`
136
137 echo "$1" | $scripts/decodecode
138}
139
140handle_line() {
141 local words
142
143 # Tokenize
144 read -a words <<<"$1"
145
146 # Remove hex numbers. Do it ourselves until it happens in the
147 # kernel
148
149 # We need to know the index of the last element before we
150 # remove elements because arrays are sparse
151 local last=$(( ${#words[@]} - 1 ))
152
153 for i in "${!words[@]}"; do
154 # Remove the address
155 if [[ ${words[$i]} =~ \[\<([^]]+)\>\] ]]; then
156 unset words[$i]
157 fi
158
159 # Format timestamps with tabs
160 if [[ ${words[$i]} == \[ && ${words[$i+1]} == *\] ]]; then
161 unset words[$i]
162 words[$i+1]=$(printf "[%13s\n" "${words[$i+1]}")
163 fi
164 done
165
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -0700166 if [[ ${words[$last]} =~ \[([^]]+)\] ]]; then
167 module=${words[$last]}
168 module=${module#\[}
169 module=${module%\]}
170 symbol=${words[$last-1]}
171 unset words[$last-1]
172 else
173 # The symbol is the last element, process it
174 symbol=${words[$last]}
175 module=
176 fi
177
Sasha Levindbd1abb2014-06-04 11:39:23 -0400178 unset words[$last]
179 parse_symbol # modifies $symbol
180
181 # Add up the line number to the symbol
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -0700182 echo "${words[@]}" "$symbol $module"
Sasha Levindbd1abb2014-06-04 11:39:23 -0400183}
184
Konstantin Khlebnikovecda6e22020-08-06 23:17:38 -0700185if [[ $basepath == "auto" ]] ; then
186 module=""
187 symbol="kernel_init+0x0/0x0"
188 parse_symbol
189 basepath=${symbol#kernel_init (}
190 basepath=${basepath%/init/main.c:*)}
191fi
192
Sasha Levindbd1abb2014-06-04 11:39:23 -0400193while read line; do
194 # Let's see if we have an address in the line
Josh Poimboeuf53938ee2016-11-28 17:06:35 -0600195 if [[ $line =~ \[\<([^]]+)\>\] ]] ||
196 [[ $line =~ [^+\ ]+\+0x[0-9a-f]+/0x[0-9a-f]+ ]]; then
Sasha Levindbd1abb2014-06-04 11:39:23 -0400197 # Translate address to line numbers
198 handle_line "$line"
199 # Is it a code line?
200 elif [[ $line == *Code:* ]]; then
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -0700201 decode_code "$line"
202 else
Sasha Levindbd1abb2014-06-04 11:39:23 -0400203 # Nothing special in this line, show it as is
204 echo "$line"
205 fi
206done