xref: /linux-6.15/scripts/faddr2line (revision 39cf650d)
1#!/bin/bash
2# SPDX-License-Identifier: GPL-2.0
3#
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
47usage() {
48	echo "usage: faddr2line [--list] <object file> <func+offset> <func+offset>..." >&2
49	exit 1
50}
51
52warn() {
53	echo "$1" >&2
54}
55
56die() {
57	echo "ERROR: $1" >&2
58	exit 1
59}
60
61UTIL_SUFFIX=""
62if [[ "${LLVM:-}" == "" ]]; then
63	UTIL_PREFIX=${CROSS_COMPILE:-}
64else
65	UTIL_PREFIX=llvm-
66
67	if [[ "${LLVM}" == *"/" ]]; then
68		UTIL_PREFIX=${LLVM}${UTIL_PREFIX}
69	elif [[ "${LLVM}" == "-"* ]]; then
70		UTIL_SUFFIX=${LLVM}
71	fi
72fi
73
74READELF="${UTIL_PREFIX}readelf${UTIL_SUFFIX}"
75ADDR2LINE="${UTIL_PREFIX}addr2line${UTIL_SUFFIX}"
76AWK="awk"
77GREP="grep"
78
79command -v ${AWK} >/dev/null 2>&1 || die "${AWK} isn't installed"
80command -v ${READELF} >/dev/null 2>&1 || die "${READELF} isn't installed"
81command -v ${ADDR2LINE} >/dev/null 2>&1 || die "${ADDR2LINE} isn't installed"
82
83# Try to figure out the source directory prefix so we can remove it from the
84# addr2line output.  HACK ALERT: This assumes that start_kernel() is in
85# init/main.c!  This only works for vmlinux.  Otherwise it falls back to
86# printing the absolute path.
87find_dir_prefix() {
88	local objfile=$1
89
90	local start_kernel_addr=$(echo "${ELF_SYMS}" | sed 's/\[.*\]//' |
91		${AWK} '$8 == "start_kernel" {printf "0x%s", $2}')
92	[[ -z $start_kernel_addr ]] && return
93
94	local file_line=$(${ADDR2LINE} -e $objfile $start_kernel_addr)
95	[[ -z $file_line ]] && return
96
97	local prefix=${file_line%init/main.c:*}
98	if [[ -z $prefix ]] || [[ $prefix = $file_line ]]; then
99		return
100	fi
101
102	DIR_PREFIX=$prefix
103	return 0
104}
105
106run_readelf() {
107	local objfile=$1
108
109	ELF_FILEHEADER=$(${READELF} --file-header $objfile)
110	ELF_SECHEADERS=$(${READELF} --section-headers --wide $objfile)
111	ELF_SYMS=$(${READELF} --symbols --wide $objfile)
112}
113
114__faddr2line() {
115	local objfile=$1
116	local func_addr=$2
117	local dir_prefix=$3
118	local print_warnings=$4
119
120	local sym_name=${func_addr%+*}
121	local func_offset=${func_addr#*+}
122	func_offset=${func_offset%/*}
123	local user_size=
124	local file_type
125	local is_vmlinux=0
126	[[ $func_addr =~ "/" ]] && user_size=${func_addr#*/}
127
128	if [[ -z $sym_name ]] || [[ -z $func_offset ]] || [[ $sym_name = $func_addr ]]; then
129		warn "bad func+offset $func_addr"
130		DONE=1
131		return
132	fi
133
134	# vmlinux uses absolute addresses in the section table rather than
135	# section offsets.
136	local file_type=$(echo "${ELF_FILEHEADER}" |
137		${AWK} '$1 == "Type:" { print $2; exit }')
138	if [[ $file_type = "EXEC" ]] || [[ $file_type == "DYN" ]]; then
139		is_vmlinux=1
140	fi
141
142	# Go through each of the object's symbols which match the func name.
143	# In rare cases there might be duplicates, in which case we print all
144	# matches.
145	while read line; do
146		local fields=($line)
147		local sym_addr=0x${fields[1]}
148		local sym_elf_size=${fields[2]}
149		local sym_sec=${fields[6]}
150		local sec_size
151		local sec_name
152
153		# Get the section size:
154		sec_size=$(echo "${ELF_SECHEADERS}" | sed 's/\[ /\[/' |
155			${AWK} -v sec=$sym_sec '$1 == "[" sec "]" { print "0x" $6; exit }')
156
157		if [[ -z $sec_size ]]; then
158			warn "bad section size: section: $sym_sec"
159			DONE=1
160			return
161		fi
162
163		# Get the section name:
164		sec_name=$(echo "${ELF_SECHEADERS}" | sed 's/\[ /\[/' |
165			${AWK} -v sec=$sym_sec '$1 == "[" sec "]" { print $2; exit }')
166
167		if [[ -z $sec_name ]]; then
168			warn "bad section name: section: $sym_sec"
169			DONE=1
170			return
171		fi
172
173		# Calculate the symbol size.
174		#
175		# Unfortunately we can't use the ELF size, because kallsyms
176		# also includes the padding bytes in its size calculation.  For
177		# kallsyms, the size calculation is the distance between the
178		# symbol and the next symbol in a sorted list.
179		local sym_size
180		local cur_sym_addr
181		local found=0
182		while read line; do
183			local fields=($line)
184			cur_sym_addr=0x${fields[1]}
185			local cur_sym_elf_size=${fields[2]}
186			local cur_sym_name=${fields[7]:-}
187
188			# is_mapping_symbol(cur_sym_name)
189			if [[ ${cur_sym_name} =~ ^(\.L|L0|\$) ]]; then
190				continue
191			fi
192
193			if [[ $cur_sym_addr = $sym_addr ]] &&
194			   [[ $cur_sym_elf_size = $sym_elf_size ]] &&
195			   [[ $cur_sym_name = $sym_name ]]; then
196				found=1
197				continue
198			fi
199
200			if [[ $found = 1 ]]; then
201				sym_size=$(($cur_sym_addr - $sym_addr))
202				[[ $sym_size -lt $sym_elf_size ]] && continue;
203				found=2
204				break
205			fi
206		done < <(echo "${ELF_SYMS}" | sed 's/\[.*\]//' | ${AWK} -v sec=$sym_sec '$7 == sec' | sort --key=2)
207
208		if [[ $found = 0 ]]; then
209			warn "can't find symbol: sym_name: $sym_name sym_sec: $sym_sec sym_addr: $sym_addr sym_elf_size: $sym_elf_size"
210			DONE=1
211			return
212		fi
213
214		# If nothing was found after the symbol, assume it's the last
215		# symbol in the section.
216		[[ $found = 1 ]] && sym_size=$(($sec_size - $sym_addr))
217
218		if [[ -z $sym_size ]] || [[ $sym_size -le 0 ]]; then
219			warn "bad symbol size: sym_addr: $sym_addr cur_sym_addr: $cur_sym_addr"
220			DONE=1
221			return
222		fi
223
224		sym_size=0x$(printf %x $sym_size)
225
226		# Calculate the address from user-supplied offset:
227		local addr=$(($sym_addr + $func_offset))
228		if [[ -z $addr ]] || [[ $addr = 0 ]]; then
229			warn "bad address: $sym_addr + $func_offset"
230			DONE=1
231			return
232		fi
233		addr=0x$(printf %x $addr)
234
235		# If the user provided a size, make sure it matches the symbol's size:
236		if [[ -n $user_size ]] && [[ $user_size -ne $sym_size ]]; then
237			[[ $print_warnings = 1 ]] &&
238				echo "skipping $sym_name address at $addr due to size mismatch ($user_size != $sym_size)"
239			continue;
240		fi
241
242		# Make sure the provided offset is within the symbol's range:
243		if [[ $func_offset -gt $sym_size ]]; then
244			[[ $print_warnings = 1 ]] &&
245				echo "skipping $sym_name address at $addr due to size mismatch ($func_offset > $sym_size)"
246			continue
247		fi
248
249		# In case of duplicates or multiple addresses specified on the
250		# cmdline, separate multiple entries with a blank line:
251		[[ $FIRST = 0 ]] && echo
252		FIRST=0
253
254		echo "$sym_name+$func_offset/$sym_size:"
255
256		# Pass section address to addr2line and strip absolute paths
257		# from the output:
258		local args="--functions --pretty-print --inlines --exe=$objfile"
259		[[ $is_vmlinux = 0 ]] && args="$args --section=$sec_name"
260		local output=$(${ADDR2LINE} $args $addr | sed "s; $dir_prefix\(\./\)*; ;")
261		[[ -z $output ]] && continue
262
263		# Default output (non --list):
264		if [[ $LIST = 0 ]]; then
265			echo "$output" | while read -r line
266			do
267				echo $line
268			done
269			DONE=1;
270			continue
271		fi
272
273		# For --list, show each line with its corresponding source code:
274		echo "$output" | while read -r line
275		do
276			echo
277			echo $line
278			n=$(echo $line | sed 's/.*:\([0-9]\+\).*/\1/g')
279			n1=$[$n-5]
280			n2=$[$n+5]
281			f=$(echo $line | sed 's/.*at \(.\+\):.*/\1/g')
282			${AWK} 'NR>=strtonum("'$n1'") && NR<=strtonum("'$n2'") { if (NR=='$n') printf(">%d<", NR); else printf(" %d ", NR); printf("\t%s\n", $0)}' $f
283		done
284
285		DONE=1
286
287	done < <(echo "${ELF_SYMS}" | sed 's/\[.*\]//' | ${AWK} -v fn=$sym_name '$8 == fn')
288}
289
290[[ $# -lt 2 ]] && usage
291
292objfile=$1
293
294LIST=0
295[[ "$objfile" == "--list" ]] && LIST=1 && shift && objfile=$1
296
297[[ ! -f $objfile ]] && die "can't find objfile $objfile"
298shift
299
300run_readelf $objfile
301
302echo "${ELF_SECHEADERS}" | ${GREP} -q '\.debug_info' || die "CONFIG_DEBUG_INFO not enabled"
303
304DIR_PREFIX=supercalifragilisticexpialidocious
305find_dir_prefix $objfile
306
307FIRST=1
308while [[ $# -gt 0 ]]; do
309	func_addr=$1
310	shift
311
312	# print any matches found
313	DONE=0
314	__faddr2line $objfile $func_addr $DIR_PREFIX 0
315
316	# if no match was found, print warnings
317	if [[ $DONE = 0 ]]; then
318		__faddr2line $objfile $func_addr $DIR_PREFIX 1
319		warn "no match for $func_addr"
320	fi
321done
322