2 # SPDX-License-Identifier: GPL-2.0
3 # (c) 2014, Sasha Levin <sasha.levin@oracle.com>
8 echo " $0 -r <release> | <vmlinux> [base path] [modules path]"
12 if [[ $1 == "-r" ]] ; then
18 for fn
in {,/usr
/lib
/debug
}/boot
/vmlinux-
$release{,.debug
} /lib
/modules
/$release{,/build
}/vmlinux
; do
19 if [ -e "$fn" ] ; then
25 if [[ $vmlinux == "" ]] ; then
26 echo "ERROR! vmlinux image for release $release is not found" >&2
40 if [[ "$modpath" != "" ]] ; then
41 for fn
in $
(find "$modpath" -name "${module//_/[-_]}.ko*") ; do
42 if readelf
-WS "$fn" |
grep -qwF .debug_line
; then
50 modpath
=$
(dirname "$vmlinux")
53 if [[ $release == "" ]] ; then
54 release
=$
(gdb
-ex 'print init_uts_ns.name.release' -ex 'quit' -quiet -batch "$vmlinux" |
sed -n 's/\$1 = "\(.*\)".*/\1/p')
57 for dn
in {/usr
/lib
/debug
,}/lib
/modules
/$release ; do
58 if [ -e "$dn" ] ; then
69 # The structure of symbol at this point is:
70 # ([name]+[offset]/[total length])
73 # do_basic_setup+0x9c/0xbf
75 if [[ $module == "" ]] ; then
76 local objfile
=$vmlinux
77 elif [[ "${modcache[$module]+isset}" == "isset" ]]; then
78 local objfile
=${modcache[$module]}
80 local objfile
=$
(find_module
)
81 if [[ $objfile == "" ]] ; then
82 echo "WARNING! Modules path isn't set, but is needed to parse this symbol" >&2
85 modcache
[$module]=$objfile
88 # Remove the englobing parenthesis
94 if [[ $symbol == *:* ]] ; then
95 segment
=${symbol%%:*}:
99 # Strip the symbol name so that we could look it up
100 local name
=${symbol%+*}
102 # Use 'nm vmlinux' to figure out the base address of said symbol.
103 # It's actually faster to call it every time than to load it
105 if [[ "${cache[$module,$name]+isset}" == "isset" ]]; then
106 local base_addr
=${cache[$module,$name]}
108 local base_addr
=$
(nm
"$objfile" |
awk '$3 == "'$name'" && ($2 == "t" || $2 == "T") {print $1; exit}')
109 if [[ $base_addr == "" ]] ; then
113 cache
[$module,$name]="$base_addr"
115 # Let's start doing the math to get the exact address into the
116 # symbol. First, strip out the symbol total length.
117 local expr=${symbol%/*}
119 # Now, replace the symbol name with the base address we found
121 expr=${expr/$name/0x$base_addr}
123 # Evaluate it to find the actual address
125 local address
=$
(printf "%x\n" "$expr")
127 # Pass it to addr2line to get filename and line number
128 # Could get more than one result
129 if [[ "${cache[$module,$address]+isset}" == "isset" ]]; then
130 local code
=${cache[$module,$address]}
132 local code
=$
(${CROSS_COMPILE}addr2line
-i -e "$objfile" "$address")
133 cache
[$module,$address]=$code
136 # addr2line doesn't return a proper error code if it fails, so
137 # we detect it using the value it prints so that we could preserve
138 # the offset/size into the function and bail out
139 if [[ $code == "??:0" ]]; then
143 # Strip out the base of the path on each line
144 code
=$
(while read -r line
; do echo "${line#$basepath/}"; done <<< "$code")
146 # In the case of inlines, move everything to same line
147 code
=${code//$'\n'/' '}
149 # Replace old address with pretty line numbers
150 symbol
="$segment$name ($code)"
154 local scripts
=`dirname "${BASH_SOURCE[0]}"`
156 echo "$1" |
$scripts/decodecode
163 read -a words
<<<"$1"
165 # Remove hex numbers. Do it ourselves until it happens in the
168 # We need to know the index of the last element before we
169 # remove elements because arrays are sparse
170 local last
=$
(( ${#words[@]} - 1 ))
172 for i
in "${!words[@]}"; do
174 if [[ ${words[$i]} =~ \
[\
<([^
]]+)\
>\
] ]]; then
178 # Format timestamps with tabs
179 if [[ ${words[$i]} == \
[ && ${words[$i+1]} == *\
] ]]; then
181 words
[$i+1]=$
(printf "[%13s\n" "${words[$i+1]}")
185 if [[ ${words[$last]} =~ \
[([^
]]+)\
] ]]; then
186 module
=${words[$last]}
189 symbol
=${words[$last-1]}
192 # The symbol is the last element, process it
193 symbol
=${words[$last]}
198 parse_symbol
# modifies $symbol
200 # Add up the line number to the symbol
201 echo "${words[@]}" "$symbol $module"
204 if [[ $basepath == "auto" ]] ; then
206 symbol
="kernel_init+0x0/0x0"
208 basepath
=${symbol#kernel_init (}
209 basepath
=${basepath%/init/main.c:*)}
213 # Let's see if we have an address in the line
214 if [[ $line =~ \
[\
<([^
]]+)\
>\
] ]] ||
215 [[ $line =~
[^
+\
]+\
+0x
[0-9a-f]+/0x
[0-9a-f]+ ]]; then
216 # Translate address to line numbers
219 elif [[ $line == *Code
:* ]]; then
222 # Nothing special in this line, show it as is