1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
|
#
# MailScanner - SMTP E-Mail Virus Scanner
# Copyright (C) 2002 Julian Field
#
# $Id: SA.pm 4876 2009-07-31 11:21:33Z sysjkf $
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# The author, Julian Field, can be contacted by email at
# Jules@JulianField.net
# or by paper mail at
# Julian Field
# Dept of Electronics & Computer Science
# University of Southampton
# Southampton
# SO17 1BJ
# United Kingdom
#
package MailScanner::SA;
use strict 'vars';
use strict 'refs';
no strict 'subs'; # Allow bare words for parameter %'s
#use English; # Needed for $PERL_VERSION to work in all versions of Perl
use IO;
use POSIX qw(:signal_h); # For Solaris 9 SIG bug workaround
use DBI;
use Compress::Zlib;
use vars qw($VERSION);
### The package version, both in 1.23 style *and* usable by MakeMaker:
$VERSION = substr q$Revision: 4876 $, 10;
# Attributes are
#
#
my($LOCK_SH) = 1;
my($LOCK_EX) = 2;
my($LOCK_NB) = 4;
my($LOCK_UN) = 8;
my $SAversion; # SpamAssassin version number
my @SAsuccessqueue; # queue of failure history
my $SAsuccessqsum; # current sum of history queue
my($SAspamtest, $SABayesLock, $SABayesRebuildLock, $SpamAssassinInstalled);
my($SQLiteInstalled, $cachedbh, $cachefilename, $NextCacheExpire);
my $HamCacheLife = 30*60; # Lifetime of non-spam from first seen
my $SpamCacheLife = 5*60; # Lifetime of low-scoring spam from first seen
my $HighSpamCacheLife = 3*60*60; # Lifetime of high spam from last seen
my $VirusesCacheLife = 48*60*60; # Lifetime of viruses from last seen
my $ExpireFrequency = 10*60; # How often to run the expiry of the cache
sub CreateTempDir {
my($runasuser,$satmpdir) = @_;
# Create the $TMPDIR for SpamAssassin if necessary, then check we can
# write to it. If not, change to /tmp.
lstat $satmpdir;
unless (-d _) {
unlink $satmpdir;
mkdir $satmpdir or warn "Could not create SpamAssassin temporary directory $satmpdir, $!";
}
chmod 0700, $satmpdir unless $satmpdir =~ /^\/tmp/;
chown $runasuser, -1, $satmpdir;
$ENV{'TMPDIR'} = $satmpdir;
}
sub initialise {
my($RebuildBayes, $WantLintOnly) = @_; # Start by rebuilding the Bayes database?
my(%settings, $val, $val2, $prefs);
# Initialise the class variables
@SAsuccessqueue = ();
$SAsuccessqsum = 0;
# If the "debug-sa" command-line flag was given, then we want to print out
# the current time at the start of each line that is sent to STDERR,
# in particular the stuff from SpamAssassin.
if ($MailScanner::SA::Debug) {
my $result;
# Do a trial run of awk to see if it is going to work on this system.
eval {
$result = `echo 'Hello,World' | awk '{printf \"%s %s\\n\", strftime(\"%T\"), \$0}' 2>&1`;
#print "Result is \"$result\"\n";
};
#print "Eval result = \"$@\"\n";
# If the trial worked...
if ($result =~ /\d+:\d.*Hello,World/) {
#print STDERR "It Succeeded!\n";
#select STDERR; $| = 1;
# Re-open STDERR with the current time stuck on the front of each line.
# It should work okay as we have just tried it out.
open STDERR, "| awk '{printf \"%s %s\\n\", strftime(\"%T\"), \$0}'";
select STDOUT;
} else {
print STDERR "\n\n*****\n";
print STDERR "If 'awk' (with support for the function strftime) was\n";
print STDERR "available on your \$PATH then all the SpamAssassin debug\n";
print STDERR "output would have the current time added to the start of\n";
print STDERR "every line, making debugging far easier.\n*****\n\n";
}
}
# Can't just do this when sendmail.pl loads, as we are still running as
# root then & spamassassin will get confused when we are later running
# as something else.
# Only do this if we want to use SpamAssassin and therefore have it installed.
# Justin Mason advises only creating 1 Mail::SpamAssassin object, so I do it
# here while we are starting up.
# N.B. SpamAssassin will use home dir defined in ENV{HOME}
# 'if $ENV{HOME} =~ /\//'
# So, set ENV{HOME} to desired directory, or undef it to force it to get home
# using getpwnam of $> (EUID)
unless (MailScanner::Config::IsSimpleValue('usespamassassin') &&
!MailScanner::Config::Value('usespamassassin')) {
$settings{dont_copy_prefs} = 1; # Removes need for home directory
# #399424 use /etc/MailScanner/spam.assassin.prefs.conf
$prefs = MailScanner::Config::Value('spamassassinprefsfile');
$settings{userprefs_filename} = $prefs if defined $prefs;
$val = $MailScanner::SA::Debug;
$settings{debug} = $val;
# for unusual bayes and auto whitelist database locations
$val = MailScanner::Config::Value('spamassassinuserstatedir');
$settings{userstate_dir} = $val if $val ne "";
$val = MailScanner::Config::Value('spamassassinlocalrulesdir');
$settings{LOCAL_RULES_DIR} = $val if $val ne "";
$val = MailScanner::Config::Value('spamassassinlocalstatedir');
$settings{LOCAL_STATE_DIR} = $val if $val ne "";
$val = MailScanner::Config::Value('spamassassindefaultrulesdir');
$settings{DEF_RULES_DIR} = $val if $val ne "";
$val = MailScanner::Config::Value('spamassassininstallprefix');
# For version 3 onwards, shouldn't cause problems with earlier code
$val2 = MailScanner::Config::Value('spamassassinautowhitelist');
$settings{use_auto_whitelist} = $val2?1:0;
$settings{save_pattern_hits} = 1;
if ($val ne "") { # ie. if SAinstallprefix is set
# for finding rules in the absence of the above settings
$settings{PREFIX} = $val;
# for finding the SpamAssassin libraries
# Use unshift rather than push so that their given location is
# always searched *first* and not last in the include path.
#my $perl_vers = $PERL_VERSION < 5.006 ? $PERL_VERSION
# : sprintf("%vd",$PERL_VERSION);
my $perl_vers = $] < 5.006 ? $] : sprintf("%vd",$^V);
unshift @INC, "$val/lib/perl5/site_perl/$perl_vers";
}
# Now we have the path built, try to find the SpamAssassin modules
unless (eval "require Mail::SpamAssassin") {
MailScanner::Log::WarnLog("You want to use SpamAssassin but have not installed it.");
MailScanner::Log::WarnLog("Please download http://www.sng.ecs.soton.ac.uk/mailscanner/files/4/install-Clam-SA.tar.gz and unpack it and run ./install.sh to install it, then restart MailScanner.");
MailScanner::Log::WarnLog("I will run without SpamAssassin for now, you will not detect much spam until you install SpamAssassin.");
$SpamAssassinInstalled = 0;
return;
}
# SpamAssassin "require"d okay.
$SpamAssassinInstalled = 1;
# Find the version number
$SAversion = $Mail::SpamAssassin::VERSION + 0.0;
#
# Load the SQLite support for the SA data cache
#
$SQLiteInstalled = 0;
unless (MailScanner::Config::IsSimpleValue('usesacache') &&
!MailScanner::Config::Value('usesacache')) {
unless (eval "require DBD::SQLite") {
MailScanner::Log::WarnLog("WARNING: You are trying to use the SpamAssassin cache but your DBI and/or DBD::SQLite Perl modules are not properly installed!");
$SQLiteInstalled = 0;
} else {
$SQLiteInstalled = 1;
unless (eval "require Digest::MD5") {
MailScanner::Log::WarnLog("WARNING: You are trying to use the SpamAssassin cache but your Digest::MD5 Perl module is not properly installed!");
$SQLiteInstalled = 0;
} else {
MailScanner::Log::InfoLog("Using SpamAssassin results cache");
$SQLiteInstalled = 1;
#
#
# Put the SA cache database initialisation code here!
#
#
$MailScanner::SA::cachefilename = MailScanner::Config::Value("sacache");
$MailScanner::SA::cachedbh = DBI->connect(
"dbi:SQLite:$MailScanner::SA::cachefilename",
"","",{PrintError=>0,InactiveDestroy=>1});
$NextCacheExpire = $ExpireFrequency+time;
if ($MailScanner::SA::cachedbh) {
MailScanner::Log::InfoLog("Connected to SpamAssassin cache database");
# Rebuild all the tables and indexes. The PrintError=>0 will make it
# fail quietly if they already exist.
# Speed up writes at the cost of database integrity. Only tmp data!
$MailScanner::SA::cachedbh->do("PRAGMA default_synchronous = OFF");
$MailScanner::SA::cachedbh->do("CREATE TABLE cache (md5 TEXT, count INTEGER, last TIMESTAMP, first TIMESTAMP, sasaysspam INT, sahighscoring INT, sascore FLOAT, saheader BLOB, salongreport BLOB, virusinfected INT)");
$MailScanner::SA::cachedbh->do("CREATE UNIQUE INDEX md5_uniq ON cache(md5)");
$MailScanner::SA::cachedbh->do("CREATE INDEX last_seen_idx ON cache(last)");
$MailScanner::SA::cachedbh->do("CREATE INDEX first_seen_idx ON cache(first)");
$SQLiteInstalled = 1;
SetCacheTimes();
# Now expire all the old tokens
CacheExpire() unless $WantLintOnly;
} else {
MailScanner::Log::WarnLog("Could not create SpamAssassin cache database %s", $MailScanner::SA::cachefilename);
$SQLiteInstalled = 0;
print STDERR "Could not create SpamAssassin cache database $MailScanner::SA::cachefilename\n" if $WantLintOnly;
}
}
}
}
$MailScanner::SA::SAspamtest = new Mail::SpamAssassin(\%settings);
if ($WantLintOnly) {
my $errors = $MailScanner::SA::SAspamtest->lint_rules();
if ($errors) {
print STDERR "SpamAssassin reported an error.\n";
$MailScanner::SA::SAspamtest->debug_diagnostics();
} else {
print STDERR "SpamAssassin reported no errors.\n";
}
return;
}
# Rebuild the Bayes database if it is due
$MailScanner::SA::BayesRebuildLock = MailScanner::Config::Value(
'lockfiledir') . '/MS.bayes.rebuild.lock';
$MailScanner::SA::BayesRebuildStartLock =
MailScanner::Config::Value('lockfiledir') . '/MS.bayes.starting.lock';
$MailScanner::SA::WaitForRebuild = MailScanner::Config::Value('bayeswait');
$MailScanner::SA::DoingBayesRebuilds = MailScanner::Config::Value('bayesrebuild');
if ($RebuildBayes) {
#MailScanner::Log::InfoLog('SpamAssassin Bayes database rebuild preparing');
# Tell the other children that we are trying to start a rebuild
my $RebuildStartH = new FileHandle;
unless ($RebuildStartH->open("+>$MailScanner::SA::BayesRebuildStartLock")) {
MailScanner::Log::WarnLog("Bayes rebuild process could not write to " .
"%s to signal starting",
$MailScanner::SA::BayesRebuildStartLock);
}
# 20090107 Get exclusive lock on the startlock
#flock($RebuildStartH, $LOCK_EX);
flock($RebuildStartH, $LOCK_EX);
$RebuildStartH->seek(0,0);
$RebuildStartH->autoflush();
print $RebuildStartH "1\n";
flock($RebuildStartH, $LOCK_UN);
$RebuildStartH->close();
# Get an exclusive lock on the bayes rebuild lock file
my $RebuildLockH = new FileHandle;
if ($RebuildLockH->open("+>$MailScanner::SA::BayesRebuildLock")) {
flock($RebuildLockH, $LOCK_EX)
or MailScanner::Log::WarnLog("Failed to get exclusive lock on %s, %s",
$MailScanner::SA::BayesRebuildLock, $!);
# Do the actual expiry run
$0 = 'MailScanner: rebuilding Bayes database';
MailScanner::Log::InfoLog('SpamAssassin Bayes database rebuild starting');
eval {
$MailScanner::SA::SAspamtest->init(1) if $SAversion<3;
$MailScanner::SA::SAspamtest->init_learner({
force_expire => 1,
learn_to_journal => 0,
wait_for_lock => 1,
caller_will_untie => 1});
$MailScanner::SA::SAspamtest->rebuild_learner_caches({
verbose => 0,
showdots => 0});
$MailScanner::SA::SAspamtest->finish_learner();
};
MailScanner::Log::WarnLog("SpamAssassin Bayes database rebuild " .
"failed with error: %s", $@)
if $@;
# Unlock the "starting" lock
$RebuildStartH = new FileHandle;
$RebuildStartH->open("+>$MailScanner::SA::BayesRebuildStartLock");
flock($RebuildStartH, $LOCK_EX);
$RebuildStartH->seek(0,0);
$RebuildStartH->autoflush();
print $RebuildStartH "0\n";
flock($RebuildStartH, $LOCK_UN);
$RebuildStartH->close();
# Unlock the bayes rebuild lock file
#20090107 unlink($MailScanner::SA::BayesRebuildLock);
flock($RebuildLockH, $LOCK_UN);
$RebuildLockH->close();
MailScanner::Log::InfoLog('SpamAssassin Bayes database rebuild completed');
}
# Now the rebuild has properly finished, we let the other children back
#20090107 unlink $MailScanner::SA::BayesRebuildStartLock;
$RebuildStartH->close();
}
if (MailScanner::Config::Value('spamassassinautowhitelist')) {
# JKF 14/6/2002 Enable the auto-whitelisting functionality
MailScanner::Log::InfoLog("Enabling SpamAssassin auto-whitelist functionality...");
if ($SAversion<3) {
require Mail::SpamAssassin::DBBasedAddrList;
# create a factory for the persistent address list
my $addrlistfactory = Mail::SpamAssassin::DBBasedAddrList->new();
$MailScanner::SA::SAspamtest->set_persistent_address_list_factory
($addrlistfactory);
}
}
# If the Bayes database lock file is still present due to the process
# being killed, we must delete it. The difficult bit is finding it.
# Wrap this in an eval for those using old versions of SA which don't
# have the Bayes engine at all.
eval {
my $t = $MailScanner::SA::SAspamtest;
$MailScanner::SA::SABayesLock = $t->sed_path($t->{conf}->{bayes_path}) .
'.lock';
#print STDERR "SA bayes lock is $MailScanner::SA::SABayesLock\n";
};
#print STDERR "Bayes lock is at $MailScanner::SA::SABayesLock\n";
# JKF 7/1/2002 Commented out due to it causing false positives
# JKF 7/6/2002 Now has a config switch
# JKF 12/6/2002 Remember to read the prefs file
#if (MailScanner::Config::Value('compilespamassassinonce')) {
# Saves me recompiling all the modules every time
# Need to delete lock file now or compile_now may never return
unlink $MailScanner::SA::SABayesLock;
# If they are using MCP at all, then we need to compile SA differently
# here due to object clashes within SA.
if (MailScanner::Config::IsSimpleValue('mcpchecks') &&
!MailScanner::Config::Value('mcpchecks')) {
# They are definitely not using MCP
$MailScanner::SA::SAspamtest->compile_now();
} else {
# They are possibly using MCP somewhere
# Next line should have a 0 parameter in it
#$MailScanner::SA::SAspamtest->compile_now(0);
$MailScanner::SA::SAspamtest->read_scoreonly_config($prefs);
}
#print STDERR "In initialise, spam report is \"" .
# $MailScanner::SA::SAspamtest->{conf}->{report_template} . "\"\n";
#JKF$MailScanner::SA::SAspamtest->compile_now();
# Apparently this doesn't do anything after compile_now()
#$MailScanner::SA::SAspamtest->read_scoreonly_config($prefs);
}
# Turn off warnings again, as SpamAssassin switches them on
$^W = 0;
}
# Set all the cache expiry timings from the cachetiming conf option
sub SetCacheTimes {
my $line = MailScanner::Config::Value('cachetiming');
$line =~ s/^\D+//;
return unless $line;
my @numbers = split /\D+/, $line;
return unless @numbers;
$HamCacheLife = $numbers[0] if $numbers[0];
$SpamCacheLife = $numbers[1] if $numbers[1];
$HighSpamCacheLife = $numbers[2] if $numbers[2];
$VirusesCacheLife = $numbers[3] if $numbers[3];
$ExpireFrequency = $numbers[4] if $numbers[4];
#print STDERR "Timings are \"" . join(' ',@numbers) . "\"\n";
}
# Constructor.
sub new {
my $type = shift;
my $this = {};
bless $this, $type;
return $this;
}
# Do the SpamAssassin checks on the passed in message
sub Checks {
my $message = shift;
# If they never actually installed SpamAssassin, then just bail out quietly.
return (0,0,"",0,"") unless $SpamAssassinInstalled;
my($dfhandle, $SAReqHits, $HighScoreVal);
my($dfilename, $dfile, @WholeMessage, $SAResult, $SAHitList);
my($HighScoring, $SAScore, $maxsize, $SAReport, $GSHits);
my $GotFromCache = undef; # Did the result come from the cache?
$SAReqHits = MailScanner::Config::Value('reqspamassassinscore',$message)+0.0;
$HighScoreVal = MailScanner::Config::Value('highspamassassinscore',$message);
$GSHits = $message->{gshits} || 0.0;
# Bail out and fake a miss if too many consecutive SA checks failed
my $maxfailures = MailScanner::Config::Value('maxspamassassintimeouts');
# If we get maxfailures consecutive timeouts, then disable the
# SpamAssassin RBL checks in an attempt to get it working again.
# If it continues to time out for another maxfailures consecutive
# attempts, then disable it completely.
if ($maxfailures>0) {
if ($SAsuccessqsum>=2*$maxfailures) {
return (0,0,
sprintf(MailScanner::Config::LanguageValue($message,'sadisabled'),
2*$maxfailures), 0);
} elsif ($SAsuccessqsum>$maxfailures) {
$MailScanner::SA::SAspamtest->{conf}->{local_tests_only} = 1;
} elsif ($SAsuccessqsum==$maxfailures) {
$MailScanner::SA::SAspamtest->{conf}->{local_tests_only} = 1;
MailScanner::Log::WarnLog("Disabling SpamAssassin network checks");
}
}
# If the Bayes rebuild is in progress, then either wait for it to
# complete, or just bail out as we are busy.
# Get a shared lock on the bayes rebuild lock file.
# If we don't want to wait for it, then do a non-blocking call and
# just return if it couldn't be locked.
my $BayesIsLocked = 0;
my($RebuildLockH, $Lockopen);
if ($MailScanner::SA::DoingBayesRebuilds) {
# If the lock file exists at all, do not try to get a lock on it.
# Shared locks are handed out even when someone else is trying to
# get an exclusive lock, so long as at least 1 other shared lock
# already exists.
#20090107 if (-e $MailScanner::SA::BayesRebuildStartLock) {
my $fh = new FileHandle;
$fh->open("+<" . $MailScanner::SA::BayesRebuildStartLock);
flock($fh, $LOCK_EX);
$fh->seek(0,0);
my $line = <$fh>;
flock($fh, $LOCK_UN);
$fh->close();
if ($line =~ /1/) {
# Do we wait for Bayes rebuild to occur?
if ($MailScanner::SA::WaitForRebuild) {
$0 = 'MailScanner: waiting for Bayes rebuild';
# Wait quietly for the file to disappear
# This must not take more than 1 hour or we are in trouble!
#MailScanner::Log::WarnLog("Waiting for rebuild start request to disappear");
my $waiter = 0;
for ($waiter = 0; $waiter<3600 && $line =~ /1/; $waiter+=30) {
#-e $MailScanner::SA::BayesRebuildStartLock; $waiter+=10) {
sleep 30;
$fh = new FileHandle;
$fh->open("+<" . $MailScanner::SA::BayesRebuildStartLock);
flock($fh, $LOCK_EX);
$fh->seek(0,0);
$line = <$fh>;
flock($fh, $LOCK_UN);
$fh->close();
#MailScanner::Log::WarnLog("Waiting for start request to disappear");
}
# Did it take too long?
#unlink $MailScanner::SA::BayesRebuildStartLock if $waiter>=3590;
if ($waiter>=4000) {
$fh = new FileHandle;
$fh->open("+>" . $MailScanner::SA::BayesRebuildStartLock);
flock($fh, $LOCK_EX);
$fh->seek(0,0);
$fh->autoflush();
print $fh "0\n";
flock($fh, $LOCK_UN);
$fh->close();
}
#MailScanner::Log::WarnLog("Start request has disappeared");
$0 = 'MailScanner: checking with SpamAssassin';
} else {
# Return saying we are skipping SpamAssassin this time
return (0,0, 'SpamAssassin rebuilding', 0);
}
}
$Lockopen = 0;
$RebuildLockH = new FileHandle;
if (open($RebuildLockH, "+>" . $MailScanner::SA::BayesRebuildLock)) {
print $RebuildLockH "SpamAssassin Bayes database locked for use by " .
"MailScanner $$\n";
#MailScanner::Log::InfoLog("Bayes lock is $RebuildLockH");
#MailScanner::Log::InfoLog("Bayes lock is read-write");
$Lockopen = 1;
#The lock file already exists, so just open for reading
} elsif (open($RebuildLockH, $MailScanner::SA::BayesRebuildLock)) {
#MailScanner::Log::InfoLog("Bayes lock is $RebuildLockH");
#MailScanner::Log::InfoLog("Bayes lock is read-only");
$Lockopen = 1;
} else {
# Could not open the file at all
$Lockopen = 0;
MailScanner::Log::WarnLog("Could not open Bayes rebuild lock file %s, %s",
$MailScanner::SA::BayesRebuildLock, $!);
}
if ($Lockopen) {
#MailScanner::Log::InfoLog("Bayes lock is open");
if ($MailScanner::SA::WaitForRebuild) {
# Do a normal lock and wait for it
flock($RebuildLockH, $LOCK_SH) or
MailScanner::Log::WarnLog("At start of SA checks could not get " .
"shared lock on %s, %s", $MailScanner::SA::BayesRebuildLock, $!);
$BayesIsLocked = 1;
} else {
#MailScanner::Log::InfoLog("Bayes lock2 is %s", $RebuildLockH);
if (flock($RebuildLockH, ($LOCK_SH | $LOCK_NB))) {
#MailScanner::Log::InfoLog("Got non-blocking shared lock on Bayes lock");
$BayesIsLocked = 1;
} else {
#MailScanner::Log::InfoLog("Skipping Bayes due to %s", $!);
$RebuildLockH->close();
#MailScanner::Log::InfoLog("Skipping SpamAssassin while waiting for Bayes database to rebuild");
return (0,0, 'SpamAssassin rebuilding', 0);
}
}
} else {
MailScanner::Log::WarnLog("At start of SA checks could not open %s, %s",
$MailScanner::SA::BayesRebuildLock, $!);
}
}
$maxsize = MailScanner::Config::Value('maxspamassassinsize');
# Construct the array of lines of the header and body of the message
# JKF 30/1/2002 Don't chop off the line endings. Thanks to Andreas Piper
# for this.
# For SpamAssassin 3 we add the "EnvelopeFrom" header to make SPF work
my $fromheader = MailScanner::Config::Value('envfromheader', $message);
$fromheader =~ s/:$//;
# Build a list of all the headers, so we can remove any $fromheader that
# is already in there.
my @SAheaders = $global::MS->{mta}->OriginalMsgHeaders($message, "\n");
@SAheaders = grep !/^$fromheader\:/i, @SAheaders;
@SAheaders = grep !/^\s*$/, @SAheaders; # ditch blank lines
push(@WholeMessage, $fromheader . ': ' . $message->{from} . "\n")
if $fromheader;
# Add the spamvirusreport to the input to SA.
# The header name should be documented in the MailScanner.conf docs.
my $svheader = MailScanner::Config::Value('spamvirusheader', $message);
if ($svheader && $message->{spamvirusreport}) {
$svheader =~ s/:$//;
push(@WholeMessage, $svheader . ': ' . $message->{spamvirusreport} . "\n");
#print STDERR "Added $svheader: " . $message->{spamvirusreport} . "\n";
}
#push(@WholeMessage, $global::MS->{mta}->OriginalMsgHeaders($message, "\n"));
push(@WholeMessage, @SAheaders);
#print STDERR "Headers are : " . join(', ', @WholeMessage) . "\n";
unless (@WholeMessage) {
flock($RebuildLockH, $LOCK_UN) if $BayesIsLocked;
$RebuildLockH->close() if $MailScanner::SA::DoingBayesRebuilds;
return (0,0, MailScanner::Config::LanguageValue($message, 'sanoheaders'), 0);
}
push(@WholeMessage, "\n");
my(@WholeBody);
$message->{store}->ReadBody(\@WholeBody, $maxsize);
push(@WholeMessage, @WholeBody);
# Work out the MD5 sum of the body
my($testcache,$md5,$md5digest);
if ($SQLiteInstalled) {
$testcache = MailScanner::Config::Value("usesacache",$message);
$testcache = ($testcache =~ /1/)?1:0;
$md5 = Digest::MD5->new;
eval { $md5->add(@WholeBody) };
if ($@ ne "" || @WholeBody<=1) {
# The eval failed
$md5digest = "unknown";
$testcache = 0;
} else {
# The md5->add worked okay, so use the results
# Get the MD5 digest of the message body
$md5digest = $md5->hexdigest;
}
# Store it for later
$message->{md5} = $md5digest;
#print STDERR "MD5 digest is $md5digest\n";
} else {
$testcache = 0;
#print STDERR "Not going to use cache\n";
}
# Now construct the SpamAssassin object for version < 3
my $spammail;
$spammail = Mail::SpamAssassin::NoMailAudit->new('data'=>\@WholeMessage)
if $SAversion<3;
if ($testcache) {
if (my $cachehash = CheckCache($md5digest)) {
#print STDERR "Cache hit for " . $message->{id} . "\n";
MailScanner::Log::InfoLog("SpamAssassin cache hit for message %s", $message->{id});
# Read the cache result and update the timestamp *****
#($SAResult, $HighScoring, $SAHitList, $SAScore, $SAReport) =
#($cachehash->{sasaysspam}, $cachehash->{sahighscoring},
# uncompress($cachehash->{saheader}), $cachehash->{sascore},
# uncompress($cachehash->{salongreport}));
# ($SAResult, $HighScoring, $SAHitList, $SAScore, $SAReport) =
# ($cachehash->{sasaysspam}, $cachehash->{sahighscoring},
# uncompress($cachehash->{saheader}), $cachehash->{sascore},
# uncompress($cachehash->{salongreport}));
($SAHitList, $SAScore, $SAReport) = (
uncompress($cachehash->{saheader}), $cachehash->{sascore},
uncompress($cachehash->{salongreport})
);
# calculate SAResult and HighScoring from actual message
($SAResult, $HighScoring) = SATest_spam( $message, $GSHits, $SAScore );
# Log the fact we got it from the cache. Must not add the "cached"
# word on the front here or it will be put into the cache itself!
$GotFromCache = 1;
# Need to make sure that any differences in scores are being utilized
if ($SAScore >= $SAReqHits) {
$SAResult = 1;
$SAHitList =~ s/required ([\d\.]+)\,/required $SAReqHits\,/;
$HighScoring= 1 if !$HighScoring && $SAScore >= $HighScoreVal;
} elsif ($SAScore < $SAReqHits) {
$SAResult = 0;
$SAHitList =~ s/required ([\d\.]+)\,/required $SAReqHits\,/;
$HighScoring = 0 if $HighScoring && $SAScore < $HighScoreVal;
}
#print STDERR "Cache results are $SAResult, $HighScoring, $SAHitList, $SAScore, $SAReport\n";
# Unlock and close the lockfile
flock($RebuildLockH, $LOCK_UN) if $MailScanner::SA::DoingBayesRebuilds; # $BayesIsLocked;
$RebuildLockH->close() if $MailScanner::SA::DoingBayesRebuilds;
} else {
# Do the actual SpamAssassin call
#print STDERR "Cache miss for " . $message->{id} . "\n";
# Test it for spam-ness
if ($SAversion<3) {
($SAResult, $HighScoring, $SAHitList, $SAScore, $SAReport)
= SAForkAndTest($GSHits, $MailScanner::SA::SAspamtest,
$spammail, $message);
} else {
#print STDERR "Check 1, report template = \"" .
# $MailScanner::SA::SAspamtest->{conf}->{report_template} . "\"\n";
($SAResult, $HighScoring, $SAHitList, $SAScore, $SAReport)
= SAForkAndTest($GSHits, $MailScanner::SA::SAspamtest,
\@WholeMessage, $message);
}
# Log the fact we didn't get it from the cache. Must not add the
# "not cached" word on the front here or it will be put into the
# cache itself!
$GotFromCache = 0;
#MailScanner::Log::WarnLog("Done SAForkAndTest");
#print STDERR "SAResult = $SAResult\nHighScoring = $HighScoring\n" .
# "SAHitList = $SAHitList\n";
# Write the record to the cache *****
# Don't cache "timed out" results.
if ($SAHitList ne MailScanner::Config::LanguageValue($message, 'satimedout')) {
CacheResult($md5digest, $SAResult, $HighScoring,
compress($SAHitList), $SAScore, compress($SAReport));
}
# Unlock and close the lockfile
flock($RebuildLockH, $LOCK_UN) if $MailScanner::SA::DoingBayesRebuilds; # $BayesIsLocked;
$RebuildLockH->close() if $MailScanner::SA::DoingBayesRebuilds;
}
# Add the cached / not cached tag to $SAHitList if appropriate
if (defined($GotFromCache)) {
if ($GotFromCache) {
$SAHitList = MailScanner::Config::LanguageValue($message, 'cached')
. ', ' . $SAHitList;
} else {
$SAHitList = MailScanner::Config::LanguageValue($message, 'notcached')
. ', ' . $SAHitList;
}
}
} else {
# No cache here
# Test it for spam-ness
if ($SAversion<3) {
($SAResult, $HighScoring, $SAHitList, $SAScore, $SAReport)
= SAForkAndTest($GSHits, $MailScanner::SA::SAspamtest,
$spammail, $message);
} else {
#print STDERR "Check 1, report template = \"" .
# $MailScanner::SA::SAspamtest->{conf}->{report_template} . "\"\n";
($SAResult, $HighScoring, $SAHitList, $SAScore, $SAReport)
= SAForkAndTest($GSHits, $MailScanner::SA::SAspamtest,
\@WholeMessage, $message);
}
#MailScanner::Log::WarnLog("Done SAForkAndTest");
#print STDERR "SAResult = $SAResult\nHighScoring = $HighScoring\n" .
# "SAHitList = $SAHitList\n";
# Unlock and close the lockfile
flock($RebuildLockH, $LOCK_UN) if $MailScanner::SA::DoingBayesRebuilds; # $BayesIsLocked;
$RebuildLockH->close() if $MailScanner::SA::DoingBayesRebuilds;
}
return ($SAResult, $HighScoring, $SAHitList, $SAScore, $SAReport);
}
# Look up the passed MD5 in the cache database and return true/false
sub CheckCache {
my $md5 = shift;
my($sql, $sth);
$sql = "SELECT md5, count, last, first, sasaysspam, sahighscoring, sascore, saheader, salongreport FROM cache WHERE md5=?";
my $hash = $MailScanner::SA::cachedbh->selectrow_hashref($sql,undef,$md5);
if (defined($hash)) {
# Cache hit!
#print STDERR "Cache hit $hash!\n";
# Update the counter and timestamp
$sql = "UPDATE cache SET count=count+1, last=strftime('%s','now') WHERE md5=?";
$sth = $MailScanner::SA::cachedbh->prepare($sql);
$sth->execute($md5);
return $hash;
} else {
# Cache miss... we'll create the cache record after SpamAssassin has run.
#print STDERR "Cache miss!\n";
return undef;
}
}
# Check to see if the cache should have an expiry run done, do it if so.
sub CheckForCacheExpire {
# Check to see if a cache expiry run is needed
CacheExpire() if $NextCacheExpire<=time;
# NextCacheExpire is updated by CacheExpire() so not needed here.
}
sub CacheResult {
my ($md5, $SAResult, $HighScoring, $SAHitList, $SAScore, $SAReport) = @_;
my $dbh = $MailScanner::SA::cachedbh;
#print STDERR "dbh is $dbh and cachedbh is $MailScanner::SA::cachedbh\n";
my $sql = "INSERT INTO cache (md5, count, last, first, sasaysspam, sahighscoring, sascore, saheader, salongreport) VALUES (?,?,?,?,?,?,?,?,?)";
my $sth = $dbh->prepare($sql);
#print STDERR "$sth, $@\n";
my $now = time;
$sth->execute($md5,1,$now,$now,
$SAResult, $HighScoring, $SAScore, $SAHitList, $SAReport);
}
# Expire records from the cache database
sub CacheExpire {
my $expire1 = shift || $HamCacheLife; # non-spam
my $expire2 = shift || $SpamCacheLife; # low-scoring spam
my $expire3 = shift || $HighSpamCacheLife; # everything else except viruses
my $expire4 = shift || $VirusesCacheLife; # viruses
return unless $SQLiteInstalled;
my $sth = $MailScanner::SA::cachedbh->prepare("
DELETE FROM cache WHERE (
(sasaysspam=0 AND virusinfected<1 AND first<=(strftime('%s','now')-?)) OR
(sasaysspam>0 AND sahighscoring=0 AND virusinfected<1 AND first<=(strftime('%s','now')-?)) OR
(sasaysspam>0 AND sahighscoring>0 AND virusinfected<1 AND last<=(strftime('%s','now')-?)) OR
(virusinfected>=1 AND last<=(strftime('%s','now')-?))
)");
MailScanner::Log::DieLog("Database complained about this: %s. I suggest you delete your %s file and let me re-create it for you", $DBI::errstr, MailScanner::Config::Value("sacache")) unless $sth;
my $rows = $sth->execute($expire1, $expire2, $expire3, $expire4);
$sth->finish;
MailScanner::Log::InfoLog("Expired %s records from the SpamAssassin cache", $rows) if $rows>0;
# This is when we should do our next cache expiry (20 minutes from now)
$NextCacheExpire = time + $ExpireFrequency;
}
# Add the virus information to the cache entry so we can keep infected
# attachment details a lot longer than normal spam.
sub AddVirusStats {
my($message) = @_;
#my $virus;
return unless $message;
return unless $SQLiteInstalled &&
MailScanner::Config::Value("usesacache",$message) =~ /1/;
my $sth = $MailScanner::SA::cachedbh->prepare('UPDATE cache SET virusinfected=? WHERE md5=?');
## Also print 1 line for each report about this message. These lines
## contain all the info above, + the attachment filename and text of
## each report.
#my($file, $text, @report_array);
#while(($file, $text) = each %{$message->{allreports}}) {
# $file = "the entire message" if $file eq "";
# # Use the sanitised filename to avoid problems caused by people forcing
# # logging of attachment filenames which contain nasty SQL instructions.
# $file = $message->{file2safefile}{$file} or $file;
# $text =~ s/\n/ /; # Make sure text report only contains 1 line
# $text =~ s/\t/ /; # and no tab characters
# push (@report_array, $text);
#}
#
#my $reports = join(",",@report_array);
## This regexp only works for clamav
#if ($reports =~ /(.+) contains (\S+)/) { $virus = $2; }
$sth->execute($message->{virusinfected},
$message->{md5}) or MailScanner::Log::WarnLog($DBI::errstr);
}
# Fork and test with SpamAssassin. This implements a timeout on the execution
# of the SpamAssassin checks, which occasionally take a *very* long time to
# terminate due to regular expression backtracking and other nasties.
sub SAForkAndTest {
my($GSHits, $Test, $Mail, $Message) = @_;
my($pipe);
my($SAHitList, $SAHits, $SAReqHits, $IsItSpam, $IsItHighScore, $AutoLearn);
my($HighScoreVal, $pid2delete, $IncludeScores, $SAReport, $queuelength);
my $PipeReturn = 0;
#print STDERR "Check 2, is \"" . $Test->{conf}->{report_template} . "\"\n";
$IncludeScores = MailScanner::Config::Value('listsascores', $Message);
$queuelength = MailScanner::Config::Value('satimeoutlen', $Message);
$pipe = new IO::Pipe
or MailScanner::Log::DieLog('Failed to create pipe, %s, try reducing ' .
'the maximum number of unscanned messages per batch', $!);
#$readerfh = new FileHandle;
#$writerfh = new FileHandle;
#($readerfh, $writerfh) = FileHandle::pipe;
my $pid = fork();
die "Can't fork: $!" unless defined($pid);
if ($pid == 0) {
# In the child
my($spamness, $SAResult, $HitList, @HitNames, $Hit);
$pipe->writer();
#close($readerfh);
#POSIX::setsid();
#select($writerfh);
#$| = 1; # Line buffering, not block buffering
$pipe->autoflush();
# Do the actual tests and work out the integer result
if ($SAversion<3) {
$spamness = $Test->check($Mail);
} else {
my $mail = $Test->parse($Mail, 1);
$spamness = $Test->check($mail);
}
print $pipe ($SAversion<3?$spamness->get_hits():$spamness->get_score())
. "\n";
$HitList = $spamness->get_names_of_tests_hit();
if ($IncludeScores) {
@HitNames = split(/\s*,\s*/, $HitList);
$HitList = "";
foreach $Hit (@HitNames) {
$HitList .= ($HitList?', ':'') . $Hit . ' ' .
sprintf("%1.2f", $spamness->{conf}->{scores}->{$Hit});
}
}
# Get the autolearn status
if ($SAversion<3) {
# Old code
if (!defined $spamness->{auto_learn_status}) {
$AutoLearn = "no";
} elsif ($spamness->{auto_learn_status}) {
$AutoLearn = "spam";
} else {
$AutoLearn = "not spam";
}
} else {
# New code
$spamness->learn();
$AutoLearn = $spamness->{auto_learn_status};
$AutoLearn = 'no' if $AutoLearn eq 'failed' || $AutoLearn eq "";
$AutoLearn = 'not spam' if $AutoLearn eq 'ham';
}
#if (!defined $spamness->{auto_learn_status} || $spamness->{auto_learn_status} eq 'no') {
# $AutoLearn = "no";
#} elsif ($spamness->{auto_learn_status}) {
# $AutoLearn = "spam";
#} else {
# $AutoLearn = "not spam";
#}
#sleep 30 if rand(3)>=2.0;
print $pipe $AutoLearn . "\n";
print $pipe $HitList . "\n";
# JKF New code here to print out the full spam report
$HitList = $spamness->get_report();
$HitList =~ tr/\n/\0/;
print $pipe $HitList . "\n";
$spamness->finish();
$pipe->close();
$pipe = undef;
exit 0; # $SAResult;
}
eval {
$pipe->reader();
local $SIG{ALRM} = sub { die "Command Timed Out" };
alarm MailScanner::Config::Value('spamassassintimeout');
$SAHits = <$pipe>;
#print STDERR "Read SAHits = $SAHits " . scalar(localtime) . "\n";
$AutoLearn = <$pipe>;
$SAHitList = <$pipe>;
$SAReport = <$pipe>;
#print STDERR "Read SAHitList = $SAHitList " . scalar(localtime) . "\n";
# Not sure if next 2 lines should be this way round...
$pipe->close();
waitpid $pid, 0;
## JKF 4.71.7 waitpid $pid, 0;
#my $kid;
#do {
# $kid = waitpid(-1,&POSIX::WNOHANG);
#} until $kid == -1;
## JKF 4.71.7 end
$PipeReturn = $?;
alarm 0;
$pid = 0;
chomp $SAHits;
chomp $AutoLearn;
chomp $SAHitList;
$SAHits = $SAHits + 0.0;
#$safailures = 0; # This was successful so zero counter
# We got a result so store a success
push @SAsuccessqueue, 0;
# Roll the queue along one
$SAsuccessqsum += (shift @SAsuccessqueue)?1:-1
if @SAsuccessqueue>$queuelength;
#print STDERR "Success: sum = $SAsuccessqsum\n";
$SAsuccessqsum = 0 if $SAsuccessqsum<0;
};
alarm 0;
# Workaround for bug in perl shipped with Solaris 9,
# it doesn't unblock the SIGALRM after handling it.
eval {
my $unblockset = POSIX::SigSet->new(SIGALRM);
sigprocmask(SIG_UNBLOCK, $unblockset)
or die "Could not unblock alarm: $!\n";
};
# Construct the hit-list including the score we got.
my($longHitList);
$SAReqHits = MailScanner::Config::Value('reqspamassassinscore',$Message)+0.0;
$longHitList = MailScanner::Config::LanguageValue($Message, 'score') . '=' .
($SAHits+0.0) . ', ' .
MailScanner::Config::LanguageValue($Message, 'required') .' ' .
$SAReqHits;
$longHitList .= ", autolearn=$AutoLearn" unless $AutoLearn eq 'no';
$longHitList .= ", $SAHitList" if $SAHitList;
$SAHitList = $longHitList;
# Note to self: I only close the KID in the parent, not in the child.
# Catch failures other than the alarm
MailScanner::Log::DieLog("SpamAssassin failed with real error: $@")
if $@ and $@ !~ /Command Timed Out/;
# In which case any failures must be the alarm
if ($pid>0) {
$pid2delete = $pid;
my $maxfailures = MailScanner::Config::Value('maxspamassassintimeouts');
# Increment the "consecutive" counter
#$safailures++;
if ($maxfailures>0) {
# We got a failure
push @SAsuccessqueue, 1;
$SAsuccessqsum++;
# Roll the queue along one
$SAsuccessqsum += (shift @SAsuccessqueue)?1:-1
if @SAsuccessqueue>$queuelength;
#print STDERR "Failure: sum = $SAsuccessqsum\n";
$SAsuccessqsum = 1 if $SAsuccessqsum<1;
if ($SAsuccessqsum>$maxfailures && @SAsuccessqueue>=$queuelength) {
MailScanner::Log::WarnLog("SpamAssassin timed out (with no network" .
" checks) and was killed, failure %d of %d",
$SAsuccessqsum, $maxfailures*2);
} else {
MailScanner::Log::WarnLog("SpamAssassin timed out and was killed, " .
"failure %d of %d", $SAsuccessqsum, $maxfailures);
}
} else {
MailScanner::Log::WarnLog("SpamAssassin timed out and was killed");
}
# Make the report say SA was killed
$SAHitList = MailScanner::Config::LanguageValue($Message, 'satimedout');
$SAHits = 0;
# Kill the running child process
my($i);
kill 15, $pid; # Was -15
# Wait for up to 10 seconds for it to die
for ($i=0; $i<5; $i++) {
sleep 1;
waitpid($pid, &POSIX::WNOHANG);
($pid=0),last unless kill(0, $pid);
kill 15, $pid; # Was -15
}
# And if it didn't respond to 11 nice kills, we kill -9 it
if ($pid) {
kill 9, $pid; # Was -9
waitpid $pid, 0; # 2.53
}
# As the child process must now be dead, remove the Bayes database
# lock file if it exists. Only delete the lock file if it mentions
# $pid2delete in its contents.
if ($pid2delete && $MailScanner::SA::SABayesLock) {
my $lockfh = new FileHandle;
if ($lockfh->open($MailScanner::SA::SABayesLock)) {
my $line = $lockfh->getline();
chomp $line;
$line =~ /(\d+)$/;
my $pidinlock = $1;
if ($pidinlock =~ /$pid2delete/) {
unlink $MailScanner::SA::SABayesLock;
MailScanner::Log::InfoLog("Delete bayes lockfile for %s",$pid2delete);
}
$lockfh->close();
}
}
#unlink $MailScanner::SA::SABayesLock if $MailScanner::SA::SABayesLock;
}
#MailScanner::Log::WarnLog("8 PID is $pid");
# SpamAssassin is known to play with the umask
umask 0077; # Safety net
# The return from the pipe is a measure of how spammy it was
MailScanner::Log::DebugLog("SpamAssassin returned $PipeReturn");
#$PipeReturn = $PipeReturn>>8;
#if ($SAHits && ($SAHits+$GSHits>=$SAReqHits)) {
# $IsItSpam = 1;
#} else {
# $IsItSpam = 0;
#}
#$HighScoreVal = MailScanner::Config::Value('highspamassassinscore',$Message);
#if ($SAHits && $HighScoreVal>0 && ($SAHits+$GSHits>=$HighScoreVal)) {
# $IsItHighScore = 1;
#} else {
# $IsItHighScore = 0;
#}
#print STDERR "Check 3, is \"" . $Test->{conf}->{report_template} . "\"\n";
($IsItSpam, $IsItHighScore) = SATest_spam( $Message, $GSHits, $SAHits );
return ($IsItSpam, $IsItHighScore, $SAHitList, $SAHits, $SAReport);
}
#
# Subroutine to calculate whether the mail is SPAM or not
#
sub SATest_spam
{
my ( $Message, $GSHits, $SAHits ) = @_;
my ( $IsItSpam, $IsItHighScore ) = (0,0);
my $SAReqHits = 0.0 + MailScanner::Config::Value(
'reqspamassassinscore', $Message
);
if ( $SAHits && ($SAHits+$GSHits >= $SAReqHits) )
{
$IsItSpam = 1;
}
my $HighScoreVal = 0.0 + MailScanner::Config::Value(
'highspamassassinscore', $Message
);
if ( $SAHits && $HighScoreVal>0 && ($SAHits+$GSHits >= $HighScoreVal) )
{
$IsItHighScore = 1;
}
return ( $IsItSpam, $IsItHighScore );
}
sub SATest {
my($GSHits, $Test, $Mail, $Message) = @_;
my($SAHitList, $SAHits, $SAReqHits, $IsItSpam, $IsItHighScore, $AutoLearn);
my($HighScoreVal, $pid2delete, $IncludeScores, $SAReport, $queuelength);
my $PipeReturn = 0;
$IncludeScores = MailScanner::Config::Value('listsascores', $Message);
$queuelength = MailScanner::Config::Value('satimeoutlen', $Message);
my($spamness, $SAResult, $HitList, @HitNames, $Hit);
# Do the actual tests and work out the integer result
if ($SAversion<3) {
$spamness = $Test->check($Mail);
} else {
my $mail = $Test->parse($Mail, 1);
$spamness = $Test->check($mail);
}
# 1st output is get_hits or get_score \n
$SAHits = ($SAversion<3?$spamness->get_hits():$spamness->get_score()) + 0.0;
$HitList = $spamness->get_names_of_tests_hit();
if ($IncludeScores) {
@HitNames = split(/\s*,\s*/, $HitList);
$HitList = "";
foreach $Hit (@HitNames) {
$HitList .= ($HitList?', ':'') . $Hit . ' ' .
sprintf("%1.2f", $spamness->{conf}->{scores}->{$Hit});
}
}
# Get the autolearn status
if ($SAversion<3) {
# Old code
if (!defined $spamness->{auto_learn_status}) {
$AutoLearn = "no";
} elsif ($spamness->{auto_learn_status}) {
$AutoLearn = "spam";
} else {
$AutoLearn = "not spam";
}
} else {
# New code
$spamness->learn();
$AutoLearn = $spamness->{auto_learn_status};
$AutoLearn = 'no' if $AutoLearn eq 'failed' || $AutoLearn eq "";
$AutoLearn = 'not spam' if $AutoLearn eq 'ham';
}
# 3rd output is $HitList \n
$SAHitList = $HitList;
# JKF New code here to print out the full spam report
$HitList = $spamness->get_report();
$HitList =~ tr/\n/\0/;
# 4th output is $HitList \n which is now full spam report
$SAReport = $HitList . "\n";
$spamness->finish();
#print STDERR "Read SAHits = $SAHits " . scalar(localtime) . "\n";
# Construct the hit-list including the score we got.
my($longHitList);
$SAReqHits = MailScanner::Config::Value('reqspamassassinscore',$Message)+0.0;
$longHitList = MailScanner::Config::LanguageValue($Message, 'score') . '=' .
($SAHits+0.0) . ', ' .
MailScanner::Config::LanguageValue($Message, 'required') .' ' .
$SAReqHits;
$longHitList .= ", autolearn=$AutoLearn" unless $AutoLearn eq 'no';
$longHitList .= ", $SAHitList" if $SAHitList;
$SAHitList = $longHitList;
# SpamAssassin is known to play with the umask
umask 0077; # Safety net
if ($SAHits && ($SAHits+$GSHits>=$SAReqHits)) {
$IsItSpam = 1;
} else {
$IsItSpam = 0;
}
$HighScoreVal = MailScanner::Config::Value('highspamassassinscore',$Message);
if ($SAHits && $HighScoreVal>0 && ($SAHits+$GSHits>=$HighScoreVal)) {
$IsItHighScore = 1;
} else {
$IsItHighScore = 0;
}
return ($IsItSpam, $IsItHighScore, $SAHitList, $SAHits, $SAReport);
}
1;
|