2014-02-07 20:10:51 +00:00
#!/usr/bin/env perl
2014-02-07 23:52:10 +00:00
# License: 3-Clause BSD. Author: Matthew Connelly.
# This is a (formerly Bash, now Perl) script for managing in-addr.arpa and ip6.arpa zones.
2014-02-07 23:53:26 +00:00
# If you have any questions or issues, open an issue at https://bitbucket.org/MaffC/script-collection/issues
2014-02-07 20:10:51 +00:00
use strict;
use warnings;
2014-02-08 00:58:56 +00:00
package DNS::Reverse::Manager;
2014-02-09 04:14:56 +00:00
use vars '$VERSION'; $VERSION = '1.0.0'; #Version number
2014-02-08 00:58:56 +00:00
2014-02-08 01:02:42 +00:00
use Data::Validate::IP qw(is_public_ipv4 is_public_ipv6); #for validating v4/v6 addresses
use Getopt::Long qw(:config posix_default bundling pass_through); #for intelligently handling cli arguments
2014-02-08 03:28:37 +00:00
use Net::DNS; #for doing forward and reverse lookups
2014-02-08 01:02:42 +00:00
use Net::IP; #for converting IPs to their reverse zones
2014-02-07 23:52:10 +00:00
#conf
2014-02-09 04:14:56 +00:00
my $def_rdns = 'hosted-by.mycompany.com'; #Recomend default is "hosted-by.your-website.tld".
my $def_dns = '8.8.8.8'; #Recommended default is 8.8.8.8 or 4.2.2.1.
my $zone_dir = '/var/named/'; #for cPanel, use /var/named/.
my $zone_ext = ".db"; #Default for most environments is ".db".
2014-02-09 04:56:49 +00:00
my $net_type = "cpanel"; #This was originally written to support cPanel-based DNS environments, and primarily impacts how rdns-manager "syncs".
2014-02-09 10:58:03 +00:00
my $nsd_type = "bind9"; #I might in the future support more than just bind9.
2014-02-07 23:52:10 +00:00
#variables for arguments
2014-02-09 04:14:56 +00:00
my $verify = '';
my $force = '';
my $reset = '';
my $nosync = '';
my $fsync = '';
my $delptr = '';
my $newzone = '';
my $prefixlen = 64;
2014-02-07 23:52:10 +00:00
2014-02-09 08:48:31 +00:00
#other vars
my $made_modifications = '';
2014-02-07 23:52:10 +00:00
#functions
2014-02-08 03:28:37 +00:00
sub nicedie {
2014-02-11 14:09:38 +00:00
print;
print "\n";
2014-02-08 03:28:37 +00:00
exit 1;
}
2014-02-07 23:52:10 +00:00
sub validate_domain {
2014-02-09 10:58:03 +00:00
use Data::Validate::Domain qw(is_domain);
2014-02-07 23:52:10 +00:00
my $domain = shift;
return 1 if is_domain $domain;
return 0;
}
2014-02-08 03:58:00 +00:00
sub validate_ip {
2014-02-07 23:52:10 +00:00
my $ip = shift;
2014-02-08 20:15:47 +00:00
return 1 if is_public_ipv4 $ip or is_public_ipv6 $ip;
2014-02-07 23:52:10 +00:00
return 0;
}
sub get_arpa {
my $ip = shift;
if(is_public_ipv4 $ip) {
$ip =~ m/^([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)$/;
return ($4, "$3.$2.$1.in-addr.arpa");
}
2014-02-08 00:10:22 +00:00
my $len = ($prefixlen/2);
Net::IP->new($ip)->reverse_ip =~ /^(.*)\.(.{$len}ip6\.arpa)\.$/;
2014-02-07 23:52:10 +00:00
return ($1,$2);
}
2014-02-08 03:28:37 +00:00
#TODO make these work for DNS roundrobins. I doubt anyone would be stupid enough to have more than one PTR of the same name
# and i'm not sure if it's even legal, but hey.
sub does_fqdn_match {
my ($fqdn,$ip) = @_;
2014-02-09 04:14:56 +00:00
my $r = Net::DNS::Resolver->new(recurse => 1,tcp_timepit => 5,udp_timeout => 5,nameservers => [$def_dns,]);
2014-02-08 03:28:37 +00:00
my $p = $r->search($fqdn, 'A');
$p = $r->search($fqdn, 'AAAA') unless is_public_ipv4 $ip;
return 0 unless defined $p;
my @res = $p->answer;
2014-02-08 03:58:00 +00:00
#due to IPv6 shortening, we need to use Net::IP here
2014-02-08 20:15:47 +00:00
return 1 unless scalar @res < 1 or Net::IP->new($res[0]->address)->ip ne Net::IP->new($ip)->ip;
2014-02-08 03:28:37 +00:00
return 0;
}
sub confirm_rdns {
my ($fqdn,$ip) = @_;
my ($rec,$zone) = get_arpa $ip;
my $rrec = $rec.".".$zone;
2014-02-09 04:14:56 +00:00
my $r = Net::DNS::Resolver->new(recurse => 1,tcp_timeout => 5,udp_timeout => 5,nameservers => [$def_dns,]);
2014-02-08 03:28:37 +00:00
my $p = $r->search($rrec, 'PTR');
return 0 unless defined $p;
my @res = $p->answer;
2014-02-08 20:15:47 +00:00
return 1 unless scalar @res < 1 or $res[0]->ptrdname."." ne $fqdn;
2014-02-08 03:28:37 +00:00
return 0;
}
2014-02-09 04:14:56 +00:00
sub does_zone_exist {
my $ip = shift;
my ($rec,$zone) = get_arpa $ip;
return -2 if !-e "$zone_dir/$zone$zone_ext";
return -1 if -z "$zone_dir/$zone$zone_ext";
return 0 if !-w "$zone_dir/$zone$zone_ext";
return 1;
}
sub get_zone_array {
2014-02-09 10:58:03 +00:00
use Net::DNS::ZoneFile;
2014-02-09 04:14:56 +00:00
#returns 1 on record exists, 0 on record doesn't exist, -1 on zone exists but isn't writeable, -2 on file exists but isn't a zone, -3 on file doesn't exist
my $ip = shift;
my ($rec,$zone) = get_arpa $ip;
return unless does_zone_exist $ip;
2014-02-11 14:32:30 +00:00
my $zf = new Net::DNS::ZoneFile("$zone_dir/$zone$zone_ext", $zone);
2014-02-09 04:14:56 +00:00
my @z = $zf->read;
return @z;
}
sub does_record_exist {
my $ip = shift;
my ($rec,$zone) = get_arpa $ip;
my @z = get_zone_array $ip;
2014-02-09 04:56:49 +00:00
return 0 unless @z;
2014-02-09 08:48:31 +00:00
#I imagine this might be grossly inefficient on large zones (such as fully-populated IPv6 zones).
2014-02-09 04:14:56 +00:00
foreach(@z) {
return 1 if $_->name eq "$rec.$zone";
}
return 0;
}
2014-02-09 08:48:31 +00:00
sub generate_soa_serial {
2014-02-09 10:58:03 +00:00
use POSIX qw(strftime);
2014-02-09 08:48:31 +00:00
my $cur_serial = shift;
my $yyyymmdd = strftime "%Y%m%d", localtime;
return $cur_serial+1 if $cur_serial =~ /^$yyyymmdd[0-9]{2}$/;
return $yyyymmdd."00";
}
sub write_zone {
2014-02-09 10:53:13 +00:00
use File::Copy qw(copy);
use Net::DNS::ZoneParse qw(writezone);
2014-02-09 08:48:31 +00:00
my $zone = shift;
2014-02-09 10:22:06 +00:00
my @z = @_;
foreach(@z) {$_->serial(generate_soa_serial $_->serial) if $_->type eq "SOA";} #update SOA
2014-02-09 10:53:13 +00:00
copy "$zone_dir$zone$zone_ext", "$zone_dir$zone$zone_ext.bak" or print "Warning: Couldn't create a backup of the zone $zone.\n";
2014-02-09 08:48:31 +00:00
open ZONE, ">$zone_dir$zone$zone_ext" or nicedie "Failed to open zonefile for $zone for writing!";
2014-02-09 10:53:13 +00:00
print ZONE writezone @z;
2014-02-09 08:48:31 +00:00
close ZONE or nicedie "Seemingly failed to close $zone$zone_ext, cowardly quitting here.";
}
2014-02-09 09:22:23 +00:00
sub del_ptr {
#I'm so sorry
my $rec = shift;
sub is_match {
my ($rr,$rec) = @_;
return 1 unless $rr->name eq $rec;
return 0;
}
2014-02-09 10:22:06 +00:00
$made_modifications = 1;
2014-02-09 09:22:23 +00:00
write_zone $rec,grep {&is_match(($_,$rec))} @_;
}
sub add_ptr {
my ($ip,$fqdn) = @_;
my ($rec,$zone) = get_arpa $ip;
my @z = get_zone_array $ip;
my $new_rr = Net::DNS::RR->new("$rec.$zone. 3600 IN PTR $fqdn");
push @z,$new_rr;
2014-02-09 10:22:06 +00:00
$made_modifications = 1;
2014-02-09 09:22:23 +00:00
write_zone $zone,@z;
}
sub get_ptr {
2014-02-08 03:28:37 +00:00
my $ip = shift;
2014-02-09 04:14:56 +00:00
return unless does_record_exist $ip;
my ($rec,$zone) = get_arpa $ip;
my @z = get_zone_array $ip;
2014-02-09 08:48:31 +00:00
#More inefficient to repeat the same operation twice even.
2014-02-09 04:14:56 +00:00
foreach(@z) {
2014-02-09 04:56:49 +00:00
return $_->ptrdname if $_->name eq "$rec.$zone";
2014-02-09 04:14:56 +00:00
}
2014-02-09 08:48:31 +00:00
return;
2014-02-08 03:28:37 +00:00
}
2014-02-09 09:22:23 +00:00
sub set_ptr {
2014-02-09 04:14:56 +00:00
my ($ip,$fqdn) = @_;
2014-02-09 10:22:06 +00:00
return add_ptr $ip,$fqdn unless does_record_exist $ip;
2014-02-08 03:28:37 +00:00
my ($record,$zone) = get_arpa $ip;
2014-02-09 08:48:31 +00:00
my @z = get_zone_array $ip;
foreach(@z) {
$_->ptrdname($fqdn) if $_->name eq "$record.$zone";
}
$made_modifications = 1;
write_zone $zone,@z;
2014-02-08 03:28:37 +00:00
return 1;
}
sub sync_cpanel {
2014-02-09 11:05:03 +00:00
my $zone = shift;
my $syncscript = "/scripts/dnscluster synczone";
`$syncscript $zone`;
return $?;
2014-02-07 23:52:10 +00:00
}
2014-02-09 08:48:31 +00:00
sub do_sync {
my $ip = shift;
my ($rec,$zone) = get_arpa $ip;
2014-02-09 10:22:06 +00:00
my $res = '';
print "Syncing zone $zone... ";
2014-02-11 14:04:55 +00:00
nicedie "Couldn't sync $zone: Don't have a known sync method for network type $net_type." unless $net_type eq "cpanel";
$res = sync_cpanel $zone if $net_type eq "cpanel";
2014-02-11 15:07:13 +00:00
print (($res == 0) ? "Synchronised\n" : "Failed\n");
2014-02-09 08:48:31 +00:00
}
2014-02-07 23:52:10 +00:00
#main
2014-02-08 03:28:37 +00:00
#do argument parsing. all unknown arguments get left in @ARGV so I can `shift`.
2014-02-08 00:58:56 +00:00
GetOptions
2014-02-08 03:28:37 +00:00
'reset-hostname=s' => \$def_rdns,
2014-02-07 23:52:10 +00:00
'dns-server=s' => \$def_dns,
2014-02-08 03:28:37 +00:00
'v|verify-rdns' => \$verify,
2014-02-07 23:52:10 +00:00
'f|force' => \$force,
'r|reset' => \$reset,
2014-02-08 03:28:37 +00:00
'p|populate' => \$newzone,
2014-02-07 23:52:10 +00:00
'd|no-sync' => \$nosync,
's|force-sync' => \$fsync,
2014-02-08 00:58:56 +00:00
'R|remove-ptr' => \$delptr;
2014-02-07 20:10:51 +00:00
2014-02-08 00:58:56 +00:00
#get IP and domain, validate.
2014-02-07 23:52:10 +00:00
my $ip = shift or nicedie "No IP given!";
2014-02-08 00:58:56 +00:00
$prefixlen = $1 if $ip =~ s/\/([0-9]+)//; #split off prefixlen (if given) into variable for later use
2014-02-08 03:58:00 +00:00
nicedie "Invalid IP address '$ip'!" unless validate_ip $ip;
2014-02-09 04:56:49 +00:00
my $domain = shift;
2014-02-08 20:15:47 +00:00
nicedie "Invalid FQDN '$domain'!" if defined $domain and !validate_domain $domain;
2014-02-09 04:56:49 +00:00
$domain =~ s/([a-zA-Z])$/$1./ if defined $domain; #Append final period if it doesn't exist
2014-02-08 03:58:00 +00:00
2014-02-09 08:48:31 +00:00
#Main program flow
2014-02-09 10:22:06 +00:00
#Argument intelligence. Omitting this probably won't impact program flow much but it's important that the user know they're stupid.
2014-02-09 08:48:31 +00:00
nicedie "You seem to have specified both --no-sync and --force-sync. Please make your mind up." if $nosync and $fsync;
2014-02-09 10:58:03 +00:00
nicedie "You seem to have specified some combination of --reset, --remove-ptr and --force. Please make your mind up." if ($reset and $delptr) or (($reset or $delptr) and $force);
2014-02-09 10:22:06 +00:00
nicedie "You seem to have specified arguments that don't make sense together. Please make your mind up." if ($newzone and ($delptr or $reset or $force)) or ($verify and !defined $domain) or (defined $domain and ($newzone or $delptr or $reset));
2014-02-11 14:04:55 +00:00
#Simple check that the zone exists. This was a for/when statement, but this script needs perl 5.8.8 compat, so for/given and when are out.
my ($trec,$tz) = get_arpa $ip;
nicedie "Authoritative zone for IP $ip doesn't exist! Please create zone $tz or ensure you specified the correct subnet mask if this is an IPv6 address!" if does_zone_exist($ip) == -2;
nicedie "Zonefile $tz (supposedly authoritative for $ip) doesn't appear to be a valid BIND zone. Please check the zonefile and try again." if does_zone_exist($ip) == -1;
nicedie "Authoritative zone for IP $ip exists but we can't write to it. Please check the permissions on the zonefile for $tz." if !does_zone_exist($ip);
2014-02-09 10:22:06 +00:00
if(!defined $domain and $reset) {
set_ptr $ip,$def_rdns or nicedie "Failed to set rDNS for $ip to '$def_rdns'!";
2014-02-11 15:03:05 +00:00
print "rDNS set.\n";
2014-02-09 10:22:06 +00:00
} elsif(!defined $domain and $delptr) {
del_ptr $ip or nicedie "Failed to delete PTR record for $ip!";
2014-02-11 14:04:55 +00:00
print "PTR record for IP $ip deleted.\n";exit;
2014-02-09 10:22:06 +00:00
} elsif(!defined $domain and $newzone) {
nicedie "Sorry, but the zone population functionality isn't yet written.";
} elsif(!defined $domain) {
2014-02-11 14:04:55 +00:00
print "No rDNS record for IP $ip exists.\n" and exit unless does_record_exist $ip;
print "rDNS for IP $ip: ".get_ptr $ip;print "\n";exit;
2014-02-09 10:22:06 +00:00
}
if(defined $domain) {
2014-02-11 14:42:27 +00:00
nicedie "Forward DNS for $domain doesn't match $ip!" unless $force or does_fqdn_match $domain, $ip;
2014-02-09 10:22:06 +00:00
set_ptr $ip,$domain or nicedie "Failed to set rDNS for $ip to '$domain'!";
2014-02-11 15:03:05 +00:00
print "rDNS set.\n";
2014-02-09 10:22:06 +00:00
}
do_sync $ip if (($made_modifications and !$nosync) or $fsync);
2014-02-11 15:13:31 +00:00
#very ugly, needs rewritten
if(defined $domain) {
2014-02-11 15:14:40 +00:00
print ((confirm_rdns $domain, $ip) ? "rDNS for IP $ip was successfully set to $domain" : "rDNS for IP $ip not yet resolving to $domain (check later with: host $ip)") if $verify;
2014-02-11 15:13:31 +00:00
} else {
2014-02-11 15:14:40 +00:00
print ((confirm_rdns $def_rdns, $ip) ? "rDNS for IP $ip was successfully set to $def_rdns" : "rDNS for IP $ip not yet resolving to $def_rdns (check later with: host $ip)") if $verify;
2014-02-11 15:13:31 +00:00
}
print "\n";