1997-09-27 02:21:42 +02:00
|
|
|
#! @PERL@
|
|
|
|
eval "exec @PERL@ -S $0 $*"
|
|
|
|
if 0;
|
2008-01-02 20:26:03 +01:00
|
|
|
# Copyright (C) 1997-2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
1997-09-27 02:21:42 +02:00
|
|
|
# This file is part of the GNU C Library.
|
1999-01-04 13:33:59 +01:00
|
|
|
# Contributed by Ulrich Drepper <drepper@gnu.org>, 1997.
|
1997-09-27 02:21:42 +02:00
|
|
|
# Based on the mtrace.awk script.
|
|
|
|
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 08:58:28 +02: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 02:21:42 +02: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 08:58:28 +02:00
|
|
|
# Lesser General Public License for more details.
|
1997-09-27 02:21:42 +02:00
|
|
|
|
2001-07-06 08:58:28 +02:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with the GNU C Library; if not, write to the Free
|
|
|
|
# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
# 02111-1307 USA.
|
1997-09-27 02:21:42 +02:00
|
|
|
|
|
|
|
$VERSION = "@VERSION@";
|
|
|
|
$PACKAGE = "libc";
|
|
|
|
$progname = $0;
|
|
|
|
|
|
|
|
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 19:19:00 +02:00
|
|
|
print "\n";
|
2004-05-18 22:18:14 +02:00
|
|
|
print "For bug reporting instructions, please see:\n";
|
2004-05-17 20:59:35 +02:00
|
|
|
print "<http://www.gnu.org/software/libc/bugs.html>.\n";
|
1997-09-27 02:21:42 +02:00
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
# 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") {
|
|
|
|
print "mtrace (GNU $PACKAGE) $VERSION\n";
|
2008-01-02 20:26:03 +01:00
|
|
|
print "Copyright (C) 2008 Free Software Foundation, Inc.\n";
|
1997-09-27 02:21:42 +02: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 19:19:00 +02:00
|
|
|
print "Written by Ulrich Drepper <drepper\@gnu.org>\n";
|
1997-09-27 02:21:42 +02: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 09:33:58 +02:00
|
|
|
|
|
|
|
if ($binary =~ /^.*[\/].*$/) {
|
|
|
|
$prog = $binary;
|
|
|
|
} else {
|
|
|
|
$prog = "./$binary";
|
|
|
|
}
|
|
|
|
if (open (LOCS, "env LD_TRACE_LOADED_OBJECTS=1 $prog |")) {
|
|
|
|
while (<LOCS>) {
|
|
|
|
chop;
|
|
|
|
if (/^.*=> (.*) .(0x[0123456789abcdef]*).$/) {
|
|
|
|
$locs{$1} = $2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close (LOCS);
|
|
|
|
}
|
1997-09-27 02:21:42 +02:00
|
|
|
} else {
|
2000-08-19 18:58:09 +02:00
|
|
|
die "Wrong number of arguments, run $progname --help for help.";
|
1997-09-27 02:21:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub location {
|
|
|
|
my $str = pop(@_);
|
|
|
|
return $str if ($str eq "");
|
2001-01-06 20:29:33 +01:00
|
|
|
if ($str =~ /.*[[](0x[^]]*)]:(.)*/) {
|
1997-09-27 02:21:42 +02:00
|
|
|
my $addr = $1;
|
|
|
|
my $fct = $2;
|
|
|
|
return $cache{$addr} if (exists $cache{$addr});
|
|
|
|
if ($binary ne "" && open (ADDR, "addr2line -e $binary $addr|")) {
|
|
|
|
my $line = <ADDR>;
|
|
|
|
chomp $line;
|
|
|
|
close (ADDR);
|
|
|
|
if ($line ne '??:0') {
|
|
|
|
$cache{$addr} = $line;
|
|
|
|
return $cache{$addr};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$cache{$addr} = $str = "$fct @ $addr";
|
2001-07-27 09:33:58 +02:00
|
|
|
} elsif ($str =~ /^(.*):.*[[](0x[^]]*)]$/) {
|
|
|
|
my $prog = $1;
|
|
|
|
my $addr = $2;
|
|
|
|
my $searchaddr;
|
1997-09-27 02:21:42 +02:00
|
|
|
return $cache{$addr} if (exists $cache{$addr});
|
2001-07-27 09:33:58 +02:00
|
|
|
if ($locs{$prog} ne "") {
|
|
|
|
$searchaddr = sprintf "%#x", $addr - $locs{$prog};
|
|
|
|
} else {
|
|
|
|
$searchaddr = $addr;
|
|
|
|
$prog = $binary;
|
|
|
|
}
|
|
|
|
if ($binary ne "" && open (ADDR, "addr2line -e $prog $searchaddr|")) {
|
1997-09-27 02:21:42 +02:00
|
|
|
my $line = <ADDR>;
|
|
|
|
chomp $line;
|
|
|
|
close (ADDR);
|
|
|
|
if ($line ne '??:0') {
|
|
|
|
$cache{$addr} = $line;
|
|
|
|
return $cache{$addr};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$cache{$addr} = $str = $addr;
|
2001-07-27 10:29:06 +02:00
|
|
|
} elsif ($str =~ /^.*[[](0x[^]]*)]$/) {
|
|
|
|
my $addr = $1;
|
|
|
|
return $cache{$addr} if (exists $cache{$addr});
|
|
|
|
if ($binary ne "" && open (ADDR, "addr2line -e $binary $addr|")) {
|
|
|
|
my $line = <ADDR>;
|
|
|
|
chomp $line;
|
|
|
|
close (ADDR);
|
|
|
|
if ($line ne '??:0') {
|
|
|
|
$cache{$addr} = $line;
|
|
|
|
return $cache{$addr};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$cache{$addr} = $str = $addr;
|
1997-09-27 02:21:42 +02:00
|
|
|
}
|
|
|
|
return $str;
|
|
|
|
}
|
|
|
|
|
|
|
|
$nr=0;
|
|
|
|
open(DATA, "<$data") || die "Cannot open mtrace data file";
|
|
|
|
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 19:19:00 +02:00
|
|
|
printf ("+ %#0@XXX@x Alloc %d duplicate: %s %s\n",
|
2004-10-05 01:22:47 +02:00
|
|
|
hex($allocaddr), $nr, &location($addrwas{$allocaddr}),
|
|
|
|
$where);
|
1997-09-27 02:21:42 +02:00
|
|
|
} else {
|
|
|
|
$allocated{$allocaddr}=$howmuch;
|
2004-10-05 01:22:47 +02:00
|
|
|
$addrwas{$allocaddr}=$where;
|
1997-09-27 02:21:42 +02:00
|
|
|
}
|
|
|
|
last SWITCH;
|
|
|
|
}
|
|
|
|
if ($cols[$n] eq "-") {
|
|
|
|
if (defined $allocated{$allocaddr}) {
|
|
|
|
undef $allocated{$allocaddr};
|
2004-10-05 01:22:47 +02:00
|
|
|
undef $addrwas{$allocaddr};
|
1997-09-27 02:21:42 +02:00
|
|
|
} else {
|
1998-09-01 19:19:00 +02:00
|
|
|
printf ("- %#0@XXX@x Free %d was never alloc'd %s\n",
|
1997-09-27 02:21:42 +02:00
|
|
|
hex($allocaddr), $nr, &location($where));
|
|
|
|
}
|
|
|
|
last SWITCH;
|
|
|
|
}
|
|
|
|
if ($cols[$n] eq "<") {
|
|
|
|
if (defined $allocated{$allocaddr}) {
|
|
|
|
undef $allocated{$allocaddr};
|
2004-10-05 01:22:47 +02:00
|
|
|
undef $addrwas{$allocaddr};
|
1997-09-27 02:21:42 +02:00
|
|
|
} else {
|
1998-09-01 19:19:00 +02:00
|
|
|
printf ("- %#0@XXX@x Realloc %d was never alloc'd %s\n",
|
1997-09-27 02:21:42 +02:00
|
|
|
hex($allocaddr), $nr, &location($where));
|
|
|
|
}
|
|
|
|
last SWITCH;
|
|
|
|
}
|
|
|
|
if ($cols[$n] eq ">") {
|
|
|
|
if (defined $allocated{$allocaddr}) {
|
1998-09-01 19:19:00 +02:00
|
|
|
printf ("+ %#0@XXX@x Realloc %d duplicate: %#010x %s %s\n",
|
1997-09-27 02:21:42 +02:00
|
|
|
hex($allocaddr), $nr, $allocated{$allocaddr},
|
2004-10-05 01:22:47 +02:00
|
|
|
&location($addrwas{$allocaddr}), &location($where));
|
1997-09-27 02:21:42 +02:00
|
|
|
} else {
|
|
|
|
$allocated{$allocaddr}=$howmuch;
|
2004-10-05 01:22:47 +02:00
|
|
|
$addrwas{$allocaddr}=$where;
|
1997-09-27 02:21:42 +02: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 23:24:57 +01:00
|
|
|
$anything=0;
|
1997-09-27 02:21:42 +02:00
|
|
|
if ($#addrs >= 0) {
|
|
|
|
foreach $addr (sort @addrs) {
|
|
|
|
if (defined $allocated{$addr}) {
|
1997-12-14 23:24:57 +01:00
|
|
|
if ($anything == 0) {
|
|
|
|
print "\nMemory not freed:\n-----------------\n";
|
|
|
|
print ' ' x (@XXX@ - 7), "Address Size Caller\n";
|
|
|
|
$anything=1;
|
|
|
|
}
|
1997-09-27 02:21:42 +02:00
|
|
|
printf ("%#0@XXX@x %#8x at %s\n", hex($addr), $allocated{$addr},
|
2004-10-05 01:22:47 +02:00
|
|
|
&location($addrwas{$addr}));
|
1997-09-27 02:21:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1997-12-14 23:24:57 +01:00
|
|
|
print "No memory leaks.\n" if ($anything == 0);
|
1997-09-27 02:21:42 +02:00
|
|
|
|
2000-07-07 10:03:07 +02:00
|
|
|
exit $anything != 0;
|