mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-08 02:49:48 +00:00
[ Upstream commit 0f19a038af ]
Using Fedora 27 and latest Linux kernel the test case
trace+probe_libc_inet_pton.sh fails again on s390. This time is the
inlining of functions which does not match. After an update of the
glibc (from 2.26-16 to 2.26-24) the output is different
The expected output is:
__inet_pton (/usr/lib64/libc-2.26.so)
gaih_inet (inlined)
....
The actual output is:
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.061/0.061/0.061/0.000 ms
0.000 probe_libc:inet_pton:(3ffb2140448))
__inet_pton (inlined)
gaih_inet.constprop.7 (/usr/lib64/libc-2.26.so)
...
Fix this by being less strict on 'inlined' verses library name and
accept both
Signed-off-by: Thomas Richter <tmricht@linux.vnet.ibm.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Link: http://lkml.kernel.org/r/20180214070303.55757-1-tmricht@linux.vnet.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
60 lines
1.8 KiB
Bash
Executable File
60 lines
1.8 KiB
Bash
Executable File
# probe libc's inet_pton & backtrace it with ping
|
|
|
|
# Installs a probe on libc's inet_pton function, that will use uprobes,
|
|
# then use 'perf trace' on a ping to localhost asking for just one packet
|
|
# with the a backtrace 3 levels deep, check that it is what we expect.
|
|
# This needs no debuginfo package, all is done using the libc ELF symtab
|
|
# and the CFI info in the binaries.
|
|
|
|
# Arnaldo Carvalho de Melo <acme@kernel.org>, 2017
|
|
|
|
. $(dirname $0)/lib/probe.sh
|
|
|
|
ld=$(realpath /lib64/ld*.so.* | uniq)
|
|
libc=$(echo $ld | sed 's/ld/libc/g')
|
|
|
|
trace_libc_inet_pton_backtrace() {
|
|
idx=0
|
|
expected[0]="PING.*bytes"
|
|
expected[1]="64 bytes from ::1.*"
|
|
expected[2]=".*ping statistics.*"
|
|
expected[3]=".*packets transmitted.*"
|
|
expected[4]="rtt min.*"
|
|
expected[5]="[0-9]+\.[0-9]+[[:space:]]+probe_libc:inet_pton:\([[:xdigit:]]+\)"
|
|
expected[6]=".*inet_pton[[:space:]]\($libc|inlined\)$"
|
|
case "$(uname -m)" in
|
|
s390x)
|
|
eventattr='call-graph=dwarf'
|
|
expected[7]="gaih_inet.*[[:space:]]\($libc|inlined\)$"
|
|
expected[8]="__GI_getaddrinfo[[:space:]]\($libc|inlined\)$"
|
|
expected[9]="main[[:space:]]\(.*/bin/ping.*\)$"
|
|
expected[10]="__libc_start_main[[:space:]]\($libc\)$"
|
|
expected[11]="_start[[:space:]]\(.*/bin/ping.*\)$"
|
|
;;
|
|
*)
|
|
eventattr='max-stack=3'
|
|
expected[7]="getaddrinfo[[:space:]]\($libc\)$"
|
|
expected[8]=".*\(.*/bin/ping.*\)$"
|
|
;;
|
|
esac
|
|
|
|
perf trace --no-syscalls -e probe_libc:inet_pton/$eventattr/ ping -6 -c 1 ::1 2>&1 | grep -v ^$ | while read line ; do
|
|
echo $line
|
|
echo "$line" | egrep -q "${expected[$idx]}"
|
|
if [ $? -ne 0 ] ; then
|
|
printf "FAIL: expected backtrace entry %d \"%s\" got \"%s\"\n" $idx "${expected[$idx]}" "$line"
|
|
exit 1
|
|
fi
|
|
let idx+=1
|
|
[ -z "${expected[$idx]}" ] && break
|
|
done
|
|
}
|
|
|
|
skip_if_no_perf_probe && \
|
|
perf probe -q $libc inet_pton && \
|
|
trace_libc_inet_pton_backtrace
|
|
err=$?
|
|
rm -f ${file}
|
|
perf probe -q -d probe_libc:inet_pton
|
|
exit $err
|