1 #!/bin/bash 1 #!/bin/bash 2 # SPDX-License-Identifier: GPL-2.0 2 # SPDX-License-Identifier: GPL-2.0 3 # 3 # 4 # Translate stack dump function offsets. 4 # Translate stack dump function offsets. 5 # 5 # 6 # addr2line doesn't work with KASLR addresses. 6 # addr2line doesn't work with KASLR addresses. This works similarly to 7 # addr2line, but instead takes the 'func+0x123 7 # addr2line, but instead takes the 'func+0x123' format as input: 8 # 8 # 9 # $ ./scripts/faddr2line ~/k/vmlinux meminfo 9 # $ ./scripts/faddr2line ~/k/vmlinux meminfo_proc_show+0x5/0x568 10 # meminfo_proc_show+0x5/0x568: 10 # meminfo_proc_show+0x5/0x568: 11 # meminfo_proc_show at fs/proc/meminfo.c:27 11 # meminfo_proc_show at fs/proc/meminfo.c:27 12 # 12 # 13 # If the address is part of an inlined functio 13 # If the address is part of an inlined function, the full inline call chain is 14 # printed: 14 # printed: 15 # 15 # 16 # $ ./scripts/faddr2line ~/k/vmlinux native_ 16 # $ ./scripts/faddr2line ~/k/vmlinux native_write_msr+0x6/0x27 17 # native_write_msr+0x6/0x27: 17 # native_write_msr+0x6/0x27: 18 # arch_static_branch at arch/x86/include/asm 18 # arch_static_branch at arch/x86/include/asm/msr.h:121 19 # (inlined by) static_key_false at include/ 19 # (inlined by) static_key_false at include/linux/jump_label.h:125 20 # (inlined by) native_write_msr at arch/x86 20 # (inlined by) native_write_msr at arch/x86/include/asm/msr.h:125 21 # 21 # 22 # The function size after the '/' in the input 22 # The function size after the '/' in the input is optional, but recommended. 23 # It's used to help disambiguate any duplicate 23 # It's used to help disambiguate any duplicate symbol names, which can occur 24 # rarely. If the size is omitted for a duplic 24 # rarely. If the size is omitted for a duplicate symbol then it's possible for 25 # multiple code sites to be printed: 25 # multiple code sites to be printed: 26 # 26 # 27 # $ ./scripts/faddr2line ~/k/vmlinux raw_ioc 27 # $ ./scripts/faddr2line ~/k/vmlinux raw_ioctl+0x5 28 # raw_ioctl+0x5/0x20: 28 # raw_ioctl+0x5/0x20: 29 # raw_ioctl at drivers/char/raw.c:122 29 # raw_ioctl at drivers/char/raw.c:122 30 # 30 # 31 # raw_ioctl+0x5/0xb1: 31 # raw_ioctl+0x5/0xb1: 32 # raw_ioctl at net/ipv4/raw.c:876 32 # raw_ioctl at net/ipv4/raw.c:876 33 # 33 # 34 # Multiple addresses can be specified on a sin 34 # Multiple addresses can be specified on a single command line: 35 # 35 # 36 # $ ./scripts/faddr2line ~/k/vmlinux type_sh 36 # $ ./scripts/faddr2line ~/k/vmlinux type_show+0x10/45 free_reserved_area+0x90 37 # type_show+0x10/0x2d: 37 # type_show+0x10/0x2d: 38 # type_show at drivers/video/backlight/backl 38 # type_show at drivers/video/backlight/backlight.c:213 39 # 39 # 40 # free_reserved_area+0x90/0x123: 40 # free_reserved_area+0x90/0x123: 41 # free_reserved_area at mm/page_alloc.c:6429 41 # free_reserved_area at mm/page_alloc.c:6429 (discriminator 2) 42 42 43 43 44 set -o errexit 44 set -o errexit 45 set -o nounset 45 set -o nounset 46 46 47 usage() { 47 usage() { 48 echo "usage: faddr2line [--list] <obje 48 echo "usage: faddr2line [--list] <object file> <func+offset> <func+offset>..." >&2 49 exit 1 49 exit 1 50 } 50 } 51 51 52 warn() { 52 warn() { 53 echo "$1" >&2 53 echo "$1" >&2 54 } 54 } 55 55 56 die() { 56 die() { 57 echo "ERROR: $1" >&2 57 echo "ERROR: $1" >&2 58 exit 1 58 exit 1 59 } 59 } 60 60 61 UTIL_SUFFIX="" !! 61 READELF="${CROSS_COMPILE:-}readelf" 62 if [[ "${LLVM:-}" == "" ]]; then !! 62 ADDR2LINE="${CROSS_COMPILE:-}addr2line" 63 UTIL_PREFIX=${CROSS_COMPILE:-} << 64 else << 65 UTIL_PREFIX=llvm- << 66 << 67 if [[ "${LLVM}" == *"/" ]]; then << 68 UTIL_PREFIX=${LLVM}${UTIL_PREF << 69 elif [[ "${LLVM}" == "-"* ]]; then << 70 UTIL_SUFFIX=${LLVM} << 71 fi << 72 fi << 73 << 74 READELF="${UTIL_PREFIX}readelf${UTIL_SUFFIX}" << 75 ADDR2LINE="${UTIL_PREFIX}addr2line${UTIL_SUFFI << 76 AWK="awk" 63 AWK="awk" 77 GREP="grep" << 78 64 79 command -v ${AWK} >/dev/null 2>&1 || die "${AW 65 command -v ${AWK} >/dev/null 2>&1 || die "${AWK} isn't installed" 80 command -v ${READELF} >/dev/null 2>&1 || die " 66 command -v ${READELF} >/dev/null 2>&1 || die "${READELF} isn't installed" 81 command -v ${ADDR2LINE} >/dev/null 2>&1 || die 67 command -v ${ADDR2LINE} >/dev/null 2>&1 || die "${ADDR2LINE} isn't installed" 82 68 83 # Try to figure out the source directory prefi 69 # Try to figure out the source directory prefix so we can remove it from the 84 # addr2line output. HACK ALERT: This assumes 70 # addr2line output. HACK ALERT: This assumes that start_kernel() is in 85 # init/main.c! This only works for vmlinux. 71 # init/main.c! This only works for vmlinux. Otherwise it falls back to 86 # printing the absolute path. 72 # printing the absolute path. 87 find_dir_prefix() { 73 find_dir_prefix() { 88 local start_kernel_addr=$(echo "${ELF_ !! 74 local objfile=$1 89 ${AWK} '$8 == "start_kernel" { !! 75 >> 76 local start_kernel_addr=$(${READELF} --symbols --wide $objfile | ${AWK} '$8 == "start_kernel" {printf "0x%s", $2}') 90 [[ -z $start_kernel_addr ]] && return 77 [[ -z $start_kernel_addr ]] && return 91 78 92 run_addr2line ${start_kernel_addr} "" !! 79 local file_line=$(${ADDR2LINE} -e $objfile $start_kernel_addr) 93 [[ -z $ADDR2LINE_OUT ]] && return !! 80 [[ -z $file_line ]] && return 94 81 95 local file_line=${ADDR2LINE_OUT#* at } << 96 if [[ -z $file_line ]] || [[ $file_lin << 97 return << 98 fi << 99 local prefix=${file_line%init/main.c:* 82 local prefix=${file_line%init/main.c:*} 100 if [[ -z $prefix ]] || [[ $prefix = $f 83 if [[ -z $prefix ]] || [[ $prefix = $file_line ]]; then 101 return 84 return 102 fi 85 fi 103 86 104 DIR_PREFIX=$prefix 87 DIR_PREFIX=$prefix 105 return 0 88 return 0 106 } 89 } 107 90 108 run_readelf() { << 109 local objfile=$1 << 110 local out=$(${READELF} --file-header - << 111 << 112 # This assumes that readelf first prin << 113 # Note: It seems that GNU readelf does << 114 # line when multiple options are given << 115 ELF_FILEHEADER=$(echo "${out}" | sed - << 116 ELF_SECHEADERS=$(echo "${out}" | sed - << 117 ELF_SYMS=$(echo "${out}" | sed -n '/Sy << 118 } << 119 << 120 check_vmlinux() { << 121 # vmlinux uses absolute addresses in t << 122 # section offsets. << 123 IS_VMLINUX=0 << 124 local file_type=$(echo "${ELF_FILEHEAD << 125 ${AWK} '$1 == "Type:" { print << 126 if [[ $file_type = "EXEC" ]] || [[ $fi << 127 IS_VMLINUX=1 << 128 fi << 129 } << 130 << 131 init_addr2line() { << 132 local objfile=$1 << 133 << 134 check_vmlinux << 135 << 136 ADDR2LINE_ARGS="--functions --pretty-p << 137 if [[ $IS_VMLINUX = 1 ]]; then << 138 # If the executable file is vm << 139 # addr2line, so we can launch << 140 coproc ADDR2LINE_PROC (${ADDR2 << 141 fi << 142 } << 143 << 144 run_addr2line() { << 145 local addr=$1 << 146 local sec_name=$2 << 147 << 148 if [[ $IS_VMLINUX = 1 ]]; then << 149 # We send to the addr2line pro << 150 # value, i.e., something that << 151 # (i.e., ","). This causes add << 152 # our address, then (2) either << 153 # using binutils' addr2line), << 154 echo ${addr} >& "${ADDR2LINE_P << 155 echo "," >& "${ADDR2LINE_PROC[ << 156 local first_line << 157 read -r first_line <& "${ADDR2 << 158 ADDR2LINE_OUT=$(echo "${first_ << 159 while read -r line <& "${ADDR2 << 160 if [[ "$line" == "?? ? << 161 break << 162 fi << 163 ADDR2LINE_OUT+=$'\n'$( << 164 done << 165 else << 166 # Run addr2line as a single in << 167 local sec_arg << 168 [[ -z $sec_name ]] && sec_arg= << 169 ADDR2LINE_OUT=$(${ADDR2LINE} $ << 170 fi << 171 } << 172 << 173 __faddr2line() { 91 __faddr2line() { 174 local objfile=$1 92 local objfile=$1 175 local func_addr=$2 93 local func_addr=$2 176 local dir_prefix=$3 94 local dir_prefix=$3 177 local print_warnings=$4 95 local print_warnings=$4 178 96 179 local sym_name=${func_addr%+*} 97 local sym_name=${func_addr%+*} 180 local func_offset=${func_addr#*+} !! 98 local offset=${func_addr#*+} 181 func_offset=${func_offset%/*} !! 99 offset=${offset%/*} 182 local user_size= 100 local user_size= 183 [[ $func_addr =~ "/" ]] && user_size=$ 101 [[ $func_addr =~ "/" ]] && user_size=${func_addr#*/} 184 102 185 if [[ -z $sym_name ]] || [[ -z $func_o !! 103 if [[ -z $sym_name ]] || [[ -z $offset ]] || [[ $sym_name = $func_addr ]]; then 186 warn "bad func+offset $func_ad 104 warn "bad func+offset $func_addr" 187 DONE=1 105 DONE=1 188 return 106 return 189 fi 107 fi 190 108 191 # Go through each of the object's symb 109 # Go through each of the object's symbols which match the func name. 192 # In rare cases there might be duplica 110 # In rare cases there might be duplicates, in which case we print all 193 # matches. 111 # matches. 194 while read line; do 112 while read line; do 195 local fields=($line) 113 local fields=($line) 196 local sym_addr=0x${fields[1]} 114 local sym_addr=0x${fields[1]} 197 local sym_elf_size=${fields[2] 115 local sym_elf_size=${fields[2]} 198 local sym_sec=${fields[6]} 116 local sym_sec=${fields[6]} 199 local sec_size << 200 local sec_name << 201 117 202 # Get the section size: 118 # Get the section size: 203 sec_size=$(echo "${ELF_SECHEAD !! 119 local sec_size=$(${READELF} --section-headers --wide $objfile | >> 120 sed 's/\[ /\[/' | 204 ${AWK} -v sec=$sym_sec 121 ${AWK} -v sec=$sym_sec '$1 == "[" sec "]" { print "0x" $6; exit }') 205 122 206 if [[ -z $sec_size ]]; then 123 if [[ -z $sec_size ]]; then 207 warn "bad section size 124 warn "bad section size: section: $sym_sec" 208 DONE=1 125 DONE=1 209 return 126 return 210 fi 127 fi 211 128 212 # Get the section name: << 213 sec_name=$(echo "${ELF_SECHEAD << 214 ${AWK} -v sec=$sym_sec << 215 << 216 if [[ -z $sec_name ]]; then << 217 warn "bad section name << 218 DONE=1 << 219 return << 220 fi << 221 << 222 # Calculate the symbol size. 129 # Calculate the symbol size. 223 # 130 # 224 # Unfortunately we can't use t 131 # Unfortunately we can't use the ELF size, because kallsyms 225 # also includes the padding by 132 # also includes the padding bytes in its size calculation. For 226 # kallsyms, the size calculati 133 # kallsyms, the size calculation is the distance between the 227 # symbol and the next symbol i 134 # symbol and the next symbol in a sorted list. 228 local sym_size 135 local sym_size 229 local cur_sym_addr 136 local cur_sym_addr 230 local found=0 137 local found=0 231 while read line; do 138 while read line; do 232 local fields=($line) 139 local fields=($line) 233 cur_sym_addr=0x${field 140 cur_sym_addr=0x${fields[1]} 234 local cur_sym_elf_size 141 local cur_sym_elf_size=${fields[2]} 235 local cur_sym_name=${f 142 local cur_sym_name=${fields[7]:-} 236 143 237 # is_mapping_symbol(cu << 238 if [[ ${cur_sym_name} << 239 continue << 240 fi << 241 << 242 if [[ $cur_sym_addr = 144 if [[ $cur_sym_addr = $sym_addr ]] && 243 [[ $cur_sym_elf_siz 145 [[ $cur_sym_elf_size = $sym_elf_size ]] && 244 [[ $cur_sym_name = 146 [[ $cur_sym_name = $sym_name ]]; then 245 found=1 147 found=1 246 continue 148 continue 247 fi 149 fi 248 150 249 if [[ $found = 1 ]]; t 151 if [[ $found = 1 ]]; then 250 sym_size=$(($c 152 sym_size=$(($cur_sym_addr - $sym_addr)) 251 [[ $sym_size - 153 [[ $sym_size -lt $sym_elf_size ]] && continue; 252 found=2 154 found=2 253 break 155 break 254 fi 156 fi 255 done < <(echo "${ELF_SYMS}" | !! 157 done < <(${READELF} --symbols --wide $objfile | ${AWK} -v sec=$sym_sec '$7 == sec' | sort --key=2) 256 158 257 if [[ $found = 0 ]]; then 159 if [[ $found = 0 ]]; then 258 warn "can't find symbo 160 warn "can't find symbol: sym_name: $sym_name sym_sec: $sym_sec sym_addr: $sym_addr sym_elf_size: $sym_elf_size" 259 DONE=1 161 DONE=1 260 return 162 return 261 fi 163 fi 262 164 263 # If nothing was found after t 165 # If nothing was found after the symbol, assume it's the last 264 # symbol in the section. 166 # symbol in the section. 265 [[ $found = 1 ]] && sym_size=$ 167 [[ $found = 1 ]] && sym_size=$(($sec_size - $sym_addr)) 266 168 267 if [[ -z $sym_size ]] || [[ $s 169 if [[ -z $sym_size ]] || [[ $sym_size -le 0 ]]; then 268 warn "bad symbol size: 170 warn "bad symbol size: sym_addr: $sym_addr cur_sym_addr: $cur_sym_addr" 269 DONE=1 171 DONE=1 270 return 172 return 271 fi 173 fi 272 174 273 sym_size=0x$(printf %x $sym_si 175 sym_size=0x$(printf %x $sym_size) 274 176 275 # Calculate the address from u !! 177 # Calculate the section address from user-supplied offset: 276 local addr=$(($sym_addr + $fun !! 178 local addr=$(($sym_addr + $offset)) 277 if [[ -z $addr ]] || [[ $addr 179 if [[ -z $addr ]] || [[ $addr = 0 ]]; then 278 warn "bad address: $sy !! 180 warn "bad address: $sym_addr + $offset" 279 DONE=1 181 DONE=1 280 return 182 return 281 fi 183 fi 282 addr=0x$(printf %x $addr) 184 addr=0x$(printf %x $addr) 283 185 284 # If the user provided a size, 186 # If the user provided a size, make sure it matches the symbol's size: 285 if [[ -n $user_size ]] && [[ $ 187 if [[ -n $user_size ]] && [[ $user_size -ne $sym_size ]]; then 286 [[ $print_warnings = 1 188 [[ $print_warnings = 1 ]] && 287 echo "skipping 189 echo "skipping $sym_name address at $addr due to size mismatch ($user_size != $sym_size)" 288 continue; 190 continue; 289 fi 191 fi 290 192 291 # Make sure the provided offse 193 # Make sure the provided offset is within the symbol's range: 292 if [[ $func_offset -gt $sym_si !! 194 if [[ $offset -gt $sym_size ]]; then 293 [[ $print_warnings = 1 195 [[ $print_warnings = 1 ]] && 294 echo "skipping !! 196 echo "skipping $sym_name address at $addr due to size mismatch ($offset > $sym_size)" 295 continue 197 continue 296 fi 198 fi 297 199 298 # In case of duplicates or mul 200 # In case of duplicates or multiple addresses specified on the 299 # cmdline, separate multiple e 201 # cmdline, separate multiple entries with a blank line: 300 [[ $FIRST = 0 ]] && echo 202 [[ $FIRST = 0 ]] && echo 301 FIRST=0 203 FIRST=0 302 204 303 echo "$sym_name+$func_offset/$ !! 205 echo "$sym_name+$offset/$sym_size:" 304 206 305 # Pass section address to addr 207 # Pass section address to addr2line and strip absolute paths 306 # from the output: 208 # from the output: 307 run_addr2line $addr $sec_name !! 209 local output=$(${ADDR2LINE} -fpie $objfile $addr | sed "s; $dir_prefix\(\./\)*; ;") 308 local output=$(echo "${ADDR2LI << 309 [[ -z $output ]] && continue 210 [[ -z $output ]] && continue 310 211 311 # Default output (non --list): 212 # Default output (non --list): 312 if [[ $LIST = 0 ]]; then 213 if [[ $LIST = 0 ]]; then 313 echo "$output" | while 214 echo "$output" | while read -r line 314 do 215 do 315 echo $line 216 echo $line 316 done 217 done 317 DONE=1; 218 DONE=1; 318 continue 219 continue 319 fi 220 fi 320 221 321 # For --list, show each line w 222 # For --list, show each line with its corresponding source code: 322 echo "$output" | while read -r 223 echo "$output" | while read -r line 323 do 224 do 324 echo 225 echo 325 echo $line 226 echo $line 326 n=$(echo $line | sed ' 227 n=$(echo $line | sed 's/.*:\([0-9]\+\).*/\1/g') 327 n1=$[$n-5] 228 n1=$[$n-5] 328 n2=$[$n+5] 229 n2=$[$n+5] 329 f=$(echo $line | sed ' 230 f=$(echo $line | sed 's/.*at \(.\+\):.*/\1/g') 330 ${AWK} 'NR>=strtonum(" 231 ${AWK} 'NR>=strtonum("'$n1'") && NR<=strtonum("'$n2'") { if (NR=='$n') printf(">%d<", NR); else printf(" %d ", NR); printf("\t%s\n", $0)}' $f 331 done 232 done 332 233 333 DONE=1 234 DONE=1 334 235 335 done < <(echo "${ELF_SYMS}" | sed 's/\ !! 236 done < <(${READELF} --symbols --wide $objfile | ${AWK} -v fn=$sym_name '$4 == "FUNC" && $8 == fn') 336 } 237 } 337 238 338 [[ $# -lt 2 ]] && usage 239 [[ $# -lt 2 ]] && usage 339 240 340 objfile=$1 241 objfile=$1 341 242 342 LIST=0 243 LIST=0 343 [[ "$objfile" == "--list" ]] && LIST=1 && shif 244 [[ "$objfile" == "--list" ]] && LIST=1 && shift && objfile=$1 344 245 345 [[ ! -f $objfile ]] && die "can't find objfile 246 [[ ! -f $objfile ]] && die "can't find objfile $objfile" 346 shift 247 shift 347 248 348 run_readelf $objfile << 349 << 350 echo "${ELF_SECHEADERS}" | ${GREP} -q '\.debug << 351 << 352 init_addr2line $objfile << 353 << 354 DIR_PREFIX=supercalifragilisticexpialidocious 249 DIR_PREFIX=supercalifragilisticexpialidocious 355 find_dir_prefix !! 250 find_dir_prefix $objfile 356 251 357 FIRST=1 252 FIRST=1 358 while [[ $# -gt 0 ]]; do 253 while [[ $# -gt 0 ]]; do 359 func_addr=$1 254 func_addr=$1 360 shift 255 shift 361 256 362 # print any matches found 257 # print any matches found 363 DONE=0 258 DONE=0 364 __faddr2line $objfile $func_addr $DIR_ 259 __faddr2line $objfile $func_addr $DIR_PREFIX 0 365 260 366 # if no match was found, print warning 261 # if no match was found, print warnings 367 if [[ $DONE = 0 ]]; then 262 if [[ $DONE = 0 ]]; then 368 __faddr2line $objfile $func_ad 263 __faddr2line $objfile $func_addr $DIR_PREFIX 1 369 warn "no match for $func_addr" 264 warn "no match for $func_addr" 370 fi 265 fi 371 done 266 done
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.