]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - config/updxlrator/updxlrator
New source-url for McAfee Scanner support for updxlrator
[people/teissler/ipfire-2.x.git] / config / updxlrator / updxlrator
1 #!/usr/bin/perl
2 #
3 # This code is distributed under the terms of the GPL
4 #
5 # (c) 2006-2009 marco.s - http://update-accelerator.advproxy.net
6 #
7 # Portions (c) 2008 by dotzball - http://www.blockouttraffic.de
8 #
9 # $Id: updxlrator,v 2.1 2009/01/10 00:00:00 marco.s Exp $
10 #
11
12 use strict;
13 use HTTP::Date;
14
15 $|=1;
16
17 my $swroot="/var/ipfire";
18 my $updcachedir="/var/updatecache";
19 my $apphome="/var/ipfire/updatexlrator";
20 my $logfile="/var/log/updatexlrator/cache.log";
21 my $wget="/usr/bin/wget";
22 my $debug=(-e "$apphome/debug");
23 my $http_port='81';
24 my %netsettings=();
25 my %proxysettings=();
26 my %xlratorsettings=();
27 my $logging=0;
28 my $passive_mode=0;
29 my $maxusage=0;
30 my $nice='';
31 my @tmp=();
32 my $request='';
33 my $xlrator_url=0;
34 my $source_url='';
35 my $hostaddr='';
36 my $username='';
37 my $method='';
38 my $unique = 0;
39 my $mirror = 1;
40
41 readhash("${swroot}/ethernet/settings", \%netsettings);
42
43 if (-e "$swroot/updatexlrator/settings")
44 {
45 &readhash("$swroot/updatexlrator/settings", \%xlratorsettings);
46 if ($xlratorsettings{'ENABLE_LOG'} eq 'on') { $logging=1; };
47 if ($xlratorsettings{'PASSIVE_MODE'} eq 'on') { $passive_mode=1; };
48 $maxusage=$xlratorsettings{'MAX_DISK_USAGE'};
49 if ($xlratorsettings{'LOW_DOWNLOAD_PRIORITY'} eq 'on') { $nice='/bin/nice --adjustment=15 '; };
50 }
51 if (!$maxusage) { $maxusage=75; };
52
53 # dotzball: check for dead downloads
54 system("$apphome/bin/checkdeaddl &");
55
56 while (<>) {
57
58 $request=$_;
59
60 @tmp=split(/ /,$request);
61 chomp(@tmp);
62
63 $source_url = $tmp[0];
64 $hostaddr = $tmp[1]; while ($hostaddr =~ /.*\/$/) { chop $hostaddr; }
65 $username = $tmp[2]; if ($username eq '') { $username='-'; };
66 $method = $tmp[3];
67
68 $xlrator_url = $source_url;
69
70 if (($method eq 'GET') || ($method eq 'HEAD'))
71 {
72
73 # -----------------------------------------------------------
74 # Section: Windows Update / Windows Downloads
75 # -----------------------------------------------------------
76
77 if (
78 (($source_url =~ m@^http://[^/]*\.microsoft\.com/.*\.(exe|psf|msi|msp|cab)$@i) ||
79 ($source_url =~ m@^http://[^/]*\.windowsupdate\.com/.*\.(exe|psf|msi|msp|cab)$@i))
80 && ($source_url !~ m@^http://[^/]*\.microsoft\.com/.*(/autoupd|selfupdate/).*\.cab@i)
81 && ($source_url !~ m@\&@)
82 )
83 {
84 $xlrator_url = &check_cache($source_url,$hostaddr,$username,"Microsoft",$unique);
85 }
86
87 # -----------------------------------------------------------
88 # Section: Adobe Downloads
89 # -----------------------------------------------------------
90
91 if (
92 ($source_url =~ m@^http://(ar)?download\.adobe\.com/.*\.(exe|msi|bin|dmg|idx|gz)$@i) ||
93 ($source_url =~ m@^http://swupdl\.adobe\.com/updates/.*\.(exe|msi|bin|dmg|idx|gz|[a-z][a-z]_[A-Z][A-Z])$@i) ||
94 ($source_url =~ m@^http://swupmf\.adobe\.com/manifest/.*\.upd$@i)
95 )
96 {
97 $xlrator_url = &check_cache($source_url,$hostaddr,$username,"Adobe",$unique);
98 }
99
100 # -----------------------------------------------------------
101 # Section: Linux Downloads
102 # -----------------------------------------------------------
103
104 if (
105 ($source_url =~ m@^[h|f]t?tp://[^?]+\.(deb|rpm)$@i) ||
106 ($source_url =~ m@^[h|f]t?tp://[^?]+/distfiles/[^?]+\.(tar\.gz|tar\.bz2|tgz|zip|patch\.bz2|gz|docx|patch|pdf|exe)$@i)
107 )
108 {
109 $xlrator_url = &check_cache($source_url,$hostaddr,$username,"Linux",$mirror);
110 }
111
112 # -----------------------------------------------------------
113 # Section: Trend Micro Downloads
114 # -----------------------------------------------------------
115
116 if (
117 ($source_url =~ m@^http://[^/]*\.trendmicro\.com/activeupdate/.*@i) &&
118 ($source_url !~ m@.*/tmnotify\.dat$@i) &&
119 ($source_url !~ m@.*/ini_xml\.zip$@i) &&
120 ($source_url !~ m@.*/server\.ini$@i)
121 )
122 {
123 $xlrator_url = &check_cache($source_url,$hostaddr,$username,"TrendMicro",$mirror);
124 }
125
126 # -----------------------------------------------------------
127 # Section: Symantec Downloads
128 # -----------------------------------------------------------
129
130 if ($source_url =~ m@^[h|f]tt?p://[^/]*\.symantec(liveupdate)?\.com/.*\.(exe|zip|vdb|xdb)$@i)
131 {
132 $xlrator_url = &check_cache($source_url,$hostaddr,$username,"Symantec",$unique);
133 }
134
135 # -----------------------------------------------------------
136 # Section: Apple Downloads
137 # -----------------------------------------------------------
138
139 if (
140 (($source_url =~ m@^http://swcdn\.apple\.com/content/downloads/.*\.(tar|pkg)$@i) ||
141 ($source_url =~ m@^http://appldnld\.apple\.com\.edgesuite\.net/.*\.(exe|dmg)$@i) ||
142 ($source_url =~ m@^http://.*\.g.akamai.net/.*/3093/1/.*\.(tar|pkg|dmg|exe)$@i))
143 )
144 {
145 $xlrator_url = &check_cache($source_url,$hostaddr,$username,"Apple",$unique);
146 }
147
148 # -----------------------------------------------------------
149 # Section: Avast Downloads
150 # -----------------------------------------------------------
151
152 if ($source_url =~ m@^http://(ion|download)[\d]+\.avast\.com/.*\.(exe|vpu|vpx)$@i)
153 {
154 $xlrator_url = &check_cache($source_url,$hostaddr,$username,"Avast",$mirror);
155 }
156
157 # -----------------------------------------------------------
158 # Section: Mcafee
159 # -----------------------------------------------------------
160
161 if ($source_url =~ m@^http://update\.nai\.com/.*\.(mcs|z|gem|dat|zip)$@i)
162 {
163 $xlrator_url = &check_cache($source_url,$hostaddr,$username,"mcafee",$mirror);
164 }
165
166 # -----------------------------------------------------------
167 # Section: Avira Downloads
168 # -----------------------------------------------------------
169
170 if (
171 ($source_url =~ m@^http://dl[0-9]\.avgate\.net/.*\.(htm|html|gz)$@i) ||
172 ($source_url =~ m@^http://80.190.130.19[4-5]/update/.*\.(htm|html|gz)$@i) ||
173 ($source_url =~ m@^http://62.146.64.14[6-7]/update/.*\.(htm|html|gz)$@i)
174 )
175 {
176 $xlrator_url = &check_cache($source_url,$hostaddr,$username,"Avira",$mirror);
177 }
178
179 # -----------------------------------------------------------
180 # Section: IPFire Downloads
181 # -----------------------------------------------------------
182
183 if ($source_url =~ m@^[f|h]t?tp://.*\.(ipfire)$@i)
184 {
185 $xlrator_url = &check_cache($source_url,$hostaddr,$username,"IPFire",$mirror);
186 }
187
188 }
189
190 # -----------------------------------------------------------
191 # Section: AVG Downloads
192 # -----------------------------------------------------------
193
194 # if ($source_url =~ m@^http://[^/]*\.(grisoft|avg)\.com/.*\.(bin)$@i)
195 # {
196 # $xlrator_url = &check_cache($source_url,$hostaddr,$username,"AVG",$mirror);
197 # }
198
199 $request="$xlrator_url $hostaddr $username $method\n";
200
201 print $request;
202 }
203
204 # -------------------------------------------------------------------
205
206 sub readhash
207 {
208 my $filename = $_[0];
209 my $hash = $_[1];
210 my ($var, $val);
211
212 if (-e $filename)
213 {
214 open(FILE, $filename) or die "Unable to read file $filename";
215 while (<FILE>)
216 {
217 chop;
218 ($var, $val) = split /=/, $_, 2;
219 if ($var)
220 {
221 $val =~ s/^\'//g;
222 $val =~ s/\'$//g;
223
224 # Untaint variables read from hash
225 $var =~ /([A-Za-z0-9_-]*)/; $var = $1;
226 $val =~ /([\w\W]*)/; $val = $1;
227 $hash->{$var} = $val;
228 }
229 }
230 close FILE;
231 }
232 }
233
234 # -------------------------------------------------------------------
235
236 sub writelog
237 {
238 if ($logging)
239 {
240 open(LOGFILE,">>$logfile");
241 print LOGFILE time." $_[0] $_[1] $_[2] $_[3] $_[4]\n";
242 close(LOGFILE);
243 }
244 }
245
246 # -------------------------------------------------------------------
247
248 sub debuglog
249 {
250 if ($debug)
251 {
252 open(LOGFILE,">>/var/log/updatexlrator/debug.log");
253 my @now = localtime(time);
254 printf LOGFILE "%04d-%02d-%02d %02d:%02d:%02d [%d] [%s] %s\n",$now[5]+1900,$now[4]+1,$now[3],$now[2],$now[1],$now[0],$$,"updxlrator",$_[0];
255 close(LOGFILE);
256 }
257 }
258
259 # -------------------------------------------------------------------
260
261 sub setcachestatus
262 {
263 open (FILE,">>$_[0]");
264 print FILE "$_[1]\n";
265 close FILE;
266 }
267
268 # -------------------------------------------------------------------
269
270 sub diskfree
271 {
272 open(DF,"/bin/df --block-size=1 $_[0]|");
273 my @dfdata = <DF>;
274 close DF;
275 shift(@dfdata);
276 chomp(@dfdata);
277 my $dfstr = join(' ',@dfdata);
278 my ($device,$size,$used,$free,$percent,$mount) = split(' ',$dfstr);
279 if ($free =~ m/^(\d+)$/)
280 {
281 return $free;
282 }
283 }
284
285 # -------------------------------------------------------------------
286
287 sub diskusage
288 {
289 open(DF,"/bin/df $_[0]|");
290 my @dfdata = <DF>;
291 close DF;
292 shift(@dfdata);
293 chomp(@dfdata);
294 my $dfstr = join(' ',@dfdata);
295 my ($device,$size,$used,$free,$percent,$mount) = split(' ',$dfstr);
296 if ($percent =~ m/^(\d+)%$/)
297 {
298 $percent =~ s/%$//;
299 return $percent;
300 }
301 }
302
303 # -------------------------------------------------------------------
304
305 sub getmtime
306 {
307 my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$blksize,$blocks) = stat($_[0]);
308
309 return $mtime;
310 }
311
312 # -------------------------------------------------------------------
313
314 sub check_cache
315 {
316 my $updsource="UPDCACHE";
317 my $updfile='';
318 my $cacheurl='';
319 my $vendorid='';
320 my $uuid='';
321 my @http_header=();
322 my $remote_size=0;
323 my $remote_mtime=0;
324 my $login='';
325 my $useragent="Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)";
326
327 my $sourceurl=$_[0];
328 my $cfmirror=$_[4];
329
330 $sourceurl =~ s@\%2f@/@ig;
331 $updfile = substr($sourceurl,rindex($sourceurl,"/")+1);
332 $updfile =~ s@\%20@ @ig;
333
334 if ($cfmirror)
335 {
336 $uuid = `echo $updfile | md5sum`;
337 } else {
338 $uuid = `echo $sourceurl | md5sum`;
339 }
340
341 $uuid =~ s/[^0-9a-f]//g;
342 $uuid =~ s/([a-f\d]{8})([a-f\d]{4})([a-f\d]{4})([a-f\d]{4})([a-f\d]{12})/$1-$2-$3-$4-$5/;
343
344 $vendorid = $_[3];
345 $vendorid =~ tr/A-Z/a-z/;
346
347 &debuglog("Processing URL $sourceurl");
348 &debuglog("Vendor ID is $vendorid");
349 &debuglog("UUID is $uuid");
350
351 if (($proxysettings{'UPSTREAM_PROXY'}) && ($proxysettings{'UPSTREAM_USER'}))
352 {
353 $login = "--proxy-user=\"$proxysettings{'UPSTREAM_USER'}\"";
354 if ($proxysettings{'UPSTREAM_PASSWORD'})
355 {
356 $login .= " --proxy-password=\"$proxysettings{'UPSTREAM_PASSWORD'}\"";
357 }
358 }
359
360 if ($proxysettings{'UPSTREAM_PROXY'}) { &debuglog("Using upstream proxy $proxysettings{'UPSTREAM_PROXY'}"); }
361
362 $ENV{'http_proxy'} = $proxysettings{'UPSTREAM_PROXY'};
363 @http_header = `$wget $login --user-agent="$useragent" --spider -S $sourceurl 2>&1`;
364 $ENV{'http_proxy'} = '';
365
366 foreach (@http_header)
367 {
368 chomp;
369 if (/^\s*Content-Length:\s/) { $remote_size = $_; $remote_size =~ s/[^0-9]//g; }
370 if (/^\s*Last-Modified:\s/) { $remote_mtime = $_; $remote_mtime =~ s/^\s*Last-Modified:\s//; $remote_mtime = HTTP::Date::str2time($remote_mtime) }
371 }
372
373 if (
374 (-e "$updcachedir/$vendorid/$uuid/$updfile") &&
375 ($remote_size == (-s "$updcachedir/$vendorid/$uuid/$updfile")) &&
376 ($remote_mtime == &getmtime("$updcachedir/$vendorid/$uuid/$updfile"))
377 )
378 {
379 &debuglog("File exists in cache and is up to date");
380 &debuglog("Retrieving file from cache ($updsource)");
381 &setcachestatus("$updcachedir/$vendorid/$uuid/access.log",time);
382 $cacheurl="http://$netsettings{'GREEN_ADDRESS'}:$http_port/updatecache/$vendorid/$uuid/$updfile";
383 }
384 else
385 {
386 if (-e "$updcachedir/$vendorid/$uuid/$updfile")
387 {
388 &debuglog("Local filesize: " . (-s "$updcachedir/$vendorid/$uuid/$updfile"));
389 &debuglog("Local timestamp: " . &getmtime("$updcachedir/$vendorid/$uuid/$updfile"));
390 } else { &debuglog("File not found in cache"); }
391 $updsource="DLSOURCE";
392 &debuglog("Remote filesize: $remote_size");
393 &debuglog("Remote timestamp: $remote_mtime");
394 &debuglog("Free disk space: " . &diskfree($updcachedir));
395 &debuglog("Disk usage: " . &diskusage($updcachedir) . "% (max. $maxusage%)");
396 if (-e "$updcachedir/download/$vendorid/$updfile") { &debuglog("File download/$vendorid/$updfile exists"); }
397 &debuglog("Retrieving file from source ($updsource)");
398 if ((!$passive_mode) && (&diskusage($updcachedir) <= $maxusage) && ($remote_size <= &diskfree($updcachedir)) && (!-e "$updcachedir/download/$vendorid/$updfile"))
399 {
400 &debuglog("Running command $nice$apphome/bin/download $vendorid $sourceurl $cfmirror &");
401 system("$nice$apphome/bin/download $vendorid $sourceurl $cfmirror &");
402 }
403 $cacheurl=$sourceurl;
404 }
405
406 &writelog($_[1],$_[2],$_[3],$updsource,$sourceurl);
407
408 return $cacheurl;
409 }
410
411 # -------------------------------------------------------------------