]> git.treefish.org Git - fex.git/blob - bin/logwatch
Original release 20150615
[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   From:.*(msnbot|yandex|googlebot|webcrawler)
48   Referer:.*sex.*stream
49   Referer:.*stream.*sex
50   X-.*prefetch
51   X-Purpose:.preview
52 ));
53
54 @weed = qw(
55   .*keep-alive
56   .*no-cache
57   Connection:
58   Cache-Control:
59   Content-Type:
60   Accept
61   TE:
62   UA-CPU:
63   Pragma:
64   DNT:
65   Via:
66   profile:
67   if-modified-since
68   Surrogate-Capability
69   Proxy-Authorization
70   http\.
71   NOKIA_
72   GPRS
73   X-Proxy-ID
74   X-Moz
75   X.Wap
76   X-FH
77   X-Nokia
78   X-UCBrowser
79   X-NSN
80   X-OperaMini
81   x-Device
82   x-source-id
83   x.up
84   X-Behavioral
85   X-Do-Not-Track
86   X-\S*Via
87   x-Mobile
88   X-Country
89   X-ClickOnceSupport
90   .*:\s*$
91 );
92
93 $/ = "\n\n"; 
94 $| = 1;
95
96 if (-t STDIN or $ENV{GATEWAY_INTERFACE}) {
97   open L,$log or die "$0: $log - $!\n";
98   seek L,0,2;
99 } else {
100   *L = *STDIN;
101 }
102 # binmode(L,":encoding(UTF-8)");
103
104 for (;;) {
105   while (<L>) {
106     next if /(^|\n)($ignore)/i;
107     s/[\x00-\x08\x0B-\x1F\x1F\x80-\x9F]/_/g;
108     s/^\n//;
109     foreach $weed (@weed) {
110       while (s/\n$weed.*\n/\n/i) {}
111     }
112     if (/^\n*(CONNECT|CONTINUE).*\s\[([\d_]+)\]/i) { $pid = $2 }
113     if (/\n(POST|GET)\s+\/(\w+)/i)                 { $cgi = $2 }
114     if (/Content-Length: (\d+)/i) {
115       $d = $1;
116       while ($d =~ s/(\d)(\d\d\d\b)/$1,$2/) {};
117       s/Content-Length: \d+/Content-Length: $d/i;
118     }
119     s/[\s\n]*$/\n\n/;
120     print or exit;
121     $from = '';
122     if (m:\nGET /fup/(\w{40,}):) {
123       $_ = decode_b64($1);
124       printf "  FROM=\"%s\"\n\n",$1 if /from=([\w\@.-]+)/;
125     } elsif (m:\nGET /fop/(\w+)/:) {
126       $dkey = $1;
127       my $ddir = "$spooldir/.dkeys/$dkey";
128       $_ = readlink $ddir or next;
129       (undef,$to,$from) = split('/');
130       printf "  FROM=\"%s\"\n",$from;
131       printf "  TO=\"%s\"\n",$to;
132       $cgi = '';
133       if ($comment = slurp("$ddir/comment")) {
134         printf "  COMMENT=\"%s\"\n",utf8decode($comment)||'';
135       }
136       if (not -f "$ddir/data" and $_ = slurp("$ddir/error")) {
137         s/\n.*//s;
138         print "  ERROR=\"$_\"\n";
139       }
140       elsif ($size = -s "$ddir/data") {
141         printf "  SIZE=%s MB\n",int($size/1024/1024);
142       }
143       print "\n";
144     } elsif (m:\nGET /fup.*skey=(\w+):) {
145       read_skey($1);
146       print "\n";
147     }
148     if ($debug and $pid and $cgi) {
149       &read_debug_log;
150     };
151     $pid = $cgi = '';
152   }
153   sleep 1;
154 }
155
156
157 sub read_debug_log {
158   my (@log,$log);
159   local $/ = "\n";
160   local $_;
161   local $^W;
162   # no warnings "all";
163
164   for (1..2) {
165     sleep 1;
166     @log = `ls -rt $logdir[0]/.debug/*_${pid}.$cgi 2>/dev/null`;
167     if ($log = $log[-1] and open $log,$log) {
168       # binmode($log,":encoding(UTF-8)");
169       while (<$log>) {
170         s/\r//;
171         if (/^Content-Disposition:.*name="FILE".*filename="(.+)"/i) {
172           print "  FILE=\"$1\"\n";
173         } elsif (/^Content-Disposition:.*name="(\w+)"/i) {
174           my $p = uc($1);
175           $_ = <$log>;
176           my $v = <$log>||'';
177           $v =~ s/[\r\n]+//;
178           printf "  %s=\"%s\"\n",$p,utf8decode($v)||$v if $v;
179           read_akey($v) if $p eq 'AKEY';
180           read_skey($v) if $p eq 'SKEY';
181         } elsif (/^(Param|Exp): (\w+=".+")/) {
182           print "  $2\n";
183         }
184       }
185       close $log;
186       print "\n";
187       return;
188     }
189   }
190 }
191
192 sub read_akey {
193   my $akey = "$spooldir/.akeys/" . shift;
194   if (my $user = readlink($akey)) {
195     $user =~ s:../::;
196     printf "  USER=\"%s\"\n",$user;
197   }
198 }
199
200
201 sub read_skey {
202   my $skey = "$spooldir/.skeys/" . shift;
203   if (open $skey,$skey) {
204     while (<$skey>) {
205       printf "  FROM=\"%s\"\n",$1 if /from=(.+)/;
206       printf "  TO=\"%s\"\n",$1   if /to=(.+)/;
207     }
208     close $skey;
209   }
210 }
211
212
213 sub utf8decode {
214   local $_ = shift;
215   s/([\xC0-\xDF])([\x80-\xBF])/chr(ord($1)<<6&0xC0|ord($2)&0x3F)/eg;
216   return $_;
217 }