2024-06-20 08:32:16 +00:00
|
|
|
#! /bin/sh
|
2024-06-20 18:55:10 +00:00
|
|
|
# -*- perl -*-
|
|
|
|
eval "q () {
|
|
|
|
:
|
|
|
|
}";
|
|
|
|
q {
|
|
|
|
exec perl -e '$_ = shift; $_ = "./$_" unless m,^/,; do $_' "$0" "$@"
|
|
|
|
}
|
|
|
|
;
|
2024-01-01 18:12:26 +00:00
|
|
|
# Copyright (C) 1997-2024 Free Software Foundation, Inc.
|
1997-09-27 00:21:42 +00:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
# Based on the mtrace.awk script.
|
|
|
|
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:28 +00:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
1997-09-27 00:21:42 +00:00
|
|
|
|
|
|
|
# The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:28 +00:00
|
|
|
# Lesser General Public License for more details.
|
1997-09-27 00:21:42 +00:00
|
|
|
|
2001-07-06 06:58:28 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
# License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
# <https://www.gnu.org/licenses/>.
|
1997-09-27 00:21:42 +00:00
|
|
|
|
|
|
|
$VERSION = "@VERSION@";
|
2012-11-09 22:13:45 +00:00
|
|
|
$PKGVERSION = "@PKGVERSION@";
|
|
|
|
$REPORT_BUGS_TO = '@REPORT_BUGS_TO@';
|
2024-06-20 18:55:10 +00:00
|
|
|
$progname = $_;
|
1997-09-27 00:21:42 +00:00
|
|
|
|
|
|
|
sub usage {
|
|
|
|
print "Usage: mtrace [OPTION]... [Binary] MtraceData\n";
|
|
|
|
print " --help print this help, then exit\n";
|
|
|
|
print " --version print version number, then exit\n";
|
1998-09-01 17:19:00 +00:00
|
|
|
print "\n";
|
2004-05-18 20:18:14 +00:00
|
|
|
print "For bug reporting instructions, please see:\n";
|
2012-11-09 22:13:45 +00:00
|
|
|
print "$REPORT_BUGS_TO.\n";
|
1997-09-27 00:21:42 +00:00
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
|
2024-06-20 18:55:10 +00:00
|
|
|
sub fatal {
|
|
|
|
print STDERR "$_[0]\n";
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
|
1997-09-27 00:21:42 +00:00
|
|
|
# We expect two arguments:
|
|
|
|
# #1: the complete path to the binary
|
|
|
|
# #2: the mtrace data filename
|
|
|
|
# The usual options are also recognized.
|
|
|
|
|
|
|
|
arglist: while (@ARGV) {
|
|
|
|
if ($ARGV[0] eq "--v" || $ARGV[0] eq "--ve" || $ARGV[0] eq "--ver" ||
|
|
|
|
$ARGV[0] eq "--vers" || $ARGV[0] eq "--versi" ||
|
|
|
|
$ARGV[0] eq "--versio" || $ARGV[0] eq "--version") {
|
2012-11-09 22:13:45 +00:00
|
|
|
print "mtrace $PKGVERSION$VERSION\n";
|
2024-01-01 18:35:28 +00:00
|
|
|
print "Copyright (C) 2024 Free Software Foundation, Inc.\n";
|
1997-09-27 00:21:42 +00:00
|
|
|
print "This is free software; see the source for copying conditions. There is NO\n";
|
|
|
|
print "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n";
|
1998-09-01 17:19:00 +00:00
|
|
|
print "Written by Ulrich Drepper <drepper\@gnu.org>\n";
|
1997-09-27 00:21:42 +00:00
|
|
|
|
|
|
|
exit 0;
|
|
|
|
} elsif ($ARGV[0] eq "--h" || $ARGV[0] eq "--he" || $ARGV[0] eq "--hel" ||
|
|
|
|
$ARGV[0] eq "--help") {
|
|
|
|
&usage;
|
|
|
|
} elsif ($ARGV[0] =~ /^-/) {
|
|
|
|
print "$progname: unrecognized option `$ARGV[0]'\n";
|
|
|
|
print "Try `$progname --help' for more information.\n";
|
|
|
|
exit 1;
|
|
|
|
} else {
|
|
|
|
last arglist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($#ARGV == 0) {
|
|
|
|
$binary="";
|
|
|
|
$data=$ARGV[0];
|
|
|
|
} elsif ($#ARGV == 1) {
|
|
|
|
$binary=$ARGV[0];
|
|
|
|
$data=$ARGV[1];
|
2001-07-27 07:33:58 +00:00
|
|
|
|
|
|
|
if ($binary =~ /^.*[\/].*$/) {
|
|
|
|
$prog = $binary;
|
|
|
|
} else {
|
|
|
|
$prog = "./$binary";
|
|
|
|
}
|
2022-01-21 13:20:50 +00:00
|
|
|
# Set the environment variable LD_TRACE_LOADED_OBJECTS to 2 so the
|
|
|
|
# executable is also printed.
|
2024-06-20 12:13:01 +00:00
|
|
|
if (open (locs, "-|", "env", "LD_TRACE_LOADED_OBJECTS=2", $prog)) {
|
2022-01-21 13:20:50 +00:00
|
|
|
while (<locs>) {
|
2001-07-27 07:33:58 +00:00
|
|
|
chop;
|
2022-01-21 13:20:50 +00:00
|
|
|
if (/^.*=> (.*) .(0x[0123456789abcdef]*).$/) {
|
2001-07-27 07:33:58 +00:00
|
|
|
$locs{$1} = $2;
|
2022-01-21 13:20:50 +00:00
|
|
|
$rel{$1} = hex($2);
|
2001-07-27 07:33:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
close (LOCS);
|
|
|
|
}
|
1997-09-27 00:21:42 +00:00
|
|
|
} else {
|
2024-06-20 18:55:10 +00:00
|
|
|
fatal "Wrong number of arguments, run $progname --help for help.";
|
1997-09-27 00:21:42 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 13:20:50 +00:00
|
|
|
sub addr2line {
|
|
|
|
my $addr = pop(@_);
|
|
|
|
my $prog = pop(@_);
|
2024-06-20 12:13:01 +00:00
|
|
|
if (open (ADDR, "-|", "addr2line", "-e", $prog, $addr)) {
|
2022-01-21 13:20:50 +00:00
|
|
|
my $line = <ADDR>;
|
|
|
|
chomp $line;
|
|
|
|
close (ADDR);
|
|
|
|
if ($line ne '??:0') {
|
|
|
|
return $line
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1997-09-27 00:21:42 +00:00
|
|
|
sub location {
|
|
|
|
my $str = pop(@_);
|
|
|
|
return $str if ($str eq "");
|
2001-01-06 19:29:33 +00:00
|
|
|
if ($str =~ /.*[[](0x[^]]*)]:(.)*/) {
|
1997-09-27 00:21:42 +00:00
|
|
|
my $addr = $1;
|
|
|
|
my $fct = $2;
|
|
|
|
return $cache{$addr} if (exists $cache{$addr});
|
2022-01-21 13:20:50 +00:00
|
|
|
if ($binary ne "") {
|
|
|
|
my $line = &addr2line($binary, $addr);
|
|
|
|
if ($line) {
|
1997-09-27 00:21:42 +00:00
|
|
|
$cache{$addr} = $line;
|
|
|
|
return $cache{$addr};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$cache{$addr} = $str = "$fct @ $addr";
|
2001-07-27 07:33:58 +00:00
|
|
|
} elsif ($str =~ /^(.*):.*[[](0x[^]]*)]$/) {
|
|
|
|
my $prog = $1;
|
|
|
|
my $addr = $2;
|
|
|
|
my $searchaddr;
|
1997-09-27 00:21:42 +00:00
|
|
|
return $cache{$addr} if (exists $cache{$addr});
|
2021-08-23 02:41:54 +00:00
|
|
|
$searchaddr = sprintf "%#x", hex($addr) + $rel{$prog};
|
2022-01-21 13:20:50 +00:00
|
|
|
if ($binary ne "") {
|
|
|
|
for my $address ($searchaddr, $addr) {
|
|
|
|
my $line = &addr2line($prog, $address);
|
|
|
|
if ($line) {
|
|
|
|
$cache{$addr} = $line;
|
|
|
|
return $cache{$addr};
|
|
|
|
}
|
1997-09-27 00:21:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$cache{$addr} = $str = $addr;
|
2001-07-27 08:29:06 +00:00
|
|
|
} elsif ($str =~ /^.*[[](0x[^]]*)]$/) {
|
|
|
|
my $addr = $1;
|
|
|
|
return $cache{$addr} if (exists $cache{$addr});
|
2022-01-21 13:20:50 +00:00
|
|
|
if ($binary ne "") {
|
|
|
|
my $line = &addr2line($binary, $addr);
|
|
|
|
if ($line) {
|
2001-07-27 08:29:06 +00:00
|
|
|
$cache{$addr} = $line;
|
|
|
|
return $cache{$addr};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$cache{$addr} = $str = $addr;
|
1997-09-27 00:21:42 +00:00
|
|
|
}
|
|
|
|
return $str;
|
|
|
|
}
|
|
|
|
|
|
|
|
$nr=0;
|
2024-06-20 18:55:10 +00:00
|
|
|
open(DATA, "<$data")
|
|
|
|
or fatal "$progname: Cannot open mtrace data file $data: $!";
|
1997-09-27 00:21:42 +00:00
|
|
|
while (<DATA>) {
|
|
|
|
my @cols = split (' ');
|
|
|
|
my $n, $where;
|
|
|
|
if ($cols[0] eq "@") {
|
|
|
|
# We have address and/or function name.
|
|
|
|
$where=$cols[1];
|
|
|
|
$n=2;
|
|
|
|
} else {
|
|
|
|
$where="";
|
|
|
|
$n=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$allocaddr=$cols[$n + 1];
|
|
|
|
$howmuch=hex($cols[$n + 2]);
|
|
|
|
|
|
|
|
++$nr;
|
|
|
|
SWITCH: {
|
|
|
|
if ($cols[$n] eq "+") {
|
|
|
|
if (defined $allocated{$allocaddr}) {
|
1998-09-01 17:19:00 +00:00
|
|
|
printf ("+ %#0@XXX@x Alloc %d duplicate: %s %s\n",
|
2004-10-04 23:22:47 +00:00
|
|
|
hex($allocaddr), $nr, &location($addrwas{$allocaddr}),
|
|
|
|
$where);
|
2015-09-01 15:35:38 +00:00
|
|
|
} elsif ($allocaddr =~ /^0x/) {
|
1997-09-27 00:21:42 +00:00
|
|
|
$allocated{$allocaddr}=$howmuch;
|
2004-10-04 23:22:47 +00:00
|
|
|
$addrwas{$allocaddr}=$where;
|
1997-09-27 00:21:42 +00:00
|
|
|
}
|
|
|
|
last SWITCH;
|
|
|
|
}
|
|
|
|
if ($cols[$n] eq "-") {
|
|
|
|
if (defined $allocated{$allocaddr}) {
|
|
|
|
undef $allocated{$allocaddr};
|
2004-10-04 23:22:47 +00:00
|
|
|
undef $addrwas{$allocaddr};
|
1997-09-27 00:21:42 +00:00
|
|
|
} else {
|
1998-09-01 17:19:00 +00:00
|
|
|
printf ("- %#0@XXX@x Free %d was never alloc'd %s\n",
|
1997-09-27 00:21:42 +00:00
|
|
|
hex($allocaddr), $nr, &location($where));
|
|
|
|
}
|
|
|
|
last SWITCH;
|
|
|
|
}
|
|
|
|
if ($cols[$n] eq "<") {
|
|
|
|
if (defined $allocated{$allocaddr}) {
|
|
|
|
undef $allocated{$allocaddr};
|
2004-10-04 23:22:47 +00:00
|
|
|
undef $addrwas{$allocaddr};
|
1997-09-27 00:21:42 +00:00
|
|
|
} else {
|
1998-09-01 17:19:00 +00:00
|
|
|
printf ("- %#0@XXX@x Realloc %d was never alloc'd %s\n",
|
1997-09-27 00:21:42 +00:00
|
|
|
hex($allocaddr), $nr, &location($where));
|
|
|
|
}
|
|
|
|
last SWITCH;
|
|
|
|
}
|
|
|
|
if ($cols[$n] eq ">") {
|
|
|
|
if (defined $allocated{$allocaddr}) {
|
1998-09-01 17:19:00 +00:00
|
|
|
printf ("+ %#0@XXX@x Realloc %d duplicate: %#010x %s %s\n",
|
1997-09-27 00:21:42 +00:00
|
|
|
hex($allocaddr), $nr, $allocated{$allocaddr},
|
2004-10-04 23:22:47 +00:00
|
|
|
&location($addrwas{$allocaddr}), &location($where));
|
1997-09-27 00:21:42 +00:00
|
|
|
} else {
|
|
|
|
$allocated{$allocaddr}=$howmuch;
|
2004-10-04 23:22:47 +00:00
|
|
|
$addrwas{$allocaddr}=$where;
|
1997-09-27 00:21:42 +00:00
|
|
|
}
|
|
|
|
last SWITCH;
|
|
|
|
}
|
|
|
|
if ($cols[$n] eq "=") {
|
|
|
|
# Ignore "= Start".
|
|
|
|
last SWITCH;
|
|
|
|
}
|
|
|
|
if ($cols[$n] eq "!") {
|
|
|
|
# Ignore failed realloc for now.
|
|
|
|
last SWITCH;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close (DATA);
|
|
|
|
|
|
|
|
# Now print all remaining entries.
|
|
|
|
@addrs= keys %allocated;
|
1997-12-14 22:24:57 +00:00
|
|
|
$anything=0;
|
1997-09-27 00:21:42 +00:00
|
|
|
if ($#addrs >= 0) {
|
|
|
|
foreach $addr (sort @addrs) {
|
|
|
|
if (defined $allocated{$addr}) {
|
1997-12-14 22:24:57 +00:00
|
|
|
if ($anything == 0) {
|
|
|
|
print "\nMemory not freed:\n-----------------\n";
|
|
|
|
print ' ' x (@XXX@ - 7), "Address Size Caller\n";
|
|
|
|
$anything=1;
|
|
|
|
}
|
1997-09-27 00:21:42 +00:00
|
|
|
printf ("%#0@XXX@x %#8x at %s\n", hex($addr), $allocated{$addr},
|
2004-10-04 23:22:47 +00:00
|
|
|
&location($addrwas{$addr}));
|
1997-09-27 00:21:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1997-12-14 22:24:57 +00:00
|
|
|
print "No memory leaks.\n" if ($anything == 0);
|
1997-09-27 00:21:42 +00:00
|
|
|
|
2000-07-07 08:03:07 +00:00
|
|
|
exit $anything != 0;
|