blob: 39e07d8574dd787c2af71937852156abb9b1a7fb [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
Liu, Changcheng95a87982017-11-29 16:10:25 -080047READELF="${CROSS_COMPILE}readelf"
48ADDR2LINE="${CROSS_COMPILE}addr2line"
49SIZE="${CROSS_COMPILE}size"
50NM="${CROSS_COMPILE}nm"
51
Josh Poimboeuf67326662016-09-19 10:52:14 -050052command -v awk >/dev/null 2>&1 || die "awk isn't installed"
Liu, Changcheng95a87982017-11-29 16:10:25 -080053command -v ${READELF} >/dev/null 2>&1 || die "readelf isn't installed"
54command -v ${ADDR2LINE} >/dev/null 2>&1 || die "addr2line isn't installed"
55command -v ${SIZE} >/dev/null 2>&1 || die "size isn't installed"
56command -v ${NM} >/dev/null 2>&1 || die "nm isn't installed"
Josh Poimboeuf67326662016-09-19 10:52:14 -050057
58usage() {
59echo "usage: faddr2line <object file> <func+offset> <func+offset>..." >&2
60exit 1
61}
62
63warn() {
64echo "$1" >&2
65}
66
67die() {
68echo "ERROR: $1" >&2
69exit 1
70}
71
72# Try to figure out the source directory prefix so we can remove it from the
73# addr2line output. HACK ALERT: This assumes that start_kernel() is in
74# kernel/init.c! This only works for vmlinux. Otherwise it falls back to
75# printing the absolute path.
76find_dir_prefix() {
77local objfile=$1
78
Liu, Changcheng95a87982017-11-29 16:10:25 -080079local start_kernel_addr=$(${READELF} -sW $objfile | awk '$8 == "start_kernel" {printf "0x%s", $2}')
Josh Poimboeuf67326662016-09-19 10:52:14 -050080[[ -z $start_kernel_addr ]] && return
81
Liu, Changcheng95a87982017-11-29 16:10:25 -080082local file_line=$(${ADDR2LINE} -e $objfile $start_kernel_addr)
Josh Poimboeuf67326662016-09-19 10:52:14 -050083[[ -z $file_line ]] && return
84
85local prefix=${file_line%init/main.c:*}
86if [[ -z $prefix ]] || [[ $prefix = $file_line ]]; then
87return
88fi
89
90DIR_PREFIX=$prefix
91return 0
92}
93
94__faddr2line() {
95local objfile=$1
96local func_addr=$2
97local dir_prefix=$3
98local print_warnings=$4
99
100local func=${func_addr%+*}
101local offset=${func_addr#*+}
102offset=${offset%/*}
103local size=
104[[ $func_addr =~ "/" ]] && size=${func_addr#*/}
105
106if [[ -z $func ]] || [[ -z $offset ]] || [[ $func = $func_addr ]]; then
107warn "bad func+offset $func_addr"
108DONE=1
109return
110fi
111
112# Go through each of the object's symbols which match the func name.
113# In rare cases there might be duplicates.
Liu, Changcheng95a87982017-11-29 16:10:25 -0800114file_end=$(${SIZE} -Ax $objfile | awk '$1 == ".text" {print $2}')
Josh Poimboeuf67326662016-09-19 10:52:14 -0500115while read symbol; do
116local fields=($symbol)
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500117local sym_base=0x${fields[0]}
118local sym_type=${fields[1]}
NeilBrown2aab9c32017-10-12 14:22:04 +1100119local sym_end=${fields[3]}
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500120
121# calculate the size
122local sym_size=$(($sym_end - $sym_base))
123if [[ -z $sym_size ]] || [[ $sym_size -le 0 ]]; then
124warn "bad symbol size: base: $sym_base end: $sym_end"
125DONE=1
126return
127fi
128sym_size=0x$(printf %x $sym_size)
Josh Poimboeuf67326662016-09-19 10:52:14 -0500129
130# calculate the address
131local addr=$(($sym_base + $offset))
132if [[ -z $addr ]] || [[ $addr = 0 ]]; then
133warn "bad address: $sym_base + $offset"
134DONE=1
135return
136fi
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500137addr=0x$(printf %x $addr)
Josh Poimboeuf67326662016-09-19 10:52:14 -0500138
139# weed out non-function symbols
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500140if [[ $sym_type != t ]] && [[ $sym_type != T ]]; then
Josh Poimboeuf67326662016-09-19 10:52:14 -0500141[[ $print_warnings = 1 ]] &&
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500142echo "skipping $func address at $addr due to non-function symbol of type '$sym_type'"
Josh Poimboeuf67326662016-09-19 10:52:14 -0500143continue
144fi
145
146# if the user provided a size, make sure it matches the symbol's size
147if [[ -n $size ]] && [[ $size -ne $sym_size ]]; then
148[[ $print_warnings = 1 ]] &&
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500149echo "skipping $func address at $addr due to size mismatch ($size != $sym_size)"
Josh Poimboeuf67326662016-09-19 10:52:14 -0500150continue;
151fi
152
153# make sure the provided offset is within the symbol's range
154if [[ $offset -gt $sym_size ]]; then
155[[ $print_warnings = 1 ]] &&
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500156echo "skipping $func address at $addr due to size mismatch ($offset > $sym_size)"
Josh Poimboeuf67326662016-09-19 10:52:14 -0500157continue
158fi
159
160# separate multiple entries with a blank line
161[[ $FIRST = 0 ]] && echo
162FIRST=0
163
Josh Poimboeufefdb4162016-10-25 09:51:11 -0500164# pass real address to addr2line
165echo "$func+$offset/$sym_size:"
Liu, Changcheng95a87982017-11-29 16:10:25 -0800166${ADDR2LINE} -fpie $objfile $addr | sed "s; $dir_prefix\(\./\)*; ;"
Josh Poimboeuf67326662016-09-19 10:52:14 -0500167DONE=1
168
Liu, Changcheng95a87982017-11-29 16:10:25 -0800169done < <(${NM} -n $objfile | awk -v fn=$func -v end=$file_end '$3 == fn { found=1; line=$0; start=$1; next } found == 1 { found=0; print line, "0x"$1 } END {if (found == 1) print line, end; }')
Josh Poimboeuf67326662016-09-19 10:52:14 -0500170}
171
172[[ $# -lt 2 ]] && usage
173
174objfile=$1
175[[ ! -f $objfile ]] && die "can't find objfile $objfile"
176shift
177
178DIR_PREFIX=supercalifragilisticexpialidocious
179find_dir_prefix $objfile
180
181FIRST=1
182while [[ $# -gt 0 ]]; do
183func_addr=$1
184shift
185
186# print any matches found
187DONE=0
188__faddr2line $objfile $func_addr $DIR_PREFIX 0
189
190# if no match was found, print warnings
191if [[ $DONE = 0 ]]; then
192__faddr2line $objfile $func_addr $DIR_PREFIX 1
193warn "no match for $func_addr"
194fi
195done