blob: 57099687e5e1d97074bcaa040fd9919c141bfb18 [file] [log] [blame]
Josh Poimboeuf67326662016-09-19 10:52:14 -05001#!/bin/bash
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01002# SPDX-License-Identifier: GPL-2.0
Josh Poimboeuf67326662016-09-19 10:52:14 -05003#
4# Translate stack dump function offsets.
5#
6# addr2line doesn't work with KASLR addresses. This works similarly to
7# addr2line, but instead takes the 'func+0x123' format as input:
8#
9# $ ./scripts/faddr2line ~/k/vmlinux meminfo_proc_show+0x5/0x568
10# meminfo_proc_show+0x5/0x568:
11# meminfo_proc_show at fs/proc/meminfo.c:27
12#
13# If the address is part of an inlined function, the full inline call chain is
14# printed:
15#
16# $ ./scripts/faddr2line ~/k/vmlinux native_write_msr+0x6/0x27
17# native_write_msr+0x6/0x27:
18# arch_static_branch at arch/x86/include/asm/msr.h:121
19# (inlined by) static_key_false at include/linux/jump_label.h:125
20# (inlined by) native_write_msr at arch/x86/include/asm/msr.h:125
21#
22# The function size after the '/' in the input is optional, but recommended.
23# It's used to help disambiguate any duplicate symbol names, which can occur
24# rarely. If the size is omitted for a duplicate symbol then it's possible for
25# multiple code sites to be printed:
26#
27# $ ./scripts/faddr2line ~/k/vmlinux raw_ioctl+0x5
28# raw_ioctl+0x5/0x20:
29# raw_ioctl at drivers/char/raw.c:122
30#
31# raw_ioctl+0x5/0xb1:
32# raw_ioctl at net/ipv4/raw.c:876
33#
34# Multiple addresses can be specified on a single command line:
35#
36# $ ./scripts/faddr2line ~/k/vmlinux type_show+0x10/45 free_reserved_area+0x90
37# type_show+0x10/0x2d:
38# type_show at drivers/video/backlight/backlight.c:213
39#
40# free_reserved_area+0x90/0x123:
41# free_reserved_area at mm/page_alloc.c:6429 (discriminator 2)
42
43
44set -o errexit
45set -o nounset
46
Josh Poimboeuf67326662016-09-19 10:52:14 -050047usage() {
Peter Zijlstra (Intel)689135f2018-06-04 13:48:31 -050048echo "usage: faddr2line [--list] <object file> <func+offset> <func+offset>..." >&2
Josh Poimboeuf67326662016-09-19 10:52:14 -050049exit 1
50}
51
52warn() {
53echo "$1" >&2
54}
55
56die() {
57echo "ERROR: $1" >&2
58exit 1
59}
60
Josh Poimboeuf34feaea2022-05-12 12:05:27 -070061READELF="${CROSS_COMPILE:-}readelf"
62ADDR2LINE="${CROSS_COMPILE:-}addr2line"
63AWK="awk"
64
65command -v ${AWK} >/dev/null 2>&1 || die "${AWK} isn't installed"
66command -v ${READELF} >/dev/null 2>&1 || die "${READELF} isn't installed"
67command -v ${ADDR2LINE} >/dev/null 2>&1 || die "${ADDR2LINE} isn't installed"
68
Josh Poimboeuf67326662016-09-19 10:52:14 -050069# Try to figure out the source directory prefix so we can remove it from the
70# addr2line output. HACK ALERT: This assumes that start_kernel() is in
Randy Dunlapf5f67cc2018-11-16 15:08:22 -080071# init/main.c! This only works for vmlinux. Otherwise it falls back to
Josh Poimboeuf67326662016-09-19 10:52:14 -050072# printing the absolute path.
73find_dir_prefix() {
74local objfile=$1
75
Josh Poimboeuf34feaea2022-05-12 12:05:27 -070076local start_kernel_addr=$(${READELF} --symbols --wide $objfile | ${AWK} '$8 == "start_kernel" {printf "0x%s", $2}')
Josh Poimboeuf67326662016-09-19 10:52:14 -050077[[ -z $start_kernel_addr ]] && return
78
Liu, Changcheng95a87982017-11-29 16:10:25 -080079local file_line=$(${ADDR2LINE} -e $objfile $start_kernel_addr)
Josh Poimboeuf67326662016-09-19 10:52:14 -050080[[ -z $file_line ]] && return
81
82local prefix=${file_line%init/main.c:*}
83if [[ -z $prefix ]] || [[ $prefix = $file_line ]]; then
84return
85fi
86
87DIR_PREFIX=$prefix
88return 0
89}
90
91__faddr2line() {
92local objfile=$1
93local func_addr=$2
94local dir_prefix=$3
95local print_warnings=$4
96
Josh Poimboeuf34feaea2022-05-12 12:05:27 -070097local sym_name=${func_addr%+*}
Josh Poimboeufb559ef92022-06-01 17:42:22 -070098local func_offset=${func_addr#*+}
99func_offset=${func_offset%/*}
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700100local user_size=
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700101local file_type
102local is_vmlinux=0
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700103[[ $func_addr =~ "/" ]] && user_size=${func_addr#*/}
Josh Poimboeuf67326662016-09-19 10:52:14 -0500104
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700105if [[ -z $sym_name ]] || [[ -z $func_offset ]] || [[ $sym_name = $func_addr ]]; then
Josh Poimboeuf67326662016-09-19 10:52:14 -0500106warn "bad func+offset $func_addr"
107DONE=1
108return
109fi
110
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700111# vmlinux uses absolute addresses in the section table rather than
112# section offsets.
113local file_type=$(${READELF} --file-header $objfile |
114${AWK} '$1 == "Type:" { print $2; exit }')
Josh Poimboeufe6952562022-07-21 11:01:23 -0700115if [[ $file_type = "EXEC" ]] || [[ $file_type == "DYN" ]]; then
116is_vmlinux=1
117fi
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700118
Josh Poimboeuf67326662016-09-19 10:52:14 -0500119# Go through each of the object's symbols which match the func name.
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700120# In rare cases there might be duplicates, in which case we print all
121# matches.
122while read line; do
123local fields=($line)
124local sym_addr=0x${fields[1]}
125local sym_elf_size=${fields[2]}
126local sym_sec=${fields[6]}
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700127local sec_size
128local sec_name
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500129
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700130# Get the section size:
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700131sec_size=$(${READELF} --section-headers --wide $objfile |
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700132sed 's/\[ /\[/' |
133${AWK} -v sec=$sym_sec '$1 == "[" sec "]" { print "0x" $6; exit }')
134
135if [[ -z $sec_size ]]; then
136warn "bad section size: section: $sym_sec"
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500137DONE=1
138return
139fi
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700140
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700141# Get the section name:
142sec_name=$(${READELF} --section-headers --wide $objfile |
143sed 's/\[ /\[/' |
144${AWK} -v sec=$sym_sec '$1 == "[" sec "]" { print $2; exit }')
145
146if [[ -z $sec_name ]]; then
147warn "bad section name: section: $sym_sec"
148DONE=1
149return
150fi
151
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700152# Calculate the symbol size.
153#
154# Unfortunately we can't use the ELF size, because kallsyms
155# also includes the padding bytes in its size calculation. For
156# kallsyms, the size calculation is the distance between the
157# symbol and the next symbol in a sorted list.
158local sym_size
159local cur_sym_addr
160local found=0
161while read line; do
162local fields=($line)
163cur_sym_addr=0x${fields[1]}
164local cur_sym_elf_size=${fields[2]}
165local cur_sym_name=${fields[7]:-}
166
167if [[ $cur_sym_addr = $sym_addr ]] &&
168 [[ $cur_sym_elf_size = $sym_elf_size ]] &&
169 [[ $cur_sym_name = $sym_name ]]; then
170found=1
171continue
172fi
173
174if [[ $found = 1 ]]; then
175sym_size=$(($cur_sym_addr - $sym_addr))
176[[ $sym_size -lt $sym_elf_size ]] && continue;
177found=2
178break
179fi
180done < <(${READELF} --symbols --wide $objfile | ${AWK} -v sec=$sym_sec '$7 == sec' | sort --key=2)
181
182if [[ $found = 0 ]]; then
183warn "can't find symbol: sym_name: $sym_name sym_sec: $sym_sec sym_addr: $sym_addr sym_elf_size: $sym_elf_size"
184DONE=1
185return
186fi
187
188# If nothing was found after the symbol, assume it's the last
189# symbol in the section.
190[[ $found = 1 ]] && sym_size=$(($sec_size - $sym_addr))
191
192if [[ -z $sym_size ]] || [[ $sym_size -le 0 ]]; then
193warn "bad symbol size: sym_addr: $sym_addr cur_sym_addr: $cur_sym_addr"
194DONE=1
195return
196fi
197
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500198sym_size=0x$(printf %x $sym_size)
Josh Poimboeuf67326662016-09-19 10:52:14 -0500199
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700200# Calculate the address from user-supplied offset:
201local addr=$(($sym_addr + $func_offset))
Josh Poimboeuf67326662016-09-19 10:52:14 -0500202if [[ -z $addr ]] || [[ $addr = 0 ]]; then
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700203warn "bad address: $sym_addr + $func_offset"
Josh Poimboeuf67326662016-09-19 10:52:14 -0500204DONE=1
205return
206fi
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500207addr=0x$(printf %x $addr)
Josh Poimboeuf67326662016-09-19 10:52:14 -0500208
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700209# If the user provided a size, make sure it matches the symbol's size:
210if [[ -n $user_size ]] && [[ $user_size -ne $sym_size ]]; then
Josh Poimboeuf67326662016-09-19 10:52:14 -0500211[[ $print_warnings = 1 ]] &&
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700212echo "skipping $sym_name address at $addr due to size mismatch ($user_size != $sym_size)"
Josh Poimboeuf67326662016-09-19 10:52:14 -0500213continue;
214fi
215
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700216# Make sure the provided offset is within the symbol's range:
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700217if [[ $func_offset -gt $sym_size ]]; then
Josh Poimboeuf67326662016-09-19 10:52:14 -0500218[[ $print_warnings = 1 ]] &&
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700219echo "skipping $sym_name address at $addr due to size mismatch ($func_offset > $sym_size)"
Josh Poimboeuf67326662016-09-19 10:52:14 -0500220continue
221fi
222
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700223# In case of duplicates or multiple addresses specified on the
224# cmdline, separate multiple entries with a blank line:
Josh Poimboeuf67326662016-09-19 10:52:14 -0500225[[ $FIRST = 0 ]] && echo
226FIRST=0
227
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700228echo "$sym_name+$func_offset/$sym_size:"
Changbin Du6870c012018-04-05 16:18:29 -0700229
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700230# Pass section address to addr2line and strip absolute paths
231# from the output:
Josh Poimboeufb559ef92022-06-01 17:42:22 -0700232local args="--functions --pretty-print --inlines --exe=$objfile"
233[[ $is_vmlinux = 0 ]] && args="$args --section=$sec_name"
234local output=$(${ADDR2LINE} $args $addr | sed "s; $dir_prefix\(\./\)*; ;")
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700235[[ -z $output ]] && continue
236
237# Default output (non --list):
Peter Zijlstra (Intel)689135f2018-06-04 13:48:31 -0500238if [[ $LIST = 0 ]]; then
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700239echo "$output" | while read -r line
Peter Zijlstra (Intel)689135f2018-06-04 13:48:31 -0500240do
241echo $line
242done
243DONE=1;
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700244continue
Peter Zijlstra (Intel)689135f2018-06-04 13:48:31 -0500245fi
246
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700247# For --list, show each line with its corresponding source code:
248echo "$output" | while read -r line
Changbin Du6870c012018-04-05 16:18:29 -0700249do
Peter Zijlstra (Intel)689135f2018-06-04 13:48:31 -0500250echo
Changbin Du6870c012018-04-05 16:18:29 -0700251echo $line
Changbin Du78eb0c62018-05-11 16:02:11 -0700252n=$(echo $line | sed 's/.*:\([0-9]\+\).*/\1/g')
253n1=$[$n-5]
254n2=$[$n+5]
255f=$(echo $line | sed 's/.*at \(.\+\):.*/\1/g')
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700256${AWK} 'NR>=strtonum("'$n1'") && NR<=strtonum("'$n2'") { if (NR=='$n') printf(">%d<", NR); else printf(" %d ", NR); printf("\t%s\n", $0)}' $f
Changbin Du6870c012018-04-05 16:18:29 -0700257done
258
Josh Poimboeuf67326662016-09-19 10:52:14 -0500259DONE=1
260
Josh Poimboeuf34feaea2022-05-12 12:05:27 -0700261done < <(${READELF} --symbols --wide $objfile | ${AWK} -v fn=$sym_name '$4 == "FUNC" && $8 == fn')
Josh Poimboeuf67326662016-09-19 10:52:14 -0500262}
263
264[[ $# -lt 2 ]] && usage
265
266objfile=$1
Peter Zijlstra (Intel)689135f2018-06-04 13:48:31 -0500267
268LIST=0
269[[ "$objfile" == "--list" ]] && LIST=1 && shift && objfile=$1
270
Josh Poimboeuf67326662016-09-19 10:52:14 -0500271[[ ! -f $objfile ]] && die "can't find objfile $objfile"
272shift
273
274DIR_PREFIX=supercalifragilisticexpialidocious
275find_dir_prefix $objfile
276
277FIRST=1
278while [[ $# -gt 0 ]]; do
279func_addr=$1
280shift
281
282# print any matches found
283DONE=0
284__faddr2line $objfile $func_addr $DIR_PREFIX 0
285
286# if no match was found, print warnings
287if [[ $DONE = 0 ]]; then
288__faddr2line $objfile $func_addr $DIR_PREFIX 1
289warn "no match for $func_addr"
290fi
291done