]> git.proxmox.com Git - pmg-api.git/blame - src/bin/pmg-smtp-filter
adapt to new pmgcfg version/release semantic
[pmg-api.git] / src / bin / pmg-smtp-filter
CommitLineData
b429250e 1#!/usr/bin/perl
6f4aeba1
DM
2
3use strict;
f62194b2
DM
4use warnings;
5
6f4aeba1
DM
6use Carp;
7use Getopt::Long;
21853580 8use Time::HiRes qw (usleep gettimeofday tv_interval);
6f4aeba1
DM
9use POSIX qw(:sys_wait_h errno_h signal_h);
10
11use MIME::Parser;
12use File::Path;
13use Net::Server::PreFork;
14use Net::Server::SIG qw(register_sig check_sigs);
97662001
DM
15use Net::SMTP;
16
6f4aeba1
DM
17use Fcntl ':flock';
18use File::Basename;
6f4aeba1 19use Xdgmime;
f62194b2
DM
20
21use PVE::SafeSyslog;
22use PVE::ProcFSTools;
23use PVE::INotify;
6f4aeba1
DM
24
25use Mail::SpamAssassin;
26use Mail::SpamAssassin::NetSet;
6f4aeba1 27
f62194b2
DM
28use PMG::pmgcfg;
29use PMG::Utils;
30use PMG::Cluster;
9f67f5b3 31use PMG::ClusterConfig;
6f4aeba1 32
f62194b2
DM
33use PMG::DBTools;
34use PMG::RuleDB;
35use PMG::RuleCache;
36use PMG::ModGroup;
37use PMG::AtomicFile;
7b3c53bd 38use PMG::LDAPConfig;
f62194b2
DM
39use PMG::LDAPSet;
40use PMG::Config;
a43bcf61 41use PMG::MailQueue;
91a5af02 42use PMG::Unpack;
521dca53 43use PMG::SMTP;
6f4aeba1 44
521dca53
DM
45use PMG::Unpack;
46use PMG::Statistic;
f62194b2
DM
47
48use base qw(Net::Server::PreFork);
6f4aeba1
DM
49
50my $opt_commandline = [$0, @ARGV];
51my $opt_max_dequeue = 1;
dff363d9 52my $opt_dequeue_time = 30;
6f4aeba1
DM
53
54my $opt_ext_port = 10024;
55my $opt_int_port = 10023;
56my $opt_inject_port = 10025;
57
58my $opt_testmode;
59my $opt_untrusted;
60my $opt_pidfile;
61my $opt_database;
62
e646f7ca
DM
63my $prog_name = 'pmg-smtp-filter';
64
65initlog($prog_name, 'mail');
6f4aeba1
DM
66
67if (!GetOptions ('testmode=s' => \$opt_testmode,
f62194b2
DM
68 'pidfile=s' => \$opt_pidfile,
69 'untrusted' => \$opt_untrusted,
6f4aeba1
DM
70 'database=s' => \$opt_database)) {
71 die "usage error\n";
72 exit (-1);
73}
74
e646f7ca 75$opt_pidfile = "/var/run/${prog_name}.pid" if !$opt_pidfile;
6f4aeba1
DM
76
77my $max_servers = 1;
78my $min_servers = 1;
79my $min_spare_servers = 0;
80my $max_spare_servers = 0;
81my $max_requests = 1;
82
83if (!$opt_testmode) {
84
f62194b2
DM
85 my $pmg_cfg = PMG::Config->new();
86
ac5d1312 87 my $demo = $pmg_cfg->get('admin', 'demo');
6f4aeba1
DM
88
89 if ($demo) {
90 syslog ('info', 'demo mode detected - not starting server');
91 exit (0);
92 }
93
f62194b2 94 $max_servers = $pmg_cfg->get('mail', 'max_filters') + 2;
6f4aeba1
DM
95 $min_servers = 2;
96 $min_spare_servers = 1;
97 $max_spare_servers = 4;
98 $max_requests = 20;
99}
100
101$opt_max_dequeue = 0 if $opt_testmode;
102
103my $daemonize = 1;
104if (defined ($ENV{BOUND_SOCKETS})) {
105 $daemonize = undef;
106}
107
108my $server_attr = {
109 port => [ $opt_int_port, $opt_ext_port ],
110 host => '127.0.0.1',
111 min_servers => $min_servers,
112 max_servers => $max_servers,
113 min_spare_servers => $min_spare_servers,
114 max_spare_servers => $max_spare_servers,
115 max_requests => $max_requests,
116 serialize => 'flock',
117 max_dequeue => $opt_max_dequeue,
118 check_for_dequeue => $opt_dequeue_time,
119 log_level => 3,
120 pid_file => $opt_pidfile,
121 no_close_by_child => 1,
122 no_client_stdout => 1,
123 commandline => $opt_commandline,
124};
125
126$server_attr->{setsid} = $daemonize if !$opt_testmode;
127
128my $database;
129
130if (defined($opt_database)) {
131 $database = $opt_database;
132} else {
133 $database = $opt_testmode ? "Proxmox_testdb" : "Proxmox_ruledb";
134}
135
136$SIG{'__WARN__'} = sub {
137 my $err = $@;
138 my $t = $_[0];
139 chomp $t;
140 syslog('warning', "WARNING: %s", $t);
141 $@ = $err;
142};
143
144sub get_prox_vars {
145 my ($self, $queue, $entity, $msginfo, $rule, $targets, $spaminfo) = @_;
146
147 $spaminfo = {
148 sa_score => $queue->{sa_score},
149 sa_hits => $queue->{sa_hits},
150 sa_data => $queue->{sa_data},
151 sa_max => $queue->{sa_max}
152 } if !$spaminfo;
153
154 my $vars = {
155 'SUBJECT' => $entity->head->get ('subject', 0) || 'No Subject',
156 'RULE' => $rule->{name},
157 'RULE_INFO' => $msginfo->{rule_info},
158 'SENDER' => $msginfo->{sender},
159 'SENDER_IP' => $msginfo->{xforward}->{addr},
160 'TARGETS' => join (', ', @$targets),
161 'RECEIVERS' => join (', ', @{$msginfo->{targets}}),
162 'SPAMLEVEL' => $spaminfo->{sa_score},
163 'SPAMSTARS' => '*' x (($spaminfo->{sa_score} || 0) > 100 ? 100 : $spaminfo->{sa_score} || 0),
ac5d1312 164 'ADMIN' => $self->{pmg_cfg}->get('admin', 'email'),
6f4aeba1
DM
165 'HOST' => $msginfo->{hostname},
166 'DOMAIN' => $msginfo->{domain},
167 'FQDN' => $msginfo->{fqdn},
168 'MSGID' => $queue->{msgid},
1c15ce0f 169 'VERSION' => PMG::pmgcfg::package() . "/" . PMG::pmgcfg::release() . "/" . PMG::pmgcfg::repoid(),
6f4aeba1
DM
170 };
171
172 $vars->{__spaminfo} = $spaminfo;
173
174 if ($opt_testmode) {
4c4fec6b 175 if ($queue->{vinfo_clam} || $queue->{vinfo_avast} || $queue->{vinfo_custom}) {
6f4aeba1
DM
176 $vars->{'VIRUS_INFO'} = "Virus Info:";
177 $vars->{'VIRUS_INFO'} .= " clam: $queue->{vinfo_clam}" if $queue->{vinfo_clam};
6ccbc37f 178 $vars->{'VIRUS_INFO'} .= " avast: $queue->{vinfo_avast}" if $queue->{vinfo_avast};
4c4fec6b 179 $vars->{'VIRUS_INFO'} .= " custom: $queue->{vinfo_custom}" if $queue->{vinfo_custom};
6f4aeba1
DM
180 } else {
181 $vars->{'VIRUS_INFO'} = '';
182 }
183 } else {
184 if ($queue->{vinfo}) {
185 $vars->{'VIRUS_INFO'} = "Virus Info: $queue->{vinfo}\n";
186 } else {
187 $vars->{'VIRUS_INFO'} = '';
188 }
189 }
190
191 $vars->{'SPAM_HITS'} = $spaminfo->{sa_hits};
192
193 $vars->{'SPAM_INFO'} = '';
194 my $sscores = $spaminfo->{sa_data};
195
196 if (defined ($sscores) && @$sscores != -1) {
197 my $sa_text;
198 if ($opt_testmode) {
199 $sa_text = "Spam detection results: 100\n";
200 } else {
201 $sa_text = "Spam detection results: $spaminfo->{sa_score}\n";
202 }
203
204 foreach my $s (@$sscores) {
205 if ($opt_testmode) {
f62194b2 206 $sa_text .= sprintf ("%-22s %6s %s\n", $s->{rule},
6f4aeba1
DM
207 1, $s->{desc} || '-');
208 } else {
f62194b2 209 $sa_text .= sprintf ("%-22s %6s %s\n", $s->{rule},
6f4aeba1
DM
210 $s->{score}, $s->{desc} || '-');
211 }
212 }
213 $vars->{'SPAM_INFO'} = $sa_text;
214 }
215
216 if ($opt_testmode) {
217 delete ($vars->{'ADMIN'});
218 #delete ($vars->{'SPAM_INFO'});
219 }
220
221 return $vars;
222}
223
224sub apply_rules {
225 my ($self, $queue, $msginfo, $entity, $ldap) = @_;
226
227 my $final;
228 my %rule_targets;
229 my %rule_actions;
230 my %rule_marks;
231 my $matching_rules = [];
232
233 my $rulecache = $self->{rulecache};
234 my $rules = $rulecache->rules ();
235 my $dbh = $self->{ruledb}->{dbh};
f62194b2
DM
236
237 # first, we remove all conditional written 'X-' header attributes
6f4aeba1
DM
238 foreach my $rule (@$rules) {
239 next if !$rule->{active};
240 next if ($rule->{direction} == 0) && $msginfo->{trusted};
241 next if ($rule->{direction} == 1) && !$msginfo->{trusted};
242
243 my $actions = $rulecache->get_actions ($rule->{id});
244 if ($actions) {
245 foreach my $action (@$actions) {
521dca53 246 if ($action->isa ("PMG::RuleDB::ModField")) {
6f4aeba1
DM
247 my $fname = $action->{field};
248 next if $fname !~ m/^X-/i;
249 $entity->head->delete($fname);
250 }
251 }
252 }
253 }
254
255 foreach my $rule (@$rules) {
256 next if !$rule->{active};
257 next if ($rule->{direction} == 0) && $msginfo->{trusted};
258 next if ($rule->{direction} == 1) && !$msginfo->{trusted};
259
260 # match from, when and what classes (not target dependent)
261 if (!($rulecache->from_match ($rule->{id}, $msginfo->{sender}, $msginfo->{xforward}->{addr}, $ldap) &&
262 $rulecache->when_match ($rule->{id}, time))) {
263 next;
264 }
265
f62194b2 266 $rule_marks{$rule->{id}} =
6f4aeba1
DM
267 $rulecache->what_match ($rule->{id}, $queue, $entity, $msginfo, $dbh);
268
269 $rule_actions{$rule->{id}} = $rulecache->get_actions ($rule->{id});
270 my $fin = $rulecache->final ($rule->{id});
271
272 # match targets
273 foreach my $target (@{$msginfo->{targets}}) {
274 next if $final->{$target};
275 next if !defined ($rule_marks{$rule->{id}});
276 next if !defined ($rule_marks{$rule->{id}}->{$target});
277 next if !defined ($rule_marks{$rule->{id}}->{$target}->{marks});
278 next if !$rulecache->to_match ($rule->{id}, $target, $ldap);
279
280 $final->{$target} = $fin;
281
282 push @{$rule_targets{$rule->{id}}}, $target;
f62194b2 283 }
6f4aeba1
DM
284 }
285
286 # Compute rule_info (summary about matching rule)
f62194b2 287 # this can be used for debugging
6f4aeba1
DM
288 my $rule_info = "";
289 foreach my $rule (@$rules) {
290 next if !$rule_targets{$rule->{id}};
291
292 push @$matching_rules, $rule->{id};
293
294 $rule_info .= "Rule: $rule->{name}\n";
295
296 foreach my $target (@{$rule_targets{$rule->{id}}}) {
297 $rule_info .= " Receiver: $target\n";
f62194b2 298 }
6f4aeba1
DM
299 foreach my $action (@{$rule_actions{$rule->{id}}}) {
300 $rule_info .= " Action: " . $action->short_desc () . "\n";
301 }
302
303 }
304 $msginfo->{rule_info} = $rule_info;
305
306 if ($msginfo->{testmode}) {
2d611b3b 307 my $vars = $self->get_prox_vars($queue, $entity, $msginfo, undef, [], undef);
6f4aeba1 308 my $fh = $msginfo->{test_fh};
2d611b3b 309 print $fh $rule_info;
6f4aeba1
DM
310 }
311
312 # apply actions
313
f62194b2 314 my $mod_group = PMG::ModGroup->new($entity, $msginfo->{targets});
6f4aeba1
DM
315
316 foreach my $rule (@$rules) {
317 my $targets = $rule_targets{$rule->{id}};
318 next if !$targets;
f62194b2 319
6f4aeba1
DM
320 my $spaminfo;
321 foreach my $t (@$targets) {
322 if ($rule_marks{$rule->{id}}->{$t} && $rule_marks{$rule->{id}}->{$t}->{spaminfo}) {
323 $spaminfo = $rule_marks{$rule->{id}}->{$t}->{spaminfo};
324 # we assume spam info is the same for all matching targets
325 last;
326 }
327 }
328
329 my $vars = $self->get_prox_vars ($queue, $entity, $msginfo, $rule,
330 $rule_targets{$rule->{id}}, $spaminfo);
331
332
f62194b2 333 my @sorted_actions =
6f4aeba1 334 sort {$a->priority <=> $b->priority} @{$rule_actions{$rule->{id}}};
f62194b2 335
6f4aeba1 336 foreach my $action (@sorted_actions) {
f62194b2 337 $action->execute ($queue, $self->{ruledb}, $mod_group,
6f4aeba1
DM
338 $rule_targets{$rule->{id}},
339 $msginfo, $vars, $rule_marks{$rule->{id}}->{marks}, $ldap);
340 last if $action->final;
341 }
342 }
343
344 # we deliver all mail not matched by any rule
345 # (default action = accept)
346 my $unmatched;
347 foreach my $target (@{$msginfo->{targets}}) {
348 next if $final->{$target};
349
350 push @$unmatched, $target;
351 }
352
353 if ($unmatched) {
521dca53 354 my $accept = PMG::RuleDB::Accept->new ();
f62194b2 355 $accept->execute ($queue, $self->{ruledb}, $mod_group, $unmatched,
ecf08b56 356 $msginfo, { RULE => 'default-accept' }, undef);
6f4aeba1
DM
357 }
358
359 return $matching_rules;
360}
361
f62194b2 362# reload ruledb and pmg config
6f4aeba1
DM
363sub load_config {
364 my $self = shift;
365 my $prop = $self->{server};
366
367 if ($self->{ruledb}) {
368 $self->log (0, "reloading configuration $database");
369 $self->{ruledb}->close ();
370 }
371
f62194b2
DM
372 $self->{pmg_cfg} = PMG::Config->new();
373 $self->{cinfo} = PVE::INotify::read_file("cluster.conf");
6f4aeba1 374
ab6aa17b
DM
375 # create spool directories
376 PMG::MailQueue::create_spooldirs($self->{cinfo}->{local}->{cid});
377
6f4aeba1 378 eval {
f62194b2
DM
379 my $dbh = PMG::DBTools::open_ruledb ($database);
380 $self->{ruledb} = PMG::RuleDB->new ($dbh);
6f4aeba1
DM
381
382 # load rulecache
f62194b2 383 $self->{rulecache} = PMG::RuleCache->new ($self->{ruledb});
6f4aeba1
DM
384 };
385
386 my $err = $@;
387
388 if ($err) {
389 sleep (10); # reduce restart rate when postgres is down
390 die $err;
391 }
392
f62194b2 393 # create LDAP object
7b3c53bd
DM
394 my $ldapconf = PVE::INotify::read_file('pmg-ldap.conf');
395 $self->{ldap} = PMG::LDAPSet->new_from_ldap_cfg($ldapconf, 1);
6f4aeba1 396
f62194b2 397 $self->{reload_config} = 0;
6f4aeba1
DM
398}
399
f62194b2
DM
400my $syslog_map = {
401 0 => 'err',
402 1 => 'warning',
403 2 => 'notice',
404 3 => 'info',
405 4 => 'debug'
406};
407
6f4aeba1
DM
408sub log {
409 my ($self, $level, $msg, @therest) = @_;
410 my $prop = $self->{server};
411
412 return if $level =~ /^\d+$/ && $level > $prop->{log_level};
413
f62194b2 414 $level = $syslog_map->{$level} || $level;
6f4aeba1
DM
415 if (@therest) {
416 syslog($level, $msg, @therest);
417 } else {
418 syslog ($level, $msg);
419 }
420}
421
422sub pre_loop_hook {
423 my $self = shift;
424 my $prop = $self->{server};
425
426 $prop->{log_level} = 3;
427
428 $self->log (0, "Filter daemon (re)started (max. $max_servers processes)");
429
521dca53 430 eval { PMG::MailQueue::cleanup_active(); };
6f4aeba1
DM
431 $self->log (0, "Cleanup failures: $@") if $@;
432
433 my $sig_set = POSIX::SigSet->new;
f62194b2
DM
434 $sig_set->addset (&POSIX::SIGHUP);
435 $sig_set->addset (&POSIX::SIGCHLD);
6f4aeba1
DM
436 my $old_sig_set = POSIX::SigSet->new();
437
438 sigprocmask (SIG_UNBLOCK, $sig_set, $old_sig_set);
439
440 my ($backup_umask) = umask;
441
f62194b2
DM
442 my $pmg_cfg = PMG::Config->new();
443
444 # Note: you need to restart the daemon when you change 'rbl_checks'
445 my $rbl_checks = $pmg_cfg->get('spam', 'rbl_checks');
6f4aeba1
DM
446
447 $self->{sa} = Mail::SpamAssassin->new ({
448 debug => 0,
f62194b2 449 local_tests_only => $opt_testmode || !$rbl_checks,
6f4aeba1
DM
450 home_dir_for_helpers => '/root',
451 userstate_dir => '/root/.spamassassin',
452 dont_copy_prefs => 1,
453 stop_at_threshold => 0,
454 });
455
456 $self->{sa}->compile_now;
457
458 alarm (0); # SA forgets to clear alarm in some cases
459 umask ($backup_umask);
e646f7ca 460 initlog ($prog_name, 'mail');
6f4aeba1
DM
461
462 $SIG{'USR1'} = sub {
463 # reloading server configuration
464 if (defined $prop->{children}) {
465 foreach my $pid (keys %{$prop->{children}}) {
466 kill (10, $pid); # SIGUSR1 childs
467 }
468 }
469 }
470}
471
472sub child_init_hook {
473 my $self = shift;
474
e646f7ca 475 $0 = "$prog_name child";
6f4aeba1
DM
476
477 # $self->log (3, "init child");
478
479 eval {
480 $self->load_config ();
481 };
482
483 if ($@) {
484 $self->log (0, $@);
485 $self->child_finish_hook;
486 exit;
487 }
488
489 $SIG{'USR1'} = sub {
f62194b2 490 $self->{reload_config} = 1;
6f4aeba1
DM
491 }
492}
493
494sub child_finish_hook {
495 my $self = shift;
f62194b2 496
6f4aeba1
DM
497 # $self->log (3, "finish child");
498 $self->{ruledb}->close () if $self->{ruledb};
499}
500
dff363d9
DM
501my $last_dequeue_time = 0;
502
6f4aeba1
DM
503sub run_dequeue {
504 my $self = shift;
505
dff363d9
DM
506 my $err;
507
6f4aeba1
DM
508 # do database maintainance here
509
de199535 510 # this is called every 30 secends
dff363d9
DM
511 eval {
512 PMG::Utils::update_node_status_rrd();
513 };
514 if ($err = $@) {
b902c0b8 515 $self->log(0, "ERROR: $err");
dff363d9
DM
516 # continue
517 }
518
de199535
DM
519 my $ctime = time();
520 my $tdiff = $ctime - $last_dequeue_time;
521
522 # return if tdiff less than 2 minutes
dff363d9
DM
523 return if $tdiff < 2*60;
524
de199535
DM
525 $last_dequeue_time = $ctime;
526
6f4aeba1
DM
527 $self->log (2, "starting database maintainance");
528
529 my ($csec, $usec) = gettimeofday ();
530
f62194b2
DM
531 my $cinfo = PVE::INotify::read_file("cluster.conf");
532
6f4aeba1 533 my $dbh;
f62194b2 534
6f4aeba1 535 eval {
f62194b2 536 $dbh = PMG::DBTools::open_ruledb($database);
6f4aeba1 537 };
dff363d9 538 if ($err = $@) {
b902c0b8 539 $self->log (0, "ERROR: $err");
6f4aeba1
DM
540 return;
541 }
542
543 eval {
521dca53 544 PMG::Statistic::update_stats($dbh, $cinfo);
6f4aeba1 545 };
6f4aeba1
DM
546 $err = $@;
547
548 my ($csec_end, $usec_end) = gettimeofday ();
549 my $ptime = int (($csec_end-$csec)*1000 + ($usec_end - $usec)/1000);
550
551 if ($err) {
b902c0b8 552 $self->log (0, $err);
6f4aeba1
DM
553 } else {
554 $self->log (2, "end database maintainance ($ptime ms)");
555 }
556
557 $dbh->disconnect() if $dbh;
558}
559
560
561sub unpack_entity {
562 my ($self, $unpack, $entity, $msginfo, $queue) = @_;
563
564 my $magic;
565 my $path;
566
f62194b2 567 if (($magic = $entity->{PMX_magic_ct}) &&
6f4aeba1
DM
568 ($path = $entity->{PMX_decoded_path})) {
569
570 my $filename = basename ($path);
571
521dca53 572 if (PMG::Unpack::is_archive ($magic)) {
6f4aeba1
DM
573 $self->log (3, "$queue->{logid}: found archive '$filename' ($magic)");
574
575 my $start = [gettimeofday];
576
577 $unpack->{mime} = {};
578
f62194b2
DM
579 eval {
580 $unpack->unpack_archive ($path, $magic);
6f4aeba1
DM
581 };
582
583 $self->log (3, "$queue->{logid}: unpack failed - $@") if $@;
584
585 $entity->{PMX_content_types} = $unpack->{mime};
f62194b2 586
6f4aeba1
DM
587 if ($opt_testmode) {
588 my $types = join (", ", sort keys (%{$entity->{PMX_content_types}}));
589 my $fh = $msginfo->{test_fh};
590 $filename =~ s/\d+/X/g if $filename =~ m/^msg-\d+-\d+.msg/;
591 print $fh "Types:$filename: $types\n" if $types;
592 }
593
594 my $elapsed = int(tv_interval ($start) * 1000);
595
596 $self->log (3, "$queue->{logid}: unpack archive '$filename' done ($elapsed ms)");
597 }
598 }
599
600 foreach my $part ($entity->parts) {
601 $self->unpack_entity ($unpack, $part, $msginfo, $queue);
602 }
603
604}
605
606sub handle_smtp {
607 my ($self, $smtp) = @_;
608
609 my ($csec, $usec) = gettimeofday ();
610
611 my $queue;
612 my $msginfo = {};
f62194b2 613 my $pmg_cfg = $self->{pmg_cfg};
6f4aeba1
DM
614 my $ldap = $self->{ldap};
615 my $cinfo = $self->{cinfo};
616 my $lcid = $cinfo->{local}->{cid};
f62194b2
DM
617
618 $msginfo->{test_fh} = PMG::AtomicFile->new("testresult.out", "w")
6f4aeba1
DM
619 if $opt_testmode;
620
621 $msginfo->{trusted} = $self->{trusted};
622
623
624# PHASE 1 - save incoming mail (already done)
625# on error: exit
626
627 $queue = $smtp->{queue};
628 $queue->{sa} = $self->{sa};
cda67dee
DM
629 $queue->{clamav_heuristic_score} =
630 $opt_testmode ? 100 : $pmg_cfg->get('spam', 'clamav_heuristic_score');
6f4aeba1 631
f62194b2 632 $queue->{lic_valid} = 1;
6f4aeba1
DM
633
634 my $matching_rules;
635
636 eval {
637 $msginfo->{testmode} = $opt_testmode;
638 $msginfo->{sender} = $smtp->{from};
639 $msginfo->{xforward} = $smtp->{xforward};
640 $msginfo->{targets} = $smtp->{to};
641
f62194b2
DM
642 $msginfo->{hostname} = PVE::INotify::nodename();
643 my $resolv = PVE::INotify::read_file('resolvconf');
644
645 $msginfo->{domain} = $resolv->{search};
da14f4e1
ML
646 $msginfo->{fqdn} = $msginfo->{hostname};
647 $msginfo->{fqdn} .= ".$msginfo->{domain}" if $msginfo->{domain};
6f4aeba1 648 $msginfo->{lcid} = $lcid;
f62194b2 649
6f4aeba1
DM
650 # $msginfo->{targets} is case sensitive,
651 # but pmail is always lower case!
652
653 foreach my $t (@{$msginfo->{targets}}) {
654 my $res;
655 if ($ldap && ($res = $ldap->account_info ($t))) {
656 $msginfo->{pmail}->{$t} = $res->{pmail};
657 } else {
658 $msginfo->{pmail}->{$t} = lc ($t);
659 }
660 }
661
662# PHASE 2 - parse mail
663# on error: exit
6f4aeba1 664
f62194b2
DM
665 my $maxfiles = $pmg_cfg->get('clamav', 'archivemaxfiles');
666
667 my $entity = $queue->parse_mail($maxfiles);
6f4aeba1
DM
668
669 $self->log (3, "$queue->{logid}: new mail message-id=%s", $queue->{msgid});
670
671# PHASE 3 - run external content analyzers
672# (SPAM analyzer is run on demand later)
673# on error: log error messages
674
4c4fec6b
SI
675 # run custom script first
676 my ($vinfo, $custom_spaminfo) = PMG::Utils::analyze_custom_check(
f62194b2 677 $queue, $queue->{dataname}, $pmg_cfg, $opt_testmode);
6f4aeba1 678
4c4fec6b
SI
679 # test for virus if none found
680 if (!defined($vinfo)) {
681 $vinfo = PMG::Utils::analyze_virus(
682 $queue, $queue->{dataname}, $pmg_cfg, $opt_testmode);
0d5209bf 683
4c4fec6b
SI
684 if ($vinfo && $vinfo =~ m/^Heuristics\.(.+)$/) {
685 my $hit = $1;
686 $queue->{clamav_heuristic} = $hit;
687 $vinfo = undef;
688 }
689 }
0d5209bf
DM
690 $queue->{vinfo} = $vinfo;
691
6f4aeba1
DM
692 # always add this headers to incoming mails
693 # to enable user to report false negatives
694 if (!$msginfo->{trusted}) {
6f4aeba1
DM
695 if ($queue->{vinfo}) {
696 $entity->head->replace('X-Proxmox-VInfo', $queue->{vinfo});
697 }
6f4aeba1
DM
698 }
699
700 # we unpack after virus scanning, because this is more secure.
701 # This way virus scanners gets the whole mail files and are able
702 # to detect phishing signature for example - which would not work
703 # if we decompose first and only analyze the decomposed attachments.
f62194b2 704 # Disadvantage is that we need to unpack more than
6f4aeba1 705 # once (bad performance).
f62194b2 706
6f4aeba1
DM
707 # should we scan content types inside archives
708
6f4aeba1
DM
709 my $rulecache = $self->{rulecache};
710
711 my $scan_archives = 0;
712
713 if (($rulecache->{archivefilter_in} && !$msginfo->{trusted}) ||
714 ($rulecache->{archivefilter_out} && $msginfo->{trusted})) {
715 $scan_archives = 1;
716 }
717
718 if ($scan_archives && !$queue->{vinfo}) {
719
720 # unpack all archives - determine contained content types
721
722 my $decdir = $queue->{dumpdir} . "/__decoded_archives";
723 mkdir $decdir;
724
725 my $start = [gettimeofday];
f62194b2 726
6f4aeba1
DM
727 my $unpack;
728 eval {
729
730 # limits: We use clamav limit for maxfiles, and scan
731 # only 4 levels, timeout of 30 seconds
732
521dca53
DM
733 $unpack = PMG::Unpack->new (
734 tmpdir => $decdir,
735 timeout => 30,
736 ctonly => 1, # only detect CTs
737 maxrec => -4,
738 maxfiles => $maxfiles);
6f4aeba1 739
f62194b2 740 $self->unpack_entity ($unpack, $entity, $msginfo, $queue);
6f4aeba1
DM
741 };
742
743 my $err = $@;
744
745 $unpack->cleanup() if $unpack;
746
747 my $elapsed = int(tv_interval ($start) * 1000);
748
749 if ($err) {
750 $self->log (3, "$queue->{logid}: unpack archive failed ($elapsed ms) - $err");
751 }
752 }
753
754# PHASE 4 - apply rules
755# on error: exit (cleanup process should do the rest)
f62194b2 756 $msginfo->{maxspamsize} = $pmg_cfg->get('spam', 'maxspamsize');
6f4aeba1
DM
757 if ($msginfo->{maxspamsize} <= 1024*64) {
758 $msginfo->{maxspamsize} = 1024*64;
759 }
760
761 if ($msginfo->{trusted}) {
f62194b2 762 my $hide = $pmg_cfg->get('mail', 'hide_received');
6f4aeba1
DM
763 $entity->head->delete("Received") if $hide;
764 }
765
f62194b2 766 $matching_rules = $self->apply_rules($queue, $msginfo, $entity, $ldap);
6f4aeba1 767 };
f62194b2 768
6f4aeba1
DM
769 my $err = $@;
770
771 $self->{errors} = $queue->{errors};
772
773 # restart on error
774 $self->{errors} = 1 if $err;
775
776 $queue->close ();
777
778 die $err if $err;
779
780 my ($csec_end, $usec_end) = gettimeofday ();
f62194b2 781 my $time_total =
6f4aeba1
DM
782 int (($csec_end-$csec)*1000 + ($usec_end - $usec)/1000);
783
784# PHASE 5 - log statistics
785# on error: log error messages
786
787 eval {
788 my $dbh = $self->{ruledb}->{dbh};
2579281e 789
6f4aeba1
DM
790 my $where = "";
791 foreach my $rid (@$matching_rules) {
792 $where .= $where ? " OR ID = $rid" : "ID = $rid";
793 }
2579281e
DM
794
795 $dbh->do ("UPDATE Rule SET Count = Count + 1 WHERE $where") if $where;
6f4aeba1
DM
796
797 my $insert_cmds = "SELECT nextval ('cstatistic_id_seq');INSERT INTO CStatistic " .
798 "(CID, RID, ID, Time, Bytes, Direction, Spamlevel, VirusInfo, PTime, Sender) VALUES (" .
2579281e 799 "$lcid, currval('cstatistic_id_seq'), currval('cstatistic_id_seq'),";
6f4aeba1
DM
800
801 $insert_cmds .= $queue->{rtime} . ',';
802 $insert_cmds .= $queue->{bytes} . ',';
2579281e 803 $insert_cmds .= $dbh->quote($msginfo->{trusted} ? 0 : 1) . ',';
6f4aeba1 804 $insert_cmds .= ($queue->{sa_score} || 0) . ',';
2579281e 805 $insert_cmds .= $dbh->quote($queue->{vinfo}) . ',';
6f4aeba1 806 $insert_cmds .= $time_total . ',';
2579281e 807 $insert_cmds .= $dbh->quote($msginfo->{sender}) . ');';
6f4aeba1
DM
808
809 foreach my $r (@{$msginfo->{targets}}) {
2579281e 810 my $tmp = $dbh->quote($r);
6f4aeba1
DM
811 my $blocked = $queue->{status}->{$r} eq 'blocked' ? 1 : 0;
812 $insert_cmds .= "INSERT INTO CReceivers (CStatistic_CID, CStatistic_RID, Receiver, Blocked) " .
813 "VALUES ($lcid, currval ('cstatistic_id_seq'), $tmp, '$blocked'); ";
814 }
815
2579281e 816 $dbh->do($insert_cmds);
6f4aeba1 817 };
6f4aeba1
DM
818 # save $err (because log clears $@)
819 $err = $@;
820
821 $time_total = $time_total/1000;
822
823 my $ptspam = ($queue->{ptime_spam} || 0)/1000;
6f4aeba1 824 my $ptclam = ($queue->{ptime_clam} || 0)/1000;
4c4fec6b 825 my $ptcustom = ($queue->{ptime_custom} || 0)/1000;
6f4aeba1 826
4c4fec6b 827 $self->log(3, "$queue->{logid}: processing time: ${time_total} seconds ($ptspam, $ptclam, $ptcustom)");
6f4aeba1
DM
828
829 $msginfo->{test_fh}->close if $opt_testmode;
830
2579281e 831 die $err if $err;
6f4aeba1
DM
832}
833
ab6aa17b 834my $initial_memory_usage;
6f4aeba1
DM
835
836sub process_request {
837 my $self = shift;
838 my $prop = $self->{server};
839 my $sock = $prop->{client};
840
841 eval {
842
843 # make sure the ldap cache is up to date
844 $self->{ldap}->update (1);
845
f62194b2 846 $self->load_config() if $self->{reload_config};
6f4aeba1
DM
847
848 $self->{trusted} = 0;
849 if ($prop->{sockport} == $opt_int_port && !$opt_untrusted) {
850 $self->{trusted} = 1;
851 }
852
521dca53 853 my $smtp = PMG::SMTP->new ($sock);
6f4aeba1
DM
854
855 my $maxcount = $max_requests - $prop->{requests};
856
857 my $count = $smtp->loop (\&handle_smtp, $self, $maxcount);
858 if ($count > 1) {
859 $prop->{requests} += $count - 1;
860 }
861 };
f62194b2 862
6f4aeba1
DM
863 my $err = $@;
864
865 $self->log (0, $err) if $err;
866
24244199 867 kill(15, $prop->{ppid}) if $opt_testmode;
6f4aeba1 868
f62194b2 869 my $mem = PVE::ProcFSTools::read_memory_usage();
ab6aa17b
DM
870 if (!defined($initial_memory_usage) || ($prop->{requests} < 10)) {
871 $initial_memory_usage = $mem->{resident};
872 }
6f4aeba1
DM
873
874 if ($opt_testmode) {
875 $self->log (0, "memory usage: $mem->{size} bytes");
876 } else {
877 if ($self->{errors}) {
878 $self->log (0, "fast exit because of errors (free $mem->{size} bytes)");
879 $self->done (1);
ab6aa17b
DM
880 } else {
881 my $diff = $mem->{resident} - $initial_memory_usage;
882 if ($diff > 5*1024*1024) {
883 $self->log (0, "fast exit to reduce server load (free $diff bytes)");
884 $self->done (1);
885 }
886 }
6f4aeba1
DM
887 }
888
889 $self->done (1) if $err;
890}
891
e646f7ca 892# test sig_hup with: for ((;;)) ;do kill -HUP `cat /var/run/${prog_name}.pid`; done;
6f4aeba1
DM
893# wrapper to avoid multiple calls to sig_hup
894sub sig_hup {
895 my $self = shift;
896 my $prop = $self->{server};
897
898 return if defined ($prop->{_HUP}); # do not call twice
899
900 $self->SUPER::sig_hup();
901}
902
903sub restart_close_hook {
904 my $self = shift;
905
906 my $sig_set = POSIX::SigSet->new;
f62194b2 907 $sig_set->addset (&POSIX::SIGHUP);
6f4aeba1
DM
908 $sig_set->addset (&POSIX::SIGCHLD); # to avoid zombies
909 my $old_sig_set = POSIX::SigSet->new();
910
911 sigprocmask (SIG_BLOCK, $sig_set, $old_sig_set);
912}
913
914sub pre_server_close_hook {
915 my $self = shift;
916 my $prop = $self->{server};
917
918 if (defined $prop->{_HUP}) {
f62194b2 919 undef $prop->{pid_file_unlink};
6f4aeba1
DM
920 }
921
922 if (defined $prop->{children}) {
923 foreach my $pid (keys %{$prop->{children}}) {
924 kill (1, $pid); # HUP childs
925 }
926 }
927
928 # nicely shutdown childs (give them max 30 seconds to shut down)
08f49442 929 my $previous_alarm = alarm(30);
6f4aeba1
DM
930 eval {
931 local $SIG{ALRM} = sub { die "Timed Out!\n" };
f62194b2 932
6f4aeba1
DM
933 my $pid;
934 1 while ((($pid = waitpid (-1, 0)) > 0) || ($! == EINTR));
08f49442
DM
935
936 alarm(0); # avoid race
6f4aeba1
DM
937 };
938 alarm ($previous_alarm);
939}
940
941# initialize mime system before fork
942xdg_mime_get_mime_type_for_file ($0);
943
944my $server = bless {
945 server => $server_attr,
946};
947
948if (!$opt_testmode) {
949 $server->run ();
950} else {
951 if (fork) {
21853580 952 $server->run();
6f4aeba1 953 } else {
21853580 954
f62194b2
DM
955 my $sender ='sender@proxtest.com';
956 my $targets = ['target1@proxtest.com',
6f4aeba1
DM
957 'target2@proxtest.com',
958 'target3@proxtest.com'];
959
21853580
DM
960 my $smtp;
961 while (!$smtp) {
962 $smtp = Net::SMTP->new ('127.0.0.1', Port => 10023);
963 last if $smtp;
964 usleep(10);
965 }
6f4aeba1
DM
966
967 # syslog ('info', "connected to " . $smtp->domain);
968
969 $smtp->mail ($sender);
970 $smtp->to (@$targets);
971
972 $smtp->data();
973
f62194b2
DM
974 open (TMP, $opt_testmode) ||
975 die "unable to upen file '$opt_testmode' - $! :ERROR";
6f4aeba1
DM
976 while (<TMP>) {
977 $smtp->datasend ($_);
978 }
979 close TMP;
980
981 $smtp->datasend ("\n");
982 $smtp->dataend ();
983
984 $smtp->quit;
985 }
986}
987
988exit (0);
989
990__END__
991
992=head1 NAME
f62194b2
DM
993
994pmg-smtp-filter - the Proxmox mail filter
6f4aeba1
DM
995
996=head1 SYNOPSIS
997
f62194b2 998pmg-smtp-filter [-u] [-t testfile]
6f4aeba1
DM
999
1000=head1 DESCRIPTION
1001
1002Documentation is available at www.proxmox.com