blob: b09c92803269e0b477156bca04bc5ea2e692367b [file] [log] [blame]
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001#!/usr/bin/perl
2
3# This script processes strace -f output. It displays a graph of invoked
4# subprocesses, and is useful for finding out what complex commands do.
5
6# You will probably want to invoke strace with -q as well, and with
7# -s 100 to get complete filenames.
8
9# The script can also handle the output with strace -t, -tt, or -ttt.
10# It will add elapsed time for each process in that case.
11
12# This script is Copyright (C) 1998 by Richard Braakman <dark@xs4all.nl>.
Wichert Akkerman7b27ba01999-08-30 23:26:53 +000013
14# Redistribution and use in source and binary forms, with or without
15# modification, are permitted provided that the following conditions
16# are met:
17# 1. Redistributions of source code must retain the above copyright
18# notice, this list of conditions and the following disclaimer.
19# 2. Redistributions in binary form must reproduce the above copyright
20# notice, this list of conditions and the following disclaimer in the
21# documentation and/or other materials provided with the distribution.
22# 3. The name of the author may not be used to endorse or promote products
23# derived from this software without specific prior written permission.
24#
25# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wichert Akkerman9ce1a631999-08-29 23:15:07 +000035
Keith Owensa0bc25f2016-01-18 12:57:41 +110036use strict;
37use warnings;
38
Wichert Akkerman9ce1a631999-08-29 23:15:07 +000039my %unfinished;
Keith Owensa0bc25f2016-01-18 12:57:41 +110040my $floatform;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +000041
42# Scales for strace slowdown. Make configurable!
43my $scale_factor = 3.5;
44
45while (<>) {
Keith Owensdbc1ffb2016-01-18 13:03:41 +110046 my ($pid, $call, $args, $result, $time, $time_spent);
Wichert Akkerman9ce1a631999-08-29 23:15:07 +000047 chop;
Keith Owensa0bc25f2016-01-18 12:57:41 +110048 $floatform = 0;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +000049
50 s/^(\d+)\s+//;
51 $pid = $1;
52
53 if (s/^(\d\d):(\d\d):(\d\d)(?:\.(\d\d\d\d\d\d))? //) {
54 $time = $1 * 3600 + $2 * 60 + $3;
55 if (defined $4) {
56 $time = $time + $4 / 1000000;
57 $floatform = 1;
58 }
59 } elsif (s/^(\d+)\.(\d\d\d\d\d\d) //) {
60 $time = $1 + ($2 / 1000000);
61 $floatform = 1;
62 }
63
64 if (s/ <unfinished ...>$//) {
65 $unfinished{$pid} = $_;
66 next;
67 }
68
69 if (s/^<... \S+ resumed> //) {
70 unless (exists $unfinished{$pid}) {
71 print STDERR "$0: $ARGV: cannot find start of resumed call on line $.";
72 next;
73 }
74 $_ = $unfinished{$pid} . $_;
75 delete $unfinished{$pid};
76 }
77
78 if (/^--- SIG(\S+) \(.*\) ---$/) {
79 # $pid received signal $1
80 # currently we don't do anything with this
81 next;
82 }
83
84 if (/^\+\+\+ killed by SIG(\S+) \+\+\+$/) {
85 # $pid received signal $1
86 handle_killed($pid, $time);
87 next;
88 }
89
90 ($call, $args, $result) = /(\S+)\((.*)\)\s+= (.*)$/;
Keith Owensdbc1ffb2016-01-18 13:03:41 +110091 if ($result =~ /^(.*) <([0-9.]*)>$/) {
92 ($result, $time_spent) = ($1, $2);
93 }
Wichert Akkerman9ce1a631999-08-29 23:15:07 +000094 unless (defined $result) {
95 print STDERR "$0: $ARGV: $.: cannot parse line.\n";
96 next;
97 }
98
99 handle_trace($pid, $call, $args, $result, $time);
100}
101
102display_trace();
103
104exit 0;
105
106sub parse_str {
107 my ($in) = @_;
108 my $result = "";
109
110 while (1) {
111 if ($in =~ s/^\\(.)//) {
112 $result .= $1;
113 } elsif ($in =~ s/^\"//) {
114 if ($in =~ s/^\.\.\.//) {
115 return ("$result...", $in);
116 }
117 return ($result, $in);
118 } elsif ($in =~ s/([^\\\"]*)//) {
119 $result .= $1;
120 } else {
121 return (undef, $in);
122 }
123 }
Denys Vlasenko402eeb62009-01-02 13:03:44 +0000124}
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000125
126sub parse_one {
127 my ($in) = @_;
128
129 if ($in =~ s/^\"//) {
Keith Owensa0bc25f2016-01-18 12:57:41 +1100130 my $tmp;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000131 ($tmp, $in) = parse_str($in);
132 if (not defined $tmp) {
133 print STDERR "$0: $ARGV: $.: cannot parse string.\n";
134 return (undef, $in);
135 }
136 return ($tmp, $in);
Keith Owensa0bc25f2016-01-18 12:57:41 +1100137 } elsif ($in =~ s/^0x([[:xdigit:]]+)//) {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000138 return (hex $1, $in);
139 } elsif ($in =~ s/^(\d+)//) {
140 return (int $1, $in);
141 } else {
142 print STDERR "$0: $ARGV: $.: unrecognized element.\n";
143 return (undef, $in);
144 }
145}
146
147sub parseargs {
148 my ($in) = @_;
149 my @args = ();
150 my $tmp;
151
152 while (length $in) {
153 if ($in =~ s/^\[//) {
154 my @subarr = ();
155 if ($in =~ s,^/\* (\d+) vars \*/\],,) {
156 push @args, $1;
157 } else {
158 while ($in !~ s/^\]//) {
159 ($tmp, $in) = parse_one($in);
160 defined $tmp or return undef;
161 push @subarr, $tmp;
162 unless ($in =~ /^\]/ or $in =~ s/^, //) {
163 print STDERR "$0: $ARGV: $.: missing comma in array.\n";
164 return undef;
165 }
166 if ($in =~ s/^\.\.\.//) {
167 push @subarr, "...";
168 }
169 }
170 push @args, \@subarr;
171 }
172 } elsif ($in =~ s/^\{//) {
173 my %subhash = ();
174 while ($in !~ s/^\}//) {
175 my $key;
176 unless ($in =~ s/^(\w+)=//) {
177 print STDERR "$0: $ARGV: $.: struct field expected.\n";
178 return undef;
179 }
180 $key = $1;
181 ($tmp, $in) = parse_one($in);
182 defined $tmp or return undef;
183 $subhash{$key} = $tmp;
184 unless ($in =~ s/, //) {
185 print STDERR "$0: $ARGV: $.: missing comma in struct.\n";
186 return undef;
187 }
188 }
189 push @args, \%subhash;
190 } else {
191 ($tmp, $in) = parse_one($in);
192 defined $tmp or return undef;
193 push @args, $tmp;
194 }
195 unless (length($in) == 0 or $in =~ s/^, //) {
196 print STDERR "$0: $ARGV: $.: missing comma.\n";
197 return undef;
Denys Vlasenko402eeb62009-01-02 13:03:44 +0000198 }
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000199 }
200 return @args;
201}
Denys Vlasenko402eeb62009-01-02 13:03:44 +0000202
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000203
204my $depth = "";
205
206# process info, indexed by pid.
Denys Vlasenko402eeb62009-01-02 13:03:44 +0000207# fields:
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000208# parent pid number
209# seq forks and execs for this pid, in sequence (array)
Denys Vlasenko402eeb62009-01-02 13:03:44 +0000210
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000211# filename and argv (from latest exec)
212# basename (derived from filename)
213# argv[0] is modified to add the basename if it differs from the 0th argument.
214
215my %pr;
216
217sub handle_trace {
218 my ($pid, $call, $args, $result, $time) = @_;
219 my $p;
220
221 if (defined $time and not defined $pr{$pid}{start}) {
222 $pr{$pid}{start} = $time;
223 }
224
225 if ($call eq 'execve') {
Keith Owensa0bc25f2016-01-18 12:57:41 +1100226 return if $result ne '0';
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000227
228 my ($filename, $argv) = parseargs($args);
Keith Owensa0bc25f2016-01-18 12:57:41 +1100229 my ($basename) = $filename =~ m/([^\/]*)$/;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000230 if ($basename ne $$argv[0]) {
231 $$argv[0] = "$basename($$argv[0])";
232 }
233 my $seq = $pr{$pid}{seq};
234 $seq = [] if not defined $seq;
235
236 push @$seq, ['EXEC', $filename, $argv];
237
238 $pr{$pid}{seq} = $seq;
Roland McGrathec407e32005-12-02 04:27:26 +0000239 } elsif ($call eq 'fork' || $call eq 'clone' || $call eq 'vfork') {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000240 return if $result == 0;
241
242 my $seq = $pr{$pid}{seq};
243 $seq = [] if not defined $seq;
244 push @$seq, ['FORK', $result];
245 $pr{$pid}{seq} = $seq;
246 $pr{$result}{parent} = $pid;
247 } elsif ($call eq '_exit') {
248 $pr{$pid}{end} = $time if defined $time;
249 }
250}
251
252sub handle_killed {
253 my ($pid, $time) = @_;
254 $pr{$pid}{end} = $time if defined $time;
255}
256
257sub straight_seq {
258 my ($pid) = @_;
259 my $seq = $pr{$pid}{seq};
260
Keith Owensa0bc25f2016-01-18 12:57:41 +1100261 for my $elem (@$seq) {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000262 if ($$elem[0] eq 'EXEC') {
263 my $argv = $$elem[2];
264 print "$$elem[0] $$elem[1] @$argv\n";
265 } elsif ($$elem[0] eq 'FORK') {
266 print "$$elem[0] $$elem[1]\n";
267 } else {
268 print "$$elem[0]\n";
269 }
270 }
271}
272
273sub first_exec {
274 my ($pid) = @_;
275 my $seq = $pr{$pid}{seq};
276
Keith Owensa0bc25f2016-01-18 12:57:41 +1100277 for my $elem (@$seq) {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000278 if ($$elem[0] eq 'EXEC') {
279 return $elem;
280 }
281 }
282 return undef;
283}
284
285sub display_pid_trace {
286 my ($pid, $lead) = @_;
287 my $i = 0;
288 my @seq = @{$pr{$pid}{seq}};
289 my $elapsed;
290
291 if (not defined first_exec($pid)) {
292 unshift @seq, ['EXEC', '', ['(anon)'] ];
293 }
294
295 if (defined $pr{$pid}{start} and defined $pr{$pid}{end}) {
296 $elapsed = $pr{$pid}{end} - $pr{$pid}{start};
297 $elapsed /= $scale_factor;
298 if ($floatform) {
299 $elapsed = sprintf("%0.02f", $elapsed);
300 } else {
301 $elapsed = int $elapsed;
302 }
303 }
304
Keith Owensa0bc25f2016-01-18 12:57:41 +1100305 for my $elem (@seq) {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000306 $i++;
307 if ($$elem[0] eq 'EXEC') {
308 my $argv = $$elem[2];
309 if (defined $elapsed) {
310 print "$lead [$elapsed] @$argv\n";
311 undef $elapsed;
312 } else {
313 print "$lead @$argv\n";
314 }
315 } elsif ($$elem[0] eq 'FORK') {
316 if ($i == 1) {
317 if ($lead =~ /-$/) {
Dmitry V. Levin414fe7d2009-07-08 11:21:17 +0000318 display_pid_trace($$elem[1], "$lead--+--");
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000319 } else {
Dmitry V. Levin414fe7d2009-07-08 11:21:17 +0000320 display_pid_trace($$elem[1], "$lead +--");
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000321 }
322 } elsif ($i == @seq) {
323 display_pid_trace($$elem[1], "$lead `--");
324 } else {
325 display_pid_trace($$elem[1], "$lead +--");
326 }
327 }
328 if ($i == 1) {
329 $lead =~ s/\`--/ /g;
330 $lead =~ s/-/ /g;
331 $lead =~ s/\+/|/g;
332 }
333 }
334}
335
336sub display_trace {
337 my ($startpid) = @_;
338
339 $startpid = (keys %pr)[0];
340 while ($pr{$startpid}{parent}) {
341 $startpid = $pr{$startpid}{parent};
342 }
343
344 display_pid_trace($startpid, "");
345}