2021-04-29 15:56:01 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Wrapper script for find-debuginfo.sh
|
|
|
|
#
|
|
|
|
# Usage:
|
2021-06-15 11:09:37 +00:00
|
|
|
# wrap-find-debuginfo.sh SYSROOT-PATH SCRIPT-PATH SCRIPT-ARGS...
|
2021-04-29 15:56:01 +00:00
|
|
|
#
|
2021-06-15 11:09:37 +00:00
|
|
|
# The wrapper saves the original version of ld.so found in SYSROOT-PATH,
|
2021-04-29 15:56:01 +00:00
|
|
|
# invokes SCRIPT-PATH with SCRIPT-ARGS, and then restores the
|
2021-06-15 11:09:37 +00:00
|
|
|
# LDSO-PATH file, followed by note merging and DWZ compression.
|
|
|
|
# As a result, ld.so has (mostly) unchanged debuginfo even
|
2021-04-29 15:56:01 +00:00
|
|
|
# after debuginfo extraction.
|
2021-06-17 12:34:16 +00:00
|
|
|
#
|
|
|
|
# For libc.so.6, a set of strategic symbols is preserved in .symtab
|
2021-06-28 05:49:20 +00:00
|
|
|
# that are frequently used in valgrind suppressions and elsewhere.
|
2021-04-29 15:56:01 +00:00
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
ldso_tmp="$(mktemp)"
|
2021-06-17 12:34:16 +00:00
|
|
|
libc_tmp="$(mktemp)"
|
2021-04-29 15:56:01 +00:00
|
|
|
|
2021-05-21 14:22:23 +00:00
|
|
|
# Prefer a separately installed debugedit over the RPM-integrated one.
|
|
|
|
if command -v debugedit >/dev/null ; then
|
|
|
|
debugedit=debugedit
|
|
|
|
else
|
|
|
|
debugedit=/usr/lib/rpm/debugedit
|
|
|
|
fi
|
|
|
|
|
2021-04-29 15:56:01 +00:00
|
|
|
cleanup () {
|
2021-06-17 12:34:16 +00:00
|
|
|
rm -f "$ldso_tmp" "$libc_tmp"
|
2021-04-29 15:56:01 +00:00
|
|
|
}
|
|
|
|
trap cleanup 0
|
|
|
|
|
2021-06-15 11:09:37 +00:00
|
|
|
sysroot_path="$1"
|
2021-04-29 15:56:01 +00:00
|
|
|
shift
|
|
|
|
script_path="$1"
|
|
|
|
shift
|
|
|
|
|
2021-06-15 11:09:37 +00:00
|
|
|
# See ldso_path setting in glibc.spec.
|
|
|
|
ldso_path=
|
|
|
|
for ldso_candidate in `find "$sysroot_path" -regextype posix-extended \
|
|
|
|
-regex '.*/ld(-.*|64|)\.so\.[0-9]+$' -type f` ; do
|
|
|
|
if test -z "$ldso_path" ; then
|
|
|
|
ldso_path="$ldso_candidate"
|
|
|
|
else
|
|
|
|
echo "error: multiple ld.so candidates: $ldso_path, $ldso_candidate"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2021-06-17 12:34:16 +00:00
|
|
|
# libc.so.6 always uses this name, so it is simpler to locate.
|
|
|
|
libc_path=
|
|
|
|
for libc_candidate in `find "$sysroot_path" -name libc.so.6`; do
|
|
|
|
if test -z "$libc_path" ; then
|
|
|
|
libc_path="$libc_candidate"
|
|
|
|
else
|
|
|
|
echo "error: multiple libc.so.6 candidates: $libc_path, $libc_candidate"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
# Preserve the original files.
|
2021-04-29 15:56:01 +00:00
|
|
|
cp "$ldso_path" "$ldso_tmp"
|
2021-06-17 12:34:16 +00:00
|
|
|
cp "$libc_path" "$libc_tmp"
|
2021-04-29 15:56:01 +00:00
|
|
|
|
|
|
|
# Run the debuginfo extraction.
|
|
|
|
"$script_path" "$@"
|
|
|
|
|
2021-06-17 12:34:16 +00:00
|
|
|
# Restore the original files.
|
2021-04-29 15:56:01 +00:00
|
|
|
cp "$ldso_tmp" "$ldso_path"
|
2021-06-17 12:34:16 +00:00
|
|
|
cp "$libc_tmp" "$libc_path"
|
2021-04-29 15:56:01 +00:00
|
|
|
|
|
|
|
# Reduce the size of notes. Primarily for annobin.
|
|
|
|
objcopy --merge-notes "$ldso_path"
|
2021-06-17 12:34:16 +00:00
|
|
|
objcopy --merge-notes "$libc_path"
|
|
|
|
|
2021-06-28 05:49:20 +00:00
|
|
|
# libc.so.6: Reduce to valuable symbols. Eliminate file symbols,
|
|
|
|
# annobin symbols, and symbols used by the glibc build to implement
|
2021-06-28 07:29:49 +00:00
|
|
|
# hidden aliases (__EI_*). We would also like to remove __GI_*
|
|
|
|
# symbols, but even listing them explicitly (as in -K __GI_strlen)
|
|
|
|
# still causes strip to remove them, so there is no filtering of
|
|
|
|
# __GI_* here. (Debuginfo is gone after this, so no need to optimize
|
|
|
|
# it.)
|
2021-06-28 05:49:20 +00:00
|
|
|
strip -w \
|
|
|
|
-K '*' \
|
|
|
|
-K '!*.c' \
|
|
|
|
-K '!*.os' \
|
|
|
|
-K '!.annobin_*' \
|
|
|
|
-K '!__EI_*' \
|
|
|
|
-K '!__PRETTY_FUNCTION__*' \
|
2021-06-17 12:34:16 +00:00
|
|
|
"$libc_path"
|
2021-04-29 15:56:01 +00:00
|
|
|
|
2021-06-17 12:34:16 +00:00
|
|
|
# ld.so: Rewrite the source file paths to match the extracted
|
|
|
|
# locations. First compute the arguments for invoking debugedit.
|
|
|
|
# See find-debuginfo.sh.
|
2021-04-29 15:56:01 +00:00
|
|
|
debug_dest_name="/usr/src/debug"
|
|
|
|
last_arg=
|
|
|
|
while true ; do
|
|
|
|
arg="$1"
|
|
|
|
shift || break
|
|
|
|
case "$arg" in
|
|
|
|
(--unique-debug-src-base)
|
|
|
|
debug_dest_name="/usr/src/debug/$1"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
(-*)
|
|
|
|
;;
|
|
|
|
(*)
|
|
|
|
last_arg="$arg"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
debug_base_name=${last_arg:-$RPM_BUILD_ROOT}
|
2021-05-21 14:22:23 +00:00
|
|
|
$debugedit -b "$debug_base_name" -d "$debug_dest_name" -n $ldso_path
|
2021-04-29 15:56:01 +00:00
|
|
|
|
|
|
|
# Apply single-file DWARF optimization.
|
|
|
|
dwz $ldso_path
|