2 # $Cambridge: exim/src/src/exigrep.src,v 1.3 2005/08/01 13:28:30 ph10 Exp $
6 # Copyright (c) 2004 University of Cambridge.
7 # See the file NOTICE for conditions of use and distribution.
9 # Except when they appear in comments, the following placeholders in this
10 # source are replaced when it is turned into a runnable script:
18 # This is a perl script which extracts from an Exim log all entries
19 # for all messages that have an entry that matches a given pattern.
20 # If *any* entry for a particular message matches the pattern, *all*
21 # entries for that message are displayed.
23 # We buffer up information on a per-message basis. It is done this way rather
24 # than reading the input twice so that the input can be a pipe.
26 # There must be one argument, which is the pattern. Subsequent arguments
27 # are the files to scan; if none, the standard input is read. If any file
28 # appears to be compressed, it is passed through zcat. We can't just do this
29 # for all files, because zcat chokes on non-compressed files.
31 use Getopt::Std qw(getopts);
35 # This subroutine converts a time/date string from an Exim log line into
36 # the number of seconds since the epoch. It handles optional timezone
40 my($year,$month,$day,$hour,$min,$sec,$tzs,$tzh,$tzm) =
41 $_[0] =~ /^(\d{4})-(\d\d)-(\d\d)\s(\d\d):(\d\d):(\d\d)(?>\s([+-])(\d\d)(\d\d))?/;
43 my $seconds = mktime $sec, $min, $hour, $day, $month - 1, $year - 1900;
47 $seconds -= $tzh * 3600 + $tzm * 60 if $tzs eq "+";
48 $seconds += $tzh * 3600 + $tzm * 60 if $tzs eq "-";
55 # This subroutine processes a single line (in $_) from a log file. Program
56 # defensively against short lines finding their way into the log.
58 my (%saved, %id_list, $pattern, $queue_time);
62 # Convert syslog lines to mainlog format, as in eximstats.
64 if (! /^\\d{4}/) { $_ =~ s/^.*? exim\b.*?: //; }
67 my($date,$entry) = /^(\d{4}-\d\d-\d\d \d\d:\d\d:\d\d (?:[+-]\d{4} )?)(.*)/;
69 # Handle the case when the log line belongs to a specific message. We save
70 # lines for specific messages until the message is complete. Then either print
73 if (my($id) = $entry =~ /^(\w{6}\-\w{6}\-\w{2})/)
75 $saved{$id} = '' unless defined($saved{$id});
77 # Save up the data for this message in case it becomes interesting later.
81 # Are we interested in this id ?
83 $id_list{$id} = 1 if /$pattern/io;
85 # See if this is a completion for some message. If it is interesting,
86 # print it, but in any event, throw away what was saved.
89 /(?:Completed|rejected (?:by local_scan|by non-SMTP ACL|after DATA))/)
91 if ($saved{$id} =~ /^(\d{4}-\d\d-\d\d \d\d:\d\d:\d\d ([+-]\d{4} )?)(\w{6}\-\w{6}\-\w{2})/)
93 my $old_sec = &seconds($1);
94 my $sec = &seconds($date);
95 delete $id_list{$id} if $id_list{$id} && $sec - $old_sec <= $queue_time;
100 delete $id_list{$id};
101 print "$saved{$id}\n";
108 # Handle the case where the log line does not belong to a specific message.
109 # Print it if it is interesting.
111 elsif ($entry =~ /$pattern/io) { print "$_\n"; }
115 # The main program. Extract the pattern and make sure any relevant characters
116 # are quoted if the -l flag is given. The -t flag gives a time-on-queue value
117 # which is an additional condition.
119 getopts('lt:',\my %args);
120 $queue_time = $args{'t'}? $args{'t'} : -1;
122 die "usage: exigrep [-l] [-t <seconds>] <pattern> [<log file>]...\n"
125 $pattern = shift @ARGV;
126 $pattern = quotemeta $pattern if $args{l};
129 # If file arguments are given, open each one and process according as it is
130 # is compressed or not.
137 if ($filename =~ /\.(?:COMPRESS_SUFFIX)$/)
139 open(LOG, "ZCAT_COMMAND $filename |") ||
140 die "Unable to zcat $filename: $!\n";
144 open(LOG, "<$filename") || die "Unable to open $filename: $!\n";
146 do_line() while (<LOG>);
151 # If no files are named, process STDIN only
153 else { do_line() while (<STDIN>); }
155 # At the end of processing all the input, print any uncompleted data
157 for (keys %id_list) { print "+++ $_ not completed +++\n$saved{$_}\n;" }