2 eval "exec @PERL@ -S $0 $@"
4 # Copyright (C) 1997-2022 Free Software Foundation, Inc.
5 # This file is part of the GNU C Library.
6 # Based on the mtrace.awk script.
8 # The GNU C Library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public
10 # License as published by the Free Software Foundation; either
11 # version 2.1 of the License, or (at your option) any later version.
13 # The GNU C Library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # Lesser General Public License for more details.
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with the GNU C Library; if not, see
20 # <https://www.gnu.org/licenses/>.
22 $VERSION = "@VERSION@";
23 $PKGVERSION = "@PKGVERSION@";
24 $REPORT_BUGS_TO = '@REPORT_BUGS_TO@';
28 print "Usage: mtrace [OPTION]... [Binary] MtraceData\n";
29 print " --help print this help, then exit\n";
30 print " --version print version number, then exit\n";
32 print "For bug reporting instructions, please see:\n";
33 print "$REPORT_BUGS_TO.\n";
37 # We expect two arguments:
38 # #1: the complete path to the binary
39 # #2: the mtrace data filename
40 # The usual options are also recognized.
42 arglist
: while (@ARGV) {
43 if ($ARGV[0] eq "--v" || $ARGV[0] eq "--ve" || $ARGV[0] eq "--ver" ||
44 $ARGV[0] eq "--vers" || $ARGV[0] eq "--versi" ||
45 $ARGV[0] eq "--versio" || $ARGV[0] eq "--version") {
46 print "mtrace $PKGVERSION$VERSION\n";
47 print "Copyright (C) 2022 Free Software Foundation, Inc.\n";
48 print "This is free software; see the source for copying conditions. There is NO\n";
49 print "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n";
50 print "Written by Ulrich Drepper <drepper\@gnu.org>\n";
53 } elsif ($ARGV[0] eq "--h" || $ARGV[0] eq "--he" || $ARGV[0] eq "--hel" ||
54 $ARGV[0] eq "--help") {
56 } elsif ($ARGV[0] =~ /^-/) {
57 print "$progname: unrecognized option `$ARGV[0]'\n";
58 print "Try `$progname --help' for more information.\n";
68 } elsif ($#ARGV == 1) {
72 if ($binary =~ /^.*[\/].*$/) {
77 # Set the environment variable LD_TRACE_LOADED_OBJECTS to 2 so the
78 # executable is also printed.
79 if (open (locs
, "env LD_TRACE_LOADED_OBJECTS=2 $prog |")) {
82 if (/^.*=> (.*) .(0x[0123456789abcdef]*).$/) {
90 die "Wrong number of arguments, run $progname --help for help.";
96 if (open (ADDR
, "addr2line -e $prog $addr|")) {
100 if ($line ne '??:0') {
107 return $str if ($str eq "");
108 if ($str =~ /.*[[](0x[^]]*)]:(.)*/) {
111 return $cache{$addr} if (exists $cache{$addr});
113 my $line = &addr2line
($binary, $addr);
115 $cache{$addr} = $line;
116 return $cache{$addr};
119 $cache{$addr} = $str = "$fct @ $addr";
120 } elsif ($str =~ /^(.*):.*[[](0x[^]]*)]$/) {
124 return $cache{$addr} if (exists $cache{$addr});
125 $searchaddr = sprintf "%#x", hex($addr) + $rel{$prog};
127 for my $address ($searchaddr, $addr) {
128 my $line = &addr2line
($prog, $address);
130 $cache{$addr} = $line;
131 return $cache{$addr};
135 $cache{$addr} = $str = $addr;
136 } elsif ($str =~ /^.*[[](0x[^]]*)]$/) {
138 return $cache{$addr} if (exists $cache{$addr});
140 my $line = &addr2line
($binary, $addr);
142 $cache{$addr} = $line;
143 return $cache{$addr};
146 $cache{$addr} = $str = $addr;
152 open(DATA
, "<$data") || die "Cannot open mtrace data file";
154 my @cols = split (' ');
156 if ($cols[0] eq "@") {
157 # We have address and/or function name.
165 $allocaddr=$cols[$n + 1];
166 $howmuch=hex($cols[$n + 2]);
170 if ($cols[$n] eq "+") {
171 if (defined $allocated{$allocaddr}) {
172 printf ("+ %#0@XXX@x Alloc %d duplicate: %s %s\n",
173 hex($allocaddr), $nr, &location
($addrwas{$allocaddr}),
175 } elsif ($allocaddr =~ /^0x/) {
176 $allocated{$allocaddr}=$howmuch;
177 $addrwas{$allocaddr}=$where;
181 if ($cols[$n] eq "-") {
182 if (defined $allocated{$allocaddr}) {
183 undef $allocated{$allocaddr};
184 undef $addrwas{$allocaddr};
186 printf ("- %#0@XXX@x Free %d was never alloc'd %s\n",
187 hex($allocaddr), $nr, &location
($where));
191 if ($cols[$n] eq "<") {
192 if (defined $allocated{$allocaddr}) {
193 undef $allocated{$allocaddr};
194 undef $addrwas{$allocaddr};
196 printf ("- %#0@XXX@x Realloc %d was never alloc'd %s\n",
197 hex($allocaddr), $nr, &location
($where));
201 if ($cols[$n] eq ">") {
202 if (defined $allocated{$allocaddr}) {
203 printf ("+ %#0@XXX@x Realloc %d duplicate: %#010x %s %s\n",
204 hex($allocaddr), $nr, $allocated{$allocaddr},
205 &location
($addrwas{$allocaddr}), &location
($where));
207 $allocated{$allocaddr}=$howmuch;
208 $addrwas{$allocaddr}=$where;
212 if ($cols[$n] eq "=") {
216 if ($cols[$n] eq "!") {
217 # Ignore failed realloc for now.
224 # Now print all remaining entries.
225 @addrs= keys %allocated;
228 foreach $addr (sort @addrs) {
229 if (defined $allocated{$addr}) {
230 if ($anything == 0) {
231 print "\nMemory not freed:\n-----------------\n";
232 print ' ' x
(@XXX@
- 7), "Address Size Caller\n";
235 printf ("%#0@XXX@x %#8x at %s\n", hex($addr), $allocated{$addr},
236 &location
($addrwas{$addr}));
240 print "No memory leaks.\n" if ($anything == 0);