ptrd/parse.pl

106 lines
3.0 KiB
Perl
Executable File

#!/usr/bin/env perl
#
use 5.024;
use strict;
use warnings;
use autodie;
use Fcntl qw(:flock);
use File::Basename;
use File::Copy;
use POSIX qw(strftime);
use Net::IP;
my $ipv4_range = new Net::IP("46.23.80.0/20");
my $ipv6_range = new Net::IP("2a03:6000::/29");
my $nsd = "/var/nsd/zones/reverse";
my $v6_zone = "2a03.6000";
my $workdir = dirname($0);
my $serial;
my $serial_prev;
my $zonefile;
opendir my $dh, "${workdir}/records";
while (my $file = readdir $dh) {
chomp $file;
next if $file =~ /^\./;
open my $fh_ptr, '<', "${workdir}/records/$file";
my $replace = <$fh_ptr>;
chomp $replace;
my ($match, $rest) = split(' ', $replace, 2);
close $fh_ptr;
my $ip = new Net::IP($file);
if ($ip->overlaps($ipv4_range)) {
($zonefile = $file) =~ s/^((\d{1,3}\.){3})\d+$/${1}0/;
} elsif ($ip->overlaps($ipv6_range)) {
$zonefile = $v6_zone;
}
if (qx(rlog ${nsd}/${zonefile} | grep 'locked by') =~ m/locked by/) {
_log("$file zone file locked, trying again later...");
next;
} else {
open my $fh_in, '<', "${nsd}/$zonefile";
open my $fh_out, '>', "${workdir}/zonefiles/$zonefile";
while (my $row = <$fh_in>) {
chomp $row;
if ($row =~ m/^\s*(\d+)\s*; serial$/) {
$serial = $serial_prev = $1;
my $timestamp = strftime ("%Y%m%d", localtime()) . "01";
if ($serial < $timestamp) {
$serial = $timestamp;
} else {
$serial++;
}
$row =~ s/${serial_prev}/${serial}/;
}
if ($row =~ m/^${match}\s+IN\s+PTR\s+\S+( ;.*)?$/) {
if ($1) {
my $comment = $1;
$row =~ s/^${match}\s+.*$/${replace}${comment}/;
} else {
$row =~ s/^${match}\s+.*$/${replace}/;
}
}
print $fh_out "$row\n";
}
close $fh_in;
close $fh_out;
(my $diff = qx(diff ${nsd}/${zonefile} ${workdir}/zonefiles/${zonefile} | wc -l)) =~ s/^\s*(.*?)\s*$/$1/;
if ($diff == 8) {
_log("$file diff within limits ($diff), $serial_prev -> $serial");
copy("${nsd}/${zonefile}", "${workdir}/zonefiles-archive/${zonefile}-${serial}");
qx(co -q -l ${nsd}/${zonefile});
copy("${workdir}/zonefiles/${zonefile}", "${nsd}/${zonefile}");
qx(ci -q -u -m"updated for ${file}" ${nsd}/${zonefile});
move("${workdir}/records/${file}", "${workdir}/records-archive/${file}-${serial}");
qx(rcctl reload nsd);
qx(rdist -f /etc/Distfile) if (-r '/etc/Distfile');
open my $fh_email, '|-', '/usr/sbin/sendmail -t';
print $fh_email "To: ptrd\@openbsd.amsterdam\n";
print $fh_email "From: ptrd\@openbsd.amsterdam\n";
print $fh_email "Subject: OpenBSD Amsterdam PTR $zonefile\n";
print $fh_email "Content-Type: text/plain; charset=utf-8\n\n";
print $fh_email "$serial_prev -> $serial\n$file\n$replace\n";
close $fh_email;
} else {
_log("$file diff is outside limits ($diff), cleaning up");
unlink("${workdir}/records/${file}", "${workdir}/zonefiles/${zonefile}");
}
}
}
sub _log {
my ($msg) = @_;
open my $fh, '>>', '/var/log/ptrd.log';
flock $fh, LOCK_EX;
print $fh sprintf("%s %s: %s \n", strftime("%b %d %H:%M:%S", localtime), basename($0), $msg);
close $fh;
}