]> git.proxmox.com Git - pmg-api.git/blobdiff - PMG/Cluster.pm
reload postfix instead of restart on config change
[pmg-api.git] / PMG / Cluster.pm
index cca6934260c04ff6e14b315eb9d5f249173edcf6..319a45bb388aed65cc403a45c79421dd880eaf3b 100644 (file)
@@ -10,6 +10,7 @@ use Time::HiRes qw (gettimeofday tv_interval);
 use PVE::SafeSyslog;
 use PVE::Tools;
 use PVE::INotify;
+use PVE::APIClient::LWP;
 
 use PMG::Utils;
 use PMG::Config;
@@ -17,7 +18,7 @@ use PMG::ClusterConfig;
 use PMG::RuleDB;
 use PMG::RuleCache;
 use PMG::MailQueue;
-use PVE::APIClient::LWP;
+use PMG::Fetchmail;
 
 sub remote_node_ip {
     my ($nodename, $noerr) = @_;
@@ -195,15 +196,22 @@ my $ssh_rsa_id = "/root/.ssh/id_rsa.pub";
 sub update_ssh_keys {
     my ($cinfo) = @_;
 
+    my $old = '';
     my $data = '';
+
     foreach my $node (values %{$cinfo->{ids}}) {
        $data .= "$node->{ip} ssh-rsa $node->{hostrsapubkey}\n";
        $data .= "$node->{name} ssh-rsa $node->{hostrsapubkey}\n";
     }
 
-    PVE::Tools::file_set_contents($sshglobalknownhosts, $data);
+    $old = PVE::Tools::file_get_contents($sshglobalknownhosts, 1024*1024)
+       if -f $sshglobalknownhosts;
+
+    PVE::Tools::file_set_contents($sshglobalknownhosts, $data)
+       if $old ne $data;
 
     $data = '';
+    $old = '';
 
     # always add ourself
     if (-f $ssh_rsa_id) {
@@ -232,7 +240,11 @@ sub update_ssh_keys {
        $newdata .= "$line\n";
     }
 
-    PVE::Tools::file_set_contents($rootsshauthkeys, $newdata, 0600);
+    $old = PVE::Tools::file_get_contents($rootsshauthkeys, 1024*1024)
+       if -f $rootsshauthkeys;
+
+    PVE::Tools::file_set_contents($rootsshauthkeys, $newdata, 0600)
+       if $old ne $newdata;
 }
 
 my $cfgdir = '/etc/pmg';
@@ -256,6 +268,9 @@ my $cond_commit_synced_file = sub {
        return 0 if $new eq $old;
     }
 
+    # set mtime (touch) to avoid time drift problems
+    utime(undef, undef, $srcfn);
+
     rename($srcfn, $dstfn) ||
        die "cond_rename_file '$filename' failed - $!\n";
 
@@ -276,12 +291,16 @@ my $rsync_command = sub {
 };
 
 sub sync_quarantine_files {
-    my ($host_ip, $host_name, $flistname) = @_;
+    my ($host_ip, $host_name, $flistname, $rcid) = @_;
 
     my $spooldir = $PMG::MailQueue::spooldir;
 
+    mkdir "$spooldir/cluster/";
+    my $syncdir = "$spooldir/cluster/$rcid";
+    mkdir $syncdir;
+
     my $cmd = $rsync_command->(
-       $host_name, '--timeout', '10', "${host_ip}:$spooldir", $spooldir,
+       $host_name, '--timeout', '10', "[${host_ip}]:$spooldir", $spooldir,
        '--files-from', $flistname);
 
     PVE::Tools::run_command($cmd);
@@ -297,7 +316,7 @@ sub sync_spooldir {
     mkdir $syncdir;
 
     my $cmd = $rsync_command->(
-       $host_name, '-aq', '--timeout', '10', "${host_ip}:$syncdir/", $syncdir);
+       $host_name, '-aq', '--timeout', '10', "[${host_ip}]:$syncdir/", $syncdir);
 
     foreach my $incl (('spam/', 'spam/*', 'spam/*/*', 'virus/', 'virus/*', 'virus/*/*')) {
        push @$cmd, '--include', $incl;
@@ -317,7 +336,7 @@ sub sync_master_quar {
     mkdir $syncdir;
 
     my $cmd = $rsync_command->(
-       $host_name, '-aq', '--timeout', '10', "${host_ip}:$syncdir", $syncdir);
+       $host_name, '-aq', '--timeout', '10', "[${host_ip}]:$syncdir", $syncdir);
 
     PVE::Tools::run_command($cmd);
 }
@@ -332,9 +351,10 @@ sub sync_config_from_master {
     my $sa_custom_cf = "custom.cf";
 
     my $cmd = $rsync_command->(
-       $master_name, '-lpgoq',
-       "${master_ip}:$cfgdir/* ${sa_conf_dir}/${sa_custom_cf}",
+       $master_name, '-aq',
+       "[${master_ip}]:$cfgdir/* ${sa_conf_dir}/${sa_custom_cf}",
        "$syncdir/",
+       '--exclude', 'master/',
        '--exclude', '*~',
        '--exclude', '*.db',
        '--exclude', 'pmg-api.pem',
@@ -363,18 +383,28 @@ sub sync_config_from_master {
 
     $cond_commit_synced_file->('cluster.conf');
 
+    update_ssh_keys($cinfo); # rewrite ssh keys
+
+    PMG::Fetchmail::update_fetchmail_default(0); # disable on slave
+
     my $files = [
        'pmg-authkey.key',
        'pmg-authkey.pub',
        'pmg-csrf.key',
        'ldap.conf',
        'user.conf',
+       'domains',
+       'mynetworks',
+       'transport',
+       'tls_policy',
+       'fetchmailrc',
        ];
 
     foreach my $filename (@$files) {
        $cond_commit_synced_file->($filename);
     }
 
+
     my $force_restart = {};
 
     if ($cond_commit_synced_file->($sa_custom_cf, "${sa_conf_dir}/${sa_custom_cf}")) {
@@ -383,9 +413,33 @@ sub sync_config_from_master {
 
     $cond_commit_synced_file->('pmg.conf');
 
-    my $cfg = PMG::Config->new();
-
-    $cfg->rewrite_config(1, $force_restart);
+    # sync user templates files/symlinks (not recursive)
+    my $srcdir = "$syncdir/templates";
+    if (-d $srcdir) {
+       my $dstdir = "$cfgdir/templates";
+       mkdir $dstdir;
+       my $names_hash = {};
+       foreach my $fn (<$srcdir/*>) {
+           next if $fn !~ m|^($srcdir/(.*))$|;
+           $fn = $1; # untaint;
+           my $name = $2;
+           $names_hash->{$name} = 1;
+           my $target = "$dstdir/$name";
+           if (-f $fn) {
+               $cond_commit_synced_file->("templates/$name", $target);
+           } elsif (-l $fn) {
+               warn "update $target failed - $!\n" if !rename($fn, $target);
+           }
+       }
+       # remove vanished files
+       foreach my $fn (<$dstdir/*>) {
+           next if $fn !~ m|^($dstdir/(.*))$|;
+           $fn = $1; # untaint;
+           my $name = $2;
+           next if $names_hash->{$name};
+           warn "unlink $fn failed - $!\n" if !unlink($fn);
+       }
+    }
 }
 
 sub sync_ruledb_from_master {
@@ -492,7 +546,10 @@ sub sync_quarantine_db {
            my $callback = sub {
                my $ref = shift;
                $maxid = $ref->{rid};
-               print $flistfh "$ref->{file}\n";
+               my $filename = $ref->{file};
+                # skip files generated before cluster was created
+               return if $filename !~ m!^cluster/!;
+               print $flistfh "$filename\n";
            };
 
            my $attrs = [qw(cid rid time qtype bytes spamlevel info sender header file)];
@@ -501,7 +558,7 @@ sub sync_quarantine_db {
            close($flistfh);
 
            my $starttime = [ gettimeofday() ];
-           sync_quarantine_files($ni->{ip}, $ni->{name}, $flistname);
+           sync_quarantine_files($ni->{ip}, $ni->{name}, $flistname, $rcid);
            $$rsynctime_ref += tv_interval($starttime);
 
            if ($maxid) {
@@ -532,9 +589,7 @@ sub sync_quarantine_db {
 
        $mscount += $count;
 
-       last if $mscount >= $maxmails;
-
-    } while ($count >= $maxcount);
+    } while (($count >= $maxcount) && ($mscount < $maxmails));
 
     PMG::DBTools::create_clusterinfo_default($ldb, $rcid, 'lastmt_CMSReceivers', 0, undef);
 
@@ -548,10 +603,10 @@ sub sync_quarantine_db {
 
        my $update_sth = $ldb->prepare(
            "UPDATE CMSReceivers SET status = ? WHERE " .
-           "CMailstore_CID = ? AND CMailstore_RID = ? AND PMail = ?;");
+           "CMailstore_CID = ? AND CMailstore_RID = ? AND TicketID = ?");
        while (my $ref = $sth->fetchrow_hashref()) {
            $update_sth->execute($ref->{status}, $ref->{cmailstore_cid},
-                                $ref->{cmailstore_rid}, $ref->{pmail});
+                                $ref->{cmailstore_rid}, $ref->{ticketid});
        }
 
        PMG::DBTools::write_maxint_clusterinfo($ldb, $rcid, 'lastmt_CMSReceivers', $ctime);
@@ -619,10 +674,10 @@ sub sync_statistic_db {
 
                $attrs = [qw(cstatistic_cid cstatistic_rid blocked receiver)];
                PMG::DBTools::copy_selected_data($ldb, $sth, 'CReceivers', $attrs);
-
-               PMG::DBTools::write_maxint_clusterinfo ($ldb, $rcid, 'lastid_CStatistic', $maxid);
            }
 
+           PMG::DBTools::write_maxint_clusterinfo ($ldb, $rcid, 'lastid_CStatistic', $maxid);
+
            $ldb->commit;
        };
        if (my $err = $@) {
@@ -632,16 +687,14 @@ sub sync_statistic_db {
 
        $mscount += $count;
 
-       last if $mscount >= $maxmails;
+    } while (($count >= $maxcount) && ($mscount < $maxmails));
 
-    } while ($count >= $maxcount);
+    return $mscount;
 }
 
-sub sync_generic_mtime_db {
+my $sync_generic_mtime_db = sub {
     my ($ldb, $rdb, $ni, $table, $selectfunc, $mergefunc) = @_;
 
-    my ($cnew, $cold) = (0, 0);
-
     my $ctime = PMG::DBTools::get_remote_time($rdb);
 
     PMG::DBTools::create_clusterinfo_default($ldb, $ni->{cid}, "lastmt_$table", 0, undef);
@@ -654,19 +707,23 @@ sub sync_generic_mtime_db {
 
     $sth->execute();
 
+    my $updates = 0;
+
     eval {
        # use transaction to speedup things
        my $max = 1000; # UPDATE MAX ENTRIES AT ONCE
-       $ldb->begin_work;
        my $count = 0;
        while (my $ref = $sth->fetchrow_hashref()) {
+           $ldb->begin_work if !$count;
+           $mergefunc->($ref);
            if (++$count >= $max) {
                $count = 0;
                $ldb->commit;
-               $ldb->begin_work;
            }
-           $mergefunc->($ldb, $ref, \$cnew, \$cold);
+           $updates++;
        }
+
+       $ldb->commit if $count;
     };
     if (my $err = $@) {
        $ldb->rollback;
@@ -675,7 +732,32 @@ sub sync_generic_mtime_db {
 
     PMG::DBTools::write_maxint_clusterinfo($ldb, $ni->{cid}, "lastmt_$table", $ctime);
 
-    return ($cnew, $cold);
+    return $updates;
+};
+
+sub sync_localstat_db {
+    my ($dbh, $rdb, $ni) = @_;
+
+    my $rcid = $ni->{cid};
+
+    my $selectfunc = sub {
+       my ($ctime, $lastmt) = @_;
+       return "SELECT * from LocalStat WHERE mtime >= $lastmt AND cid = $rcid";
+    };
+
+    my $merge_sth = $dbh->prepare(
+       'INSERT INTO LocalStat (Time, RBLCount, PregreetCount, CID, MTime) ' .
+       'VALUES (?, ?, ?, ?, ?) ' .
+       'ON CONFLICT (Time, CID) DO UPDATE SET ' .
+       'RBLCount = excluded.RBLCount, PregreetCount = excluded.PregreetCount, MTime = excluded.MTime');
+
+    my $mergefunc = sub {
+       my ($ref) = @_;
+
+       $merge_sth->execute($ref->{time}, $ref->{rblcount}, $ref->{pregreetcount}, $ref->{cid}, $ref->{mtime});
+    };
+
+    return $sync_generic_mtime_db->($dbh, $rdb, $ni, 'LocalStat', $selectfunc, $mergefunc);
 }
 
 sub sync_greylist_db {
@@ -687,29 +769,17 @@ sub sync_greylist_db {
            "mtime >= $lastmt AND CID != 0";
     };
 
-    my $merge_sth = $dbh->prepare(
-       "SELECT merge_greylist(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) AS newcount");
-
+    my $merge_sth = $dbh->prepare($PMG::DBTools::cgreylist_merge_sql);
     my $mergefunc = sub {
-       my ($ldb, $ref, $cnewref, $coldref) = @_;
+       my ($ref) = @_;
 
        $merge_sth->execute(
            $ref->{ipnet}, $ref->{host}, $ref->{sender}, $ref->{receiver},
            $ref->{instance}, $ref->{rctime}, $ref->{extime}, $ref->{delay},
            $ref->{blocked}, $ref->{passed}, 0, $ref->{cid});
-
-       my $res = $merge_sth->fetchrow_hashref();
-
-       $merge_sth->finish();
-
-       if ($res->{newcount}) {
-           $$cnewref++;
-       } else {
-           $$coldref++;
-       }
     };
 
-    return sync_generic_mtime_db($dbh, $rdb, $ni, 'CGreylist', $selectfunc, $mergefunc);
+    return $sync_generic_mtime_db->($dbh, $rdb, $ni, 'CGreylist', $selectfunc, $mergefunc);
 }
 
 sub sync_userprefs_db {
@@ -723,20 +793,19 @@ sub sync_userprefs_db {
 
     my $merge_sth = $dbh->prepare(
        "INSERT INTO UserPrefs (PMail, Name, Data, MTime) " .
-       'VALUES (?, ?, ?, 0) ' .
+       'VALUES (?, ?, ?, ?) ' .
        'ON CONFLICT (PMail, Name) DO UPDATE SET ' .
        # Note: MTime = 0 ==> this is just a copy from somewhere else, not modified
-       'MTime = CASE WHEN excluded.MTime >= UserPrefs.MTime THEN 0 ELSE UserPrefs.MTime END');
+       'MTime = CASE WHEN excluded.MTime >= UserPrefs.MTime THEN 0 ELSE UserPrefs.MTime END, ' .
        'Data = CASE WHEN excluded.MTime >= UserPrefs.MTime THEN excluded.Data ELSE UserPrefs.Data END');
 
     my $mergefunc = sub {
-       my ($ldb, $ref, $cnewref, $coldref) = @_;
+       my ($ref) = @_;
 
-       $merge_sth->execute($ref->{pmail}, $ref->{name}, $ref->{data});
-       $$coldref++;
+       $merge_sth->execute($ref->{pmail}, $ref->{name}, $ref->{data}, $ref->{mtime});
     };
 
-    return sync_generic_mtime_db($dbh, $rdb, $ni, 'UserPrefs', $selectfunc, $mergefunc);
+    return $sync_generic_mtime_db->($dbh, $rdb, $ni, 'UserPrefs', $selectfunc, $mergefunc);
 }
 
 sub sync_domainstat_db {
@@ -761,7 +830,7 @@ sub sync_domainstat_db {
        'PTimeSum = excluded.PTimeSum, MTime = excluded.MTime');
 
     my $mergefunc = sub {
-       my ($ldb, $ref, $cnewref, $coldref) = @_;
+       my ($ref) = @_;
 
        $merge_sth->execute(
            $ref->{time}, $ref->{domain}, $ref->{countin}, $ref->{countout},
@@ -770,7 +839,7 @@ sub sync_domainstat_db {
            $ref->{bouncesin}, $ref->{bouncesout}, $ref->{ptimesum}, $ref->{mtime});
     };
 
-    return sync_generic_mtime_db($dbh, $rdb, $ni, 'DomainStat', $selectfunc, $mergefunc);
+    return $sync_generic_mtime_db->($dbh, $rdb, $ni, 'DomainStat', $selectfunc, $mergefunc);
 }
 
 sub sync_dailystat_db {
@@ -797,7 +866,7 @@ sub sync_dailystat_db {
        'PTimeSum = excluded.PTimeSum, MTime = excluded.MTime');
 
     my $mergefunc = sub {
-       my ($ldb, $ref, $cnewref, $coldref) = @_;
+       my ($ref) = @_;
 
        $merge_sth->execute(
            $ref->{time}, $ref->{countin}, $ref->{countout},
@@ -807,7 +876,7 @@ sub sync_dailystat_db {
            $ref->{spfcount}, $ref->{rblcount}, $ref->{ptimesum}, $ref->{mtime});
     };
 
-    return sync_generic_mtime_db($dbh, $rdb, $ni, 'DailyStat', $selectfunc, $mergefunc);
+    return $sync_generic_mtime_db->($dbh, $rdb, $ni, 'DailyStat', $selectfunc, $mergefunc);
 }
 
 sub sync_virusinfo_db {
@@ -818,30 +887,19 @@ sub sync_virusinfo_db {
        return "SELECT * from VirusInfo WHERE mtime >= $lastmt";
     };
 
-    my $mergefunc = sub {
-       my ($ldb, $ref, $cnewref, $coldref) = @_;
-
-       my $sth = $ldb->prepare(
-           "UPDATE VirusInfo SET Count = ? , MTime = ? " .
-           "WHERE Time = ? AND Name = ?");
-
-       $sth->execute($ref->{count}, $ref->{mtime}, $ref->{time}, $ref->{name});
-
-       my $rows = $sth->rows;
+    my $merge_sth = $dbh->prepare(
+       'INSERT INTO VirusInfo (Time,Name,Count,MTime) ' .
+       'VALUES (?,?,?,?) ' .
+       'ON CONFLICT (Time,Name) DO UPDATE SET ' .
+       'Count = excluded.Count , MTime = excluded.MTime');
 
-       $sth->finish ();
+    my $mergefunc = sub {
+       my ($ref) = @_;
 
-       if ($rows) {
-           $$coldref++;
-       } else {
-           $ldb->do ("INSERT INTO VirusInfo (Time,Name,Count,MTime) " .
-                     "VALUES (?,?,?,?)", undef,
-                     $ref->{time}, $ref->{name}, $ref->{count}, $ref->{mtime});
-           $$cnewref++;
-       }
+       $merge_sth->execute($ref->{time}, $ref->{name}, $ref->{count}, $ref->{mtime});
     };
 
-    return sync_generic_mtime_db($dbh, $rdb, $ni, 'VirusInfo', $selectfunc, $mergefunc);
+    return $sync_generic_mtime_db->($dbh, $rdb, $ni, 'VirusInfo', $selectfunc, $mergefunc);
 }
 
 sub sync_deleted_nodes_from_master {