Fix verification when DKIM Signatures are not inserted as tracking headers. Thanks...
[exim.git] / src / src / exigrep.src
CommitLineData
059ec3d9 1#! PERL_COMMAND -w
059ec3d9
PH
2
3use strict;
4
f3f065bb 5# Copyright (c) 2007 University of Cambridge.
059ec3d9
PH
6# See the file NOTICE for conditions of use and distribution.
7
8# Except when they appear in comments, the following placeholders in this
9# source are replaced when it is turned into a runnable script:
10#
11# PERL_COMMAND
12# ZCAT_COMMAND
13# COMPRESS_SUFFIX
14
15# PROCESSED_FLAG
16
17# This is a perl script which extracts from an Exim log all entries
18# for all messages that have an entry that matches a given pattern.
19# If *any* entry for a particular message matches the pattern, *all*
20# entries for that message are displayed.
21
22# We buffer up information on a per-message basis. It is done this way rather
23# than reading the input twice so that the input can be a pipe.
24
25# There must be one argument, which is the pattern. Subsequent arguments
26# are the files to scan; if none, the standard input is read. If any file
27# appears to be compressed, it is passed through zcat. We can't just do this
28# for all files, because zcat chokes on non-compressed files.
29
75b1493f
PH
30# Performance optimized in 02/02/2007 by Jori Hamalainen
31# Typical run time acceleration: 4 times
32
33
059ec3d9
PH
34use Getopt::Std qw(getopts);
35use POSIX qw(mktime);
36
37
38# This subroutine converts a time/date string from an Exim log line into
39# the number of seconds since the epoch. It handles optional timezone
40# information.
41
42sub seconds {
43my($year,$month,$day,$hour,$min,$sec,$tzs,$tzh,$tzm) =
75b1493f 44 $_[0] =~ /^(\d{4})-(\d\d)-(\d\d)\s(\d\d):(\d\d):(\d\d)(?>\s([+-])(\d\d)(\d\d))?/o;
059ec3d9
PH
45
46my $seconds = mktime $sec, $min, $hour, $day, $month - 1, $year - 1900;
47
48if (defined $tzs)
49 {
50 $seconds -= $tzh * 3600 + $tzm * 60 if $tzs eq "+";
51 $seconds += $tzh * 3600 + $tzm * 60 if $tzs eq "-";
52 }
53
54return $seconds;
55}
56
57
58# This subroutine processes a single line (in $_) from a log file. Program
59# defensively against short lines finding their way into the log.
60
b2d5182b 61my (%saved, %id_list, $pattern, $queue_time, $insensitive, $invert);
059ec3d9
PH
62
63sub do_line {
395ff96d
PH
64
65# Convert syslog lines to mainlog format, as in eximstats.
66
75b1493f 67if (!/^\d{4}-/o) { $_ =~ s/^.*? exim\b.*?: //o; }
395ff96d 68
059ec3d9 69return unless
c0997ccb 70 my($date,$id) = /^(\d{4}-\d\d-\d\d \d\d:\d\d:\d\d (?:[+-]\d{4} )?)(?:\[\d+\] )?(\w{6}\-\w{6}\-\w{2})?/o;
059ec3d9
PH
71
72# Handle the case when the log line belongs to a specific message. We save
73# lines for specific messages until the message is complete. Then either print
f3f065bb 74# or discard.
059ec3d9 75
75b1493f 76if (defined $id)
059ec3d9
PH
77 {
78 $saved{$id} = '' unless defined($saved{$id});
79
80 # Save up the data for this message in case it becomes interesting later.
81
82 $saved{$id} .= $_;
83
75b1493f 84 # Are we interested in this id ? Short circuit if we already were interested.
059ec3d9 85
b2d5182b
PH
86 if ($invert)
87 {
88 $id_list{$id} = 1 if (!defined($id_list{$id}));
89 $id_list{$id} = 0 if (($insensitive && /$pattern/io) || /$pattern/o);
90 }
91 else
92 {
93 $id_list{$id} = 1 if defined $id_list{$id} ||
94 ($insensitive && /$pattern/io) || /$pattern/o;
95 }
059ec3d9
PH
96
97 # See if this is a completion for some message. If it is interesting,
98 # print it, but in any event, throw away what was saved.
99
75b1493f 100 if (index($_, 'Completed') != -1 ||
3ce62588
PH
101 index($_, 'SMTP data timeout') != -1 ||
102 (index($_, 'rejected') != -1 &&
103 /^(\d{4}-\d\d-\d\d \d\d:\d\d:\d\d (?:[+-]\d{4} )?)(?:\[\d+\] )?\w{6}\-\w{6}\-\w{2} rejected/o))
059ec3d9 104 {
75b1493f
PH
105 if ($queue_time != -1 &&
106 $saved{$id} =~ /^(\d{4}-\d\d-\d\d \d\d:\d\d:\d\d ([+-]\d{4} )?)/o)
059ec3d9
PH
107 {
108 my $old_sec = &seconds($1);
109 my $sec = &seconds($date);
3ce62588 110 $id_list{$id} = 0 if $id_list{$id} && $sec - $old_sec <= $queue_time;
059ec3d9
PH
111 }
112
3ce62588 113 print "$saved{$id}\n" if ($id_list{$id});
b2d5182b 114 delete $id_list{$id};
059ec3d9
PH
115 delete $saved{$id};
116 }
117 }
118
119# Handle the case where the log line does not belong to a specific message.
120# Print it if it is interesting.
121
b2d5182b
PH
122elsif ( ($invert && (($insensitive && !/$pattern/io) || !/$pattern/o)) ||
123 (!$invert && (($insensitive && /$pattern/io) || /$pattern/o)) )
75b1493f 124 { print "$_\n"; }
059ec3d9
PH
125}
126
127
128# The main program. Extract the pattern and make sure any relevant characters
129# are quoted if the -l flag is given. The -t flag gives a time-on-queue value
130# which is an additional condition.
131
b2d5182b
PH
132getopts('Ilvt:',\my %args);
133$queue_time = $args{'t'}? $args{'t'} : -1;
75b1493f 134$insensitive = $args{'I'}? 0 : 1;
b2d5182b 135$invert = $args{'v'}? 1 : 0;
059ec3d9 136
b2d5182b 137die "usage: exigrep [-I] [-l] [-t <seconds>] [-v] <pattern> [<log file>]...\n"
059ec3d9
PH
138 if ($#ARGV < 0);
139
140$pattern = shift @ARGV;
141$pattern = quotemeta $pattern if $args{l};
142
143
144# If file arguments are given, open each one and process according as it is
145# is compressed or not.
146
147if (@ARGV)
148 {
149 foreach (@ARGV)
150 {
151 my $filename = $_;
75b1493f 152 if ($filename =~ /\.(?:COMPRESS_SUFFIX)$/o)
059ec3d9
PH
153 {
154 open(LOG, "ZCAT_COMMAND $filename |") ||
155 die "Unable to zcat $filename: $!\n";
156 }
157 else
158 {
159 open(LOG, "<$filename") || die "Unable to open $filename: $!\n";
160 }
161 do_line() while (<LOG>);
162 close(LOG);
163 }
164 }
165
166# If no files are named, process STDIN only
167
168else { do_line() while (<STDIN>); }
169
3ce62588 170# At the end of processing all the input, print any uncompleted messages.
059ec3d9 171
79749a79
PH
172for (keys %id_list)
173 {
3ce62588 174 print "+++ $_ has not completed +++\n$saved{$_}\n";
79749a79 175 }
059ec3d9
PH
176
177# End of exigrep