blob: 0869def435ee78f999e90ccdc5d2335685e74144 [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 Khlebnikov310c6dd2016-05-19 17:09:11 -07006if [[ $# < 2 ]]; then
Sasha Levindbd1abb2014-06-04 11:39:23 -04007 echo "Usage:"
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -07008 echo " $0 [vmlinux] [base path] [modules path]"
Sasha Levindbd1abb2014-06-04 11:39:23 -04009 exit 1
10fi
11
12vmlinux=$1
13basepath=$2
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070014modpath=$3
Sasha Levindbd1abb2014-06-04 11:39:23 -040015declare -A cache
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070016declare -A modcache
Sasha Levindbd1abb2014-06-04 11:39:23 -040017
18parse_symbol() {
19 # The structure of symbol at this point is:
Robert Jarzmike260fe02015-09-04 15:43:26 -070020 # ([name]+[offset]/[total length])
Sasha Levindbd1abb2014-06-04 11:39:23 -040021 #
22 # For example:
23 # do_basic_setup+0x9c/0xbf
24
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070025 if [[ $module == "" ]] ; then
26 local objfile=$vmlinux
27 elif [[ "${modcache[$module]+isset}" == "isset" ]]; then
28 local objfile=${modcache[$module]}
29 else
Sasha Levina5dc8302020-06-15 18:24:27 -040030 if [[ $modpath == "" ]]; then
31 echo "WARNING! Modules path isn't set, but is needed to parse this symbol" >&2
32 return
33 fi
Evan Greenca90bbd2019-07-11 20:52:39 -070034 local objfile=$(find "$modpath" -name "${module//_/[-_]}.ko*" -print -quit)
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070035 [[ $objfile == "" ]] && return
36 modcache[$module]=$objfile
37 fi
38
Robert Jarzmike260fe02015-09-04 15:43:26 -070039 # Remove the englobing parenthesis
40 symbol=${symbol#\(}
41 symbol=${symbol%\)}
Sasha Levindbd1abb2014-06-04 11:39:23 -040042
Konstantin Khlebnikov1d6693f2019-03-05 15:41:34 -080043 # Strip segment
44 local segment
45 if [[ $symbol == *:* ]] ; then
46 segment=${symbol%%:*}:
47 symbol=${symbol#*:}
48 fi
49
Sasha Levindbd1abb2014-06-04 11:39:23 -040050 # Strip the symbol name so that we could look it up
51 local name=${symbol%+*}
52
53 # Use 'nm vmlinux' to figure out the base address of said symbol.
54 # It's actually faster to call it every time than to load it
55 # all into bash.
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070056 if [[ "${cache[$module,$name]+isset}" == "isset" ]]; then
57 local base_addr=${cache[$module,$name]}
Sasha Levindbd1abb2014-06-04 11:39:23 -040058 else
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070059 local base_addr=$(nm "$objfile" | grep -i ' t ' | awk "/ $name\$/ {print \$1}" | head -n1)
60 cache[$module,$name]="$base_addr"
Sasha Levindbd1abb2014-06-04 11:39:23 -040061 fi
62 # Let's start doing the math to get the exact address into the
63 # symbol. First, strip out the symbol total length.
64 local expr=${symbol%/*}
65
66 # Now, replace the symbol name with the base address we found
67 # before.
68 expr=${expr/$name/0x$base_addr}
69
70 # Evaluate it to find the actual address
71 expr=$((expr))
72 local address=$(printf "%x\n" "$expr")
73
74 # Pass it to addr2line to get filename and line number
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070075 # Could get more than one result
76 if [[ "${cache[$module,$address]+isset}" == "isset" ]]; then
77 local code=${cache[$module,$address]}
Sasha Levindbd1abb2014-06-04 11:39:23 -040078 else
Manuel Trautc04e32e2019-06-13 15:55:52 -070079 local code=$(${CROSS_COMPILE}addr2line -i -e "$objfile" "$address")
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -070080 cache[$module,$address]=$code
Sasha Levindbd1abb2014-06-04 11:39:23 -040081 fi
82
83 # addr2line doesn't return a proper error code if it fails, so
84 # we detect it using the value it prints so that we could preserve
85 # the offset/size into the function and bail out
86 if [[ $code == "??:0" ]]; then
87 return
88 fi
89
Pi-Hsun Shihd1787702020-07-23 21:15:43 -070090 # Strip out the base of the path on each line
91 code=$(while read -r line; do echo "${line#$basepath/}"; done <<< "$code")
Sasha Levindbd1abb2014-06-04 11:39:23 -040092
93 # In the case of inlines, move everything to same line
94 code=${code//$'\n'/' '}
95
96 # Replace old address with pretty line numbers
Konstantin Khlebnikov1d6693f2019-03-05 15:41:34 -080097 symbol="$segment$name ($code)"
Sasha Levindbd1abb2014-06-04 11:39:23 -040098}
99
100decode_code() {
101 local scripts=`dirname "${BASH_SOURCE[0]}"`
102
103 echo "$1" | $scripts/decodecode
104}
105
106handle_line() {
107 local words
108
109 # Tokenize
110 read -a words <<<"$1"
111
112 # Remove hex numbers. Do it ourselves until it happens in the
113 # kernel
114
115 # We need to know the index of the last element before we
116 # remove elements because arrays are sparse
117 local last=$(( ${#words[@]} - 1 ))
118
119 for i in "${!words[@]}"; do
120 # Remove the address
121 if [[ ${words[$i]} =~ \[\<([^]]+)\>\] ]]; then
122 unset words[$i]
123 fi
124
125 # Format timestamps with tabs
126 if [[ ${words[$i]} == \[ && ${words[$i+1]} == *\] ]]; then
127 unset words[$i]
128 words[$i+1]=$(printf "[%13s\n" "${words[$i+1]}")
129 fi
130 done
131
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -0700132 if [[ ${words[$last]} =~ \[([^]]+)\] ]]; then
133 module=${words[$last]}
134 module=${module#\[}
135 module=${module%\]}
136 symbol=${words[$last-1]}
137 unset words[$last-1]
138 else
139 # The symbol is the last element, process it
140 symbol=${words[$last]}
141 module=
142 fi
143
Sasha Levindbd1abb2014-06-04 11:39:23 -0400144 unset words[$last]
145 parse_symbol # modifies $symbol
146
147 # Add up the line number to the symbol
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -0700148 echo "${words[@]}" "$symbol $module"
Sasha Levindbd1abb2014-06-04 11:39:23 -0400149}
150
151while read line; do
152 # Let's see if we have an address in the line
Josh Poimboeuf53938ee2016-11-28 17:06:35 -0600153 if [[ $line =~ \[\<([^]]+)\>\] ]] ||
154 [[ $line =~ [^+\ ]+\+0x[0-9a-f]+/0x[0-9a-f]+ ]]; then
Sasha Levindbd1abb2014-06-04 11:39:23 -0400155 # Translate address to line numbers
156 handle_line "$line"
157 # Is it a code line?
158 elif [[ $line == *Code:* ]]; then
Konstantin Khlebnikov310c6dd2016-05-19 17:09:11 -0700159 decode_code "$line"
160 else
Sasha Levindbd1abb2014-06-04 11:39:23 -0400161 # Nothing special in this line, show it as is
162 echo "$line"
163 fi
164done