]> git.treefish.org Git - fex.git/blob - bin/logwatch
Original release 20160104
[fex.git] / bin / logwatch
1 #!/usr/bin/perl -w
2
3 use File::Basename;
4 use Cwd 'abs_path';
5 use I18N::Langinfo qw'langinfo CODESET';
6
7 # add fex lib
8 unless ($FEXLIB = $ENV{FEXLIB}) {
9   if ($ENV{FEXHOME}) {
10     $FEXLIB = $ENV{FEXHOME}.'/lib';
11   } elsif (-f '/usr/share/fex/lib/fex.ph') {
12     $FEXLIB = '/usr/share/fex/lib';
13   } else {
14     $FEXLIB = dirname(dirname(abs_path($0))).'/lib';
15   }
16   $ENV{FEXLIB} = $FEXLIB;
17 }
18 die "$0: no $FEXLIB\n" unless -d $FEXLIB;
19
20 # import from fex.pp
21 our (@logdir,$spooldir,$debug);
22
23 # load common code, local config : $HOME/lib/fex.ph
24 require "$FEXLIB/fex.pp" or die "$0: cannot load $FEXLIB/fex.pp - $!\n";
25
26 $CTYPE = langinfo(CODESET());
27 binmode(STDOUT,":encoding($CTYPE)");
28
29 $log = shift || $logdir[0].'/fexsrv.log';
30
31 $ignore = join('|',qw(
32   (CONNECT|CONTINUE).*(crawl|msnbot|obertux)
33   DISCONNECT:.no.HTTP.request
34   GET.*(favicon|robots\.txt)
35   GET./organization\.gif
36   GET./small_logo\.jpg
37   GET./logo\.jpg
38   GET./action-fex-camel\.gif
39   GET./fup\?showstatus
40   GET./FAQ/faq\.css
41   GET./FAQ/jquery\.js
42   GET.*Arrow\.gif
43   GET./apple-touch
44   GET./browserconfig\.xml
45   User-Agent:.*(Webnote|FeedFetcher|\w+bot|bot/|Website.Watcher|crawler|spider|searchme|Yandex|Slurp|ScoutJet|findlinks|urlmon|nagios)
46   User-Agent:.fnb.*quak
47   User-Agent:.Google.favicon
48   From:.*(msnbot|yandex|googlebot|webcrawler)
49   Referer:.*sex.*stream
50   Referer:.*stream.*sex
51   X-.*prefetch
52   X-Purpose:.preview
53 ));
54
55 @weed = qw(
56   .*keep-alive
57   .*no-cache
58   Connection:
59   Cache-Control:
60   Content-Type:
61   Accept
62   TE:
63   UA-CPU:
64   Pragma:
65   DNT:
66   Via:
67   profile:
68   Upgrade-Insecure-Requests:
69   if-modified-since
70   Surrogate-Capability
71   Proxy-Authorization
72   http\.
73   Device-Stock
74   NOKIA_
75   GPRS
76   X-Proxy-ID
77   X-Moz
78   X.Wap
79   X-FH
80   X-FB
81   X-WS
82   X-Nokia
83   X-UCBrowser
84   X-NSN
85   X-OperaMini
86   x-Device
87   x-source-id
88   x.up
89   X-Behavioral
90   X-Do-Not-Track
91   X-\S*Via
92   x-Mobile
93   X-Country
94   X-ClickOnceSupport
95   X-Newrelic
96   X-IMForwards
97   X-Clearswift
98   X-MDS
99   .*:\s*$
100 );
101
102 $/ = "\n\n"; 
103 $| = 1;
104
105 if (-t STDIN or $ENV{GATEWAY_INTERFACE}) {
106   open L,$log or die "$0: $log - $!\n";
107   seek L,0,2;
108 } else {
109   *L = *STDIN;
110 }
111 # binmode(L,":encoding(UTF-8)");
112
113 for (;;) {
114   while (<L>) {
115     next if /(^|\n)($ignore)/i;
116     s/[\x00-\x08\x0B-\x1F\x1F\x80-\x9F]/_/g;
117     s/^\n//;
118     foreach $weed (@weed) {
119       while (s/\n$weed.*\n/\n/i) {}
120     }
121     if (/^\n*(CONNECT|CONTINUE).*\s\[([\d_]+)\]/i) { $pid = $2 }
122     if (/\n(POST|GET)\s+\/(\w+)/i)                 { $cgi = $2 }
123     if (/Content-Length: (\d+)/i) {
124       $d = $1;
125       while ($d =~ s/(\d)(\d\d\d\b)/$1,$2/) {};
126       s/Content-Length: \d+/Content-Length: $d/i;
127     }
128     s/[\s\n]*$/\n\n/;
129     print or exit;
130     $from = '';
131     if (m:\nGET /fup/(\w{40,}):) {
132       $_ = decode_b64($1);
133       printf "  FROM=\"%s\"\n\n",$1 if /from=([\w\@.-]+)/;
134     } elsif (m:\nGET /fop/(\w+)/:) {
135       $dkey = $1;
136       my $ddir = "$spooldir/.dkeys/$dkey";
137       $_ = readlink $ddir or next;
138       (undef,$to,$from) = split('/');
139       printf "  FROM=\"%s\"\n",$from;
140       printf "  TO=\"%s\"\n",$to;
141       $cgi = '';
142       if ($comment = slurp("$ddir/comment")) {
143         printf "  COMMENT=\"%s\"\n",utf8decode($comment)||'';
144       }
145       if (not -f "$ddir/data" and $_ = slurp("$ddir/error")) {
146         s/\n.*//s;
147         print "  ERROR=\"$_\"\n";
148       }
149       elsif ($size = -s "$ddir/data") {
150         printf "  SIZE=%s MB\n",int($size/1024/1024);
151       }
152       print "\n";
153     } elsif (m:\nGET /fup.*skey=(\w+):) {
154       read_skey($1);
155       print "\n";
156     }
157     if ($debug and $pid and $cgi) {
158       &read_debug_log;
159     };
160     $pid = $cgi = '';
161   }
162   sleep 1;
163 }
164
165
166 sub read_debug_log {
167   my (@log,$log);
168   local $/ = "\n";
169   local $_;
170   local $^W;
171   # no warnings "all";
172
173   for (1..2) {
174     sleep 1;
175     @log = `ls -rt $logdir[0]/.debug/*_${pid}.$cgi 2>/dev/null`;
176     if ($log = $log[-1] and open $log,$log) {
177       binmode($log,":encoding(UTF-8)");
178       while (<$log>) {
179         s/\r//;
180         if (/^Content-Disposition:.*name="FILE".*filename="(.+)"/i) {
181           print "  FILE=\"$1\"\n";
182         } elsif (/^Content-Disposition:.*name="(\w+)"/i) {
183           my $p = uc($1);
184           $_ = <$log>;
185           my $v = <$log>||'';
186           $v =~ s/[\r\n]+//;
187           printf "  %s=\"%s\"\n",$p,utf8decode($v)||$v if $v;
188           read_akey($v) if $p eq 'AKEY';
189           read_skey($v) if $p eq 'SKEY';
190         } elsif (/^(Param|Exp): (\w+=".+")/) {
191           print "  $2\n";
192         }
193       }
194       close $log;
195       print "\n";
196       return;
197     }
198   }
199 }
200
201 sub read_akey {
202   my $akey = "$spooldir/.akeys/" . shift;
203   if (my $user = readlink($akey)) {
204     $user =~ s:../::;
205     printf "  USER=\"%s\"\n",$user;
206   }
207 }
208
209
210 sub read_skey {
211   my $skey = "$spooldir/.skeys/" . shift;
212   if (open $skey,$skey) {
213     while (<$skey>) {
214       printf "  FROM=\"%s\"\n",$1 if /from=(.+)/;
215       printf "  TO=\"%s\"\n",$1   if /to=(.+)/;
216     }
217     close $skey;
218   }
219 }
220
221
222 sub utf8decode {
223   local $_ = shift;
224   s/([\xC0-\xDF])([\x80-\xBF])/chr(ord($1)<<6&0xC0|ord($2)&0x3F)/eg;
225   return $_;
226 }