[2] | 1 | # dns/trunk/DNSDB.pm
|
---|
| 2 | # Abstraction functions for DNS administration
|
---|
[262] | 3 | ##
|
---|
| 4 | # $Id: DNSDB.pm 501 2013-05-07 15:00:46Z kdeugau $
|
---|
[496] | 5 | # Copyright 2008-2013 Kris Deugau <kdeugau@deepnet.cx>
|
---|
[262] | 6 | #
|
---|
| 7 | # This program is free software: you can redistribute it and/or modify
|
---|
| 8 | # it under the terms of the GNU General Public License as published by
|
---|
| 9 | # the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | # (at your option) any later version.
|
---|
| 11 | #
|
---|
| 12 | # This program is distributed in the hope that it will be useful,
|
---|
| 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | # GNU General Public License for more details.
|
---|
| 16 | #
|
---|
| 17 | # You should have received a copy of the GNU General Public License
|
---|
| 18 | # along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | ##
|
---|
[2] | 20 |
|
---|
| 21 | package DNSDB;
|
---|
| 22 |
|
---|
| 23 | use strict;
|
---|
| 24 | use warnings;
|
---|
| 25 | use Exporter;
|
---|
| 26 | use DBI;
|
---|
[33] | 27 | use Net::DNS;
|
---|
[65] | 28 | use Crypt::PasswdMD5;
|
---|
[198] | 29 | use Net::SMTP;
|
---|
[226] | 30 | use NetAddr::IP qw(:lower);
|
---|
[198] | 31 | use POSIX;
|
---|
[368] | 32 | use Fcntl qw(:flock);
|
---|
| 33 |
|
---|
[2] | 34 | use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
|
---|
| 35 |
|
---|
[321] | 36 | $VERSION = 1.1; ##VERSION##
|
---|
[2] | 37 | @ISA = qw(Exporter);
|
---|
| 38 | @EXPORT_OK = qw(
|
---|
[279] | 39 | &initGlobals &login &initActionLog
|
---|
[489] | 40 | &getPermissions &changePermissions &comparePermissions
|
---|
[112] | 41 | &changeGroup
|
---|
[128] | 42 | &loadConfig &connectDB &finish
|
---|
[276] | 43 | &addDomain &delZone &domainName &revName &domainID &revID &addRDNS
|
---|
[383] | 44 | &getZoneCount &getZoneList &getZoneLocation
|
---|
[22] | 45 | &addGroup &delGroup &getChildren &groupName
|
---|
[314] | 46 | &getGroupCount &getGroupList
|
---|
[83] | 47 | &addUser &updateUser &delUser &userFullName &userStatus &getUserData
|
---|
[326] | 48 | &getUserCount &getUserList &getUserDropdown
|
---|
[375] | 49 | &addLoc &updateLoc &delLoc &getLoc
|
---|
[370] | 50 | &getLocCount &getLocList &getLocDropdown
|
---|
[495] | 51 | &getSOA &updateSOA &getRecLine &getRecList &getRecCount
|
---|
[22] | 52 | &addRec &updateRec &delRec
|
---|
[323] | 53 | &getLogCount &getLogEntries
|
---|
[452] | 54 | &getRevPattern
|
---|
[225] | 55 | &getTypelist
|
---|
[254] | 56 | &parentID
|
---|
[117] | 57 | &isParent
|
---|
[452] | 58 | &zoneStatus &getZonesByCIDR &importAXFR
|
---|
[103] | 59 | &export
|
---|
[197] | 60 | &mailNotify
|
---|
[128] | 61 | %typemap %reverse_typemap %config
|
---|
[489] | 62 | @permtypes $permlist %permchains
|
---|
[2] | 63 | );
|
---|
| 64 |
|
---|
[489] | 65 | @EXPORT = qw(%typemap %reverse_typemap @permtypes $permlist %permchains);
|
---|
[2] | 66 | %EXPORT_TAGS = ( ALL => [qw(
|
---|
[279] | 67 | &initGlobals &login &initActionLog
|
---|
[489] | 68 | &getPermissions &changePermissions &comparePermissions
|
---|
[112] | 69 | &changeGroup
|
---|
[128] | 70 | &loadConfig &connectDB &finish
|
---|
[276] | 71 | &addDomain &delZone &domainName &revName &domainID &revID &addRDNS
|
---|
[383] | 72 | &getZoneCount &getZoneList &getZoneLocation
|
---|
[22] | 73 | &addGroup &delGroup &getChildren &groupName
|
---|
[314] | 74 | &getGroupCount &getGroupList
|
---|
[83] | 75 | &addUser &updateUser &delUser &userFullName &userStatus &getUserData
|
---|
[326] | 76 | &getUserCount &getUserList &getUserDropdown
|
---|
[375] | 77 | &addLoc &updateLoc &delLoc &getLoc
|
---|
[370] | 78 | &getLocCount &getLocList &getLocDropdown
|
---|
[495] | 79 | &getSOA &updateSOA &getRecLine &getRecList &getRecCount
|
---|
[22] | 80 | &addRec &updateRec &delRec
|
---|
[323] | 81 | &getLogCount &getLogEntries
|
---|
[452] | 82 | &getRevPattern
|
---|
[225] | 83 | &getTypelist
|
---|
[254] | 84 | &parentID
|
---|
[117] | 85 | &isParent
|
---|
[452] | 86 | &zoneStatus &getZonesByCIDR &importAXFR
|
---|
[103] | 87 | &export
|
---|
[197] | 88 | &mailNotify
|
---|
[128] | 89 | %typemap %reverse_typemap %config
|
---|
[489] | 90 | @permtypes $permlist %permchains
|
---|
[2] | 91 | )]
|
---|
| 92 | );
|
---|
| 93 |
|
---|
| 94 | our $errstr = '';
|
---|
[283] | 95 | our $resultstr = '';
|
---|
[2] | 96 |
|
---|
| 97 | # Halfway sane defaults for SOA, TTL, etc.
|
---|
[101] | 98 | # serial defaults to 0 for convenience.
|
---|
| 99 | # value will be either YYYYMMDDNN for BIND/etc, or auto-internal for tinydns
|
---|
[2] | 100 | our %def = qw (
|
---|
| 101 | contact hostmaster.DOMAIN
|
---|
| 102 | prins ns1.myserver.com
|
---|
[101] | 103 | serial 0
|
---|
[2] | 104 | soattl 86400
|
---|
| 105 | refresh 10800
|
---|
| 106 | retry 3600
|
---|
| 107 | expire 604800
|
---|
| 108 | minttl 10800
|
---|
| 109 | ttl 10800
|
---|
| 110 | );
|
---|
| 111 |
|
---|
[66] | 112 | # Arguably defined wholly in the db, but little reason to change without supporting code changes
|
---|
[370] | 113 | # group_view, user_view permissions? separate rDNS permission(s)?
|
---|
[66] | 114 | our @permtypes = qw (
|
---|
| 115 | group_edit group_create group_delete
|
---|
| 116 | user_edit user_create user_delete
|
---|
| 117 | domain_edit domain_create domain_delete
|
---|
[387] | 118 | record_edit record_create record_delete record_locchg
|
---|
[370] | 119 | location_edit location_create location_delete location_view
|
---|
[66] | 120 | self_edit admin
|
---|
| 121 | );
|
---|
| 122 | our $permlist = join(',',@permtypes);
|
---|
| 123 |
|
---|
[390] | 124 | # Some permissions more or less require certain others.
|
---|
| 125 | our %permchains = (
|
---|
| 126 | user_edit => 'self_edit',
|
---|
| 127 | location_edit => 'location_view',
|
---|
| 128 | location_create => 'location_view',
|
---|
| 129 | location_delete => 'location_view',
|
---|
| 130 | record_locchg => 'location_view',
|
---|
| 131 | );
|
---|
| 132 |
|
---|
[2] | 133 | # DNS record type map and reverse map.
|
---|
| 134 | # loaded from the database, from http://www.iana.org/assignments/dns-parameters
|
---|
| 135 | our %typemap;
|
---|
| 136 | our %reverse_typemap;
|
---|
| 137 |
|
---|
[128] | 138 | # Prepopulate a basic config. Note some of these *will* cause errors if left unset.
|
---|
[195] | 139 | # note: add appropriate stanzas in loadConfig to parse these
|
---|
[128] | 140 | our %config = (
|
---|
| 141 | # Database connection info
|
---|
| 142 | dbname => 'dnsdb',
|
---|
| 143 | dbuser => 'dnsdb',
|
---|
| 144 | dbpass => 'secret',
|
---|
| 145 | dbhost => '',
|
---|
| 146 |
|
---|
| 147 | # Email notice settings
|
---|
| 148 | mailhost => 'smtp.example.com',
|
---|
[195] | 149 | mailnotify => 'dnsdb@example.com', # to
|
---|
| 150 | mailsender => 'dnsdb@example.com', # from
|
---|
[128] | 151 | mailname => 'DNS Administration',
|
---|
[195] | 152 | orgname => 'Example Corp',
|
---|
| 153 | domain => 'example.com',
|
---|
[128] | 154 |
|
---|
| 155 | # Template directory
|
---|
| 156 | templatedir => 'templates/',
|
---|
| 157 | # fmeh. this is a real web path, not a logical internal one. hm..
|
---|
[163] | 158 | # cssdir => 'templates/',
|
---|
[216] | 159 | sessiondir => 'session/',
|
---|
[368] | 160 | exportcache => 'cache/',
|
---|
[163] | 161 |
|
---|
| 162 | # Session params
|
---|
[195] | 163 | timeout => '3600', # 1 hour default
|
---|
| 164 |
|
---|
| 165 | # Other miscellanea
|
---|
| 166 | log_failures => 1, # log all evarthing by default
|
---|
[201] | 167 | perpage => 15,
|
---|
[490] | 168 | maxfcgi => 100, # reasonable default?
|
---|
[128] | 169 | );
|
---|
| 170 |
|
---|
[228] | 171 | ## (Semi)private variables
|
---|
[278] | 172 |
|
---|
[228] | 173 | # Hash of functions for validating record types. Filled in initGlobals() since
|
---|
| 174 | # it relies on visibility flags from the rectypes table in the DB
|
---|
| 175 | my %validators;
|
---|
[128] | 176 |
|
---|
[295] | 177 | # Entity-relationship reference hashes.
|
---|
| 178 | my %par_tbl = (
|
---|
| 179 | group => 'groups',
|
---|
| 180 | user => 'users',
|
---|
| 181 | defrec => 'default_records',
|
---|
| 182 | defrevrec => 'default_rev_records',
|
---|
| 183 | domain => 'domains',
|
---|
| 184 | revzone => 'revzones',
|
---|
| 185 | record => 'records'
|
---|
| 186 | );
|
---|
| 187 | my %id_col = (
|
---|
| 188 | group => 'group_id',
|
---|
| 189 | user => 'user_id',
|
---|
| 190 | defrec => 'record_id',
|
---|
| 191 | defrevrec => 'record_id',
|
---|
| 192 | domain => 'domain_id',
|
---|
| 193 | revzone => 'rdns_id',
|
---|
| 194 | record => 'record_id'
|
---|
| 195 | );
|
---|
| 196 | my %par_col = (
|
---|
| 197 | group => 'parent_group_id',
|
---|
| 198 | user => 'group_id',
|
---|
| 199 | defrec => 'group_id',
|
---|
| 200 | defrevrec => 'group_id',
|
---|
| 201 | domain => 'group_id',
|
---|
| 202 | revzone => 'group_id',
|
---|
| 203 | record => 'domain_id'
|
---|
| 204 | );
|
---|
| 205 | my %par_type = (
|
---|
| 206 | group => 'group',
|
---|
| 207 | user => 'group',
|
---|
| 208 | defrec => 'group',
|
---|
| 209 | defrevrec => 'group',
|
---|
| 210 | domain => 'group',
|
---|
| 211 | revzone => 'group',
|
---|
| 212 | record => 'domain'
|
---|
| 213 | );
|
---|
[278] | 214 |
|
---|
[2] | 215 | ##
|
---|
[465] | 216 | ## Constructor and destructor
|
---|
| 217 | ##
|
---|
| 218 |
|
---|
| 219 | sub new {
|
---|
| 220 | my $this = shift;
|
---|
| 221 | my $class = ref($this) || $this;
|
---|
| 222 | my %args = @_;
|
---|
| 223 | ##fixme? to ponder: do we do some magic if the caller sets eg dbname to prevent parsing of the config file?
|
---|
| 224 | if (!loadConfig(basename => $args{configfile})) {
|
---|
| 225 | warn "Using default configuration; unable to load custom settings: $errstr\n";
|
---|
| 226 | }
|
---|
| 227 | my $self = \%config;
|
---|
| 228 | $self->{configfile} = $args{configfile};
|
---|
| 229 | bless $self, $class;
|
---|
| 230 | $self->{dbh} = connectDB($self->{dbname}, $self->{dbuser}, $self->{dbpass}, $self->{dbhost}) or return;
|
---|
| 231 | $self->initGlobals();
|
---|
| 232 |
|
---|
| 233 | return $self;
|
---|
| 234 | }
|
---|
| 235 |
|
---|
| 236 | sub DESTROY {
|
---|
| 237 | my $self = shift;
|
---|
| 238 | $self->{dbh}->disconnect;
|
---|
| 239 | }
|
---|
| 240 |
|
---|
[495] | 241 | sub errstr { $DNSDB::errstr; }
|
---|
| 242 |
|
---|
[465] | 243 | ##
|
---|
[225] | 244 | ## utility functions
|
---|
[281] | 245 | ##
|
---|
| 246 |
|
---|
| 247 | ## DNSDB::_rectable()
|
---|
[224] | 248 | # Takes default+rdns flags, returns appropriate table name
|
---|
| 249 | sub _rectable {
|
---|
| 250 | my $def = shift;
|
---|
| 251 | my $rev = shift;
|
---|
| 252 |
|
---|
| 253 | return 'records' if $def ne 'y';
|
---|
| 254 | return 'default_records' if $rev ne 'y';
|
---|
| 255 | return 'default_rev_records';
|
---|
| 256 | } # end _rectable()
|
---|
| 257 |
|
---|
[281] | 258 | ## DNSDB::_recparent()
|
---|
[224] | 259 | # Takes default+rdns flags, returns appropriate parent-id column name
|
---|
| 260 | sub _recparent {
|
---|
| 261 | my $def = shift;
|
---|
| 262 | my $rev = shift;
|
---|
| 263 |
|
---|
| 264 | return 'group_id' if $def eq 'y';
|
---|
| 265 | return 'rdns_id' if $rev eq 'y';
|
---|
| 266 | return 'domain_id';
|
---|
| 267 | } # end _recparent()
|
---|
| 268 |
|
---|
[281] | 269 | ## DNSDB::_ipparent()
|
---|
[226] | 270 | # Check an IP to be added in a reverse zone to see if it's really in the requested parent.
|
---|
[466] | 271 | # Takes default and reverse flags, IP (fragment) to check, parent zone ID,
|
---|
[226] | 272 | # and a reference to a NetAddr::IP object (also used to pass back a fully-reconstructed IP for
|
---|
| 273 | # database insertion)
|
---|
| 274 | sub _ipparent {
|
---|
[466] | 275 | my $self = shift;
|
---|
| 276 | my $dbh = $self->{dbh};
|
---|
[226] | 277 | my $defrec = shift;
|
---|
| 278 | my $revrec = shift;
|
---|
| 279 | my $val = shift;
|
---|
| 280 | my $id = shift;
|
---|
| 281 | my $addr = shift;
|
---|
[224] | 282 |
|
---|
[232] | 283 | return if $revrec ne 'y'; # this sub not useful in forward zones
|
---|
| 284 |
|
---|
| 285 | $$addr = NetAddr::IP->new($$val); #necessary?
|
---|
| 286 |
|
---|
[226] | 287 | # subsub to split, reverse, and overlay an IP fragment on a netblock
|
---|
| 288 | sub __rev_overlay {
|
---|
| 289 | my $splitme = shift; # ':' or '.', m'lud?
|
---|
| 290 | my $parnet = shift;
|
---|
| 291 | my $val = shift;
|
---|
| 292 | my $addr = shift;
|
---|
| 293 |
|
---|
| 294 | my $joinme = $splitme;
|
---|
| 295 | $splitme = '\.' if $splitme eq '.';
|
---|
[232] | 296 | my @working = reverse(split($splitme, $parnet->addr));
|
---|
| 297 | my @parts = reverse(split($splitme, $$val));
|
---|
[226] | 298 | for (my $i = 0; $i <= $#parts; $i++) {
|
---|
| 299 | $working[$i] = $parts[$i];
|
---|
| 300 | }
|
---|
[232] | 301 | my $checkme = NetAddr::IP->new(join($joinme, reverse(@working))) or return 0;
|
---|
| 302 | return 0 unless $checkme->within($parnet);
|
---|
[226] | 303 | $$addr = $checkme; # force "correct" IP to be recorded.
|
---|
| 304 | return 1;
|
---|
| 305 | }
|
---|
| 306 |
|
---|
| 307 | my ($parstr) = $dbh->selectrow_array("SELECT revnet FROM revzones WHERE rdns_id = ?", undef, ($id));
|
---|
| 308 | my $parnet = NetAddr::IP->new($parstr);
|
---|
| 309 |
|
---|
| 310 | # Fail early on v6-in-v4 or v4-in-v6. We're not accepting these ATM.
|
---|
[232] | 311 | return 0 if $parnet->addr =~ /\./ && $$val =~ /:/;
|
---|
| 312 | return 0 if $parnet->addr =~ /:/ && $$val =~ /\./;
|
---|
[226] | 313 |
|
---|
[340] | 314 | if ($$addr && ($$val =~ /^[\da-fA-F][\da-fA-F:]+[\da-fA-F]$/ || $$val =~ m|/\d+$|)) {
|
---|
| 315 | # the only case where NetAddr::IP's acceptance of legitimate IPs is "correct" is for a proper IPv6 address,
|
---|
| 316 | # or a netblock (only expected on templates)
|
---|
[232] | 317 | # the rest we have to restructure before fiddling. *sigh*
|
---|
| 318 | return 1 if $$addr->within($parnet);
|
---|
| 319 | } else {
|
---|
[340] | 320 | # We don't have a complete IP in $$val (yet)... unless we have a netblock
|
---|
[232] | 321 | if ($parnet->addr =~ /:/) {
|
---|
| 322 | $$val =~ s/^:+//; # gotta strip'em all...
|
---|
[226] | 323 | return __rev_overlay(':', $parnet, $val, $addr);
|
---|
| 324 | }
|
---|
[232] | 325 | if ($parnet->addr =~ /\./) {
|
---|
| 326 | $$val =~ s/^\.+//;
|
---|
| 327 | return __rev_overlay('.', $parnet, $val, $addr);
|
---|
| 328 | }
|
---|
[226] | 329 | # should be impossible to get here...
|
---|
| 330 | }
|
---|
| 331 | # ... and here.
|
---|
| 332 | # can't do nuttin' in forward zones
|
---|
| 333 | } # end _ipparent()
|
---|
| 334 |
|
---|
[281] | 335 | ## DNSDB::_hostparent()
|
---|
[232] | 336 | # A little different than _ipparent above; this tries to *find* the parent zone of a hostname
|
---|
[466] | 337 | # Takes a hostname.
|
---|
[281] | 338 | # Returns the domain ID of the parent domain if one was found.
|
---|
[232] | 339 | sub _hostparent {
|
---|
[466] | 340 | my $self = shift;
|
---|
| 341 | my $dbh = $self->{dbh};
|
---|
[232] | 342 | my $hname = shift;
|
---|
[347] | 343 |
|
---|
| 344 | $hname =~ s/^\*\.//; # this should be impossible to find in the domains table.
|
---|
[232] | 345 | my @hostbits = split /\./, $hname;
|
---|
[349] | 346 | my $sth = $dbh->prepare("SELECT count(*),domain_id FROM domains WHERE lower(domain) = lower(?) GROUP BY domain_id");
|
---|
[232] | 347 | foreach (@hostbits) {
|
---|
| 348 | $sth->execute($hname);
|
---|
| 349 | my ($found, $parid) = $sth->fetchrow_array;
|
---|
| 350 | if ($found) {
|
---|
| 351 | return $parid;
|
---|
| 352 | }
|
---|
| 353 | $hname =~ s/^$_\.//;
|
---|
| 354 | }
|
---|
| 355 | } # end _hostparent()
|
---|
[228] | 356 |
|
---|
[281] | 357 | ## DNSDB::_log()
|
---|
| 358 | # Log an action
|
---|
[466] | 359 | # Takes a log entry hash containing at least:
|
---|
[282] | 360 | # group_id, log entry
|
---|
[281] | 361 | # and optionally one or more of:
|
---|
| 362 | # domain_id, rdns_id
|
---|
[282] | 363 | # The %userdata hash provides the user ID, username, and fullname
|
---|
[281] | 364 | sub _log {
|
---|
[466] | 365 | my $self = shift;
|
---|
| 366 | my $dbh = $self->{dbh};
|
---|
[281] | 367 |
|
---|
| 368 | my %args = @_;
|
---|
| 369 |
|
---|
| 370 | $args{rdns_id} = 0 if !$args{rdns_id};
|
---|
| 371 | $args{domain_id} = 0 if !$args{domain_id};
|
---|
| 372 |
|
---|
| 373 | ##fixme: farm out the actual logging to different subs for file, syslog, internal, etc based on config
|
---|
| 374 | # if ($config{log_channel} eq 'sql') {
|
---|
| 375 | $dbh->do("INSERT INTO log (domain_id,rdns_id,group_id,entry,user_id,email,name) VALUES (?,?,?,?,?,?,?)",
|
---|
| 376 | undef,
|
---|
| 377 | ($args{domain_id}, $args{rdns_id}, $args{group_id}, $args{entry},
|
---|
[488] | 378 | $self->{loguserid}, $self->{logusername}, $self->{logfullname}) );
|
---|
[281] | 379 | # } elsif ($config{log_channel} eq 'file') {
|
---|
| 380 | # } elsif ($config{log_channel} eq 'syslog') {
|
---|
| 381 | # }
|
---|
| 382 | } # end _log
|
---|
| 383 |
|
---|
| 384 |
|
---|
[224] | 385 | ##
|
---|
[228] | 386 | ## Record validation subs.
|
---|
| 387 | ##
|
---|
| 388 |
|
---|
[281] | 389 | ## All of these subs take substantially the same arguments:
|
---|
| 390 | # a hash containing at least the following keys:
|
---|
| 391 | # - defrec (default/live flag)
|
---|
| 392 | # - revrec (forward/reverse flag)
|
---|
| 393 | # - id (parent entity ID)
|
---|
| 394 | # - host (hostname)
|
---|
| 395 | # - rectype
|
---|
| 396 | # - val (IP, hostname [CNAME/MX/SRV] or text)
|
---|
| 397 | # - addr (NetAddr::IP object from val. May be undef.)
|
---|
| 398 | # MX and SRV record validation also expect distance, and SRV records expect weight and port as well.
|
---|
| 399 | # host, rectype, and addr should be references as these may be modified in validation
|
---|
| 400 |
|
---|
[228] | 401 | # A record
|
---|
| 402 | sub _validate_1 {
|
---|
[467] | 403 | my $self = shift;
|
---|
| 404 | my $dbh = $self->{dbh};
|
---|
[229] | 405 |
|
---|
[230] | 406 | my %args = @_;
|
---|
[229] | 407 |
|
---|
[230] | 408 | return ('FAIL', 'Reverse zones cannot contain A records') if $args{revrec} eq 'y';
|
---|
[229] | 409 |
|
---|
| 410 | # Coerce all hostnames to end in ".DOMAIN" for group/default records,
|
---|
| 411 | # or the intended parent domain for live records.
|
---|
[467] | 412 | my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
|
---|
[230] | 413 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
[229] | 414 |
|
---|
| 415 | # Check IP is well-formed, and that it's a v4 address
|
---|
[234] | 416 | # Fail on "compact" IPv4 variants, because they are not consistent and predictable.
|
---|
[232] | 417 | return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv4 address")
|
---|
[234] | 418 | unless ${$args{val}} =~ /^\d+\.\d+\.\d+\.\d+$/;
|
---|
| 419 | return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv4 address")
|
---|
[230] | 420 | unless $args{addr} && !$args{addr}->{isv6};
|
---|
[229] | 421 | # coerce IP/value to normalized form for storage
|
---|
[230] | 422 | ${$args{val}} = $args{addr}->addr;
|
---|
[229] | 423 |
|
---|
[228] | 424 | return ('OK','OK');
|
---|
| 425 | } # done A record
|
---|
| 426 |
|
---|
| 427 | # NS record
|
---|
| 428 | sub _validate_2 {
|
---|
[467] | 429 | my $self = shift;
|
---|
| 430 | my $dbh = $self->{dbh};
|
---|
[230] | 431 |
|
---|
| 432 | my %args = @_;
|
---|
| 433 |
|
---|
[328] | 434 | # Check that the target of the record is within the parent.
|
---|
| 435 | # Yes, host<->val are mixed up here; can't see a way to avoid it. :(
|
---|
| 436 | if ($args{defrec} eq 'n') {
|
---|
| 437 | # Check if IP/address/zone/"subzone" is within the parent
|
---|
| 438 | if ($args{revrec} eq 'y') {
|
---|
| 439 | my $tmpip = NetAddr::IP->new(${$args{val}});
|
---|
[467] | 440 | my $pname = $self->revName($args{id});
|
---|
[328] | 441 | return ('FAIL',"${$args{val}} not within $pname")
|
---|
[467] | 442 | unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$tmpip);
|
---|
[328] | 443 | # Sub the returned thing for ZONE? This could get stupid if you have typos...
|
---|
| 444 | ${$args{val}} =~ s/ZONE/$tmpip->address/;
|
---|
| 445 | } else {
|
---|
[467] | 446 | my $pname = $self->domainName($args{id});
|
---|
[328] | 447 | ${$args{host}} = $pname if ${$args{host}} !~ /\.$pname$/;
|
---|
| 448 | }
|
---|
[230] | 449 | } else {
|
---|
[328] | 450 | # Default reverse NS records should always refer to the implied parent
|
---|
| 451 | ${$args{host}} = 'DOMAIN' if $args{revrec} eq 'n';
|
---|
| 452 | ${$args{val}} = 'ZONE' if $args{revrec} eq 'y';
|
---|
[230] | 453 | }
|
---|
| 454 |
|
---|
| 455 | # Let this lie for now. Needs more magic.
|
---|
| 456 | # # Check IP is well-formed, and that it's a v4 address
|
---|
| 457 | # return ('FAIL',"A record must be a valid IPv4 address")
|
---|
| 458 | # unless $addr && !$addr->{isv6};
|
---|
| 459 | # # coerce IP/value to normalized form for storage
|
---|
| 460 | # $$val = $addr->addr;
|
---|
| 461 |
|
---|
[228] | 462 | return ('OK','OK');
|
---|
| 463 | } # done NS record
|
---|
| 464 |
|
---|
| 465 | # CNAME record
|
---|
| 466 | sub _validate_5 {
|
---|
[467] | 467 | my $self = shift;
|
---|
| 468 | my $dbh = $self->{dbh};
|
---|
[230] | 469 |
|
---|
| 470 | my %args = @_;
|
---|
| 471 |
|
---|
| 472 | # Not really true, but these are only useful for delegating smaller-than-/24 IP blocks.
|
---|
| 473 | # This is fundamentally a messy operation and should really just be taken care of by the
|
---|
| 474 | # export process, not manual maintenance of the necessary records.
|
---|
| 475 | return ('FAIL', 'Reverse zones cannot contain CNAME records') if $args{revrec} eq 'y';
|
---|
| 476 |
|
---|
| 477 | # Coerce all hostnames to end in ".DOMAIN" for group/default records,
|
---|
| 478 | # or the intended parent domain for live records.
|
---|
[467] | 479 | my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
|
---|
[230] | 480 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
| 481 |
|
---|
[228] | 482 | return ('OK','OK');
|
---|
| 483 | } # done CNAME record
|
---|
| 484 |
|
---|
| 485 | # SOA record
|
---|
| 486 | sub _validate_6 {
|
---|
[230] | 487 | # Smart monkeys won't stick their fingers in here; we have
|
---|
| 488 | # separate dedicated routines to deal with SOA records.
|
---|
[228] | 489 | return ('OK','OK');
|
---|
| 490 | } # done SOA record
|
---|
| 491 |
|
---|
| 492 | # PTR record
|
---|
| 493 | sub _validate_12 {
|
---|
[467] | 494 | my $self = shift;
|
---|
| 495 | my $dbh = $self->{dbh};
|
---|
[232] | 496 |
|
---|
| 497 | my %args = @_;
|
---|
| 498 |
|
---|
| 499 | if ($args{revrec} eq 'y') {
|
---|
| 500 | if ($args{defrec} eq 'n') {
|
---|
[467] | 501 | return ('FAIL', "IP or IP fragment ${$args{val}} is not within ".$self->revName($args{id}))
|
---|
| 502 | unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$args{addr});
|
---|
[232] | 503 | ${$args{val}} = $args{addr}->addr;
|
---|
| 504 | } else {
|
---|
[234] | 505 | if (${$args{val}} =~ /\./) {
|
---|
| 506 | # looks like a v4 or fragment
|
---|
| 507 | if (${$args{val}} =~ /^\d+\.\d+\.\d+\.\d+$/) {
|
---|
| 508 | # woo! a complete IP! validate it and normalize, or fail.
|
---|
| 509 | $args{addr} = NetAddr::IP->new(${$args{val}})
|
---|
| 510 | or return ('FAIL', "IP/value looks like IPv4 but isn't valid");
|
---|
| 511 | ${$args{val}} = $args{addr}->addr;
|
---|
| 512 | } else {
|
---|
[249] | 513 | ${$args{val}} =~ s/^\.*/ZONE./ unless ${$args{val}} =~ /^ZONE/;
|
---|
[234] | 514 | }
|
---|
| 515 | } elsif (${$args{val}} =~ /[a-f:]/) {
|
---|
| 516 | # looks like a v6 or fragment
|
---|
[251] | 517 | ${$args{val}} =~ s/^:*/ZONE::/ if !$args{addr} && ${$args{val}} !~ /^ZONE/;
|
---|
[234] | 518 | if ($args{addr}) {
|
---|
| 519 | if ($args{addr}->addr =~ /^0/) {
|
---|
[251] | 520 | ${$args{val}} =~ s/^:*/ZONE::/ unless ${$args{val}} =~ /^ZONE/;
|
---|
[234] | 521 | } else {
|
---|
| 522 | ${$args{val}} = $args{addr}->addr;
|
---|
| 523 | }
|
---|
| 524 | }
|
---|
| 525 | } else {
|
---|
| 526 | # bare number (probably). These could be v4 or v6, so we'll
|
---|
| 527 | # expand on these on creation of a reverse zone.
|
---|
[251] | 528 | ${$args{val}} = "ZONE,${$args{val}}" unless ${$args{val}} =~ /^ZONE/;
|
---|
[234] | 529 | }
|
---|
[249] | 530 | ${$args{host}} =~ s/\.*$/\.$config{domain}/ if ${$args{host}} !~ /(?:$config{domain}|ADMINDOMAIN)$/;
|
---|
[232] | 531 | }
|
---|
| 532 |
|
---|
| 533 | # Multiple PTR records do NOT generally do what most people believe they do,
|
---|
| 534 | # and tend to fail in the most awkward way possible. Check and warn.
|
---|
| 535 | # We use $val instead of $addr->addr since we may be in a defrec, and may have eg "ZONE::42" or "ZONE.12"
|
---|
[249] | 536 |
|
---|
| 537 | my @checkvals = (${$args{val}});
|
---|
| 538 | if (${$args{val}} =~ /,/) {
|
---|
| 539 | # push . and :: variants into checkvals if val has ,
|
---|
| 540 | my $tmp;
|
---|
| 541 | ($tmp = ${$args{val}}) =~ s/,/./;
|
---|
| 542 | push @checkvals, $tmp;
|
---|
| 543 | ($tmp = ${$args{val}}) =~ s/,/::/;
|
---|
| 544 | push @checkvals, $tmp;
|
---|
| 545 | }
|
---|
| 546 | my $pcsth = $dbh->prepare("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec})." WHERE val = ?");
|
---|
| 547 | foreach my $checkme (@checkvals) {
|
---|
[272] | 548 | if ($args{update}) {
|
---|
| 549 | # Record update. There should usually be an existing PTR (the record being updated)
|
---|
| 550 | my @ptrs = @{ $dbh->selectcol_arrayref("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 551 | " WHERE val = ?", undef, ($checkme)) };
|
---|
| 552 | return ('WARN', "PTR record for $checkme already exists; adding another will probably not do what you want")
|
---|
[273] | 553 | if @ptrs && (!grep /^$args{update}$/, @ptrs);
|
---|
[272] | 554 | } else {
|
---|
| 555 | # New record. Always warn if a PTR exists
|
---|
| 556 | my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 557 | " WHERE val = ?", undef, ($checkme));
|
---|
| 558 | return ('WARN', "PTR record for $checkme already exists; adding another will probably not do what you want")
|
---|
| 559 | if $ptrcount;
|
---|
| 560 | }
|
---|
[249] | 561 | }
|
---|
[272] | 562 |
|
---|
[232] | 563 | } else {
|
---|
| 564 | # Not absolutely true but only useful if you hack things up for sub-/24 v4 reverse delegations
|
---|
| 565 | # Simpler to just create the reverse zone and grant access for the customer to edit it, and create direct
|
---|
| 566 | # PTR records on export
|
---|
| 567 | return ('FAIL',"Forward zones cannot contain PTR records");
|
---|
| 568 | }
|
---|
| 569 |
|
---|
[228] | 570 | return ('OK','OK');
|
---|
| 571 | } # done PTR record
|
---|
| 572 |
|
---|
| 573 | # MX record
|
---|
| 574 | sub _validate_15 {
|
---|
[467] | 575 | my $self = shift;
|
---|
| 576 | my $dbh = $self->{dbh};
|
---|
[230] | 577 |
|
---|
| 578 | my %args = @_;
|
---|
| 579 |
|
---|
| 580 | # Not absolutely true but WTF use is an MX record for a reverse zone?
|
---|
| 581 | return ('FAIL', 'Reverse zones cannot contain MX records') if $args{revrec} eq 'y';
|
---|
| 582 |
|
---|
| 583 | return ('FAIL', "Distance is required for MX records") unless defined(${$args{dist}});
|
---|
| 584 | ${$args{dist}} =~ s/\s*//g;
|
---|
| 585 | return ('FAIL',"Distance is required, and must be numeric") unless ${$args{dist}} =~ /^\d+$/;
|
---|
| 586 |
|
---|
| 587 | ${$args{fields}} = "distance,";
|
---|
| 588 | push @{$args{vallist}}, ${$args{dist}};
|
---|
| 589 |
|
---|
| 590 | # Coerce all hostnames to end in ".DOMAIN" for group/default records,
|
---|
| 591 | # or the intended parent domain for live records.
|
---|
[467] | 592 | my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
|
---|
[230] | 593 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
| 594 |
|
---|
[273] | 595 | # hmm.. this might work. except possibly for something pointing to "deadbeef.ca". <g>
|
---|
| 596 | # if ($type == $reverse_typemap{NS} || $type == $reverse_typemap{MX} || $type == $reverse_typemap{SRV}) {
|
---|
| 597 | # if ($val =~ /^\s*[\da-f:.]+\s*$/) {
|
---|
| 598 | # return ('FAIL',"$val is not a valid IP address") if !$addr;
|
---|
| 599 | # }
|
---|
| 600 | # }
|
---|
| 601 |
|
---|
[228] | 602 | return ('OK','OK');
|
---|
| 603 | } # done MX record
|
---|
| 604 |
|
---|
| 605 | # TXT record
|
---|
| 606 | sub _validate_16 {
|
---|
[231] | 607 | # Could arguably put a WARN return here on very long (>512) records
|
---|
[228] | 608 | return ('OK','OK');
|
---|
| 609 | } # done TXT record
|
---|
| 610 |
|
---|
| 611 | # RP record
|
---|
| 612 | sub _validate_17 {
|
---|
[231] | 613 | # Probably have to validate these some day
|
---|
[228] | 614 | return ('OK','OK');
|
---|
| 615 | } # done RP record
|
---|
| 616 |
|
---|
| 617 | # AAAA record
|
---|
| 618 | sub _validate_28 {
|
---|
[467] | 619 | my $self = shift;
|
---|
| 620 | my $dbh = $self->{dbh};
|
---|
[229] | 621 |
|
---|
[230] | 622 | my %args = @_;
|
---|
[229] | 623 |
|
---|
[230] | 624 | return ('FAIL', 'Reverse zones cannot contain AAAA records') if $args{revrec} eq 'y';
|
---|
[229] | 625 |
|
---|
| 626 | # Coerce all hostnames to end in ".DOMAIN" for group/default records,
|
---|
| 627 | # or the intended parent domain for live records.
|
---|
[467] | 628 | my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
|
---|
[230] | 629 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
[229] | 630 |
|
---|
| 631 | # Check IP is well-formed, and that it's a v6 address
|
---|
[232] | 632 | return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv6 address")
|
---|
[230] | 633 | unless $args{addr} && $args{addr}->{isv6};
|
---|
[229] | 634 | # coerce IP/value to normalized form for storage
|
---|
[230] | 635 | ${$args{val}} = $args{addr}->addr;
|
---|
[229] | 636 |
|
---|
[228] | 637 | return ('OK','OK');
|
---|
| 638 | } # done AAAA record
|
---|
| 639 |
|
---|
| 640 | # SRV record
|
---|
| 641 | sub _validate_33 {
|
---|
[467] | 642 | my $self = shift;
|
---|
| 643 | my $dbh = $self->{dbh};
|
---|
[231] | 644 |
|
---|
| 645 | my %args = @_;
|
---|
| 646 |
|
---|
| 647 | # Not absolutely true but WTF use is an SRV record for a reverse zone?
|
---|
| 648 | return ('FAIL', 'Reverse zones cannot contain SRV records') if $args{revrec} eq 'y';
|
---|
| 649 |
|
---|
| 650 | return ('FAIL', "Distance is required for SRV records") unless defined(${$args{dist}});
|
---|
| 651 | ${$args{dist}} =~ s/\s*//g;
|
---|
| 652 | return ('FAIL',"Distance is required, and must be numeric") unless ${$args{dist}} =~ /^\d+$/;
|
---|
| 653 |
|
---|
| 654 | return ('FAIL',"SRV records must begin with _service._protocol [${$args{host}}]")
|
---|
| 655 | unless ${$args{host}} =~ /^_[A-Za-z]+\._[A-Za-z]+\.[a-zA-Z0-9-]+/;
|
---|
| 656 | return ('FAIL',"Port and weight are required for SRV records")
|
---|
| 657 | unless defined(${$args{weight}}) && defined(${$args{port}});
|
---|
| 658 | ${$args{weight}} =~ s/\s*//g;
|
---|
| 659 | ${$args{port}} =~ s/\s*//g;
|
---|
| 660 |
|
---|
| 661 | return ('FAIL',"Port and weight are required, and must be numeric")
|
---|
| 662 | unless ${$args{weight}} =~ /^\d+$/ && ${$args{port}} =~ /^\d+$/;
|
---|
| 663 |
|
---|
| 664 | ${$args{fields}} = "distance,weight,port,";
|
---|
| 665 | push @{$args{vallist}}, (${$args{dist}}, ${$args{weight}}, ${$args{port}});
|
---|
| 666 |
|
---|
| 667 | # Coerce all hostnames to end in ".DOMAIN" for group/default records,
|
---|
| 668 | # or the intended parent domain for live records.
|
---|
[467] | 669 | my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
|
---|
[231] | 670 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
| 671 |
|
---|
[228] | 672 | return ('OK','OK');
|
---|
| 673 | } # done SRV record
|
---|
| 674 |
|
---|
| 675 | # Now the custom types
|
---|
| 676 |
|
---|
[232] | 677 | # A+PTR record. With a very little bit of magic we can also use this sub to validate AAAA+PTR. Whee!
|
---|
[228] | 678 | sub _validate_65280 {
|
---|
[467] | 679 | my $self = shift;
|
---|
| 680 | my $dbh = $self->{dbh};
|
---|
[232] | 681 |
|
---|
| 682 | my %args = @_;
|
---|
| 683 |
|
---|
| 684 | my $code = 'OK';
|
---|
| 685 | my $msg = 'OK';
|
---|
| 686 |
|
---|
| 687 | if ($args{defrec} eq 'n') {
|
---|
| 688 | # live record; revrec determines whether we validate the PTR or A component first.
|
---|
[233] | 689 |
|
---|
[232] | 690 | if ($args{revrec} eq 'y') {
|
---|
[467] | 691 | ($code,$msg) = $self->_validate_12(%args);
|
---|
[232] | 692 | return ($code,$msg) if $code eq 'FAIL';
|
---|
| 693 |
|
---|
[467] | 694 | # check A+PTR is really v4
|
---|
| 695 | return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv4 address")
|
---|
| 696 | if ${$args{rectype}} == 65280 && $args{addr}->{isv6};
|
---|
| 697 | # check AAAA+PTR is really v6
|
---|
| 698 | return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv6 address")
|
---|
| 699 | if ${$args{rectype}} == 65281 && !$args{addr}->{isv6};
|
---|
| 700 |
|
---|
[232] | 701 | # Check if the reqested domain exists. If not, coerce the type down to PTR and warn.
|
---|
[467] | 702 | if (!(${$args{domid}} = $self->_hostparent(${$args{host}}))) {
|
---|
[272] | 703 | my $addmsg = "Record ".($args{update} ? 'updated' : 'added').
|
---|
| 704 | " as PTR instead of $typemap{${$args{rectype}}}; domain not found for ${$args{host}}";
|
---|
[232] | 705 | $msg .= "\n$addmsg" if $code eq 'WARN';
|
---|
| 706 | $msg = $addmsg if $code eq 'OK';
|
---|
| 707 | ${$args{rectype}} = $reverse_typemap{PTR};
|
---|
| 708 | return ('WARN', $msg);
|
---|
| 709 | }
|
---|
| 710 |
|
---|
[242] | 711 | # Add domain ID to field list and values
|
---|
| 712 | ${$args{fields}} .= "domain_id,";
|
---|
| 713 | push @{$args{vallist}}, ${$args{domid}};
|
---|
| 714 |
|
---|
[232] | 715 | } else {
|
---|
[467] | 716 | ($code,$msg) = $self->_validate_1(%args) if ${$args{rectype}} == 65280;
|
---|
| 717 | ($code,$msg) = $self->_validate_28(%args) if ${$args{rectype}} == 65281;
|
---|
[232] | 718 | return ($code,$msg) if $code eq 'FAIL';
|
---|
| 719 |
|
---|
| 720 | # Check if the requested reverse zone exists - note, an IP fragment won't
|
---|
| 721 | # work here since we don't *know* which parent to put it in.
|
---|
[233] | 722 | # ${$args{val}} has been validated as a valid IP by now, in one of the above calls.
|
---|
[232] | 723 | my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet >> ?".
|
---|
| 724 | " ORDER BY masklen(revnet) DESC", undef, (${$args{val}}));
|
---|
| 725 | if (!$revid) {
|
---|
[272] | 726 | $msg = "Record ".($args{update} ? 'updated' : 'added')." as ".(${$args{rectype}} == 65280 ? 'A' : 'AAAA').
|
---|
[232] | 727 | " instead of $typemap{${$args{rectype}}}; reverse zone not found for ${$args{val}}";
|
---|
| 728 | ${$args{rectype}} = (${$args{rectype}} == 65280 ? $reverse_typemap{A} : $reverse_typemap{AAAA});
|
---|
| 729 | return ('WARN', $msg);
|
---|
| 730 | }
|
---|
| 731 |
|
---|
| 732 | # Check for duplicate PTRs. Note we don't have to play games with $code and $msg, because
|
---|
| 733 | # by definition there can't be duplicate PTRs if the reverse zone isn't managed here.
|
---|
[272] | 734 | if ($args{update}) {
|
---|
| 735 | # Record update. There should usually be an existing PTR (the record being updated)
|
---|
| 736 | my @ptrs = @{ $dbh->selectcol_arrayref("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 737 | " WHERE val = ?", undef, (${$args{val}})) };
|
---|
[273] | 738 | if (@ptrs && (!grep /^$args{update}$/, @ptrs)) {
|
---|
[272] | 739 | $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want";
|
---|
| 740 | $code = 'WARN';
|
---|
| 741 | }
|
---|
| 742 | } else {
|
---|
| 743 | # New record. Always warn if a PTR exists
|
---|
| 744 | my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 745 | " WHERE val = ?", undef, (${$args{val}}));
|
---|
| 746 | $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want"
|
---|
| 747 | if $ptrcount;
|
---|
| 748 | $code = 'WARN' if $ptrcount;
|
---|
[232] | 749 | }
|
---|
| 750 |
|
---|
[272] | 751 | # my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 752 | # " WHERE val = ?", undef, ${$args{val}});
|
---|
| 753 | # if ($ptrcount) {
|
---|
| 754 | # my $curid = $dbh->selectrow_array("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 755 | # " WHERE val = ?
|
---|
| 756 | # $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want";
|
---|
| 757 | # $code = 'WARN';
|
---|
| 758 | # }
|
---|
| 759 |
|
---|
[232] | 760 | ${$args{fields}} .= "rdns_id,";
|
---|
| 761 | push @{$args{vallist}}, $revid;
|
---|
| 762 | }
|
---|
| 763 |
|
---|
[233] | 764 | } else { # defrec eq 'y'
|
---|
| 765 | if ($args{revrec} eq 'y') {
|
---|
[467] | 766 | ($code,$msg) = $self->_validate_12(%args);
|
---|
[233] | 767 | return ($code,$msg) if $code eq 'FAIL';
|
---|
| 768 | if (${$args{rectype}} == 65280) {
|
---|
| 769 | return ('FAIL',"A+PTR record must be a valid IPv4 address or fragment")
|
---|
| 770 | if ${$args{val}} =~ /:/;
|
---|
[234] | 771 | ${$args{val}} =~ s/^ZONE,/ZONE./; # Clean up after uncertain IP-fragment-type from _validate_12
|
---|
[233] | 772 | } elsif (${$args{rectype}} == 65281) {
|
---|
| 773 | return ('FAIL',"AAAA+PTR record must be a valid IPv6 address or fragment")
|
---|
| 774 | if ${$args{val}} =~ /\./;
|
---|
[234] | 775 | ${$args{val}} =~ s/^ZONE,/ZONE::/; # Clean up after uncertain IP-fragment-type from _validate_12
|
---|
[233] | 776 | }
|
---|
| 777 | } else {
|
---|
| 778 | # This is easy. I also can't see a real use-case for A/AAAA+PTR in *all* forward
|
---|
| 779 | # domains, since you wouldn't be able to substitute both domain and reverse zone
|
---|
| 780 | # sanely, and you'd end up with guaranteed over-replicated PTR records that would
|
---|
| 781 | # confuse the hell out of pretty much anything that uses them.
|
---|
[234] | 782 | ##fixme: make this a config flag?
|
---|
[233] | 783 | return ('FAIL', "$typemap{${$args{rectype}}} records not allowed in default domains");
|
---|
| 784 | }
|
---|
[232] | 785 | }
|
---|
| 786 |
|
---|
| 787 | return ($code, $msg);
|
---|
[228] | 788 | } # done A+PTR record
|
---|
| 789 |
|
---|
| 790 | # AAAA+PTR record
|
---|
[232] | 791 | # A+PTR above has been magicked to handle AAAA+PTR as well.
|
---|
[228] | 792 | sub _validate_65281 {
|
---|
[232] | 793 | return _validate_65280(@_);
|
---|
[228] | 794 | } # done AAAA+PTR record
|
---|
| 795 |
|
---|
| 796 | # PTR template record
|
---|
| 797 | sub _validate_65282 {
|
---|
[467] | 798 | my $self = shift;
|
---|
| 799 | my $dbh = $self->{dbh};
|
---|
[340] | 800 |
|
---|
| 801 | my %args = @_;
|
---|
| 802 |
|
---|
| 803 | # we're *this* >.< close to being able to just call _validate_12... unfortunately we can't, quite.
|
---|
| 804 | if ($args{revrec} eq 'y') {
|
---|
| 805 | if ($args{defrec} eq 'n') {
|
---|
[467] | 806 | return ('FAIL', "Template block ${$args{val}} is not within ".$self->revName($args{id}))
|
---|
| 807 | unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$args{addr});
|
---|
[340] | 808 | ##fixme: warn if $args{val} is not /31 or larger block?
|
---|
| 809 | ${$args{val}} = "$args{addr}";
|
---|
| 810 | } else {
|
---|
| 811 | if (${$args{val}} =~ /\./) {
|
---|
| 812 | # looks like a v4 or fragment
|
---|
| 813 | if (${$args{val}} =~ m|^\d+\.\d+\.\d+\.\d+(?:/\d+)?$|) {
|
---|
| 814 | # woo! a complete IP! validate it and normalize, or fail.
|
---|
| 815 | $args{addr} = NetAddr::IP->new(${$args{val}})
|
---|
| 816 | or return ('FAIL', "IP/value looks like IPv4 but isn't valid");
|
---|
| 817 | ${$args{val}} = "$args{addr}";
|
---|
| 818 | } else {
|
---|
| 819 | ${$args{val}} =~ s/^\.*/ZONE./ unless ${$args{val}} =~ /^ZONE/;
|
---|
| 820 | }
|
---|
| 821 | } elsif (${$args{val}} =~ /[a-f:]/) {
|
---|
| 822 | # looks like a v6 or fragment
|
---|
| 823 | ${$args{val}} =~ s/^:*/ZONE::/ if !$args{addr} && ${$args{val}} !~ /^ZONE/;
|
---|
| 824 | if ($args{addr}) {
|
---|
| 825 | if ($args{addr}->addr =~ /^0/) {
|
---|
| 826 | ${$args{val}} =~ s/^:*/ZONE::/ unless ${$args{val}} =~ /^ZONE/;
|
---|
| 827 | } else {
|
---|
| 828 | ${$args{val}} = "$args{addr}";
|
---|
| 829 | }
|
---|
| 830 | }
|
---|
| 831 | } else {
|
---|
| 832 | # bare number (probably). These could be v4 or v6, so we'll
|
---|
| 833 | # expand on these on creation of a reverse zone.
|
---|
| 834 | ${$args{val}} = "ZONE,${$args{val}}" unless ${$args{val}} =~ /^ZONE/;
|
---|
| 835 | }
|
---|
| 836 | }
|
---|
| 837 | ##fixme: validate %-patterns?
|
---|
| 838 |
|
---|
| 839 | # Unlike single PTR records, there is absolutely no way to sanely support multiple
|
---|
| 840 | # PTR templates for the same block, since they expect to expand to all the individual
|
---|
| 841 | # IPs on export. Nested templates should be supported though.
|
---|
| 842 |
|
---|
| 843 | my @checkvals = (${$args{val}});
|
---|
| 844 | if (${$args{val}} =~ /,/) {
|
---|
| 845 | # push . and :: variants into checkvals if val has ,
|
---|
| 846 | my $tmp;
|
---|
| 847 | ($tmp = ${$args{val}}) =~ s/,/./;
|
---|
| 848 | push @checkvals, $tmp;
|
---|
| 849 | ($tmp = ${$args{val}}) =~ s/,/::/;
|
---|
| 850 | push @checkvals, $tmp;
|
---|
| 851 | }
|
---|
| 852 | ##fixme: this feels wrong still - need to restrict template pseudorecords to One Of Each
|
---|
| 853 | # Per Netblock such that they don't conflict on export
|
---|
| 854 | my $typeck;
|
---|
| 855 | # type 65282 -> ptr template -> look for any of 65282, 65283, 65284
|
---|
| 856 | $typeck = 'type=65283 OR type=65284' if ${$args{rectype}} == 65282;
|
---|
| 857 | # type 65283 -> a+ptr template -> v4 -> look for 65282 or 65283
|
---|
| 858 | $typeck = 'type=65283' if ${$args{rectype}} == 65282;
|
---|
| 859 | # type 65284 -> aaaa+ptr template -> v6 -> look for 65282 or 65284
|
---|
| 860 | $typeck = 'type=65284' if ${$args{rectype}} == 65282;
|
---|
| 861 | my $pcsth = $dbh->prepare("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec})." WHERE val = ? ".
|
---|
| 862 | "AND (type=65282 OR $typeck)");
|
---|
| 863 | foreach my $checkme (@checkvals) {
|
---|
| 864 | $pcsth->execute($checkme);
|
---|
| 865 | my ($rc) = $pcsth->fetchrow_array;
|
---|
[442] | 866 | return ('FAIL', "Only one template pseudorecord may exist for a given IP block") if $rc > 1;
|
---|
[340] | 867 | }
|
---|
| 868 |
|
---|
| 869 | } else {
|
---|
| 870 | return ('FAIL', "Forward zones cannot contain PTR records");
|
---|
| 871 | }
|
---|
| 872 |
|
---|
[228] | 873 | return ('OK','OK');
|
---|
| 874 | } # done PTR template record
|
---|
| 875 |
|
---|
| 876 | # A+PTR template record
|
---|
| 877 | sub _validate_65283 {
|
---|
[467] | 878 | my $self = shift;
|
---|
| 879 | my $dbh = $self->{dbh};
|
---|
[340] | 880 |
|
---|
| 881 | my %args = @_;
|
---|
| 882 |
|
---|
| 883 | my ($code,$msg) = ('OK','OK');
|
---|
| 884 |
|
---|
| 885 | ##fixme: need to fiddle things since A+PTR templates are acceptable in live
|
---|
| 886 | # forward zones but not default records
|
---|
| 887 | if ($args{defrec} eq 'n') {
|
---|
| 888 | if ($args{revrec} eq 'n') {
|
---|
[467] | 889 | ($code,$msg) = $self->_validate_1(%args) if ${$args{rectype}} == 65280;
|
---|
| 890 | ($code,$msg) = $self->_validate_28(%args) if ${$args{rectype}} == 65281;
|
---|
[340] | 891 | return ($code,$msg) if $code eq 'FAIL';
|
---|
| 892 |
|
---|
| 893 | # Check if the requested reverse zone exists - note, an IP fragment won't
|
---|
| 894 | # work here since we don't *know* which parent to put it in.
|
---|
| 895 | # ${$args{val}} has been validated as a valid IP by now, in one of the above calls.
|
---|
| 896 | my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet >> ?".
|
---|
| 897 | " ORDER BY masklen(revnet) DESC", undef, (${$args{val}}));
|
---|
| 898 | # Fail if no match; we can't coerce a PTR-template type down to not include the PTR bit currently.
|
---|
| 899 | if (!$revid) {
|
---|
| 900 | $msg = "Can't ".($args{update} ? 'update' : 'add')." ${$args{host}}/${$args{val}} as ".
|
---|
| 901 | "$typemap{${$args{rectype}}}: reverse zone not found for ${$args{val}}";
|
---|
| 902 | ##fixme: add A template, AAAA template types?
|
---|
| 903 | # ${$args{rectype}} = (${$args{rectype}} == 65280 ? $reverse_typemap{A} : $reverse_typemap{AAAA});
|
---|
| 904 | return ('FAIL', $msg);
|
---|
| 905 | }
|
---|
| 906 |
|
---|
| 907 | # Add reverse zone ID to field list and values
|
---|
| 908 | ${$args{fields}} .= "rdns_id,";
|
---|
| 909 | push @{$args{vallist}}, $revid;
|
---|
| 910 |
|
---|
| 911 | } else {
|
---|
[467] | 912 | return ('FAIL', "IP or IP fragment ${$args{val}} is not within ".$self->revName($args{id}))
|
---|
| 913 | unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$args{addr});
|
---|
[340] | 914 | ${$args{val}} = "$args{addr}";
|
---|
| 915 |
|
---|
[467] | 916 | if (!(${$args{domid}} = $self->_hostparent(${$args{host}}))) {
|
---|
[340] | 917 | my $addmsg = "Record ".($args{update} ? 'updated' : 'added').
|
---|
| 918 | " as PTR template instead of $typemap{${$args{rectype}}}; domain not found for ${$args{host}}";
|
---|
| 919 | $msg .= "\n$addmsg" if $code eq 'WARN';
|
---|
| 920 | $msg = $addmsg if $code eq 'OK';
|
---|
| 921 | ${$args{rectype}} = 65282;
|
---|
| 922 | return ('WARN', $msg);
|
---|
| 923 | }
|
---|
| 924 |
|
---|
| 925 | # Add domain ID to field list and values
|
---|
| 926 | ${$args{fields}} .= "domain_id,";
|
---|
| 927 | push @{$args{vallist}}, ${$args{domid}};
|
---|
| 928 | }
|
---|
| 929 |
|
---|
| 930 | } else {
|
---|
[467] | 931 | my ($code,$msg) = $self->_validate_65282(%args);
|
---|
[340] | 932 | return ($code, $msg) if $code eq 'FAIL';
|
---|
| 933 | # get domain, check against ${$args{name}}
|
---|
| 934 | }
|
---|
| 935 |
|
---|
[228] | 936 | return ('OK','OK');
|
---|
| 937 | } # done AAAA+PTR template record
|
---|
| 938 |
|
---|
| 939 | # AAAA+PTR template record
|
---|
| 940 | sub _validate_65284 {
|
---|
| 941 | return ('OK','OK');
|
---|
| 942 | } # done AAAA+PTR template record
|
---|
| 943 |
|
---|
[342] | 944 | # Delegation record
|
---|
[345] | 945 | # This is essentially a specialized clone of the NS record, primarily useful
|
---|
| 946 | # for delegating IPv4 sub-/24 reverse blocks
|
---|
[342] | 947 | sub _validate_65285 {
|
---|
[467] | 948 | my $self = shift;
|
---|
| 949 | my $dbh = $self->{dbh};
|
---|
[345] | 950 |
|
---|
| 951 | my %args = @_;
|
---|
| 952 |
|
---|
| 953 | # Almost, but not quite, identical to NS record validation.
|
---|
| 954 |
|
---|
| 955 | # Check that the target of the record is within the parent.
|
---|
| 956 | # Yes, host<->val are mixed up here; can't see a way to avoid it. :(
|
---|
| 957 | if ($args{defrec} eq 'n') {
|
---|
| 958 | # Check if IP/address/zone/"subzone" is within the parent
|
---|
| 959 | if ($args{revrec} eq 'y') {
|
---|
| 960 | my $tmpip = NetAddr::IP->new(${$args{val}});
|
---|
[467] | 961 | my $pname = $self->revName($args{id});
|
---|
[345] | 962 | return ('FAIL',"${$args{val}} not within $pname")
|
---|
[467] | 963 | unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$tmpip);
|
---|
[345] | 964 | # Normalize
|
---|
| 965 | ${$args{val}} = "$tmpip";
|
---|
| 966 | } else {
|
---|
[467] | 967 | my $pname = $self->domainName($args{id});
|
---|
[345] | 968 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
| 969 | }
|
---|
| 970 | } else {
|
---|
| 971 | return ('FAIL',"Delegation records are not permitted in default record sets");
|
---|
| 972 | }
|
---|
[342] | 973 | return ('OK','OK');
|
---|
| 974 | }
|
---|
[228] | 975 |
|
---|
[342] | 976 |
|
---|
[265] | 977 | ##
|
---|
| 978 | ## Record data substitution subs
|
---|
| 979 | ##
|
---|
[228] | 980 |
|
---|
[298] | 981 | # Replace ZONE in hostname, or create (most of) the actual proper zone name
|
---|
[265] | 982 | sub _ZONE {
|
---|
| 983 | my $zone = shift;
|
---|
| 984 | my $string = shift;
|
---|
| 985 | my $fr = shift || 'f'; # flag for forward/reverse order? nb: ignored for IP
|
---|
[298] | 986 | my $sep = shift || '-'; # Separator character - unlikely we'll ever need more than . or -
|
---|
[265] | 987 |
|
---|
[298] | 988 | my $prefix;
|
---|
[265] | 989 |
|
---|
| 990 | $string =~ s/,/./ if !$zone->{isv6};
|
---|
| 991 | $string =~ s/,/::/ if $zone->{isv6};
|
---|
| 992 |
|
---|
[298] | 993 | # Subbing ZONE in the host. We need to properly ID the netblock range
|
---|
| 994 | # The subbed text should have "network IP with trailing zeros stripped" for
|
---|
| 995 | # blocks lined up on octet (for v4) or hex-quad (for v6) boundaries
|
---|
| 996 | # For blocks that do NOT line up on these boundaries, we take the most
|
---|
| 997 | # significant octet or 16-bit chunk of the "broadcast" IP and append it
|
---|
| 998 | # after a double-dash
|
---|
| 999 | # ie:
|
---|
| 1000 | # 8.0.0.0/6 -> 8.0.0.0 -> 11.255.255.255; sub should be 8--11
|
---|
| 1001 | # 10.0.0.0/12 -> 10.0.0.0 -> 10.0.0.0 -> 10.15.255.255; sub should be 10-0--15
|
---|
| 1002 | # 192.168.4.0/22 -> 192.168.4.0 -> 192.168.7.255; sub should be 192-168-4--7
|
---|
| 1003 | # 192.168.0.8/29 -> 192.168.0.8 -> 192.168.0.15; sub should be 192-168-0-8--15
|
---|
| 1004 | # Similar for v6
|
---|
[265] | 1005 |
|
---|
[298] | 1006 | if (!$zone->{isv6}) { # IPv4
|
---|
| 1007 |
|
---|
| 1008 | $prefix = $zone->network->addr; # Just In Case someone managed to slip in
|
---|
| 1009 | # a funky subnet that had host bits set.
|
---|
| 1010 | my $bc = $zone->broadcast->addr;
|
---|
| 1011 |
|
---|
| 1012 | if ($zone->masklen > 24) {
|
---|
| 1013 | $bc =~ s/^\d+\.\d+\.\d+\.//;
|
---|
| 1014 | } elsif ($zone->masklen > 16) {
|
---|
| 1015 | $prefix =~ s/\.0$//;
|
---|
| 1016 | $bc =~ s/^\d+\.\d+\.//;
|
---|
| 1017 | } elsif ($zone->masklen > 8) {
|
---|
| 1018 | $bc =~ s/^\d+\.//;
|
---|
| 1019 | $prefix =~ s/\.0\.0$//;
|
---|
| 1020 | } else {
|
---|
| 1021 | $prefix =~ s/\.0\.0\.0$//;
|
---|
| 1022 | }
|
---|
| 1023 | if ($zone->masklen % 8) {
|
---|
| 1024 | $bc =~ s/(\.255)+$//;
|
---|
| 1025 | $prefix .= "--$bc"; #"--".zone->masklen; # use range or mask length?
|
---|
| 1026 | }
|
---|
| 1027 | if ($fr eq 'f') {
|
---|
| 1028 | $prefix =~ s/\.+/$sep/g;
|
---|
| 1029 | } else {
|
---|
| 1030 | $prefix = join($sep, reverse(split(/\./, $prefix)));
|
---|
| 1031 | }
|
---|
| 1032 |
|
---|
| 1033 | } else { # IPv6
|
---|
| 1034 |
|
---|
| 1035 | if ($fr eq 'f') {
|
---|
| 1036 |
|
---|
| 1037 | $prefix = $zone->network->addr; # Just In Case someone managed to slip in
|
---|
| 1038 | # a funky subnet that had host bits set.
|
---|
[265] | 1039 | my $bc = $zone->broadcast->addr;
|
---|
| 1040 | if (($zone->masklen % 16) != 0) {
|
---|
[298] | 1041 | # Strip trailing :0 off $prefix, and :ffff off the broadcast IP
|
---|
| 1042 | for (my $i=0; $i<(7-int($zone->masklen / 16)); $i++) {
|
---|
| 1043 | $prefix =~ s/:0$//;
|
---|
| 1044 | $bc =~ s/:ffff$//;
|
---|
| 1045 | }
|
---|
| 1046 | # Strip the leading 16-bit chunks off the front of the broadcast IP
|
---|
| 1047 | $bc =~ s/^([a-f0-9]+:)+//;
|
---|
| 1048 | # Append the remaining 16-bit chunk to the prefix after "--"
|
---|
| 1049 | $prefix .= "--$bc";
|
---|
[265] | 1050 | } else {
|
---|
[298] | 1051 | # Strip off :0 from the end until we reach the netblock length.
|
---|
| 1052 | for (my $i=0; $i<(8-$zone->masklen / 16); $i++) {
|
---|
[265] | 1053 | $prefix =~ s/:0$//;
|
---|
[298] | 1054 | }
|
---|
[265] | 1055 | }
|
---|
[298] | 1056 | # Actually deal with the separator
|
---|
| 1057 | $prefix =~ s/:/$sep/g;
|
---|
| 1058 |
|
---|
| 1059 | } else { # $fr eq 'f'
|
---|
| 1060 |
|
---|
| 1061 | $prefix = $zone->network->full; # Just In Case someone managed to slip in
|
---|
| 1062 | # a funky subnet that had host bits set.
|
---|
| 1063 | my $bc = $zone->broadcast->full;
|
---|
| 1064 | $prefix =~ s/://g; # clean these out since they're not spaced right for this case
|
---|
| 1065 | $bc =~ s/://g;
|
---|
| 1066 | # Strip trailing 0 off $prefix, and f off the broadcast IP, to match the mask length
|
---|
| 1067 | for (my $i=0; $i<(31-int($zone->masklen / 4)); $i++) {
|
---|
| 1068 | $prefix =~ s/0$//;
|
---|
| 1069 | $bc =~ s/f$//;
|
---|
| 1070 | }
|
---|
| 1071 | # Split and reverse the order of the nibbles in the network/broadcast IPs
|
---|
[332] | 1072 | # trim another 0 for nibble-aligned blocks first, but only if we really have a block, not an IP
|
---|
| 1073 | $prefix =~ s/0$// if $zone->masklen % 4 == 0 && $zone->masklen != 128;
|
---|
[298] | 1074 | my @nbits = reverse split //, $prefix;
|
---|
| 1075 | my @bbits = reverse split //, $bc;
|
---|
| 1076 | # Handle the sub-nibble case. Eww. I feel dirty supporting this...
|
---|
| 1077 | $nbits[0] = "$nbits[0]-$bbits[0]" if ($zone->masklen % 4) != 0;
|
---|
| 1078 | # Glue it back together
|
---|
| 1079 | $prefix = join($sep, @nbits);
|
---|
| 1080 |
|
---|
| 1081 | } # $fr ne 'f'
|
---|
| 1082 |
|
---|
| 1083 | } # $zone->{isv6}
|
---|
| 1084 |
|
---|
| 1085 | # Do the substitution, finally
|
---|
| 1086 | $string =~ s/ZONE/$prefix/;
|
---|
| 1087 | $string =~ s/--/-/ if $sep ne '-'; # - as separator needs extra help for sub-octet v4 netblocks
|
---|
| 1088 | return $string;
|
---|
| 1089 | } # done _ZONE()
|
---|
| 1090 |
|
---|
| 1091 | # Not quite a substitution sub, but placed here as it's basically the inverse of above;
|
---|
| 1092 | # given the .arpa zone name, return the CIDR netblock the zone is for.
|
---|
[304] | 1093 | # Supports v4 non-octet/non-classful netblocks as per the method outlined in the Grasshopper Book (2nd Ed p217-218)
|
---|
[298] | 1094 | # Does NOT support non-quad v6 netblocks via the same scheme; it shouldn't ever be necessary.
|
---|
| 1095 | # Takes a nominal .arpa zone name, returns a success code and NetAddr::IP, or a fail code and message
|
---|
| 1096 | sub _zone2cidr {
|
---|
| 1097 | my $zone = shift;
|
---|
| 1098 |
|
---|
| 1099 | my $cidr;
|
---|
[301] | 1100 | my $tmpcidr;
|
---|
| 1101 | my $warnmsg = '';
|
---|
[298] | 1102 |
|
---|
| 1103 | if ($zone =~ /\.in-addr\.arpa\.?$/) {
|
---|
| 1104 | # v4 revzone, formal zone name type
|
---|
| 1105 | my $tmpzone = $zone;
|
---|
| 1106 | $tmpzone =~ s/\.in-addr\.arpa\.?//;
|
---|
[301] | 1107 | return ('FAIL', "Non-numerics in apparent IPv4 reverse zone name") if $tmpzone !~ /^(?:\d+-)?[\d\.]+$/;
|
---|
[298] | 1108 |
|
---|
| 1109 | # Snag the octet pieces
|
---|
| 1110 | my @octs = split /\./, $tmpzone;
|
---|
| 1111 |
|
---|
| 1112 | # Map result of a range manipulation to a mask length change. Cheaper than finding the 2-root of $octets[0]+1.
|
---|
[304] | 1113 | # Note we will not support /31 blocks, mostly due to issues telling "24-31" -> .24/29 apart from
|
---|
| 1114 | # "24-31" -> .24/31", with a litte bit of "/31 is icky".
|
---|
| 1115 | my %maskmap = ( 3 => 2, 7 => 3, 15 => 4, 31 => 5, 63 => 6, 127 => 7,
|
---|
| 1116 | 30 => 2, 29 => 3, 28 => 4, 27 => 5, 26 => 6, 25 => 7
|
---|
| 1117 | );
|
---|
[298] | 1118 |
|
---|
| 1119 | # Handle "range" blocks, eg, 80-83.168.192.in-addr.arpa (192.168.80.0/22)
|
---|
| 1120 | # Need to take the size of the range to offset the basic octet-based mask length,
|
---|
| 1121 | # and make sure the first number in the range gets used as the network address for the block
|
---|
[304] | 1122 | # Alternate form: The second number is actually the real netmask, not the end of the range.
|
---|
[298] | 1123 | my $masklen = 0;
|
---|
[307] | 1124 | if ($octs[0] =~ /^((\d+)-(\d+))$/) { # take the range...
|
---|
| 1125 | if (24 < $3 && $3 < 31) {
|
---|
[304] | 1126 | # we have a real netmask
|
---|
[307] | 1127 | $masklen = -$maskmap{$3};
|
---|
[304] | 1128 | } else {
|
---|
| 1129 | # we have a range. NB: only real CIDR ranges are supported
|
---|
[307] | 1130 | $masklen -= $maskmap{-(eval $1)}; # find the mask base...
|
---|
[304] | 1131 | }
|
---|
[307] | 1132 | $octs[0] = $2; # set the base octet of the range...
|
---|
[265] | 1133 | }
|
---|
[298] | 1134 | @octs = reverse @octs; # We can reverse the octet pieces now that we've extracted and munged any ranges
|
---|
[265] | 1135 |
|
---|
[304] | 1136 | # arguably we should only allow sub-octet range/mask in-addr.arpa
|
---|
| 1137 | # specifications in the least significant octet, but the code is
|
---|
| 1138 | # simpler if we deal with sub-octet delegations at any level.
|
---|
| 1139 |
|
---|
[298] | 1140 | # Now we find the "true" mask with the aid of the "base" calculated above
|
---|
| 1141 | if ($#octs == 0) {
|
---|
| 1142 | $masklen += 8;
|
---|
| 1143 | $tmpcidr = "$octs[0].0.0.0/$masklen"; # really hope we don't see one of these very often.
|
---|
| 1144 | } elsif ($#octs == 1) {
|
---|
| 1145 | $masklen += 16;
|
---|
| 1146 | $tmpcidr = "$octs[0].$octs[1].0.0/$masklen";
|
---|
| 1147 | } elsif ($#octs == 2) {
|
---|
| 1148 | $masklen += 24;
|
---|
| 1149 | $tmpcidr = "$octs[0].$octs[1].$octs[2].0/$masklen";
|
---|
[265] | 1150 | } else {
|
---|
[298] | 1151 | $masklen += 32;
|
---|
| 1152 | $tmpcidr = "$octs[0].$octs[1].$octs[2].$octs[3]/$masklen";
|
---|
[265] | 1153 | }
|
---|
| 1154 |
|
---|
[298] | 1155 | } elsif ($zone =~ /\.ip6\.arpa$/) {
|
---|
| 1156 | # v6 revzone, formal zone name type
|
---|
| 1157 | my $tmpzone = $zone;
|
---|
| 1158 | $tmpzone =~ s/\.ip6\.arpa\.?//;
|
---|
[301] | 1159 | ##fixme: if-n-when we decide we can support sub-nibble v6 zone names, we'll need to change this segment
|
---|
| 1160 | return ('FAIL', "Non-hexadecimals in apparent IPv6 reverse zone name") if $tmpzone !~ /^[a-fA-F\d\.]+$/;
|
---|
[298] | 1161 | my @quads = reverse(split(/\./, $tmpzone));
|
---|
| 1162 | $warnmsg .= "Apparent sub-/64 IPv6 reverse zone\n" if $#quads > 15;
|
---|
| 1163 | my $nc;
|
---|
| 1164 | foreach (@quads) {
|
---|
[301] | 1165 | $tmpcidr .= $_;
|
---|
| 1166 | $tmpcidr .= ":" if ++$nc % 4 == 0;
|
---|
[298] | 1167 | }
|
---|
| 1168 | my $nq = 1 if $nc % 4 != 0;
|
---|
| 1169 | my $mask = $nc * 4; # need to do this here because we probably increment it below
|
---|
| 1170 | while ($nc++ % 4 != 0) {
|
---|
[301] | 1171 | $tmpcidr .= "0";
|
---|
[298] | 1172 | }
|
---|
[301] | 1173 | $tmpcidr .= ($nq ? '::' : ':')."/$mask";
|
---|
[298] | 1174 | }
|
---|
[301] | 1175 |
|
---|
| 1176 | # Just to be sure, use NetAddr::IP to validate. Saves a lot of nasty regex watching for valid octet values.
|
---|
| 1177 | return ('FAIL', "Invalid zone $zone (apparent netblock $tmpcidr)")
|
---|
| 1178 | unless $cidr = NetAddr::IP->new($tmpcidr);
|
---|
| 1179 |
|
---|
| 1180 | if ($warnmsg) {
|
---|
| 1181 | $errstr = $warnmsg;
|
---|
| 1182 | return ('WARN', $cidr);
|
---|
| 1183 | }
|
---|
| 1184 | return ('OK', $cidr);
|
---|
[298] | 1185 | } # done _zone2cidr()
|
---|
[265] | 1186 |
|
---|
[337] | 1187 | # Record template %-parameter expansion, IPv4. Note that IPv6 doesn't
|
---|
| 1188 | # really have a sane way to handle this type of expansion at the moment
|
---|
| 1189 | # due to the size of the address space.
|
---|
| 1190 | # Takes a reference to a template string to be expanded, and an IP to use in the replacement.
|
---|
| 1191 | sub _template4_expand {
|
---|
| 1192 | my $tmpl = shift;
|
---|
| 1193 | my $ip = shift;
|
---|
[298] | 1194 |
|
---|
[337] | 1195 | my @ipparts = split /\./, $ip;
|
---|
| 1196 | my @iphex;
|
---|
| 1197 | my @ippad;
|
---|
| 1198 | for (@ipparts) {
|
---|
| 1199 | push @iphex, sprintf("%x", $_);
|
---|
[443] | 1200 | push @ippad, sprintf("%0.3u", $_);
|
---|
[337] | 1201 | }
|
---|
| 1202 |
|
---|
| 1203 | # IP substitutions in template records:
|
---|
| 1204 | #major patterns:
|
---|
| 1205 | #dashed IP, forward and reverse
|
---|
| 1206 | #dotted IP, forward and reverse (even if forward is... dumb)
|
---|
| 1207 | # -> %r for reverse, %i for forward, leading - or . to indicate separator, defaults to -
|
---|
| 1208 | # %r or %-r => %4d-%3d-%2d-%1d
|
---|
| 1209 | # %.r => %4d.%3d.%2d.%1d
|
---|
| 1210 | # %i or %-i => %1d-%2d-%3d-%4d
|
---|
| 1211 | # %.i => %1d.%2d.%3d.%4d
|
---|
| 1212 | $$tmpl =~ s/\%r/\%4d-\%3d-\%2d-\%1d/g;
|
---|
| 1213 | $$tmpl =~ s/\%([-.])r/\%4d$1\%3d$1\%2d$1\%1d/g;
|
---|
| 1214 | $$tmpl =~ s/\%i/\%1d-\%2d-\%3d-\%4d/g;
|
---|
| 1215 | $$tmpl =~ s/\%([-.])i/\%1d$1\%2d$1\%3d$1\%4d/g;
|
---|
| 1216 |
|
---|
| 1217 | #hex-coded IP
|
---|
| 1218 | # %h
|
---|
| 1219 | $$tmpl =~ s/\%h/$iphex[0]$iphex[1]$iphex[2]$iphex[3]/g;
|
---|
| 1220 |
|
---|
| 1221 | #IP as decimal-coded 32-bit value
|
---|
| 1222 | # %d
|
---|
| 1223 | my $iptmp = $ipparts[0]*256*256*256 + $ipparts[1]*256*256 + $ipparts[2]*256 + $ipparts[3];
|
---|
| 1224 | $$tmpl =~ s/\%d/$iptmp/g;
|
---|
| 1225 |
|
---|
| 1226 | #minor patterns (per-octet)
|
---|
| 1227 | # %[1234][dh0]
|
---|
| 1228 | #octet
|
---|
| 1229 | #hex-coded octet
|
---|
| 1230 | #0-padded octet
|
---|
| 1231 | $$tmpl =~ s/\%([1234])d/$ipparts[$1-1]/g;
|
---|
| 1232 | $$tmpl =~ s/\%([1234])h/$iphex[$1-1]/g;
|
---|
[443] | 1233 | $$tmpl =~ s/\%([1234])0/$ippad[$1-1]/g;
|
---|
[337] | 1234 | } # _template4_expand()
|
---|
| 1235 |
|
---|
| 1236 |
|
---|
[228] | 1237 | ##
|
---|
[2] | 1238 | ## Initialization and cleanup subs
|
---|
| 1239 | ##
|
---|
| 1240 |
|
---|
[128] | 1241 | ## DNSDB::loadConfig()
|
---|
| 1242 | # Load the minimum required initial state (DB connect info) from a config file
|
---|
| 1243 | # Load misc other bits while we're at it.
|
---|
[400] | 1244 | # Takes an optional hash that may contain:
|
---|
| 1245 | # - basename and config path to look for
|
---|
[128] | 1246 | # Populates the %config and %def hashes
|
---|
| 1247 | sub loadConfig {
|
---|
[400] | 1248 | my %args = @_;
|
---|
[465] | 1249 | $args{configfile} = '' if !$args{configfile};
|
---|
[128] | 1250 |
|
---|
[465] | 1251 | ##fixme this is *intended* to load a system-default config template, and allow
|
---|
| 1252 | # overriding on a per-tool or per-web-UI-instance basis with a secondary config
|
---|
| 1253 | # file. The "default" config file can't be deleted in the current form.
|
---|
| 1254 |
|
---|
[128] | 1255 | my $deferr = ''; # place to put error from default config file in case we can't find either one
|
---|
| 1256 |
|
---|
[219] | 1257 | my $configroot = "/etc/dnsdb"; ##CFG_LEAF##
|
---|
[465] | 1258 | $configroot = '' if $args{configfile} =~ m|^/|; # allow passed siteconfig to specify an arbitrary absolute path
|
---|
| 1259 | $args{configfile} .= ".conf" if $args{configfile} !~ /\.conf$/;
|
---|
[128] | 1260 | my $defconfig = "$configroot/dnsdb.conf";
|
---|
[465] | 1261 | my $siteconfig = "$configroot/$args{configfile}";
|
---|
[128] | 1262 |
|
---|
| 1263 | # System defaults
|
---|
[465] | 1264 | __cfgload("$defconfig") or $deferr = $errstr;
|
---|
[128] | 1265 |
|
---|
[131] | 1266 | # Per-site-ish settings.
|
---|
[465] | 1267 | if ($args{configfile} ne '.conf') {
|
---|
| 1268 | unless (__cfgload("$siteconfig")) {
|
---|
[131] | 1269 | $errstr = ($deferr ? "Error opening default config file $defconfig: $deferr\n" : '').
|
---|
[128] | 1270 | "Error opening site config file $siteconfig";
|
---|
[131] | 1271 | return;
|
---|
| 1272 | }
|
---|
[128] | 1273 | }
|
---|
| 1274 |
|
---|
[195] | 1275 | # Munge log_failures.
|
---|
| 1276 | if ($config{log_failures} ne '1' && $config{log_failures} ne '0') {
|
---|
| 1277 | # true/false, on/off, yes/no all valid.
|
---|
| 1278 | if ($config{log_failures} =~ /^(?:true|false|on|off|yes|no)$/) {
|
---|
| 1279 | if ($config{log_failures} =~ /(?:true|on|yes)/) {
|
---|
| 1280 | $config{log_failures} = 1;
|
---|
| 1281 | } else {
|
---|
| 1282 | $config{log_failures} = 0;
|
---|
| 1283 | }
|
---|
| 1284 | } else {
|
---|
| 1285 | $errstr = "Bad log_failures setting $config{log_failures}";
|
---|
| 1286 | $config{log_failures} = 1;
|
---|
| 1287 | # Bad setting shouldn't be fatal.
|
---|
| 1288 | # return 2;
|
---|
| 1289 | }
|
---|
| 1290 | }
|
---|
| 1291 |
|
---|
[128] | 1292 | # All good, clear the error and go home.
|
---|
| 1293 | $errstr = '';
|
---|
| 1294 | return 1;
|
---|
| 1295 | } # end loadConfig()
|
---|
| 1296 |
|
---|
| 1297 |
|
---|
| 1298 | ## DNSDB::__cfgload()
|
---|
| 1299 | # Private sub to parse a config file and load it into %config
|
---|
[465] | 1300 | # Takes a filename
|
---|
[128] | 1301 | sub __cfgload {
|
---|
| 1302 | $errstr = '';
|
---|
| 1303 | my $cfgfile = shift;
|
---|
[131] | 1304 |
|
---|
[128] | 1305 | if (open CFG, "<$cfgfile") {
|
---|
| 1306 | while (<CFG>) {
|
---|
| 1307 | chomp;
|
---|
| 1308 | s/^\s*//;
|
---|
| 1309 | next if /^#/;
|
---|
| 1310 | next if /^$/;
|
---|
| 1311 | # hmm. more complex bits in this file might require [heading] headers, maybe?
|
---|
| 1312 | # $mode = $1 if /^\[(a-z)+]/;
|
---|
| 1313 | # DB connect info
|
---|
| 1314 | $config{dbname} = $1 if /^dbname\s*=\s*([a-z0-9_.-]+)/i;
|
---|
| 1315 | $config{dbuser} = $1 if /^dbuser\s*=\s*([a-z0-9_.-]+)/i;
|
---|
| 1316 | $config{dbpass} = $1 if /^dbpass\s*=\s*([a-z0-9_.-]+)/i;
|
---|
| 1317 | $config{dbhost} = $1 if /^dbhost\s*=\s*([a-z0-9_.-]+)/i;
|
---|
| 1318 | # SOA defaults
|
---|
| 1319 | $def{contact} = $1 if /^contact\s*=\s*([a-z0-9_.-]+)/i;
|
---|
| 1320 | $def{prins} = $1 if /^prins\s*=\s*([a-z0-9_.-]+)/i;
|
---|
[201] | 1321 | $def{soattl} = $1 if /^soattl\s*=\s*(\d+)/i;
|
---|
| 1322 | $def{refresh} = $1 if /^refresh\s*=\s*(\d+)/i;
|
---|
| 1323 | $def{retry} = $1 if /^retry\s*=\s*(\d+)/i;
|
---|
| 1324 | $def{expire} = $1 if /^expire\s*=\s*(\d+)/i;
|
---|
| 1325 | $def{minttl} = $1 if /^minttl\s*=\s*(\d+)/i;
|
---|
| 1326 | $def{ttl} = $1 if /^ttl\s*=\s*(\d+)/i;
|
---|
[128] | 1327 | # Mail settings
|
---|
| 1328 | $config{mailhost} = $1 if /^mailhost\s*=\s*([a-z0-9_.-]+)/i;
|
---|
[198] | 1329 | $config{mailnotify} = $1 if /^mailnotify\s*=\s*([a-z0-9_.\@-]+)/i;
|
---|
| 1330 | $config{mailsender} = $1 if /^mailsender\s*=\s*([a-z0-9_.\@-]+)/i;
|
---|
[128] | 1331 | $config{mailname} = $1 if /^mailname\s*=\s*([a-z0-9\s_.-]+)/i;
|
---|
[195] | 1332 | $config{orgname} = $1 if /^orgname\s*=\s*([a-z0-9\s_.,'-]+)/i;
|
---|
| 1333 | $config{domain} = $1 if /^domain\s*=\s*([a-z0-9_.-]+)/i;
|
---|
[163] | 1334 | # session - note this is fed directly to CGI::Session
|
---|
[216] | 1335 | $config{timeout} = $1 if /^[tT][iI][mM][eE][oO][uU][tT]\s*=\s*(\d+[smhdwMy]?)/;
|
---|
| 1336 | $config{sessiondir} = $1 if m{^sessiondir\s*=\s*([a-z0-9/_.-]+)}i;
|
---|
[201] | 1337 | # misc
|
---|
[195] | 1338 | $config{log_failures} = $1 if /^log_failures\s*=\s*([a-z01]+)/i;
|
---|
[201] | 1339 | $config{perpage} = $1 if /^perpage\s*=\s*(\d+)/i;
|
---|
[368] | 1340 | $config{exportcache} = $1 if m{^exportcache\s*=\s*([a-z0-9/_.-]+)}i;
|
---|
[400] | 1341 | # RPC options
|
---|
[465] | 1342 | $config{rpcmode} = $1 if /^rpc_mode\s*=\s*(socket|HTTP|XMLRPC)\s*$/i;
|
---|
[490] | 1343 | $config{maxfcgi} = $1 if /^max_fcgi_requests\s*=\s*(\d+)\s*$/i;
|
---|
[465] | 1344 | if (my ($tmp) = /^rpc_iplist\s*=\s*(.+)/i) {
|
---|
| 1345 | my @ips = split /[,\s]+/, $tmp;
|
---|
| 1346 | my $rpcsys = shift @ips;
|
---|
| 1347 | push @{$config{rpcacl}{$rpcsys}}, @ips;
|
---|
[400] | 1348 | }
|
---|
[128] | 1349 | }
|
---|
| 1350 | close CFG;
|
---|
| 1351 | } else {
|
---|
| 1352 | $errstr = $!;
|
---|
| 1353 | return;
|
---|
| 1354 | }
|
---|
| 1355 | return 1;
|
---|
| 1356 | } # end __cfgload()
|
---|
| 1357 |
|
---|
| 1358 |
|
---|
[2] | 1359 | ## DNSDB::connectDB()
|
---|
| 1360 | # Creates connection to DNS database.
|
---|
| 1361 | # Requires the database name, username, and password.
|
---|
[465] | 1362 | # Returns a handle to the db or undef on failure.
|
---|
[2] | 1363 | # Set up for a PostgreSQL db; could be any transactional DBMS with the
|
---|
| 1364 | # right changes.
|
---|
[465] | 1365 | # Called by new(); not intended to be called publicly.
|
---|
[2] | 1366 | sub connectDB {
|
---|
| 1367 | $errstr = '';
|
---|
[15] | 1368 | my $dbname = shift;
|
---|
| 1369 | my $user = shift;
|
---|
| 1370 | my $pass = shift;
|
---|
[2] | 1371 | my $dbh;
|
---|
| 1372 | my $DSN = "DBI:Pg:dbname=$dbname";
|
---|
| 1373 |
|
---|
| 1374 | my $host = shift;
|
---|
| 1375 | $DSN .= ";host=$host" if $host;
|
---|
| 1376 |
|
---|
| 1377 | # Note that we want to autocommit by default, and we will turn it off locally as necessary.
|
---|
| 1378 | # We may not want to print gobbledygook errors; YMMV. Have to ponder that further.
|
---|
| 1379 | $dbh = DBI->connect($DSN, $user, $pass, {
|
---|
| 1380 | AutoCommit => 1,
|
---|
| 1381 | PrintError => 0
|
---|
[465] | 1382 | });
|
---|
| 1383 | if (!$dbh) {
|
---|
| 1384 | $errstr = $DBI::errstr;
|
---|
| 1385 | return;
|
---|
| 1386 | }
|
---|
| 1387 | #) if(!$dbh);
|
---|
[2] | 1388 |
|
---|
[465] | 1389 | local $dbh->{RaiseError} = 1;
|
---|
| 1390 |
|
---|
| 1391 | eval {
|
---|
[212] | 1392 | ##fixme: initialize the DB if we can't find the table (since, by definition, there's
|
---|
| 1393 | # nothing there if we can't select from it...)
|
---|
[465] | 1394 | my $tblsth = $dbh->prepare("SELECT count(*) FROM pg_catalog.pg_class WHERE relkind='r' AND relname=?");
|
---|
| 1395 | my ($tblcount) = $dbh->selectrow_array($tblsth, undef, ('misc'));
|
---|
| 1396 | # return (undef,$DBI::errstr) if $dbh->err;
|
---|
[212] | 1397 |
|
---|
| 1398 | #if ($tblcount == 0) {
|
---|
| 1399 | # # create tables one at a time, checking for each.
|
---|
| 1400 | # return (undef, "check table misc missing");
|
---|
| 1401 | #}
|
---|
| 1402 |
|
---|
| 1403 | # Return here if we can't select.
|
---|
| 1404 | # This should retrieve the dbversion key.
|
---|
[465] | 1405 | my $sth = $dbh->prepare("SELECT key,value FROM misc WHERE misc_id=1");
|
---|
| 1406 | $sth->execute();
|
---|
| 1407 | # return (undef,$DBI::errstr) if ($sth->err);
|
---|
[2] | 1408 |
|
---|
[212] | 1409 | ##fixme: do stuff to the DB on version mismatch
|
---|
| 1410 | # x.y series should upgrade on $DNSDB::VERSION > misc(key=>version)
|
---|
| 1411 | # DB should be downward-compatible; column defaults should give sane (if possibly
|
---|
| 1412 | # useless-and-needs-help) values in columns an older software stack doesn't know about.
|
---|
| 1413 |
|
---|
[2] | 1414 | # See if the select returned anything (or null data). This should
|
---|
| 1415 | # succeed if the select executed, but...
|
---|
[465] | 1416 | $sth->fetchrow();
|
---|
| 1417 | # return (undef,$DBI::errstr) if ($sth->err);
|
---|
[2] | 1418 |
|
---|
[465] | 1419 | $sth->finish;
|
---|
[2] | 1420 |
|
---|
[465] | 1421 | }; # wrapped DB checks
|
---|
| 1422 | if ($@) {
|
---|
| 1423 | $errstr = $@;
|
---|
| 1424 | return;
|
---|
| 1425 | }
|
---|
| 1426 |
|
---|
[2] | 1427 | # If we get here, we should be OK.
|
---|
[465] | 1428 | return $dbh;
|
---|
[2] | 1429 | } # end connectDB
|
---|
| 1430 |
|
---|
| 1431 |
|
---|
| 1432 | ## DNSDB::finish()
|
---|
| 1433 | # Cleans up after database handles and so on.
|
---|
| 1434 | # Requires a database handle
|
---|
| 1435 | sub finish {
|
---|
[465] | 1436 | my $self = shift;
|
---|
| 1437 | $self->{dbh}->disconnect;
|
---|
[2] | 1438 | } # end finish
|
---|
| 1439 |
|
---|
| 1440 |
|
---|
| 1441 | ## DNSDB::initGlobals()
|
---|
| 1442 | # Initialize global variables
|
---|
| 1443 | # NB: this does NOT include web-specific session variables!
|
---|
| 1444 | sub initGlobals {
|
---|
[465] | 1445 | my $self = shift;
|
---|
| 1446 | my $dbh = $self->{dbh};
|
---|
[2] | 1447 |
|
---|
[208] | 1448 | # load record types from database
|
---|
[228] | 1449 | my $sth = $dbh->prepare("SELECT val,name,stdflag FROM rectypes");
|
---|
[2] | 1450 | $sth->execute;
|
---|
[228] | 1451 | while (my ($recval,$recname,$stdflag) = $sth->fetchrow_array()) {
|
---|
[2] | 1452 | $typemap{$recval} = $recname;
|
---|
| 1453 | $reverse_typemap{$recname} = $recval;
|
---|
[228] | 1454 | # now we fill the record validation function hash
|
---|
| 1455 | if ($stdflag < 5) {
|
---|
| 1456 | my $fn = "_validate_$recval";
|
---|
| 1457 | $validators{$recval} = \&$fn;
|
---|
| 1458 | } else {
|
---|
| 1459 | my $fn = "sub { return ('FAIL','Type $recval ($recname) not supported'); }";
|
---|
| 1460 | $validators{$recval} = eval $fn;
|
---|
| 1461 | }
|
---|
[2] | 1462 | }
|
---|
| 1463 | } # end initGlobals
|
---|
| 1464 |
|
---|
| 1465 |
|
---|
[401] | 1466 | ## DNSDB::initRPC()
|
---|
[469] | 1467 | # Takes a remote username and remote fullname.
|
---|
[401] | 1468 | # Sets up the RPC logging-pseudouser if needed.
|
---|
| 1469 | # Sets the %userdata hash for logging.
|
---|
| 1470 | # Returns undef on failure
|
---|
| 1471 | sub initRPC {
|
---|
[469] | 1472 | my $self = shift;
|
---|
| 1473 | my $dbh = $self->{dbh};
|
---|
[401] | 1474 | my %args = @_;
|
---|
| 1475 |
|
---|
| 1476 | return if !$args{username};
|
---|
| 1477 | return if !$args{fullname};
|
---|
| 1478 |
|
---|
[406] | 1479 | $args{username} = "$args{username}/$args{rpcsys}";
|
---|
| 1480 |
|
---|
| 1481 | my $tmpuser = $dbh->selectrow_hashref("SELECT username,user_id AS userid,group_id,firstname,lastname,status".
|
---|
[404] | 1482 | " FROM users WHERE username=?", undef, ($args{username}) );
|
---|
[406] | 1483 | if (!$tmpuser) {
|
---|
[401] | 1484 | $dbh->do("INSERT INTO users (username,password,firstname,type) VALUES (?,'RPC',?,'R')", undef,
|
---|
| 1485 | ($args{username}, $args{fullname}) );
|
---|
[406] | 1486 | $tmpuser = $dbh->selectrow_hashref("SELECT username,user_id AS userid,group_id,firstname,lastname,status".
|
---|
[404] | 1487 | " FROM users WHERE username=?", undef, ($args{username}) );
|
---|
[401] | 1488 | }
|
---|
[488] | 1489 | $tmpuser->{lastname} = '' if !$tmpuser->{lastname};
|
---|
| 1490 | $self->{loguserid} = $tmpuser->{userid};
|
---|
| 1491 | $self->{logusername} = $tmpuser->{username};
|
---|
| 1492 | $self->{logfullname} = "$tmpuser->{firstname} $tmpuser->{lastname} ($args{rpcsys})";
|
---|
[406] | 1493 | return 1 if $tmpuser;
|
---|
[401] | 1494 | } # end initRPC()
|
---|
| 1495 |
|
---|
| 1496 |
|
---|
[278] | 1497 | ## DNSDB::login()
|
---|
| 1498 | # Takes a database handle, username and password
|
---|
[316] | 1499 | # Returns a userdata hash (UID, GID, username, fullname parts) if username exists,
|
---|
| 1500 | # password matches the one on file, and account is not disabled
|
---|
[278] | 1501 | # Returns undef otherwise
|
---|
| 1502 | sub login {
|
---|
[469] | 1503 | my $self = shift;
|
---|
| 1504 | my $dbh = $self->{dbh};
|
---|
[278] | 1505 | my $user = shift;
|
---|
| 1506 | my $pass = shift;
|
---|
| 1507 |
|
---|
[316] | 1508 | my $userinfo = $dbh->selectrow_hashref("SELECT user_id,group_id,password,firstname,lastname,status".
|
---|
| 1509 | " FROM users WHERE username=?",
|
---|
[279] | 1510 | undef, ($user) );
|
---|
| 1511 | return if !$userinfo;
|
---|
[316] | 1512 | return if !$userinfo->{status};
|
---|
[278] | 1513 |
|
---|
[279] | 1514 | if ($userinfo->{password} =~ m|^\$1\$([A-Za-z0-9/.]+)\$|) {
|
---|
[278] | 1515 | # native passwords (crypt-md5)
|
---|
[279] | 1516 | return if $userinfo->{password} ne unix_md5_crypt($pass,$1);
|
---|
| 1517 | } elsif ($userinfo->{password} =~ /^[0-9a-f]{32}$/) {
|
---|
[278] | 1518 | # VegaDNS import (hex-coded MD5)
|
---|
[279] | 1519 | return if $userinfo->{password} ne md5_hex($pass);
|
---|
[278] | 1520 | } else {
|
---|
| 1521 | # plaintext (convenient now and then)
|
---|
[279] | 1522 | return if $userinfo->{password} ne $pass;
|
---|
[278] | 1523 | }
|
---|
| 1524 |
|
---|
[279] | 1525 | return $userinfo;
|
---|
[278] | 1526 | } # end login()
|
---|
| 1527 |
|
---|
| 1528 |
|
---|
[279] | 1529 | ## DNSDB::initActionLog()
|
---|
| 1530 | # Set up action logging. Takes a database handle and user ID
|
---|
| 1531 | # Sets some internal globals and Does The Right Thing to set up a logging channel.
|
---|
| 1532 | # This sets up _log() to spew out log entries to the defined channel without worrying
|
---|
| 1533 | # about having to open a file or a syslog channel
|
---|
| 1534 | ##fixme Need to call _initActionLog_blah() for various logging channels, configured
|
---|
| 1535 | # via dnsdb.conf, in $config{log_channel} or something
|
---|
| 1536 | # See https://secure.deepnet.cx/trac/dnsadmin/ticket/21
|
---|
| 1537 | sub initActionLog {
|
---|
[469] | 1538 | my $self = shift;
|
---|
| 1539 | my $dbh = $self->{dbh};
|
---|
[279] | 1540 | my $uid = shift;
|
---|
| 1541 |
|
---|
| 1542 | return if !$uid;
|
---|
| 1543 |
|
---|
| 1544 | # snag user info for logging. there's got to be a way to not have to pass this back
|
---|
| 1545 | # and forth from a caller, but web usage means no persistence we can rely on from
|
---|
| 1546 | # the server side.
|
---|
| 1547 | my ($username,$fullname) = $dbh->selectrow_array("SELECT username, firstname || ' ' || lastname".
|
---|
| 1548 | " FROM users WHERE user_id=?", undef, ($uid));
|
---|
| 1549 | ##fixme: errors are unpossible!
|
---|
| 1550 |
|
---|
[488] | 1551 | $self->{logusername} = $username;
|
---|
| 1552 | $self->{loguserid} = $uid;
|
---|
| 1553 | $self->{logfullname} = $fullname;
|
---|
[279] | 1554 |
|
---|
| 1555 | # convert to real check once we have other logging channels
|
---|
| 1556 | # if ($config{log_channel} eq 'sql') {
|
---|
| 1557 | # Open Log, Sez Me!
|
---|
| 1558 | # }
|
---|
| 1559 |
|
---|
| 1560 | } # end initActionLog
|
---|
| 1561 |
|
---|
| 1562 |
|
---|
[65] | 1563 | ## DNSDB::getPermissions()
|
---|
| 1564 | # Get permissions from DB
|
---|
| 1565 | # Requires DB handle, group or user flag, ID, and hashref.
|
---|
| 1566 | sub getPermissions {
|
---|
[469] | 1567 | my $self = shift;
|
---|
| 1568 | my $dbh = $self->{dbh};
|
---|
| 1569 |
|
---|
[65] | 1570 | my $type = shift;
|
---|
| 1571 | my $id = shift;
|
---|
| 1572 | my $hash = shift;
|
---|
| 1573 |
|
---|
| 1574 | my $sql = qq(
|
---|
| 1575 | SELECT
|
---|
| 1576 | p.admin,p.self_edit,
|
---|
| 1577 | p.group_create,p.group_edit,p.group_delete,
|
---|
| 1578 | p.user_create,p.user_edit,p.user_delete,
|
---|
| 1579 | p.domain_create,p.domain_edit,p.domain_delete,
|
---|
[387] | 1580 | p.record_create,p.record_edit,p.record_delete,p.record_locchg,
|
---|
[382] | 1581 | p.location_create,p.location_edit,p.location_delete,p.location_view
|
---|
[65] | 1582 | FROM permissions p
|
---|
| 1583 | );
|
---|
| 1584 | if ($type eq 'group') {
|
---|
| 1585 | $sql .= qq(
|
---|
| 1586 | JOIN groups g ON g.permission_id=p.permission_id
|
---|
| 1587 | WHERE g.group_id=?
|
---|
| 1588 | );
|
---|
| 1589 | } else {
|
---|
| 1590 | $sql .= qq(
|
---|
| 1591 | JOIN users u ON u.permission_id=p.permission_id
|
---|
| 1592 | WHERE u.user_id=?
|
---|
| 1593 | );
|
---|
| 1594 | }
|
---|
| 1595 |
|
---|
| 1596 | my $sth = $dbh->prepare($sql);
|
---|
| 1597 |
|
---|
| 1598 | $sth->execute($id) or die "argh: ".$sth->errstr;
|
---|
| 1599 |
|
---|
| 1600 | # my $permref = $sth->fetchrow_hashref;
|
---|
| 1601 | # return $permref;
|
---|
| 1602 | # $hash = $permref;
|
---|
| 1603 | # Eww. Need to learn how to forcibly drop a hashref onto an existing hash.
|
---|
| 1604 | ($hash->{admin},$hash->{self_edit},
|
---|
| 1605 | $hash->{group_create},$hash->{group_edit},$hash->{group_delete},
|
---|
| 1606 | $hash->{user_create},$hash->{user_edit},$hash->{user_delete},
|
---|
| 1607 | $hash->{domain_create},$hash->{domain_edit},$hash->{domain_delete},
|
---|
[387] | 1608 | $hash->{record_create},$hash->{record_edit},$hash->{record_delete},$hash->{record_locchg},
|
---|
[382] | 1609 | $hash->{location_create},$hash->{location_edit},$hash->{location_delete},$hash->{location_view}
|
---|
| 1610 | ) = $sth->fetchrow_array;
|
---|
[65] | 1611 |
|
---|
| 1612 | } # end getPermissions()
|
---|
| 1613 |
|
---|
| 1614 |
|
---|
| 1615 | ## DNSDB::changePermissions()
|
---|
| 1616 | # Update an ACL entry
|
---|
| 1617 | # Takes a db handle, type, owner-id, and hashref for the changed permissions.
|
---|
| 1618 | sub changePermissions {
|
---|
[474] | 1619 | my $self = shift;
|
---|
| 1620 | my $dbh = $self->{dbh};
|
---|
[65] | 1621 | my $type = shift;
|
---|
| 1622 | my $id = shift;
|
---|
| 1623 | my $newperms = shift;
|
---|
[87] | 1624 | my $inherit = shift || 0;
|
---|
[65] | 1625 |
|
---|
[294] | 1626 | my $resultmsg = '';
|
---|
[66] | 1627 |
|
---|
[87] | 1628 | # see if we're switching from inherited to custom. for bonus points,
|
---|
| 1629 | # snag the permid and parent permid anyway, since we'll need the permid
|
---|
| 1630 | # to set/alter custom perms, and both if we're switching from custom to
|
---|
| 1631 | # inherited.
|
---|
[294] | 1632 | my $sth = $dbh->prepare("SELECT (u.permission_id=g.permission_id) AS was_inherited,u.permission_id,g.permission_id,".
|
---|
| 1633 | ($type eq 'user' ? 'u.group_id,u.username' : 'u.parent_group_id,u.group_name').
|
---|
[65] | 1634 | " FROM ".($type eq 'user' ? 'users' : 'groups')." u ".
|
---|
[66] | 1635 | " JOIN groups g ON u.".($type eq 'user' ? '' : 'parent_')."group_id=g.group_id ".
|
---|
[65] | 1636 | " WHERE u.".($type eq 'user' ? 'user' : 'group')."_id=?");
|
---|
| 1637 | $sth->execute($id);
|
---|
| 1638 |
|
---|
[294] | 1639 | my ($wasinherited,$permid,$parpermid,$parid,$name) = $sth->fetchrow_array;
|
---|
[66] | 1640 |
|
---|
[78] | 1641 | # hack phtoui
|
---|
| 1642 | # group id 1 is "special" in that it's it's own parent (err... possibly.)
|
---|
| 1643 | # may make its parent id 0 which doesn't exist, and as a bonus is Perl-false.
|
---|
| 1644 | $wasinherited = 0 if ($type eq 'group' && $id == 1);
|
---|
| 1645 |
|
---|
[66] | 1646 | local $dbh->{AutoCommit} = 0;
|
---|
| 1647 | local $dbh->{RaiseError} = 1;
|
---|
| 1648 |
|
---|
| 1649 | # Wrap all the SQL in a transaction
|
---|
| 1650 | eval {
|
---|
[87] | 1651 | if ($inherit) {
|
---|
| 1652 |
|
---|
| 1653 | $dbh->do("UPDATE ".($type eq 'user' ? 'users' : 'groups')." SET inherit_perm='t',permission_id=? ".
|
---|
| 1654 | "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($parpermid, $id) );
|
---|
| 1655 | $dbh->do("DELETE FROM permissions WHERE permission_id=?", undef, ($permid) );
|
---|
| 1656 |
|
---|
| 1657 | } else {
|
---|
| 1658 |
|
---|
| 1659 | if ($wasinherited) { # munge new permission entry in if we're switching from inherited perms
|
---|
[66] | 1660 | ##fixme: need to add semirecursive bit to properly munge inherited permission ID on subgroups and users
|
---|
[87] | 1661 | # ... if'n'when we have groups with fully inherited permissions.
|
---|
| 1662 | # SQL is coo
|
---|
| 1663 | $dbh->do("INSERT INTO permissions ($permlist,".($type eq 'user' ? 'user' : 'group')."_id) ".
|
---|
| 1664 | "SELECT $permlist,? FROM permissions WHERE permission_id=?", undef, ($id,$permid) );
|
---|
| 1665 | ($permid) = $dbh->selectrow_array("SELECT permission_id FROM permissions ".
|
---|
| 1666 | "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($id) );
|
---|
| 1667 | $dbh->do("UPDATE ".($type eq 'user' ? 'users' : 'groups')." SET inherit_perm='f',permission_id=? ".
|
---|
| 1668 | "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($permid, $id) );
|
---|
[66] | 1669 | }
|
---|
[78] | 1670 |
|
---|
[87] | 1671 | # and now set the permissions we were passed
|
---|
| 1672 | foreach (@permtypes) {
|
---|
| 1673 | if (defined ($newperms->{$_})) {
|
---|
| 1674 | $dbh->do("UPDATE permissions SET $_=? WHERE permission_id=?", undef, ($newperms->{$_},$permid) );
|
---|
| 1675 | }
|
---|
| 1676 | }
|
---|
| 1677 |
|
---|
| 1678 | } # (inherited->)? custom
|
---|
| 1679 |
|
---|
[294] | 1680 | if ($type eq 'user') {
|
---|
| 1681 | $resultmsg = "Updated permissions for user $name";
|
---|
| 1682 | } else {
|
---|
| 1683 | $resultmsg = "Updated default permissions for group $name";
|
---|
| 1684 | }
|
---|
[487] | 1685 | $self->_log(group_id => ($type eq 'user' ? $parid : $id), entry => $resultmsg);
|
---|
[66] | 1686 | $dbh->commit;
|
---|
| 1687 | }; # end eval
|
---|
| 1688 | if ($@) {
|
---|
| 1689 | my $msg = $@;
|
---|
| 1690 | eval { $dbh->rollback; };
|
---|
[294] | 1691 | return ('FAIL',"Error changing permissions: $msg");
|
---|
[66] | 1692 | }
|
---|
| 1693 |
|
---|
[294] | 1694 | return ('OK',$resultmsg);
|
---|
[65] | 1695 | } # end changePermissions()
|
---|
| 1696 |
|
---|
| 1697 |
|
---|
[67] | 1698 | ## DNSDB::comparePermissions()
|
---|
| 1699 | # Compare two permission hashes
|
---|
| 1700 | # Returns '>', '<', '=', '!'
|
---|
| 1701 | sub comparePermissions {
|
---|
| 1702 | my $p1 = shift;
|
---|
| 1703 | my $p2 = shift;
|
---|
| 1704 |
|
---|
| 1705 | my $retval = '='; # assume equality until proven otherwise
|
---|
| 1706 |
|
---|
| 1707 | no warnings "uninitialized";
|
---|
| 1708 |
|
---|
| 1709 | foreach (@permtypes) {
|
---|
| 1710 | next if $p1->{$_} == $p2->{$_}; # equal is good
|
---|
| 1711 | if ($p1->{$_} && !$p2->{$_}) {
|
---|
| 1712 | if ($retval eq '<') { # if we've already found an unequal pair where
|
---|
| 1713 | $retval = '!'; # $p2 has more access, and we now find a pair
|
---|
| 1714 | last; # where $p1 has more access, the overall access
|
---|
| 1715 | } # is neither greater or lesser, it's unequal.
|
---|
| 1716 | $retval = '>';
|
---|
| 1717 | }
|
---|
| 1718 | if (!$p1->{$_} && $p2->{$_}) {
|
---|
| 1719 | if ($retval eq '>') { # if we've already found an unequal pair where
|
---|
| 1720 | $retval = '!'; # $p1 has more access, and we now find a pair
|
---|
| 1721 | last; # where $p2 has more access, the overall access
|
---|
| 1722 | } # is neither greater or lesser, it's unequal.
|
---|
| 1723 | $retval = '<';
|
---|
| 1724 | }
|
---|
| 1725 | }
|
---|
| 1726 | return $retval;
|
---|
| 1727 | } # end comparePermissions()
|
---|
| 1728 |
|
---|
| 1729 |
|
---|
[112] | 1730 | ## DNSDB::changeGroup()
|
---|
| 1731 | # Change group ID of an entity
|
---|
| 1732 | # Takes a database handle, entity type, entity ID, and new group ID
|
---|
| 1733 | sub changeGroup {
|
---|
[476] | 1734 | my $self = shift;
|
---|
| 1735 | my $dbh = $self->{dbh};
|
---|
[112] | 1736 | my $type = shift;
|
---|
| 1737 | my $id = shift;
|
---|
| 1738 | my $newgrp = shift;
|
---|
| 1739 |
|
---|
| 1740 | ##fixme: fail on not enough args
|
---|
| 1741 | #return ('FAIL', "Missing
|
---|
| 1742 |
|
---|
[295] | 1743 | return ('FAIL', "Can't change the group of a $type")
|
---|
| 1744 | unless grep /^$type$/, ('domain','revzone','user','group'); # could be extended for defrecs?
|
---|
| 1745 |
|
---|
| 1746 | # Collect some names for logging and messages
|
---|
| 1747 | my $entname;
|
---|
[112] | 1748 | if ($type eq 'domain') {
|
---|
[473] | 1749 | $entname = $self->domainName($id);
|
---|
[295] | 1750 | } elsif ($type eq 'revzone') {
|
---|
[473] | 1751 | $entname = $self->revName($id);
|
---|
[112] | 1752 | } elsif ($type eq 'user') {
|
---|
[473] | 1753 | $entname = $self->userFullName($id, '%u');
|
---|
[112] | 1754 | } elsif ($type eq 'group') {
|
---|
[473] | 1755 | $entname = $self->groupName($id);
|
---|
[112] | 1756 | }
|
---|
[295] | 1757 |
|
---|
| 1758 | my ($oldgid) = $dbh->selectrow_array("SELECT group_id FROM $par_tbl{$type} WHERE $id_col{$type}=?",
|
---|
| 1759 | undef, ($id));
|
---|
[473] | 1760 | my $oldgname = $self->groupName($oldgid);
|
---|
| 1761 | my $newgname = $self->groupName($newgrp);
|
---|
[295] | 1762 |
|
---|
| 1763 | return ('FAIL', "Can't move things into a group that doesn't exist") if !$newgname;
|
---|
| 1764 |
|
---|
| 1765 | return ('WARN', "Nothing to do, new group is the same as the old group") if $oldgid == $newgrp;
|
---|
| 1766 |
|
---|
| 1767 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 1768 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 1769 | local $dbh->{AutoCommit} = 0;
|
---|
| 1770 | local $dbh->{RaiseError} = 1;
|
---|
| 1771 |
|
---|
| 1772 | eval {
|
---|
| 1773 | $dbh->do("UPDATE $par_tbl{$type} SET group_id=? WHERE $id_col{$type}=?", undef, ($newgrp, $id));
|
---|
| 1774 | # Log the change in both the old and new groups
|
---|
[487] | 1775 | $self->_log(group_id => $oldgid, entry => "Moved $type $entname from $oldgname to $newgname");
|
---|
| 1776 | $self->_log(group_id => $newgrp, entry => "Moved $type $entname from $oldgname to $newgname");
|
---|
[295] | 1777 | $dbh->commit;
|
---|
| 1778 | };
|
---|
| 1779 | if ($@) {
|
---|
| 1780 | my $msg = $@;
|
---|
| 1781 | eval { $dbh->rollback; };
|
---|
| 1782 | if ($config{log_failures}) {
|
---|
[487] | 1783 | $self->_log(group_id => $oldgid, entry => "Error moving $type $entname to $newgname: $msg");
|
---|
[295] | 1784 | $dbh->commit; # since we enabled transactions earlier
|
---|
| 1785 | }
|
---|
| 1786 | return ('FAIL',"Error moving $type $entname to $newgname: $msg");
|
---|
| 1787 | }
|
---|
| 1788 |
|
---|
| 1789 | return ('OK',"Moved $type $entname from $oldgname to $newgname");
|
---|
[112] | 1790 | } # end changeGroup()
|
---|
| 1791 |
|
---|
| 1792 |
|
---|
[2] | 1793 | ##
|
---|
| 1794 | ## Processing subs
|
---|
| 1795 | ##
|
---|
| 1796 |
|
---|
| 1797 | ## DNSDB::addDomain()
|
---|
| 1798 | # Add a domain
|
---|
[190] | 1799 | # Takes a database handle, domain name, numeric group, boolean(ish) state (active/inactive),
|
---|
| 1800 | # and user info hash (for logging).
|
---|
[2] | 1801 | # Returns a status code and message
|
---|
| 1802 | sub addDomain {
|
---|
| 1803 | $errstr = '';
|
---|
[477] | 1804 | my $self = shift;
|
---|
| 1805 | my $dbh = $self->{dbh};
|
---|
[2] | 1806 | my $domain = shift;
|
---|
[497] | 1807 | return ('FAIL',"Domain must not be blank\n") if !$domain;
|
---|
[2] | 1808 | my $group = shift;
|
---|
[497] | 1809 | return ('FAIL',"Group must be specified\n") if !defined($group);
|
---|
[2] | 1810 | my $state = shift;
|
---|
[497] | 1811 | return ('FAIL',"Domain status must be specified\n") if !defined($state);
|
---|
[2] | 1812 |
|
---|
[116] | 1813 | $state = 1 if $state =~ /^active$/;
|
---|
| 1814 | $state = 1 if $state =~ /^on$/;
|
---|
| 1815 | $state = 0 if $state =~ /^inactive$/;
|
---|
| 1816 | $state = 0 if $state =~ /^off$/;
|
---|
| 1817 |
|
---|
| 1818 | return ('FAIL',"Invalid domain status") if $state !~ /^\d+$/;
|
---|
| 1819 |
|
---|
[190] | 1820 | return ('FAIL', "Invalid characters in domain") if $domain !~ /^[a-zA-Z0-9_.-]+$/;
|
---|
| 1821 |
|
---|
[349] | 1822 | my $sth = $dbh->prepare("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)");
|
---|
[3] | 1823 | my $dom_id;
|
---|
| 1824 |
|
---|
[38] | 1825 | # quick check to start to see if we've already got one
|
---|
| 1826 | $sth->execute($domain);
|
---|
| 1827 | ($dom_id) = $sth->fetchrow_array;
|
---|
| 1828 |
|
---|
| 1829 | return ('FAIL', "Domain already exists") if $dom_id;
|
---|
| 1830 |
|
---|
[2] | 1831 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 1832 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 1833 | local $dbh->{AutoCommit} = 0;
|
---|
| 1834 | local $dbh->{RaiseError} = 1;
|
---|
| 1835 |
|
---|
| 1836 | # Wrap all the SQL in a transaction
|
---|
| 1837 | eval {
|
---|
| 1838 | # insert the domain...
|
---|
[190] | 1839 | $dbh->do("INSERT INTO domains (domain,group_id,status) VALUES (?,?,?)", undef, ($domain, $group, $state));
|
---|
[2] | 1840 |
|
---|
| 1841 | # get the ID...
|
---|
[349] | 1842 | ($dom_id) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)",
|
---|
| 1843 | undef, ($domain));
|
---|
[2] | 1844 |
|
---|
[487] | 1845 | $self->_log(domain_id => $dom_id, group_id => $group,
|
---|
| 1846 | entry => "Added ".($state ? 'active' : 'inactive')." domain $domain");
|
---|
[190] | 1847 |
|
---|
[2] | 1848 | # ... and now we construct the standard records from the default set. NB: group should be variable.
|
---|
[190] | 1849 | my $sth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl FROM default_records WHERE group_id=?");
|
---|
| 1850 | my $sth_in = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,distance,weight,port,ttl)".
|
---|
| 1851 | " VALUES ($dom_id,?,?,?,?,?,?,?)");
|
---|
| 1852 | $sth->execute($group);
|
---|
[3] | 1853 | while (my ($host,$type,$val,$dist,$weight,$port,$ttl) = $sth->fetchrow_array()) {
|
---|
[2] | 1854 | $host =~ s/DOMAIN/$domain/g;
|
---|
[37] | 1855 | $val =~ s/DOMAIN/$domain/g;
|
---|
[3] | 1856 | $sth_in->execute($host,$type,$val,$dist,$weight,$port,$ttl);
|
---|
[190] | 1857 | if ($typemap{$type} eq 'SOA') {
|
---|
| 1858 | my @tmp1 = split /:/, $host;
|
---|
| 1859 | my @tmp2 = split /:/, $val;
|
---|
[487] | 1860 | $self->_log(domain_id => $dom_id, group_id => $group,
|
---|
[284] | 1861 | entry => "[new $domain] Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
|
---|
[487] | 1862 | "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl");
|
---|
[190] | 1863 | } else {
|
---|
| 1864 | my $logentry = "[new $domain] Added record '$host $typemap{$type}";
|
---|
| 1865 | $logentry .= " [distance $dist]" if $typemap{$type} eq 'MX';
|
---|
| 1866 | $logentry .= " [priority $dist] [weight $weight] [port $port]" if $typemap{$type} eq 'SRV';
|
---|
[487] | 1867 | $self->_log(domain_id => $dom_id, group_id => $group,
|
---|
| 1868 | entry => $logentry." $val', TTL $ttl");
|
---|
[190] | 1869 | }
|
---|
[2] | 1870 | }
|
---|
| 1871 |
|
---|
| 1872 | # once we get here, we should have suceeded.
|
---|
| 1873 | $dbh->commit;
|
---|
| 1874 | }; # end eval
|
---|
| 1875 |
|
---|
| 1876 | if ($@) {
|
---|
| 1877 | my $msg = $@;
|
---|
| 1878 | eval { $dbh->rollback; };
|
---|
[487] | 1879 | $self->_log(group_id => $group, entry => "Failed adding domain $domain ($msg)")
|
---|
[284] | 1880 | if $config{log_failures};
|
---|
| 1881 | $dbh->commit; # since we enabled transactions earlier
|
---|
[193] | 1882 | return ('FAIL',$msg);
|
---|
[2] | 1883 | } else {
|
---|
[3] | 1884 | return ('OK',$dom_id);
|
---|
[2] | 1885 | }
|
---|
| 1886 | } # end addDomain
|
---|
| 1887 |
|
---|
| 1888 |
|
---|
[274] | 1889 | ## DNSDB::delZone()
|
---|
| 1890 | # Delete a forward or reverse zone.
|
---|
| 1891 | # Takes a database handle, zone ID, and forward/reverse flag.
|
---|
[3] | 1892 | # for now, just delete the records, then the domain.
|
---|
| 1893 | # later we may want to archive it in some way instead (status code 2, for example?)
|
---|
[274] | 1894 | sub delZone {
|
---|
[477] | 1895 | my $self = shift;
|
---|
| 1896 | my $dbh = $self->{dbh};
|
---|
[274] | 1897 | my $zoneid = shift;
|
---|
| 1898 | my $revrec = shift;
|
---|
[3] | 1899 |
|
---|
| 1900 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 1901 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 1902 | local $dbh->{AutoCommit} = 0;
|
---|
| 1903 | local $dbh->{RaiseError} = 1;
|
---|
| 1904 |
|
---|
[285] | 1905 | my $msg = '';
|
---|
[23] | 1906 | my $failmsg = '';
|
---|
[473] | 1907 | my $zone = ($revrec eq 'n' ? $self->domainName($zoneid) : $self->revName($zoneid));
|
---|
[23] | 1908 |
|
---|
[343] | 1909 | return ('FAIL', ($revrec eq 'n' ? 'Domain' : 'Reverse zone')." ID $zoneid doesn't exist") if !$zone;
|
---|
| 1910 |
|
---|
[285] | 1911 | # Set this up here since we may use if if $config{log_failures} is enabled
|
---|
| 1912 | my %loghash;
|
---|
| 1913 | $loghash{domain_id} = $zoneid if $revrec eq 'n';
|
---|
| 1914 | $loghash{rdns_id} = $zoneid if $revrec eq 'y';
|
---|
[473] | 1915 | $loghash{group_id} = $self->parentID(
|
---|
| 1916 | id => $zoneid, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec);
|
---|
[285] | 1917 |
|
---|
[3] | 1918 | # Wrap all the SQL in a transaction
|
---|
| 1919 | eval {
|
---|
[274] | 1920 | # Disentangle custom record types before removing the
|
---|
| 1921 | # ones that are only in the zone to be deleted
|
---|
| 1922 | if ($revrec eq 'n') {
|
---|
| 1923 | my $sth = $dbh->prepare("UPDATE records SET type=?,domain_id=0 WHERE domain_id=? AND type=?");
|
---|
| 1924 | $failmsg = "Failure converting multizone types to single-zone";
|
---|
| 1925 | $sth->execute($reverse_typemap{PTR}, $zoneid, 65280);
|
---|
| 1926 | $sth->execute($reverse_typemap{PTR}, $zoneid, 65281);
|
---|
| 1927 | $sth->execute(65282, $zoneid, 65283);
|
---|
| 1928 | $sth->execute(65282, $zoneid, 65284);
|
---|
| 1929 | $failmsg = "Failure removing domain records";
|
---|
| 1930 | $dbh->do("DELETE FROM records WHERE domain_id=?", undef, ($zoneid));
|
---|
| 1931 | $failmsg = "Failure removing domain";
|
---|
| 1932 | $dbh->do("DELETE FROM domains WHERE domain_id=?", undef, ($zoneid));
|
---|
| 1933 | } else {
|
---|
| 1934 | my $sth = $dbh->prepare("UPDATE records SET type=?,rdns_id=0 WHERE rdns_id=? AND type=?");
|
---|
| 1935 | $failmsg = "Failure converting multizone types to single-zone";
|
---|
| 1936 | $sth->execute($reverse_typemap{A}, $zoneid, 65280);
|
---|
| 1937 | $sth->execute($reverse_typemap{AAAA}, $zoneid, 65281);
|
---|
| 1938 | # We don't have an "A template" or "AAAA template" type, although it might be useful for symmetry.
|
---|
[345] | 1939 | # $sth->execute(65286?, $zoneid, 65283);
|
---|
| 1940 | # $sth->execute(65286?, $zoneid, 65284);
|
---|
[274] | 1941 | $failmsg = "Failure removing reverse records";
|
---|
| 1942 | $dbh->do("DELETE FROM records WHERE rdns_id=?", undef, ($zoneid));
|
---|
| 1943 | $failmsg = "Failure removing reverse zone";
|
---|
| 1944 | $dbh->do("DELETE FROM revzones WHERE rdns_id=?", undef, ($zoneid));
|
---|
| 1945 | }
|
---|
[3] | 1946 |
|
---|
[285] | 1947 | $msg = "Deleted ".($revrec eq 'n' ? 'domain' : 'reverse zone')." $zone";
|
---|
| 1948 | $loghash{entry} = $msg;
|
---|
[487] | 1949 | $self->_log(%loghash);
|
---|
[285] | 1950 |
|
---|
[3] | 1951 | # once we get here, we should have suceeded.
|
---|
[23] | 1952 | $dbh->commit;
|
---|
[3] | 1953 | }; # end eval
|
---|
| 1954 |
|
---|
| 1955 | if ($@) {
|
---|
[285] | 1956 | $msg = $@;
|
---|
[3] | 1957 | eval { $dbh->rollback; };
|
---|
[295] | 1958 | $loghash{entry} = "Error deleting $zone: $msg ($failmsg)";
|
---|
| 1959 | if ($config{log_failures}) {
|
---|
[487] | 1960 | $self->_log(%loghash);
|
---|
[295] | 1961 | $dbh->commit; # since we enabled transactions earlier
|
---|
| 1962 | }
|
---|
| 1963 | return ('FAIL', $loghash{entry});
|
---|
[3] | 1964 | } else {
|
---|
[295] | 1965 | return ('OK', $msg);
|
---|
[3] | 1966 | }
|
---|
| 1967 |
|
---|
[274] | 1968 | } # end delZone()
|
---|
[3] | 1969 |
|
---|
| 1970 |
|
---|
[2] | 1971 | ## DNSDB::domainName()
|
---|
| 1972 | # Return the domain name based on a domain ID
|
---|
| 1973 | # Takes a database handle and the domain ID
|
---|
| 1974 | # Returns the domain name or undef on failure
|
---|
| 1975 | sub domainName {
|
---|
| 1976 | $errstr = '';
|
---|
[473] | 1977 | my $self = shift;
|
---|
| 1978 | my $dbh = $self->{dbh};
|
---|
[2] | 1979 | my $domid = shift;
|
---|
[91] | 1980 | my ($domname) = $dbh->selectrow_array("SELECT domain FROM domains WHERE domain_id=?", undef, ($domid) );
|
---|
[2] | 1981 | $errstr = $DBI::errstr if !$domname;
|
---|
| 1982 | return $domname if $domname;
|
---|
[91] | 1983 | } # end domainName()
|
---|
[2] | 1984 |
|
---|
| 1985 |
|
---|
[224] | 1986 | ## DNSDB::revName()
|
---|
| 1987 | # Return the reverse zone name based on an rDNS ID
|
---|
| 1988 | # Takes a database handle and the rDNS ID
|
---|
| 1989 | # Returns the reverse zone name or undef on failure
|
---|
| 1990 | sub revName {
|
---|
| 1991 | $errstr = '';
|
---|
[473] | 1992 | my $self = shift;
|
---|
| 1993 | my $dbh = $self->{dbh};
|
---|
[224] | 1994 | my $revid = shift;
|
---|
| 1995 | my ($revname) = $dbh->selectrow_array("SELECT revnet FROM revzones WHERE rdns_id=?", undef, ($revid) );
|
---|
| 1996 | $errstr = $DBI::errstr if !$revname;
|
---|
| 1997 | return $revname if $revname;
|
---|
| 1998 | } # end revName()
|
---|
| 1999 |
|
---|
| 2000 |
|
---|
[91] | 2001 | ## DNSDB::domainID()
|
---|
| 2002 | # Takes a database handle and domain name
|
---|
| 2003 | # Returns the domain ID number
|
---|
| 2004 | sub domainID {
|
---|
| 2005 | $errstr = '';
|
---|
[473] | 2006 | my $self = shift;
|
---|
| 2007 | my $dbh = $self->{dbh};
|
---|
[91] | 2008 | my $domain = shift;
|
---|
[349] | 2009 | my ($domid) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)",
|
---|
| 2010 | undef, ($domain) );
|
---|
[501] | 2011 | if (!$domid) {
|
---|
| 2012 | if ($dbh->err) {
|
---|
| 2013 | $errstr = $DBI::errstr;
|
---|
| 2014 | } else {
|
---|
| 2015 | $errstr = "Domain $domain not present";
|
---|
| 2016 | }
|
---|
| 2017 | }
|
---|
[91] | 2018 | return $domid if $domid;
|
---|
| 2019 | } # end domainID()
|
---|
| 2020 |
|
---|
| 2021 |
|
---|
[276] | 2022 | ## DNSDB::revID()
|
---|
| 2023 | # Takes a database handle and reverse zone name
|
---|
| 2024 | # Returns the rDNS ID number
|
---|
| 2025 | sub revID {
|
---|
| 2026 | $errstr = '';
|
---|
[473] | 2027 | my $self = shift;
|
---|
| 2028 | my $dbh = $self->{dbh};
|
---|
[276] | 2029 | my $revzone = shift;
|
---|
| 2030 | my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet=?", undef, ($revzone) );
|
---|
[501] | 2031 | if (!$revid) {
|
---|
| 2032 | if ($dbh->err) {
|
---|
| 2033 | $errstr = $DBI::errstr;
|
---|
| 2034 | } else {
|
---|
| 2035 | $errstr = "Reverse zone $revzone not present";
|
---|
| 2036 | }
|
---|
| 2037 | }
|
---|
[276] | 2038 | return $revid if $revid;
|
---|
| 2039 | } # end revID()
|
---|
| 2040 |
|
---|
| 2041 |
|
---|
[260] | 2042 | ## DNSDB::addRDNS
|
---|
| 2043 | # Adds a reverse DNS zone
|
---|
[286] | 2044 | # Takes a database handle, CIDR block, reverse DNS pattern, numeric group,
|
---|
| 2045 | # and boolean(ish) state (active/inactive)
|
---|
[260] | 2046 | # Returns a status code and message
|
---|
| 2047 | sub addRDNS {
|
---|
[477] | 2048 | my $self = shift;
|
---|
| 2049 | my $dbh = $self->{dbh};
|
---|
[260] | 2050 | my $zone = NetAddr::IP->new(shift);
|
---|
[446] | 2051 |
|
---|
[260] | 2052 | return ('FAIL',"Zone name must be a valid CIDR netblock") unless ($zone && $zone->addr !~ /^0/);
|
---|
[270] | 2053 | my $revpatt = shift; # construct a custom (A/AAAA+)? PTR template record
|
---|
[260] | 2054 | my $group = shift;
|
---|
| 2055 | my $state = shift;
|
---|
[446] | 2056 | my $defloc = shift || '';
|
---|
[260] | 2057 |
|
---|
| 2058 | $state = 1 if $state =~ /^active$/;
|
---|
| 2059 | $state = 1 if $state =~ /^on$/;
|
---|
| 2060 | $state = 0 if $state =~ /^inactive$/;
|
---|
| 2061 | $state = 0 if $state =~ /^off$/;
|
---|
| 2062 |
|
---|
| 2063 | return ('FAIL',"Invalid zone status") if $state !~ /^\d+$/;
|
---|
| 2064 |
|
---|
| 2065 | # quick check to start to see if we've already got one
|
---|
[299] | 2066 | my ($rdns_id) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet=?", undef, ("$zone"));
|
---|
[260] | 2067 |
|
---|
| 2068 | return ('FAIL', "Zone already exists") if $rdns_id;
|
---|
| 2069 |
|
---|
| 2070 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2071 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2072 | local $dbh->{AutoCommit} = 0;
|
---|
| 2073 | local $dbh->{RaiseError} = 1;
|
---|
| 2074 |
|
---|
[264] | 2075 | my $warnstr = '';
|
---|
[270] | 2076 | my $defttl = 3600; # 1 hour should be reasonable. And unless things have gone horribly
|
---|
| 2077 | # wrong, we should have a value to override this anyway.
|
---|
[264] | 2078 |
|
---|
[260] | 2079 | # Wrap all the SQL in a transaction
|
---|
| 2080 | eval {
|
---|
[446] | 2081 | # insert the zone...
|
---|
| 2082 | $dbh->do("INSERT INTO revzones (revnet,group_id,status,default_location) VALUES (?,?,?,?)", undef,
|
---|
| 2083 | ($zone, $group, $state, $defloc) );
|
---|
[260] | 2084 |
|
---|
| 2085 | # get the ID...
|
---|
| 2086 | ($rdns_id) = $dbh->selectrow_array("SELECT currval('revzones_rdns_id_seq')");
|
---|
| 2087 |
|
---|
[487] | 2088 | $self->_log(rdns_id => $rdns_id, group_id => $group,
|
---|
| 2089 | entry => "Added ".($state ? 'active' : 'inactive')." reverse zone $zone");
|
---|
[260] | 2090 |
|
---|
| 2091 | # ... and now we construct the standard records from the default set. NB: group should be variable.
|
---|
| 2092 | my $sth = $dbh->prepare("SELECT host,type,val,ttl FROM default_rev_records WHERE group_id=?");
|
---|
[446] | 2093 | my $sth_in = $dbh->prepare("INSERT INTO records (rdns_id,domain_id,host,type,val,ttl,location)".
|
---|
| 2094 | " VALUES ($rdns_id,?,?,?,?,?,?)");
|
---|
[260] | 2095 | $sth->execute($group);
|
---|
| 2096 | while (my ($host,$type,$val,$ttl) = $sth->fetchrow_array()) {
|
---|
[264] | 2097 | # Silently skip v4/v6 mismatches. This is not an error, this is expected.
|
---|
| 2098 | if ($zone->{isv6}) {
|
---|
| 2099 | next if ($type == 65280 || $type == 65283);
|
---|
| 2100 | } else {
|
---|
| 2101 | next if ($type == 65281 || $type == 65284);
|
---|
| 2102 | }
|
---|
[269] | 2103 |
|
---|
[260] | 2104 | $host =~ s/ADMINDOMAIN/$config{domain}/g;
|
---|
[264] | 2105 |
|
---|
[265] | 2106 | # Check to make sure the IP stubs will fit in the zone. Under most usage failures here should be rare.
|
---|
| 2107 | # On failure, tack a note on to a warning string and continue without adding this record.
|
---|
| 2108 | # While we're at it, we substitute $zone for ZONE in the value.
|
---|
| 2109 | if ($val eq 'ZONE') {
|
---|
[444] | 2110 | # If we've got a pattern, we skip the default record version on (A+)PTR-template types
|
---|
| 2111 | next if $revpatt && ($type == 65282 || $type == 65283);
|
---|
[269] | 2112 | ##fixme? do we care if we have multiple whole-zone templates?
|
---|
[265] | 2113 | $val = $zone->network;
|
---|
| 2114 | } elsif ($val =~ /ZONE/) {
|
---|
| 2115 | my $tmpval = $val;
|
---|
| 2116 | $tmpval =~ s/ZONE//;
|
---|
[269] | 2117 | # Bend the rules and allow single-trailing-number PTR or PTR template records to be inserted
|
---|
| 2118 | # as either v4 or v6. May make this an off-by-default config flag
|
---|
| 2119 | # Note that the origin records that may trigger this **SHOULD** already have ZONE,\d
|
---|
| 2120 | if ($type == 12 || $type == 65282) {
|
---|
| 2121 | $tmpval =~ s/[,.]/::/ if ($tmpval =~ /^[,.]\d+$/ && $zone->{isv6});
|
---|
| 2122 | $tmpval =~ s/[,:]+/./ if ($tmpval =~ /^(?:,|::)\d+$/ && !$zone->{isv6});
|
---|
| 2123 | }
|
---|
[265] | 2124 | my $addr;
|
---|
[471] | 2125 | if ($self->_ipparent('n', 'y', \$tmpval, $rdns_id, \$addr)) {
|
---|
[265] | 2126 | $val = $addr->addr;
|
---|
| 2127 | } else {
|
---|
[269] | 2128 | $warnstr .= "\nDefault record '$val $typemap{$type} $host' doesn't fit in $zone, skipping";
|
---|
[264] | 2129 | next;
|
---|
| 2130 | }
|
---|
| 2131 | }
|
---|
| 2132 |
|
---|
[328] | 2133 | # Substitute $zone for ZONE in the hostname, but only for non-NS records.
|
---|
| 2134 | # NS records get this substitution on the value instead.
|
---|
| 2135 | $host = _ZONE($zone, $host) if $type != 2;
|
---|
[265] | 2136 |
|
---|
[269] | 2137 | # Fill in the forward domain ID if we can find it, otherwise:
|
---|
| 2138 | # Coerce type down to PTR or PTR template if we can't
|
---|
| 2139 | my $domid = 0;
|
---|
| 2140 | if ($type >= 65280) {
|
---|
[471] | 2141 | if (!($domid = $self->_hostparent($host))) {
|
---|
[269] | 2142 | $warnstr .= "\nRecord added as PTR instead of $typemap{$type}; domain not found for $host";
|
---|
| 2143 | $type = $reverse_typemap{PTR};
|
---|
| 2144 | $domid = 0; # just to be explicit.
|
---|
| 2145 | }
|
---|
| 2146 | }
|
---|
| 2147 |
|
---|
[446] | 2148 | $sth_in->execute($domid,$host,$type,$val,$ttl,$defloc);
|
---|
[269] | 2149 |
|
---|
[260] | 2150 | if ($typemap{$type} eq 'SOA') {
|
---|
| 2151 | my @tmp1 = split /:/, $host;
|
---|
| 2152 | my @tmp2 = split /:/, $val;
|
---|
[487] | 2153 | $self->_log(rdns_id => $rdns_id, group_id => $group,
|
---|
[286] | 2154 | entry => "[new $zone] Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
|
---|
[487] | 2155 | "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl");
|
---|
[270] | 2156 | $defttl = $tmp2[3];
|
---|
[260] | 2157 | } else {
|
---|
[446] | 2158 | my $logentry = "[new $zone] Added record '$host $typemap{$type} $val', TTL $ttl";
|
---|
[480] | 2159 | $logentry .= ", default location ".$self->getLoc($defloc)->{description} if $defloc;
|
---|
[487] | 2160 | $self->_log(rdns_id => $rdns_id, domain_id => $domid, group_id => $group, entry => $logentry);
|
---|
[260] | 2161 | }
|
---|
| 2162 | }
|
---|
| 2163 |
|
---|
[270] | 2164 | # Generate record based on provided pattern.
|
---|
| 2165 | if ($revpatt) {
|
---|
| 2166 | my $host;
|
---|
| 2167 | my $type = ($zone->{isv6} ? 65284 : 65283);
|
---|
| 2168 | my $val = $zone->network;
|
---|
[269] | 2169 |
|
---|
[270] | 2170 | # Substitute $zone for ZONE in the hostname.
|
---|
| 2171 | $host = _ZONE($zone, $revpatt);
|
---|
| 2172 |
|
---|
| 2173 | my $domid = 0;
|
---|
[471] | 2174 | if (!($domid = $self->_hostparent($host))) {
|
---|
[270] | 2175 | $warnstr .= "\nDefault pattern added as PTR template instead of $typemap{$type}; domain not found for $host";
|
---|
| 2176 | $type = 65282;
|
---|
| 2177 | $domid = 0; # just to be explicit.
|
---|
| 2178 | }
|
---|
| 2179 |
|
---|
[446] | 2180 | $sth_in->execute($domid,$host,$type,$val,$defttl,$defloc);
|
---|
[286] | 2181 | my $logentry = "[new $zone] Added record '$host $typemap{$type}";
|
---|
[487] | 2182 | $self->_log(rdns_id => $rdns_id, domain_id => $domid, group_id => $group,
|
---|
| 2183 | entry => $logentry." $val', TTL $defttl from pattern");
|
---|
[270] | 2184 | }
|
---|
| 2185 |
|
---|
[264] | 2186 | # If there are warnings (presumably about default records skipped for cause) log them
|
---|
[487] | 2187 | $self->_log(rdns_id => $rdns_id, group_id => $group, entry => "Warning(s) adding $zone:$warnstr")
|
---|
[264] | 2188 | if $warnstr;
|
---|
[269] | 2189 |
|
---|
[260] | 2190 | # once we get here, we should have suceeded.
|
---|
| 2191 | $dbh->commit;
|
---|
| 2192 | }; # end eval
|
---|
| 2193 |
|
---|
| 2194 | if ($@) {
|
---|
| 2195 | my $msg = $@;
|
---|
| 2196 | eval { $dbh->rollback; };
|
---|
[487] | 2197 | $self->_log(group_id => $group, entry => "Failed adding reverse zone $zone ($msg)")
|
---|
[286] | 2198 | if $config{log_failures};
|
---|
| 2199 | $dbh->commit; # since we enabled transactions earlier
|
---|
[260] | 2200 | return ('FAIL',$msg);
|
---|
| 2201 | } else {
|
---|
[286] | 2202 | my $retcode = 'OK';
|
---|
| 2203 | if ($warnstr) {
|
---|
| 2204 | $resultstr = $warnstr;
|
---|
| 2205 | $retcode = 'WARN';
|
---|
| 2206 | }
|
---|
| 2207 | return ($retcode, $rdns_id);
|
---|
[260] | 2208 | }
|
---|
| 2209 |
|
---|
| 2210 | } # end addRDNS()
|
---|
| 2211 |
|
---|
| 2212 |
|
---|
[237] | 2213 | ## DNSDB::getZoneCount
|
---|
| 2214 | # Get count of zones in group or groups
|
---|
| 2215 | # Takes a database handle and hash containing:
|
---|
| 2216 | # - the "current" group
|
---|
| 2217 | # - an array of "acceptable" groups
|
---|
| 2218 | # - a flag for forward/reverse zones
|
---|
| 2219 | # - Optionally accept a "starts with" and/or "contains" filter argument
|
---|
| 2220 | # Returns an integer count of the resulting zone list.
|
---|
| 2221 | sub getZoneCount {
|
---|
[477] | 2222 | my $self = shift;
|
---|
| 2223 | my $dbh = $self->{dbh};
|
---|
[237] | 2224 |
|
---|
| 2225 | my %args = @_;
|
---|
| 2226 |
|
---|
| 2227 | my @filterargs;
|
---|
[239] | 2228 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2229 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2230 | $args{filter} =~ s/\./\[\.\]/g if $args{filter}; # only match literal dots, usually in reverse zones
|
---|
[237] | 2231 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2232 |
|
---|
| 2233 | my $sql;
|
---|
| 2234 | # Not as compact, and fix-me-twice if the common bits get wrong, but much easier to read
|
---|
| 2235 | if ($args{revrec} eq 'n') {
|
---|
| 2236 | $sql = "SELECT count(*) FROM domains".
|
---|
| 2237 | " WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2238 | ($args{startwith} ? " AND domain ~* ?" : '').
|
---|
| 2239 | ($args{filter} ? " AND domain ~* ?" : '');
|
---|
| 2240 | } else {
|
---|
| 2241 | $sql = "SELECT count(*) FROM revzones".
|
---|
| 2242 | " WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2243 | ($args{startwith} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '').
|
---|
| 2244 | ($args{filter} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '');
|
---|
| 2245 | }
|
---|
| 2246 | my ($count) = $dbh->selectrow_array($sql, undef, @filterargs);
|
---|
| 2247 | return $count;
|
---|
| 2248 | } # end getZoneCount()
|
---|
| 2249 |
|
---|
| 2250 |
|
---|
| 2251 | ## DNSDB::getZoneList()
|
---|
| 2252 | # Get a list of zones in the specified group(s)
|
---|
| 2253 | # Takes the same arguments as getZoneCount() above
|
---|
| 2254 | # Returns a reference to an array of hashrefs suitable for feeding to HTML::Template
|
---|
| 2255 | sub getZoneList {
|
---|
[477] | 2256 | my $self = shift;
|
---|
| 2257 | my $dbh = $self->{dbh};
|
---|
[237] | 2258 |
|
---|
| 2259 | my %args = @_;
|
---|
| 2260 |
|
---|
| 2261 | my @zonelist;
|
---|
| 2262 |
|
---|
[475] | 2263 | $args{sortorder} = 'ASC' if !$args{sortorder} || !grep /^$args{sortorder}$/, ('ASC','DESC');
|
---|
[239] | 2264 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
[237] | 2265 |
|
---|
| 2266 | my @filterargs;
|
---|
[239] | 2267 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2268 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2269 | $args{filter} =~ s/\./\[\.\]/g if $args{filter}; # only match literal dots, usually in reverse zones
|
---|
[237] | 2270 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2271 |
|
---|
| 2272 | my $sql;
|
---|
| 2273 | # Not as compact, and fix-me-twice if the common bits get wrong, but much easier to read
|
---|
| 2274 | if ($args{revrec} eq 'n') {
|
---|
[475] | 2275 | $args{sortby} = 'domain' if !$args{sortby} || !grep /^$args{sortby}$/, ('domain','group','status');
|
---|
[237] | 2276 | $sql = "SELECT domain_id,domain,status,groups.group_name AS group FROM domains".
|
---|
| 2277 | " INNER JOIN groups ON domains.group_id=groups.group_id".
|
---|
| 2278 | " WHERE domains.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2279 | ($args{startwith} ? " AND domain ~* ?" : '').
|
---|
| 2280 | ($args{filter} ? " AND domain ~* ?" : '');
|
---|
| 2281 | } else {
|
---|
[239] | 2282 | ##fixme: arguably startwith here is irrelevant. depends on the UI though.
|
---|
[475] | 2283 | $args{sortby} = 'revnet' if !$args{sortby} || !grep /^$args{sortby}$/, ('revnet','group','status');
|
---|
[237] | 2284 | $sql = "SELECT rdns_id,revnet,status,groups.group_name AS group FROM revzones".
|
---|
| 2285 | " INNER JOIN groups ON revzones.group_id=groups.group_id".
|
---|
| 2286 | " WHERE revzones.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2287 | ($args{startwith} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '').
|
---|
| 2288 | ($args{filter} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '');
|
---|
| 2289 | }
|
---|
| 2290 | # A common tail.
|
---|
[239] | 2291 | $sql .= " ORDER BY ".($args{sortby} eq 'group' ? 'groups.group_name' : $args{sortby})." $args{sortorder} ".
|
---|
| 2292 | ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage}".
|
---|
[237] | 2293 | " OFFSET ".$args{offset}*$config{perpage});
|
---|
[402] | 2294 | my $sth = $dbh->prepare($sql);
|
---|
| 2295 | $sth->execute(@filterargs);
|
---|
| 2296 | my $rownum = 0;
|
---|
[237] | 2297 |
|
---|
[402] | 2298 | while (my @data = $sth->fetchrow_array) {
|
---|
| 2299 | my %row;
|
---|
| 2300 | $row{domain_id} = $data[0];
|
---|
| 2301 | $row{domain} = $data[1];
|
---|
| 2302 | $row{status} = $data[2];
|
---|
| 2303 | $row{group} = $data[3];
|
---|
| 2304 | push @zonelist, \%row;
|
---|
| 2305 | }
|
---|
| 2306 |
|
---|
| 2307 | return \@zonelist;
|
---|
[237] | 2308 | } # end getZoneList()
|
---|
| 2309 |
|
---|
| 2310 |
|
---|
[383] | 2311 | ## DNSDB::getZoneLocation()
|
---|
[387] | 2312 | # Retrieve the default location for a zone.
|
---|
[383] | 2313 | # Takes a database handle, forward/reverse flag, and zone ID
|
---|
| 2314 | sub getZoneLocation {
|
---|
[477] | 2315 | my $self = shift;
|
---|
| 2316 | my $dbh = $self->{dbh};
|
---|
[383] | 2317 | my $revrec = shift;
|
---|
| 2318 | my $zoneid = shift;
|
---|
| 2319 |
|
---|
| 2320 | my ($loc) = $dbh->selectrow_array("SELECT default_location FROM ".
|
---|
| 2321 | ($revrec eq 'n' ? 'domains WHERE domain_id = ?' : 'revzones WHERE rdns_id = ?'),
|
---|
| 2322 | undef, ($zoneid));
|
---|
| 2323 | return $loc;
|
---|
| 2324 | } # end getZoneLocation()
|
---|
| 2325 |
|
---|
| 2326 |
|
---|
[18] | 2327 | ## DNSDB::addGroup()
|
---|
| 2328 | # Add a group
|
---|
[66] | 2329 | # Takes a database handle, group name, parent group, hashref for permissions,
|
---|
[292] | 2330 | # and optional template-vs-cloneme flag for the default records
|
---|
[18] | 2331 | # Returns a status code and message
|
---|
| 2332 | sub addGroup {
|
---|
| 2333 | $errstr = '';
|
---|
[476] | 2334 | my $self = shift;
|
---|
| 2335 | my $dbh = $self->{dbh};
|
---|
[20] | 2336 | my $groupname = shift;
|
---|
| 2337 | my $pargroup = shift;
|
---|
[66] | 2338 | my $permissions = shift;
|
---|
[18] | 2339 |
|
---|
[66] | 2340 | # 0 indicates "custom", hardcoded.
|
---|
[18] | 2341 | # Any other value clones that group's default records, if it exists.
|
---|
[66] | 2342 | my $inherit = shift || 0;
|
---|
| 2343 | ##fixme: need a flag to indicate clone records or <?> ?
|
---|
[18] | 2344 |
|
---|
| 2345 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2346 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2347 | local $dbh->{AutoCommit} = 0;
|
---|
| 2348 | local $dbh->{RaiseError} = 1;
|
---|
| 2349 |
|
---|
[292] | 2350 | my ($group_id) = $dbh->selectrow_array("SELECT group_id FROM groups WHERE group_name=?", undef, ($groupname));
|
---|
[38] | 2351 |
|
---|
| 2352 | return ('FAIL', "Group already exists") if $group_id;
|
---|
| 2353 |
|
---|
[18] | 2354 | # Wrap all the SQL in a transaction
|
---|
| 2355 | eval {
|
---|
[292] | 2356 | $dbh->do("INSERT INTO groups (parent_group_id,group_name) VALUES (?,?)", undef, ($pargroup, $groupname) );
|
---|
[18] | 2357 |
|
---|
[292] | 2358 | my ($groupid) = $dbh->selectrow_array("SELECT currval('groups_group_id_seq')");
|
---|
[18] | 2359 |
|
---|
[292] | 2360 | # We work through the whole set of permissions instead of specifying them so
|
---|
| 2361 | # that when we add a new permission, we don't have to change the code anywhere
|
---|
| 2362 | # that doesn't explicitly deal with that specific permission.
|
---|
| 2363 | my @permvals;
|
---|
| 2364 | foreach (@permtypes) {
|
---|
| 2365 | if (!defined ($permissions->{$_})) {
|
---|
| 2366 | push @permvals, 0;
|
---|
| 2367 | } else {
|
---|
| 2368 | push @permvals, $permissions->{$_};
|
---|
[66] | 2369 | }
|
---|
[292] | 2370 | }
|
---|
| 2371 | $dbh->do("INSERT INTO permissions (group_id,$permlist) values (?".',?'x($#permtypes+1).")",
|
---|
| 2372 | undef, ($groupid, @permvals) );
|
---|
| 2373 | my ($permid) = $dbh->selectrow_array("SELECT currval('permissions_permission_id_seq')");
|
---|
| 2374 | $dbh->do("UPDATE groups SET permission_id=$permid WHERE group_id=$groupid");
|
---|
[66] | 2375 |
|
---|
[292] | 2376 | # Default records
|
---|
[255] | 2377 | my $sthf = $dbh->prepare("INSERT INTO default_records (group_id,host,type,val,distance,weight,port,ttl) ".
|
---|
[20] | 2378 | "VALUES ($groupid,?,?,?,?,?,?,?)");
|
---|
[255] | 2379 | my $sthr = $dbh->prepare("INSERT INTO default_rev_records (group_id,host,type,val,ttl) ".
|
---|
| 2380 | "VALUES ($groupid,?,?,?,?)");
|
---|
[66] | 2381 | if ($inherit) {
|
---|
[87] | 2382 | # Duplicate records from parent. Actually relying on inherited records feels
|
---|
| 2383 | # very fragile, and it would be problematic to roll over at a later time.
|
---|
[18] | 2384 | my $sth2 = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl FROM default_records WHERE group_id=?");
|
---|
[87] | 2385 | $sth2->execute($pargroup);
|
---|
[18] | 2386 | while (my @clonedata = $sth2->fetchrow_array) {
|
---|
[255] | 2387 | $sthf->execute(@clonedata);
|
---|
[18] | 2388 | }
|
---|
[255] | 2389 | # And now the reverse records
|
---|
[292] | 2390 | $sth2 = $dbh->prepare("SELECT host,type,val,ttl FROM default_rev_records WHERE group_id=?");
|
---|
[255] | 2391 | $sth2->execute($pargroup);
|
---|
| 2392 | while (my @clonedata = $sth2->fetchrow_array) {
|
---|
| 2393 | $sthr->execute(@clonedata);
|
---|
| 2394 | }
|
---|
[18] | 2395 | } else {
|
---|
[66] | 2396 | ##fixme: Hardcoding is Bad, mmmmkaaaay?
|
---|
[18] | 2397 | # reasonable basic defaults for SOA, MX, NS, and minimal hosting
|
---|
| 2398 | # could load from a config file, but somewhere along the line we need hardcoded bits.
|
---|
[255] | 2399 | $sthf->execute('ns1.example.com:hostmaster.example.com', 6, '10800:3600:604800:10800', 0, 0, 0, 86400);
|
---|
| 2400 | $sthf->execute('DOMAIN', 1, '192.168.4.2', 0, 0, 0, 7200);
|
---|
| 2401 | $sthf->execute('DOMAIN', 15, 'mx.example.com', 10, 0, 0, 7200);
|
---|
| 2402 | $sthf->execute('DOMAIN', 2, 'ns1.example.com', 0, 0, 0, 7200);
|
---|
| 2403 | $sthf->execute('DOMAIN', 2, 'ns2.example.com', 0, 0, 0, 7200);
|
---|
| 2404 | $sthf->execute('www.DOMAIN', 5, 'DOMAIN', 0, 0, 0, 7200);
|
---|
| 2405 | # reasonable basic defaults for generic reverse zone. Same as initial SQL tabledef.
|
---|
| 2406 | $sthr->execute('hostmaster.ADMINDOMAIN:ns1.ADMINDOMAIN', 6, '10800:3600:604800:10800', 86400);
|
---|
| 2407 | $sthr->execute('unused-%r.ADMINDOMAIN', 65283, 'ZONE', 3600);
|
---|
[18] | 2408 | }
|
---|
| 2409 |
|
---|
[487] | 2410 | $self->_log(group_id => $pargroup, entry => "Added group $groupname");
|
---|
[292] | 2411 |
|
---|
[18] | 2412 | # once we get here, we should have suceeded.
|
---|
| 2413 | $dbh->commit;
|
---|
| 2414 | }; # end eval
|
---|
| 2415 |
|
---|
| 2416 | if ($@) {
|
---|
| 2417 | my $msg = $@;
|
---|
| 2418 | eval { $dbh->rollback; };
|
---|
[292] | 2419 | if ($config{log_failures}) {
|
---|
[487] | 2420 | $self->_log(group_id => $pargroup, entry => "Failed to add group $groupname: $msg");
|
---|
[292] | 2421 | $dbh->commit;
|
---|
| 2422 | }
|
---|
[18] | 2423 | return ('FAIL',$msg);
|
---|
| 2424 | }
|
---|
| 2425 |
|
---|
[292] | 2426 | return ('OK','OK');
|
---|
[18] | 2427 | } # end addGroup()
|
---|
| 2428 |
|
---|
| 2429 |
|
---|
[22] | 2430 | ## DNSDB::delGroup()
|
---|
| 2431 | # Delete a group.
|
---|
| 2432 | # Takes a group ID
|
---|
| 2433 | # Returns a status code and message
|
---|
| 2434 | sub delGroup {
|
---|
[476] | 2435 | my $self = shift;
|
---|
| 2436 | my $dbh = $self->{dbh};
|
---|
[22] | 2437 | my $groupid = shift;
|
---|
| 2438 |
|
---|
| 2439 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2440 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2441 | local $dbh->{AutoCommit} = 0;
|
---|
| 2442 | local $dbh->{RaiseError} = 1;
|
---|
| 2443 |
|
---|
| 2444 | ##fixme: locate "knowable" error conditions and deal with them before the eval
|
---|
[23] | 2445 | # ... or inside, whatever.
|
---|
[22] | 2446 | # -> domains still exist in group
|
---|
| 2447 | # -> ...
|
---|
[23] | 2448 | my $failmsg = '';
|
---|
[293] | 2449 | my $resultmsg = '';
|
---|
[22] | 2450 |
|
---|
[293] | 2451 | # collect some pieces for logging and error messages
|
---|
[473] | 2452 | my $groupname = $self->groupName($groupid);
|
---|
| 2453 | my $parid = $self->parentID(id => $groupid, type => 'group');
|
---|
[293] | 2454 |
|
---|
[22] | 2455 | # Wrap all the SQL in a transaction
|
---|
| 2456 | eval {
|
---|
[293] | 2457 | # Check for Things in the group
|
---|
| 2458 | $failmsg = "Can't remove group $groupname";
|
---|
| 2459 | my ($grpcnt) = $dbh->selectrow_array("SELECT count(*) FROM groups WHERE parent_group_id=?", undef, ($groupid));
|
---|
| 2460 | die "$grpcnt groups still in group\n" if $grpcnt;
|
---|
| 2461 | my ($domcnt) = $dbh->selectrow_array("SELECT count(*) FROM domains WHERE group_id=?", undef, ($groupid));
|
---|
[23] | 2462 | die "$domcnt domains still in group\n" if $domcnt;
|
---|
[293] | 2463 | my ($usercnt) = $dbh->selectrow_array("SELECT count(*) FROM users WHERE group_id=?", undef, ($groupid));
|
---|
| 2464 | die "$usercnt users still in group\n" if $usercnt;
|
---|
[23] | 2465 |
|
---|
[293] | 2466 | $failmsg = "Failed to delete default records for $groupname";
|
---|
| 2467 | $dbh->do("DELETE from default_records WHERE group_id=?", undef, ($groupid));
|
---|
| 2468 | $failmsg = "Failed to delete default reverse records for $groupname";
|
---|
| 2469 | $dbh->do("DELETE from default_rev_records WHERE group_id=?", undef, ($groupid));
|
---|
| 2470 | $failmsg = "Failed to remove group $groupname";
|
---|
| 2471 | $dbh->do("DELETE from groups WHERE group_id=?", undef, ($groupid));
|
---|
[22] | 2472 |
|
---|
[487] | 2473 | $self->_log(group_id => $parid, entry => "Deleted group $groupname");
|
---|
[293] | 2474 | $resultmsg = "Deleted group $groupname";
|
---|
| 2475 |
|
---|
[22] | 2476 | # once we get here, we should have suceeded.
|
---|
| 2477 | $dbh->commit;
|
---|
| 2478 | }; # end eval
|
---|
| 2479 |
|
---|
| 2480 | if ($@) {
|
---|
| 2481 | my $msg = $@;
|
---|
| 2482 | eval { $dbh->rollback; };
|
---|
[293] | 2483 | if ($config{log_failures}) {
|
---|
[487] | 2484 | $self->_log(group_id => $parid, entry => "$failmsg: $msg");
|
---|
[293] | 2485 | $dbh->commit; # since we enabled transactions earlier
|
---|
| 2486 | }
|
---|
[23] | 2487 | return ('FAIL',"$failmsg: $msg");
|
---|
[22] | 2488 | }
|
---|
[293] | 2489 |
|
---|
| 2490 | return ('OK',$resultmsg);
|
---|
[22] | 2491 | } # end delGroup()
|
---|
| 2492 |
|
---|
| 2493 |
|
---|
[19] | 2494 | ## DNSDB::getChildren()
|
---|
| 2495 | # Get a list of all groups whose parent^n is group <n>
|
---|
[24] | 2496 | # Takes a database handle, group ID, reference to an array to put the group IDs in,
|
---|
| 2497 | # and an optional flag to return only immediate children or all children-of-children
|
---|
| 2498 | # default to returning all children
|
---|
[19] | 2499 | # Calls itself
|
---|
| 2500 | sub getChildren {
|
---|
| 2501 | $errstr = '';
|
---|
[476] | 2502 | my $self = shift;
|
---|
| 2503 | my $dbh = $self->{dbh};
|
---|
[20] | 2504 | my $rootgroup = shift;
|
---|
| 2505 | my $groupdest = shift;
|
---|
[24] | 2506 | my $immed = shift || 'all';
|
---|
[19] | 2507 |
|
---|
| 2508 | # special break for default group; otherwise we get stuck.
|
---|
[20] | 2509 | if ($rootgroup == 1) {
|
---|
[19] | 2510 | # by definition, group 1 is the Root Of All Groups
|
---|
[24] | 2511 | my $sth = $dbh->prepare("SELECT group_id FROM groups WHERE NOT (group_id=1)".
|
---|
[331] | 2512 | ($immed ne 'all' ? " AND parent_group_id=1" : '')." ORDER BY group_name");
|
---|
[19] | 2513 | $sth->execute;
|
---|
| 2514 | while (my @this = $sth->fetchrow_array) {
|
---|
[20] | 2515 | push @$groupdest, @this;
|
---|
[19] | 2516 | }
|
---|
| 2517 | } else {
|
---|
[331] | 2518 | my $sth = $dbh->prepare("SELECT group_id FROM groups WHERE parent_group_id=? ORDER BY group_name");
|
---|
[20] | 2519 | $sth->execute($rootgroup);
|
---|
[19] | 2520 | return if $sth->rows == 0;
|
---|
[20] | 2521 | my @grouplist;
|
---|
| 2522 | while (my ($group) = $sth->fetchrow_array) {
|
---|
| 2523 | push @$groupdest, $group;
|
---|
[476] | 2524 | $self->getChildren($group, $groupdest) if $immed eq 'all';
|
---|
[19] | 2525 | }
|
---|
| 2526 | }
|
---|
| 2527 | } # end getChildren()
|
---|
| 2528 |
|
---|
| 2529 |
|
---|
[20] | 2530 | ## DNSDB::groupName()
|
---|
[17] | 2531 | # Return the group name based on a group ID
|
---|
| 2532 | # Takes a database handle and the group ID
|
---|
| 2533 | # Returns the group name or undef on failure
|
---|
[20] | 2534 | sub groupName {
|
---|
[13] | 2535 | $errstr = '';
|
---|
[473] | 2536 | my $self = shift;
|
---|
| 2537 | my $dbh = $self->{dbh};
|
---|
[20] | 2538 | my $groupid = shift;
|
---|
| 2539 | my $sth = $dbh->prepare("SELECT group_name FROM groups WHERE group_id=?");
|
---|
| 2540 | $sth->execute($groupid);
|
---|
| 2541 | my ($groupname) = $sth->fetchrow_array();
|
---|
| 2542 | $errstr = $DBI::errstr if !$groupname;
|
---|
| 2543 | return $groupname if $groupname;
|
---|
| 2544 | } # end groupName
|
---|
[13] | 2545 |
|
---|
| 2546 |
|
---|
[314] | 2547 | ## DNSDB::getGroupCount()
|
---|
| 2548 | # Get count of subgroups in group or groups
|
---|
| 2549 | # Takes a database handle and hash containing:
|
---|
| 2550 | # - the "current" group
|
---|
| 2551 | # - an array of "acceptable" groups
|
---|
| 2552 | # - Optionally accept a "starts with" and/or "contains" filter argument
|
---|
| 2553 | # Returns an integer count of the resulting group list.
|
---|
| 2554 | sub getGroupCount {
|
---|
[476] | 2555 | my $self = shift;
|
---|
| 2556 | my $dbh = $self->{dbh};
|
---|
[314] | 2557 |
|
---|
| 2558 | my %args = @_;
|
---|
| 2559 |
|
---|
| 2560 | my @filterargs;
|
---|
| 2561 |
|
---|
| 2562 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2563 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2564 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2565 |
|
---|
| 2566 | my $sql = "SELECT count(*) FROM groups ".
|
---|
| 2567 | "WHERE parent_group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2568 | ($args{startwith} ? " AND group_name ~* ?" : '').
|
---|
| 2569 | ($args{filter} ? " AND group_name ~* ?" : '');
|
---|
| 2570 | my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
|
---|
| 2571 | $errstr = $dbh->errstr if !$count;
|
---|
| 2572 | return $count;
|
---|
| 2573 | } # end getGroupCount
|
---|
| 2574 |
|
---|
| 2575 |
|
---|
| 2576 | ## DNSDB::getGroupList()
|
---|
| 2577 | # Get a list of sub^n-groups in the specified group(s)
|
---|
| 2578 | # Takes the same arguments as getGroupCount() above
|
---|
| 2579 | # Returns an arrayref containing hashrefs suitable for feeding straight to HTML::Template
|
---|
| 2580 | sub getGroupList {
|
---|
[476] | 2581 | my $self = shift;
|
---|
| 2582 | my $dbh = $self->{dbh};
|
---|
[314] | 2583 |
|
---|
| 2584 | my %args = @_;
|
---|
| 2585 |
|
---|
| 2586 | my @filterargs;
|
---|
| 2587 |
|
---|
| 2588 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2589 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2590 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2591 |
|
---|
| 2592 | # protection against bad or missing arguments
|
---|
| 2593 | $args{sortorder} = 'ASC' if !$args{sortorder};
|
---|
[397] | 2594 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
[314] | 2595 |
|
---|
| 2596 | # munge sortby for columns in database
|
---|
| 2597 | $args{sortby} = 'g.group_name' if $args{sortby} eq 'group';
|
---|
| 2598 | $args{sortby} = 'g2.group_name' if $args{sortby} eq 'parent';
|
---|
| 2599 |
|
---|
[385] | 2600 | my $sql = q(SELECT g.group_id AS groupid, g.group_name AS groupname, g2.group_name AS pgroup
|
---|
[314] | 2601 | FROM groups g
|
---|
| 2602 | INNER JOIN groups g2 ON g2.group_id=g.parent_group_id
|
---|
| 2603 | ).
|
---|
[385] | 2604 | " WHERE g.parent_group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
[314] | 2605 | ($args{startwith} ? " AND g.group_name ~* ?" : '').
|
---|
| 2606 | ($args{filter} ? " AND g.group_name ~* ?" : '').
|
---|
| 2607 | " GROUP BY g.group_id, g.group_name, g2.group_name ".
|
---|
| 2608 | " ORDER BY $args{sortby} $args{sortorder} ".
|
---|
| 2609 | ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
|
---|
| 2610 | my $glist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
|
---|
| 2611 | $errstr = $dbh->errstr if !$glist;
|
---|
[385] | 2612 |
|
---|
| 2613 | # LEFT JOINs make the result set balloon beyond sanity just to include counts;
|
---|
| 2614 | # this means there's lots of crunching needed to trim the result set back down.
|
---|
| 2615 | # So instead we track the order of the groups, and push the counts into the
|
---|
| 2616 | # arrayref result separately.
|
---|
| 2617 | ##fixme: put this whole sub in a transaction? might be
|
---|
| 2618 | # needed for accurate results on very busy systems.
|
---|
[386] | 2619 | ##fixme: large group lists need prepared statements?
|
---|
| 2620 | #my $ucsth = $dbh->prepare("SELECT count(*) FROM users WHERE group_id=?");
|
---|
| 2621 | #my $dcsth = $dbh->prepare("SELECT count(*) FROM domains WHERE group_id=?");
|
---|
| 2622 | #my $rcsth = $dbh->prepare("SELECT count(*) FROM revzones WHERE group_id=?");
|
---|
[385] | 2623 | foreach (@{$glist}) {
|
---|
[386] | 2624 | my ($ucnt) = $dbh->selectrow_array("SELECT count(*) FROM users WHERE group_id=?", undef, ($$_{groupid}));
|
---|
| 2625 | $$_{nusers} = $ucnt;
|
---|
| 2626 | my ($dcnt) = $dbh->selectrow_array("SELECT count(*) FROM domains WHERE group_id=?", undef, ($$_{groupid}));
|
---|
| 2627 | $$_{ndomains} = $dcnt;
|
---|
| 2628 | my ($rcnt) = $dbh->selectrow_array("SELECT count(*) FROM revzones WHERE group_id=?", undef, ($$_{groupid}));
|
---|
| 2629 | $$_{nrevzones} = $rcnt;
|
---|
[385] | 2630 | }
|
---|
| 2631 |
|
---|
[314] | 2632 | return $glist;
|
---|
| 2633 | } # end getGroupList
|
---|
| 2634 |
|
---|
| 2635 |
|
---|
[118] | 2636 | ## DNSDB::groupID()
|
---|
| 2637 | # Return the group ID based on the group name
|
---|
| 2638 | # Takes a database handle and the group name
|
---|
| 2639 | # Returns the group ID or undef on failure
|
---|
| 2640 | sub groupID {
|
---|
| 2641 | $errstr = '';
|
---|
[473] | 2642 | my $self = shift;
|
---|
| 2643 | my $dbh = $self->{dbh};
|
---|
[118] | 2644 | my $group = shift;
|
---|
[406] | 2645 | my ($grpid) = $dbh->selectrow_array("SELECT group_id FROM groups WHERE group_name=?", undef, ($group) );
|
---|
[118] | 2646 | $errstr = $DBI::errstr if !$grpid;
|
---|
| 2647 | return $grpid if $grpid;
|
---|
| 2648 | } # end groupID()
|
---|
| 2649 |
|
---|
| 2650 |
|
---|
[24] | 2651 | ## DNSDB::addUser()
|
---|
[87] | 2652 | # Add a user.
|
---|
| 2653 | # Takes a DB handle, username, group ID, password, state (active/inactive).
|
---|
| 2654 | # Optionally accepts:
|
---|
| 2655 | # user type (user/admin) - defaults to user
|
---|
| 2656 | # permissions string - defaults to inherit from group
|
---|
| 2657 | # three valid forms:
|
---|
| 2658 | # i - Inherit permissions
|
---|
| 2659 | # c:<user_id> - Clone permissions from <user_id>
|
---|
| 2660 | # C:<permission list> - Set these specific permissions
|
---|
| 2661 | # first name - defaults to username
|
---|
| 2662 | # last name - defaults to blank
|
---|
| 2663 | # phone - defaults to blank (could put other data within column def)
|
---|
[90] | 2664 | # Returns (OK,<uid>) on success, (FAIL,<message>) on failure
|
---|
[24] | 2665 | sub addUser {
|
---|
| 2666 | $errstr = '';
|
---|
[479] | 2667 | my $self = shift;
|
---|
| 2668 | my $dbh = $self->{dbh};
|
---|
[24] | 2669 | my $username = shift;
|
---|
| 2670 | my $group = shift;
|
---|
| 2671 | my $pass = shift;
|
---|
| 2672 | my $state = shift;
|
---|
[25] | 2673 |
|
---|
[90] | 2674 | return ('FAIL', "Missing one or more required entries") if !defined($state);
|
---|
| 2675 | return ('FAIL', "Username must not be blank") if !$username;
|
---|
[87] | 2676 |
|
---|
[408] | 2677 | # Munge in some alternate state values
|
---|
| 2678 | $state = 1 if $state =~ /^active$/;
|
---|
| 2679 | $state = 1 if $state =~ /^on$/;
|
---|
| 2680 | $state = 0 if $state =~ /^inactive$/;
|
---|
| 2681 | $state = 0 if $state =~ /^off$/;
|
---|
| 2682 |
|
---|
[25] | 2683 | my $type = shift || 'u'; # create limited users by default - fwiw, not sure yet how this will interact with ACLs
|
---|
| 2684 |
|
---|
[67] | 2685 | my $permstring = shift || 'i'; # default is to inhert permissions from group
|
---|
| 2686 |
|
---|
[25] | 2687 | my $fname = shift || $username;
|
---|
[24] | 2688 | my $lname = shift || '';
|
---|
[25] | 2689 | my $phone = shift || ''; # not going format-check
|
---|
[24] | 2690 |
|
---|
[38] | 2691 | my $sth = $dbh->prepare("SELECT user_id FROM users WHERE username=?");
|
---|
[24] | 2692 | my $user_id;
|
---|
| 2693 |
|
---|
[38] | 2694 | # quick check to start to see if we've already got one
|
---|
| 2695 | $sth->execute($username);
|
---|
| 2696 | ($user_id) = $sth->fetchrow_array;
|
---|
| 2697 |
|
---|
| 2698 | return ('FAIL', "User already exists") if $user_id;
|
---|
| 2699 |
|
---|
[24] | 2700 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2701 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2702 | local $dbh->{AutoCommit} = 0;
|
---|
| 2703 | local $dbh->{RaiseError} = 1;
|
---|
| 2704 |
|
---|
| 2705 | # Wrap all the SQL in a transaction
|
---|
| 2706 | eval {
|
---|
[87] | 2707 | # insert the user... note we set inherited perms by default since
|
---|
| 2708 | # it's simple and cleans up some other bits of state
|
---|
| 2709 | my $sth = $dbh->prepare("INSERT INTO users ".
|
---|
| 2710 | "(group_id,username,password,firstname,lastname,phone,type,status,permission_id,inherit_perm) ".
|
---|
| 2711 | "VALUES (?,?,?,?,?,?,?,?,(SELECT permission_id FROM permissions WHERE group_id=?),'t')");
|
---|
| 2712 | $sth->execute($group,$username,unix_md5_crypt($pass),$fname,$lname,$phone,$type,$state,$group);
|
---|
[24] | 2713 |
|
---|
| 2714 | # get the ID...
|
---|
[94] | 2715 | ($user_id) = $dbh->selectrow_array("SELECT currval('users_user_id_seq')");
|
---|
[24] | 2716 |
|
---|
[87] | 2717 | # Permissions! Gotta set'em all!
|
---|
[401] | 2718 | die "Invalid permission string $permstring\n"
|
---|
[87] | 2719 | if $permstring !~ /^(?:
|
---|
| 2720 | i # inherit
|
---|
| 2721 | |c:\d+ # clone
|
---|
| 2722 | # custom. no, the leading , is not a typo
|
---|
[391] | 2723 | |C:(?:,(?:group|user|domain|record|location|self)_(?:edit|create|delete|locchg|view))*
|
---|
[87] | 2724 | )$/x;
|
---|
| 2725 | # bleh. I'd call another function to do my dirty work, but we're in the middle of a transaction already.
|
---|
| 2726 | if ($permstring ne 'i') {
|
---|
| 2727 | # for cloned or custom permissions, we have to create a new permissions entry.
|
---|
| 2728 | my $clonesrc = $group;
|
---|
| 2729 | if ($permstring =~ /^c:(\d+)/) { $clonesrc = $1; }
|
---|
| 2730 | $dbh->do("INSERT INTO permissions ($permlist,user_id) ".
|
---|
| 2731 | "SELECT $permlist,? FROM permissions WHERE permission_id=".
|
---|
| 2732 | "(SELECT permission_id FROM permissions WHERE ".($permstring =~ /^c:/ ? 'user' : 'group')."_id=?)",
|
---|
| 2733 | undef, ($user_id,$clonesrc) );
|
---|
| 2734 | $dbh->do("UPDATE users SET permission_id=".
|
---|
| 2735 | "(SELECT permission_id FROM permissions WHERE user_id=?) ".
|
---|
| 2736 | "WHERE user_id=?", undef, ($user_id, $user_id) );
|
---|
| 2737 | }
|
---|
| 2738 | if ($permstring =~ /^C:/) {
|
---|
| 2739 | # finally for custom permissions, we set the passed-in permissions (and unset
|
---|
| 2740 | # any that might have been brought in by the clone operation above)
|
---|
| 2741 | my ($permid) = $dbh->selectrow_array("SELECT permission_id FROM permissions WHERE user_id=?",
|
---|
| 2742 | undef, ($user_id) );
|
---|
| 2743 | foreach (@permtypes) {
|
---|
| 2744 | if ($permstring =~ /,$_/) {
|
---|
| 2745 | $dbh->do("UPDATE permissions SET $_='t' WHERE permission_id=?", undef, ($permid) );
|
---|
| 2746 | } else {
|
---|
| 2747 | $dbh->do("UPDATE permissions SET $_='f' WHERE permission_id=?", undef, ($permid) );
|
---|
| 2748 | }
|
---|
| 2749 | }
|
---|
| 2750 | }
|
---|
| 2751 |
|
---|
| 2752 | $dbh->do("UPDATE users SET inherit_perm='n' WHERE user_id=?", undef, ($user_id) );
|
---|
| 2753 |
|
---|
[25] | 2754 | ##fixme: add another table to hold name/email for log table?
|
---|
| 2755 |
|
---|
[487] | 2756 | $self->_log(group_id => $group, entry => "Added user $username ($fname $lname)");
|
---|
[24] | 2757 | # once we get here, we should have suceeded.
|
---|
| 2758 | $dbh->commit;
|
---|
| 2759 | }; # end eval
|
---|
| 2760 |
|
---|
| 2761 | if ($@) {
|
---|
| 2762 | my $msg = $@;
|
---|
| 2763 | eval { $dbh->rollback; };
|
---|
[294] | 2764 | if ($config{log_failures}) {
|
---|
[487] | 2765 | $self->_log(group_id => $group, entry => "Error adding user $username: $msg");
|
---|
[294] | 2766 | $dbh->commit; # since we enabled transactions earlier
|
---|
| 2767 | }
|
---|
| 2768 | return ('FAIL',"Error adding user $username: $msg");
|
---|
[24] | 2769 | }
|
---|
[294] | 2770 |
|
---|
| 2771 | return ('OK',"User $username ($fname $lname) added");
|
---|
[24] | 2772 | } # end addUser
|
---|
| 2773 |
|
---|
| 2774 |
|
---|
[325] | 2775 | ## DNSDB::getUserCount()
|
---|
| 2776 | # Get count of users in group
|
---|
| 2777 | # Takes a database handle and hash containing at least the current group, and optionally:
|
---|
| 2778 | # - a reference list of secondary groups
|
---|
| 2779 | # - a filter string
|
---|
| 2780 | # - a "Starts with" string
|
---|
| 2781 | sub getUserCount {
|
---|
[479] | 2782 | my $self = shift;
|
---|
| 2783 | my $dbh = $self->{dbh};
|
---|
[325] | 2784 |
|
---|
| 2785 | my %args = @_;
|
---|
| 2786 |
|
---|
| 2787 | my @filterargs;
|
---|
| 2788 |
|
---|
| 2789 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2790 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2791 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2792 |
|
---|
| 2793 |
|
---|
| 2794 | my $sql = "SELECT count(*) FROM users ".
|
---|
| 2795 | "WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2796 | ($args{startwith} ? " AND username ~* ?" : '').
|
---|
| 2797 | ($args{filter} ? " AND username ~* ?" : '');
|
---|
| 2798 | my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
|
---|
| 2799 | $errstr = $dbh->errstr if !$count;
|
---|
| 2800 | return $count;
|
---|
| 2801 | } # end getUserCount()
|
---|
| 2802 |
|
---|
| 2803 |
|
---|
| 2804 | ## DNSDB::getUserList()
|
---|
| 2805 | # Get list of users
|
---|
| 2806 | # Takes the same arguments as getUserCount() above, plus optional:
|
---|
| 2807 | # - sort field
|
---|
| 2808 | # - sort order
|
---|
| 2809 | # - offset/return-all-everything flag (defaults to $perpage records)
|
---|
| 2810 | sub getUserList {
|
---|
[479] | 2811 | my $self = shift;
|
---|
| 2812 | my $dbh = $self->{dbh};
|
---|
[325] | 2813 |
|
---|
| 2814 | my %args = @_;
|
---|
| 2815 |
|
---|
| 2816 | my @filterargs;
|
---|
| 2817 |
|
---|
| 2818 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2819 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2820 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2821 |
|
---|
| 2822 | # better to request sorts on "simple" names, but it means we need to map it to real columns
|
---|
| 2823 | my %sortmap = (user => 'u.username', type => 'u.type', group => 'g.group_name', status => 'u.status',
|
---|
| 2824 | fname => 'fname');
|
---|
| 2825 | $args{sortby} = $sortmap{$args{sortby}};
|
---|
| 2826 |
|
---|
| 2827 | # protection against bad or missing arguments
|
---|
| 2828 | $args{sortorder} = 'ASC' if !$args{sortorder};
|
---|
| 2829 | $args{sortby} = 'u.username' if !$args{sortby};
|
---|
[397] | 2830 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
[325] | 2831 |
|
---|
| 2832 | my $sql = "SELECT u.user_id, u.username, u.firstname || ' ' || u.lastname AS fname, u.type, g.group_name, u.status ".
|
---|
| 2833 | "FROM users u ".
|
---|
| 2834 | "INNER JOIN groups g ON u.group_id=g.group_id ".
|
---|
| 2835 | "WHERE u.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2836 | ($args{startwith} ? " AND u.username ~* ?" : '').
|
---|
| 2837 | ($args{filter} ? " AND u.username ~* ?" : '').
|
---|
[401] | 2838 | " AND NOT u.type = 'R' ".
|
---|
[325] | 2839 | " ORDER BY $args{sortby} $args{sortorder} ".
|
---|
| 2840 | ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
|
---|
| 2841 | my $ulist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
|
---|
| 2842 | $errstr = $dbh->errstr if !$ulist;
|
---|
| 2843 | return $ulist;
|
---|
| 2844 | } # end getUserList()
|
---|
| 2845 |
|
---|
| 2846 |
|
---|
[326] | 2847 | ## DNSDB::getUserDropdown()
|
---|
| 2848 | # Get a list of usernames for use in a dropdown menu.
|
---|
| 2849 | # Takes a database handle, current group, and optional "tag this as selected" flag.
|
---|
| 2850 | # Returns a reference to a list of hashrefs suitable to feeding to HTML::Template
|
---|
| 2851 | sub getUserDropdown {
|
---|
[479] | 2852 | my $self = shift;
|
---|
| 2853 | my $dbh = $self->{dbh};
|
---|
[326] | 2854 | my $grp = shift;
|
---|
| 2855 | my $sel = shift || 0;
|
---|
| 2856 |
|
---|
| 2857 | my $sth = $dbh->prepare("SELECT username,user_id FROM users WHERE group_id=?");
|
---|
| 2858 | $sth->execute($grp);
|
---|
| 2859 |
|
---|
| 2860 | my @userlist;
|
---|
| 2861 | while (my ($username,$uid) = $sth->fetchrow_array) {
|
---|
| 2862 | my %row = (
|
---|
| 2863 | username => $username,
|
---|
| 2864 | uid => $uid,
|
---|
| 2865 | selected => ($sel == $uid ? 1 : 0)
|
---|
| 2866 | );
|
---|
| 2867 | push @userlist, \%row;
|
---|
| 2868 | }
|
---|
| 2869 | return \@userlist;
|
---|
| 2870 | } # end getUserDropdown()
|
---|
| 2871 |
|
---|
| 2872 |
|
---|
[83] | 2873 | ## DNSDB:: updateUser()
|
---|
[90] | 2874 | # Update general data about user
|
---|
[83] | 2875 | sub updateUser {
|
---|
[479] | 2876 | my $self = shift;
|
---|
| 2877 | my $dbh = $self->{dbh};
|
---|
[118] | 2878 |
|
---|
| 2879 | ##fixme: tweak calling convention so that we can update any given bit of data
|
---|
[83] | 2880 | my $uid = shift;
|
---|
| 2881 | my $username = shift;
|
---|
| 2882 | my $group = shift;
|
---|
| 2883 | my $pass = shift;
|
---|
| 2884 | my $state = shift;
|
---|
[87] | 2885 | my $type = shift || 'u';
|
---|
[83] | 2886 | my $fname = shift || $username;
|
---|
| 2887 | my $lname = shift || '';
|
---|
| 2888 | my $phone = shift || ''; # not going format-check
|
---|
| 2889 |
|
---|
[294] | 2890 | my $resultmsg = '';
|
---|
[83] | 2891 |
|
---|
[411] | 2892 | # Munge in some alternate state values
|
---|
| 2893 | $state = 1 if $state =~ /^active$/;
|
---|
| 2894 | $state = 1 if $state =~ /^on$/;
|
---|
| 2895 | $state = 0 if $state =~ /^inactive$/;
|
---|
| 2896 | $state = 0 if $state =~ /^off$/;
|
---|
| 2897 |
|
---|
[83] | 2898 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2899 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2900 | local $dbh->{AutoCommit} = 0;
|
---|
| 2901 | local $dbh->{RaiseError} = 1;
|
---|
| 2902 |
|
---|
| 2903 | my $sth;
|
---|
| 2904 |
|
---|
| 2905 | # Password can be left blank; if so we assume there's one on file.
|
---|
| 2906 | # Actual blank passwords are bad, mm'kay?
|
---|
| 2907 | if (!$pass) {
|
---|
[294] | 2908 | ($pass) = $dbh->selectrow_array("SELECT password FROM users WHERE user_id=?", undef, ($uid));
|
---|
[83] | 2909 | } else {
|
---|
| 2910 | $pass = unix_md5_crypt($pass);
|
---|
| 2911 | }
|
---|
| 2912 |
|
---|
| 2913 | eval {
|
---|
[294] | 2914 | $dbh->do("UPDATE users SET username=?, password=?, firstname=?, lastname=?, phone=?, type=?, status=?".
|
---|
| 2915 | " WHERE user_id=?", undef, ($username, $pass, $fname, $lname, $phone, $type, $state, $uid));
|
---|
| 2916 | $resultmsg = "Updated user info for $username ($fname $lname)";
|
---|
[487] | 2917 | $self->_log(group_id => $group, entry => $resultmsg);
|
---|
[83] | 2918 | $dbh->commit;
|
---|
| 2919 | };
|
---|
| 2920 | if ($@) {
|
---|
| 2921 | my $msg = $@;
|
---|
| 2922 | eval { $dbh->rollback; };
|
---|
[294] | 2923 | if ($config{log_failures}) {
|
---|
[487] | 2924 | $self->_log(group_id => $group, entry => "Error updating user $username: $msg");
|
---|
[294] | 2925 | $dbh->commit; # since we enabled transactions earlier
|
---|
| 2926 | }
|
---|
| 2927 | return ('FAIL',"Error updating user $username: $msg");
|
---|
[83] | 2928 | }
|
---|
[294] | 2929 |
|
---|
| 2930 | return ('OK',$resultmsg);
|
---|
[83] | 2931 | } # end updateUser()
|
---|
| 2932 |
|
---|
| 2933 |
|
---|
[24] | 2934 | ## DNSDB::delUser()
|
---|
[297] | 2935 | # Delete a user.
|
---|
| 2936 | # Takes a database handle and user ID
|
---|
| 2937 | # Returns a success/failure code and matching message
|
---|
[24] | 2938 | sub delUser {
|
---|
[479] | 2939 | my $self = shift;
|
---|
| 2940 | my $dbh = $self->{dbh};
|
---|
[25] | 2941 | my $userid = shift;
|
---|
| 2942 |
|
---|
[297] | 2943 | return ('FAIL',"Bad userid") if !defined($userid);
|
---|
[25] | 2944 |
|
---|
[479] | 2945 | my $userdata = $self->getUserData($userid);
|
---|
[25] | 2946 |
|
---|
[297] | 2947 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2948 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2949 | local $dbh->{AutoCommit} = 0;
|
---|
| 2950 | local $dbh->{RaiseError} = 1;
|
---|
[25] | 2951 |
|
---|
[297] | 2952 | eval {
|
---|
| 2953 | $dbh->do("DELETE FROM users WHERE user_id=?", undef, ($userid));
|
---|
[487] | 2954 | $self->_log(group_id => $userdata->{group_id},
|
---|
[297] | 2955 | entry => "Deleted user ID $userid/".$userdata->{username}.
|
---|
[487] | 2956 | " (".$userdata->{firstname}." ".$userdata->{lastname}.")");
|
---|
[297] | 2957 | $dbh->commit;
|
---|
| 2958 | };
|
---|
| 2959 | if ($@) {
|
---|
| 2960 | my $msg = $@;
|
---|
| 2961 | eval { $dbh->rollback; };
|
---|
| 2962 | if ($config{log_failures}) {
|
---|
[487] | 2963 | $self->_log(group_id => $userdata->{group_id}, entry => "Error deleting user ID ".
|
---|
| 2964 | "$userid/".$userdata->{username}.": $msg");
|
---|
[297] | 2965 | $dbh->commit;
|
---|
| 2966 | }
|
---|
| 2967 | return ('FAIL',"Error deleting user $userid/".$userdata->{username}.": $msg");
|
---|
| 2968 | }
|
---|
| 2969 |
|
---|
| 2970 | return ('OK',"Deleted user ".$userdata->{username}." (".$userdata->{firstname}." ".$userdata->{lastname}.")");
|
---|
[24] | 2971 | } # end delUser
|
---|
| 2972 |
|
---|
| 2973 |
|
---|
[25] | 2974 | ## DNSDB::userFullName()
|
---|
| 2975 | # Return a pretty string!
|
---|
| 2976 | # Takes a user_id and optional printf-ish string to indicate which pieces where:
|
---|
| 2977 | # %u for the username
|
---|
| 2978 | # %f for the first name
|
---|
| 2979 | # %l for the last name
|
---|
| 2980 | # All other text in the passed string will be left as-is.
|
---|
| 2981 | ##fixme: need a "smart" option too, so that missing/null/blank first/last names don't give funky output
|
---|
| 2982 | sub userFullName {
|
---|
| 2983 | $errstr = '';
|
---|
[473] | 2984 | my $self = shift;
|
---|
| 2985 | my $dbh = $self->{dbh};
|
---|
[25] | 2986 | my $userid = shift;
|
---|
| 2987 | my $fullformat = shift || '%f %l (%u)';
|
---|
| 2988 | my $sth = $dbh->prepare("select username,firstname,lastname from users where user_id=?");
|
---|
| 2989 | $sth->execute($userid);
|
---|
| 2990 | my ($uname,$fname,$lname) = $sth->fetchrow_array();
|
---|
| 2991 | $errstr = $DBI::errstr if !$uname;
|
---|
| 2992 |
|
---|
| 2993 | $fullformat =~ s/\%u/$uname/g;
|
---|
| 2994 | $fullformat =~ s/\%f/$fname/g;
|
---|
| 2995 | $fullformat =~ s/\%l/$lname/g;
|
---|
| 2996 |
|
---|
| 2997 | return $fullformat;
|
---|
| 2998 | } # end userFullName
|
---|
| 2999 |
|
---|
| 3000 |
|
---|
[51] | 3001 | ## DNSDB::userStatus()
|
---|
| 3002 | # Sets and/or returns a user's status
|
---|
| 3003 | # Takes a database handle, user ID and optionally a status argument
|
---|
| 3004 | # Returns undef on errors.
|
---|
| 3005 | sub userStatus {
|
---|
[479] | 3006 | my $self = shift;
|
---|
| 3007 | my $dbh = $self->{dbh};
|
---|
[51] | 3008 | my $id = shift;
|
---|
[296] | 3009 | my $newstatus = shift || 'mu';
|
---|
[51] | 3010 |
|
---|
| 3011 | return undef if $id !~ /^\d+$/;
|
---|
| 3012 |
|
---|
[479] | 3013 | my $userdata = $self->getUserData($id);
|
---|
[51] | 3014 |
|
---|
[296] | 3015 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3016 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3017 | local $dbh->{AutoCommit} = 0;
|
---|
| 3018 | local $dbh->{RaiseError} = 1;
|
---|
| 3019 |
|
---|
| 3020 | if ($newstatus ne 'mu') {
|
---|
| 3021 | # ooo, fun! let's see what we were passed for status
|
---|
| 3022 | eval {
|
---|
| 3023 | $newstatus = 0 if $newstatus eq 'useroff';
|
---|
| 3024 | $newstatus = 1 if $newstatus eq 'useron';
|
---|
| 3025 | $dbh->do("UPDATE users SET status=? WHERE user_id=?", undef, ($newstatus, $id));
|
---|
| 3026 |
|
---|
[297] | 3027 | $resultstr = ($newstatus ? 'Enabled' : 'Disabled')." user ".$userdata->{username}.
|
---|
| 3028 | " (".$userdata->{firstname}." ".$userdata->{lastname}.")";
|
---|
[296] | 3029 |
|
---|
| 3030 | my %loghash;
|
---|
[473] | 3031 | $loghash{group_id} = $self->parentID(id => $id, type => 'user');
|
---|
[296] | 3032 | $loghash{entry} = $resultstr;
|
---|
[487] | 3033 | $self->_log(%loghash);
|
---|
[296] | 3034 |
|
---|
| 3035 | $dbh->commit;
|
---|
| 3036 | };
|
---|
| 3037 | if ($@) {
|
---|
| 3038 | my $msg = $@;
|
---|
| 3039 | eval { $dbh->rollback; };
|
---|
| 3040 | $resultstr = '';
|
---|
| 3041 | $errstr = $msg;
|
---|
| 3042 | ##fixme: failure logging?
|
---|
| 3043 | return;
|
---|
[51] | 3044 | }
|
---|
| 3045 | }
|
---|
| 3046 |
|
---|
[296] | 3047 | my ($status) = $dbh->selectrow_array("SELECT status FROM users WHERE user_id=?", undef, ($id));
|
---|
[51] | 3048 | return $status;
|
---|
| 3049 | } # end userStatus()
|
---|
| 3050 |
|
---|
| 3051 |
|
---|
[83] | 3052 | ## DNSDB::getUserData()
|
---|
| 3053 | # Get misc user data for display
|
---|
| 3054 | sub getUserData {
|
---|
[479] | 3055 | my $self = shift;
|
---|
| 3056 | my $dbh = $self->{dbh};
|
---|
[83] | 3057 | my $uid = shift;
|
---|
| 3058 |
|
---|
| 3059 | my $sth = $dbh->prepare("SELECT group_id,username,firstname,lastname,phone,type,status,inherit_perm ".
|
---|
| 3060 | "FROM users WHERE user_id=?");
|
---|
| 3061 | $sth->execute($uid);
|
---|
| 3062 | return $sth->fetchrow_hashref();
|
---|
| 3063 | } # end getUserData()
|
---|
| 3064 |
|
---|
| 3065 |
|
---|
[370] | 3066 | ## DNSDB::addLoc()
|
---|
[375] | 3067 | # Add a new location.
|
---|
| 3068 | # Takes a database handle, group ID, short and long description, and a comma-separated
|
---|
| 3069 | # list of IP addresses.
|
---|
| 3070 | # Returns ('OK',<location>) on success, ('FAIL',<failmsg>) on failure
|
---|
| 3071 | sub addLoc {
|
---|
[480] | 3072 | my $self = shift;
|
---|
| 3073 | my $dbh = $self->{dbh};
|
---|
[375] | 3074 | my $grp = shift;
|
---|
| 3075 | my $shdesc = shift;
|
---|
| 3076 | my $comments = shift;
|
---|
| 3077 | my $iplist = shift;
|
---|
[370] | 3078 |
|
---|
[375] | 3079 | # $shdesc gets set to the generated location ID if possible, but these can be de-undefined here.
|
---|
| 3080 | $comments = '' if !$comments;
|
---|
| 3081 | $iplist = '' if !$iplist;
|
---|
| 3082 |
|
---|
| 3083 | my $loc;
|
---|
| 3084 |
|
---|
| 3085 | # Generate a location ID. This is, by spec, a two-character widget. We'll use [a-z][a-z]
|
---|
| 3086 | # for now; 676 locations should satisfy all but the largest of the huge networks.
|
---|
| 3087 | # Not sure whether these are case-sensitive, or what other rules might apply - in any case
|
---|
| 3088 | # the absolute maximum is 16K (256*256) since it's parsed by tinydns as a two-character field.
|
---|
| 3089 |
|
---|
| 3090 | # add just after "my $origloc = $loc;":
|
---|
| 3091 | # # These expand the possible space from 26^2 to 52^2 [* note in testing only 2052 were achieved],
|
---|
| 3092 | # # and wrap it around.
|
---|
| 3093 | # # Yes, they skip a couple of possibles. No, I don't care.
|
---|
| 3094 | # $loc = 'aA' if $loc eq 'zz';
|
---|
| 3095 | # $loc = 'Aa' if $loc eq 'zZ';
|
---|
| 3096 | # $loc = 'ZA' if $loc eq 'Zz';
|
---|
| 3097 | # $loc = 'aa' if $loc eq 'ZZ';
|
---|
| 3098 |
|
---|
| 3099 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3100 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3101 | local $dbh->{AutoCommit} = 0;
|
---|
| 3102 | local $dbh->{RaiseError} = 1;
|
---|
| 3103 |
|
---|
| 3104 | ##fixme: There is probably a far better way to do this. Sequential increments
|
---|
| 3105 | # are marginally less stupid that pure random generation though, and the existence
|
---|
| 3106 | # check makes sure we don't stomp on an imported one.
|
---|
| 3107 |
|
---|
| 3108 | eval {
|
---|
| 3109 | # Get the "last" location. Note this is the only use for loc_id, because selecting on location Does Funky Things
|
---|
| 3110 | ($loc) = $dbh->selectrow_array("SELECT location FROM locations ORDER BY loc_id DESC LIMIT 1");
|
---|
[478] | 3111 | ($loc) = ($loc =~ /^(..)/) if $loc;
|
---|
[375] | 3112 | my $origloc = $loc;
|
---|
[446] | 3113 | $loc = 'aa' if !$loc;
|
---|
[375] | 3114 | # Make a change...
|
---|
| 3115 | $loc++;
|
---|
| 3116 | # ... and keep changing if it exists
|
---|
| 3117 | while ($dbh->selectrow_array("SELECT count(*) FROM locations WHERE location LIKE ?", undef, ($loc.'%'))) {
|
---|
| 3118 | $loc++;
|
---|
| 3119 | ($loc) = ($loc =~ /^(..)/);
|
---|
| 3120 | die "too many locations in use, can't add another one\n" if $loc eq $origloc;
|
---|
| 3121 | ##fixme: really need to handle this case faster somehow
|
---|
| 3122 | #if $loc eq $origloc die "<thwap> bad admin: all locations used, your network is too fragmented";
|
---|
| 3123 | }
|
---|
| 3124 | # And now we should have a unique location. tinydns fundamentally limits the
|
---|
| 3125 | # number of these but there's no doc on what characters are valid.
|
---|
| 3126 | $shdesc = $loc if !$shdesc;
|
---|
| 3127 | $dbh->do("INSERT INTO locations (location, group_id, iplist, description, comments) VALUES (?,?,?,?,?)",
|
---|
| 3128 | undef, ($loc, $grp, $iplist, $shdesc, $comments) );
|
---|
[487] | 3129 | $self->_log(entry => "Added location ($shdesc, '$iplist')");
|
---|
[377] | 3130 | $dbh->commit;
|
---|
[375] | 3131 | };
|
---|
| 3132 | if ($@) {
|
---|
| 3133 | my $msg = $@;
|
---|
| 3134 | eval { $dbh->rollback; };
|
---|
| 3135 | if ($config{log_failures}) {
|
---|
| 3136 | $shdesc = $loc if !$shdesc;
|
---|
[487] | 3137 | $self->_log(entry => "Failed adding location ($shdesc, '$iplist'): $msg");
|
---|
[375] | 3138 | $dbh->commit;
|
---|
| 3139 | }
|
---|
| 3140 | return ('FAIL',$msg);
|
---|
| 3141 | }
|
---|
| 3142 |
|
---|
| 3143 | return ('OK',$loc);
|
---|
[377] | 3144 | } # end addLoc()
|
---|
[375] | 3145 |
|
---|
| 3146 |
|
---|
[370] | 3147 | ## DNSDB::updateLoc()
|
---|
[428] | 3148 | # Update details of a location.
|
---|
| 3149 | # Takes a database handle, location ID, group ID, short description,
|
---|
| 3150 | # long comments/notes, and comma/space-separated IP list
|
---|
| 3151 | # Returns a result code and message
|
---|
[377] | 3152 | sub updateLoc {
|
---|
[480] | 3153 | my $self = shift;
|
---|
| 3154 | my $dbh = $self->{dbh};
|
---|
[377] | 3155 | my $loc = shift;
|
---|
| 3156 | my $grp = shift;
|
---|
| 3157 | my $shdesc = shift;
|
---|
| 3158 | my $comments = shift;
|
---|
| 3159 | my $iplist = shift;
|
---|
[370] | 3160 |
|
---|
[377] | 3161 | $shdesc = '' if !$shdesc;
|
---|
| 3162 | $comments = '' if !$comments;
|
---|
| 3163 | $iplist = '' if !$iplist;
|
---|
| 3164 |
|
---|
| 3165 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3166 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3167 | local $dbh->{AutoCommit} = 0;
|
---|
| 3168 | local $dbh->{RaiseError} = 1;
|
---|
| 3169 |
|
---|
[480] | 3170 | my $oldloc = $self->getLoc($loc);
|
---|
[377] | 3171 | my $okmsg = "Updated location (".$oldloc->{description}.", '".$oldloc->{iplist}."') to ($shdesc, '$iplist')";
|
---|
| 3172 |
|
---|
| 3173 | eval {
|
---|
| 3174 | $dbh->do("UPDATE locations SET group_id=?,iplist=?,description=?,comments=? WHERE location=?",
|
---|
| 3175 | undef, ($grp, $iplist, $shdesc, $comments, $loc) );
|
---|
[487] | 3176 | $self->_log(entry => $okmsg);
|
---|
[377] | 3177 | $dbh->commit;
|
---|
| 3178 | };
|
---|
| 3179 | if ($@) {
|
---|
| 3180 | my $msg = $@;
|
---|
| 3181 | eval { $dbh->rollback; };
|
---|
| 3182 | if ($config{log_failures}) {
|
---|
| 3183 | $shdesc = $loc if !$shdesc;
|
---|
[487] | 3184 | $self->_log(entry => "Failed updating location ($shdesc, '$iplist'): $msg");
|
---|
[377] | 3185 | $dbh->commit;
|
---|
| 3186 | }
|
---|
| 3187 | return ('FAIL',$msg);
|
---|
| 3188 | }
|
---|
| 3189 |
|
---|
| 3190 | return ('OK',$okmsg);
|
---|
| 3191 | } # end updateLoc()
|
---|
| 3192 |
|
---|
| 3193 |
|
---|
[370] | 3194 | ## DNSDB::delLoc()
|
---|
[428] | 3195 | sub delLoc {
|
---|
[480] | 3196 | my $self = shift;
|
---|
| 3197 | my $dbh = $self->{dbh};
|
---|
[428] | 3198 | my $loc = shift;
|
---|
[370] | 3199 |
|
---|
[428] | 3200 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3201 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3202 | local $dbh->{AutoCommit} = 0;
|
---|
| 3203 | local $dbh->{RaiseError} = 1;
|
---|
[370] | 3204 |
|
---|
[480] | 3205 | my $oldloc = $self->getLoc($loc);
|
---|
[428] | 3206 | my $olddesc = ($oldloc->{description} ? $oldloc->{description} : $loc);
|
---|
| 3207 | my $okmsg = "Deleted location ($olddesc, '".$oldloc->{iplist}."')";
|
---|
| 3208 |
|
---|
| 3209 | eval {
|
---|
| 3210 | # Check for records with this location first. Deleting a location without deleting records
|
---|
| 3211 | # tagged for that location will render them unpublished without other warning.
|
---|
| 3212 | my ($r) = $dbh->selectrow_array("SELECT record_id FROM records WHERE location=? LIMIT 1", undef, ($loc) );
|
---|
| 3213 | die "Records still exist in location $olddesc\n" if $r;
|
---|
| 3214 | $dbh->do("DELETE FROM locations WHERE location=?", undef, ($loc) );
|
---|
[487] | 3215 | $self->_log(entry => $okmsg);
|
---|
[428] | 3216 | $dbh->commit;
|
---|
| 3217 | };
|
---|
| 3218 | if ($@) {
|
---|
| 3219 | my $msg = $@;
|
---|
| 3220 | eval { $dbh->rollback; };
|
---|
| 3221 | if ($config{log_failures}) {
|
---|
[487] | 3222 | $self->_log(entry => "Failed to delete location ($olddesc, '$oldloc->{iplist}'): $msg");
|
---|
[428] | 3223 | $dbh->commit;
|
---|
| 3224 | }
|
---|
| 3225 | return ('FAIL', "Failed to delete location ($olddesc, '$oldloc->{iplist}'): $msg");
|
---|
| 3226 | }
|
---|
| 3227 |
|
---|
| 3228 | return ('OK',$okmsg);
|
---|
| 3229 | } # end delLoc()
|
---|
| 3230 |
|
---|
| 3231 |
|
---|
[375] | 3232 | ## DNSDB::getLoc()
|
---|
[428] | 3233 | # Get details about a location/view
|
---|
| 3234 | # Takes a database handle and location ID.
|
---|
| 3235 | # Returns a reference to a hash containing the group ID, IP list, description, and comments/notes
|
---|
[375] | 3236 | sub getLoc {
|
---|
[480] | 3237 | my $self = shift;
|
---|
| 3238 | my $dbh = $self->{dbh};
|
---|
[375] | 3239 | my $loc = shift;
|
---|
| 3240 |
|
---|
| 3241 | my $sth = $dbh->prepare("SELECT group_id,iplist,description,comments FROM locations WHERE location=?");
|
---|
| 3242 | $sth->execute($loc);
|
---|
| 3243 | return $sth->fetchrow_hashref();
|
---|
| 3244 | } # end getLoc()
|
---|
| 3245 |
|
---|
| 3246 |
|
---|
[370] | 3247 | ## DNSDB::getLocCount()
|
---|
| 3248 | # Get count of locations/views
|
---|
| 3249 | # Takes a database handle and hash containing at least the current group, and optionally:
|
---|
| 3250 | # - a reference list of secondary groups
|
---|
| 3251 | # - a filter string
|
---|
| 3252 | # - a "Starts with" string
|
---|
| 3253 | sub getLocCount {
|
---|
[480] | 3254 | my $self = shift;
|
---|
| 3255 | my $dbh = $self->{dbh};
|
---|
[370] | 3256 |
|
---|
| 3257 | my %args = @_;
|
---|
| 3258 |
|
---|
| 3259 | my @filterargs;
|
---|
| 3260 |
|
---|
| 3261 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 3262 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 3263 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 3264 |
|
---|
| 3265 |
|
---|
| 3266 | my $sql = "SELECT count(*) FROM locations ".
|
---|
| 3267 | "WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 3268 | ($args{startwith} ? " AND description ~* ?" : '').
|
---|
| 3269 | ($args{filter} ? " AND description ~* ?" : '');
|
---|
| 3270 | my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
|
---|
| 3271 | $errstr = $dbh->errstr if !$count;
|
---|
| 3272 | return $count;
|
---|
| 3273 | } # end getLocCount()
|
---|
| 3274 |
|
---|
| 3275 |
|
---|
| 3276 | ## DNSDB::getLocList()
|
---|
| 3277 | sub getLocList {
|
---|
[480] | 3278 | my $self = shift;
|
---|
| 3279 | my $dbh = $self->{dbh};
|
---|
[370] | 3280 |
|
---|
| 3281 | my %args = @_;
|
---|
| 3282 |
|
---|
| 3283 | my @filterargs;
|
---|
| 3284 |
|
---|
| 3285 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 3286 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 3287 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 3288 |
|
---|
| 3289 | # better to request sorts on "simple" names, but it means we need to map it to real columns
|
---|
| 3290 | # my %sortmap = (user => 'u.username', type => 'u.type', group => 'g.group_name', status => 'u.status',
|
---|
| 3291 | # fname => 'fname');
|
---|
| 3292 | # $args{sortby} = $sortmap{$args{sortby}};
|
---|
| 3293 |
|
---|
| 3294 | # protection against bad or missing arguments
|
---|
| 3295 | $args{sortorder} = 'ASC' if !$args{sortorder};
|
---|
| 3296 | $args{sortby} = 'l.description' if !$args{sortby};
|
---|
[397] | 3297 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
[370] | 3298 |
|
---|
| 3299 | my $sql = "SELECT l.location, l.description, l.iplist, g.group_name ".
|
---|
| 3300 | "FROM locations l ".
|
---|
| 3301 | "INNER JOIN groups g ON l.group_id=g.group_id ".
|
---|
| 3302 | "WHERE l.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 3303 | ($args{startwith} ? " AND l.description ~* ?" : '').
|
---|
| 3304 | ($args{filter} ? " AND l.description ~* ?" : '').
|
---|
| 3305 | " ORDER BY $args{sortby} $args{sortorder} ".
|
---|
| 3306 | ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
|
---|
| 3307 | my $ulist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
|
---|
| 3308 | $errstr = $dbh->errstr if !$ulist;
|
---|
| 3309 | return $ulist;
|
---|
| 3310 | } # end getLocList()
|
---|
| 3311 |
|
---|
| 3312 |
|
---|
| 3313 | ## DNSDB::getLocDropdown()
|
---|
[383] | 3314 | # Get a list of location names for use in a dropdown menu.
|
---|
| 3315 | # Takes a database handle, current group, and optional "tag this as selected" flag.
|
---|
| 3316 | # Returns a reference to a list of hashrefs suitable to feeding to HTML::Template
|
---|
| 3317 | sub getLocDropdown {
|
---|
[480] | 3318 | my $self = shift;
|
---|
| 3319 | my $dbh = $self->{dbh};
|
---|
[383] | 3320 | my $grp = shift;
|
---|
| 3321 | my $sel = shift || '';
|
---|
[370] | 3322 |
|
---|
[383] | 3323 | my $sth = $dbh->prepare(qq(
|
---|
| 3324 | SELECT description,location FROM locations
|
---|
| 3325 | WHERE group_id=?
|
---|
| 3326 | ORDER BY description
|
---|
| 3327 | ) );
|
---|
| 3328 | $sth->execute($grp);
|
---|
[370] | 3329 |
|
---|
[383] | 3330 | my @loclist;
|
---|
[446] | 3331 | push @loclist, { locname => "(Default/All)", loc => '', selected => ($sel ? 0 : ($sel eq '' ? 1 : 0)) };
|
---|
[383] | 3332 | while (my ($locname, $loc) = $sth->fetchrow_array) {
|
---|
| 3333 | my %row = (
|
---|
| 3334 | locname => $locname,
|
---|
| 3335 | loc => $loc,
|
---|
| 3336 | selected => ($sel eq $loc ? 1 : 0)
|
---|
| 3337 | );
|
---|
| 3338 | push @loclist, \%row;
|
---|
| 3339 | }
|
---|
| 3340 | return \@loclist;
|
---|
| 3341 | } # end getLocDropdown()
|
---|
| 3342 |
|
---|
| 3343 |
|
---|
[2] | 3344 | ## DNSDB::getSOA()
|
---|
| 3345 | # Return all suitable fields from an SOA record in separate elements of a hash
|
---|
[224] | 3346 | # Takes a database handle, default/live flag, domain/reverse flag, and parent ID
|
---|
[2] | 3347 | sub getSOA {
|
---|
| 3348 | $errstr = '';
|
---|
[481] | 3349 | my $self = shift;
|
---|
| 3350 | my $dbh = $self->{dbh};
|
---|
[2] | 3351 | my $def = shift;
|
---|
[224] | 3352 | my $rev = shift;
|
---|
[2] | 3353 | my $id = shift;
|
---|
| 3354 |
|
---|
[224] | 3355 | # (ab)use distance and weight columns to store SOA data? can't for default_rev_records...
|
---|
| 3356 | # - should really attach serial to the zone parent somewhere
|
---|
[101] | 3357 |
|
---|
[224] | 3358 | my $sql = "SELECT record_id,host,val,ttl from "._rectable($def,$rev).
|
---|
| 3359 | " WHERE "._recparent($def,$rev)." = ? AND type=$reverse_typemap{SOA}";
|
---|
[311] | 3360 | my $ret = $dbh->selectrow_hashref($sql, undef, ($id) );
|
---|
| 3361 | return if !$ret;
|
---|
[246] | 3362 | ##fixme: stick a flag somewhere if the record doesn't exist. by the API, this is an impossible case, but...
|
---|
[2] | 3363 |
|
---|
[311] | 3364 | ($ret->{contact},$ret->{prins}) = split /:/, $ret->{host};
|
---|
| 3365 | delete $ret->{host};
|
---|
| 3366 | ($ret->{refresh},$ret->{retry},$ret->{expire},$ret->{minttl}) = split /:/, $ret->{val};
|
---|
| 3367 | delete $ret->{val};
|
---|
[2] | 3368 |
|
---|
[311] | 3369 | return $ret;
|
---|
[2] | 3370 | } # end getSOA()
|
---|
| 3371 |
|
---|
| 3372 |
|
---|
[246] | 3373 | ## DNSDB::updateSOA()
|
---|
| 3374 | # Update the specified SOA record
|
---|
| 3375 | # Takes a database handle, default/live flag, forward/reverse flag, and SOA data hash
|
---|
[277] | 3376 | # Returns a two-element list with a result code and message
|
---|
[246] | 3377 | sub updateSOA {
|
---|
[473] | 3378 | my $self = shift;
|
---|
| 3379 | my $dbh = $self->{dbh};
|
---|
[246] | 3380 | my $defrec = shift;
|
---|
[248] | 3381 | my $revrec = shift;
|
---|
[246] | 3382 |
|
---|
| 3383 | my %soa = @_;
|
---|
| 3384 |
|
---|
[473] | 3385 | my $oldsoa = $self->getSOA($defrec, $revrec, $soa{id});
|
---|
[277] | 3386 |
|
---|
[311] | 3387 | my $msg;
|
---|
| 3388 | my %logdata;
|
---|
| 3389 | if ($defrec eq 'n') {
|
---|
| 3390 | $logdata{domain_id} = $soa{id} if $revrec eq 'n';
|
---|
| 3391 | $logdata{rdns_id} = $soa{id} if $revrec eq 'y';
|
---|
[473] | 3392 | $logdata{group_id} = $self->parentID(id => $soa{id}, revrec => $revrec,
|
---|
| 3393 | type => ($revrec eq 'n' ? 'domain' : 'revzone') );
|
---|
[311] | 3394 | } else {
|
---|
| 3395 | $logdata{group_id} = $soa{id};
|
---|
| 3396 | }
|
---|
[473] | 3397 | my $parname = ($defrec eq 'y' ? $self->groupName($soa{id}) :
|
---|
| 3398 | ($revrec eq 'n' ? $self->domainName($soa{id}) : $self->revName($soa{id})) );
|
---|
[311] | 3399 |
|
---|
[277] | 3400 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3401 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3402 | local $dbh->{AutoCommit} = 0;
|
---|
| 3403 | local $dbh->{RaiseError} = 1;
|
---|
| 3404 |
|
---|
| 3405 | eval {
|
---|
| 3406 | my $sql = "UPDATE "._rectable($defrec, $revrec)." SET host=?, val=?, ttl=? WHERE record_id=? AND type=6";
|
---|
| 3407 | $dbh->do($sql, undef, ("$soa{contact}:$soa{prins}", "$soa{refresh}:$soa{retry}:$soa{expire}:$soa{minttl}",
|
---|
[311] | 3408 | $soa{ttl}, $oldsoa->{record_id}) );
|
---|
| 3409 | $msg = "Updated ".($defrec eq 'y' ? ($revrec eq 'y' ? 'default reverse ' : 'default ') : '').
|
---|
| 3410 | "SOA for $parname: ".
|
---|
| 3411 | "(ns $oldsoa->{prins}, contact $oldsoa->{contact}, refresh $oldsoa->{refresh},".
|
---|
| 3412 | " retry $oldsoa->{retry}, expire $oldsoa->{expire}, minTTL $oldsoa->{minttl}, TTL $oldsoa->{ttl}) to ".
|
---|
[277] | 3413 | "(ns $soa{prins}, contact $soa{contact}, refresh $soa{refresh},".
|
---|
| 3414 | " retry $soa{retry}, expire $soa{expire}, minTTL $soa{minttl}, TTL $soa{ttl})";
|
---|
| 3415 |
|
---|
[311] | 3416 | $logdata{entry} = $msg;
|
---|
[487] | 3417 | $self->_log(%logdata);
|
---|
[277] | 3418 |
|
---|
| 3419 | $dbh->commit;
|
---|
| 3420 | };
|
---|
| 3421 | if ($@) {
|
---|
| 3422 | $msg = $@;
|
---|
| 3423 | eval { $dbh->rollback; };
|
---|
[311] | 3424 | $logdata{entry} = "Error updating ".($defrec eq 'y' ? ($revrec eq 'y' ? 'default reverse zone ' : 'default ') : '').
|
---|
| 3425 | "SOA record for $parname: $msg";
|
---|
| 3426 | if ($config{log_failures}) {
|
---|
[487] | 3427 | $self->_log(%logdata);
|
---|
[311] | 3428 | $dbh->commit;
|
---|
| 3429 | }
|
---|
| 3430 | return ('FAIL', $logdata{entry});
|
---|
[277] | 3431 | } else {
|
---|
| 3432 | return ('OK', $msg);
|
---|
| 3433 | }
|
---|
[246] | 3434 | } # end updateSOA()
|
---|
| 3435 |
|
---|
| 3436 |
|
---|
[2] | 3437 | ## DNSDB::getRecLine()
|
---|
| 3438 | # Return all data fields for a zone record in separate elements of a hash
|
---|
[243] | 3439 | # Takes a database handle, default/live flag, forward/reverse flag, and record ID
|
---|
[2] | 3440 | sub getRecLine {
|
---|
| 3441 | $errstr = '';
|
---|
[481] | 3442 | my $self = shift;
|
---|
| 3443 | my $dbh = $self->{dbh};
|
---|
[243] | 3444 | my $defrec = shift;
|
---|
| 3445 | my $revrec = shift;
|
---|
[2] | 3446 | my $id = shift;
|
---|
| 3447 |
|
---|
[429] | 3448 | my $sql = "SELECT record_id,host,type,val,ttl".
|
---|
| 3449 | ($defrec eq 'n' ? ',location' : '').
|
---|
| 3450 | ($revrec eq 'n' ? ',distance,weight,port' : '').
|
---|
[243] | 3451 | (($defrec eq 'y') ? ',group_id FROM ' : ',domain_id,rdns_id FROM ').
|
---|
| 3452 | _rectable($defrec,$revrec)." WHERE record_id=?";
|
---|
[123] | 3453 | my $ret = $dbh->selectrow_hashref($sql, undef, ($id) );
|
---|
[2] | 3454 |
|
---|
[90] | 3455 | if ($dbh->err) {
|
---|
[2] | 3456 | $errstr = $DBI::errstr;
|
---|
| 3457 | return undef;
|
---|
| 3458 | }
|
---|
| 3459 |
|
---|
[123] | 3460 | if (!$ret) {
|
---|
| 3461 | $errstr = "No such record";
|
---|
| 3462 | return undef;
|
---|
| 3463 | }
|
---|
| 3464 |
|
---|
[243] | 3465 | # explicitly set a parent id
|
---|
| 3466 | if ($defrec eq 'y') {
|
---|
| 3467 | $ret->{parid} = $ret->{group_id};
|
---|
| 3468 | } else {
|
---|
| 3469 | $ret->{parid} = (($revrec eq 'n') ? $ret->{domain_id} : $ret->{rdns_id});
|
---|
| 3470 | # and a secondary if we have a custom type that lives in both a forward and reverse zone
|
---|
| 3471 | $ret->{secid} = (($revrec eq 'y') ? $ret->{domain_id} : $ret->{rdns_id}) if $ret->{type} > 65279;
|
---|
| 3472 | }
|
---|
[451] | 3473 | $ret->{address} = $ret->{val}; # because.
|
---|
[90] | 3474 |
|
---|
| 3475 | return $ret;
|
---|
[2] | 3476 | }
|
---|
| 3477 |
|
---|
| 3478 |
|
---|
| 3479 | ##fixme: should use above (getRecLine()) to get lines for below?
|
---|
[495] | 3480 | ## DNSDB::getRecList()
|
---|
| 3481 | # Return records for a group or zone
|
---|
| 3482 | # Takes a default/live flag, group or zone ID, start,
|
---|
[2] | 3483 | # number of records, sort field, and sort order
|
---|
| 3484 | # Returns a reference to an array of hashes
|
---|
[495] | 3485 | sub getRecList {
|
---|
[2] | 3486 | $errstr = '';
|
---|
[481] | 3487 | my $self = shift;
|
---|
| 3488 | my $dbh = $self->{dbh};
|
---|
[2] | 3489 |
|
---|
[397] | 3490 | my %args = @_;
|
---|
[4] | 3491 |
|
---|
[397] | 3492 | my @filterargs;
|
---|
[135] | 3493 |
|
---|
[397] | 3494 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 3495 |
|
---|
| 3496 | # protection against bad or missing arguments
|
---|
| 3497 | $args{sortorder} = 'ASC' if !$args{sortorder};
|
---|
[399] | 3498 | $args{sortby} = 'host' if !$args{sortby} && $args{revrec} eq 'n'; # default sort by host on domain record list
|
---|
| 3499 | $args{sortby} = 'val' if !$args{sortby} && $args{revrec} eq 'y'; # default sort by IP on revzone record list
|
---|
[397] | 3500 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
[501] | 3501 | my $perpage = ($args{nrecs} ? $args{nrecs} : $config{perpage});
|
---|
[397] | 3502 |
|
---|
[352] | 3503 | # sort reverse zones on IP, correctly
|
---|
[397] | 3504 | # do other fiddling with $args{sortby} while we're at it.
|
---|
[420] | 3505 | # whee! multisort means just passing comma-separated fields in sortby!
|
---|
| 3506 | my $newsort = '';
|
---|
| 3507 | foreach my $sf (split /,/, $args{sortby}) {
|
---|
| 3508 | $sf = "r.$sf";
|
---|
| 3509 | $sf =~ s/r\.val/CAST (r.val AS inet)/
|
---|
| 3510 | if $args{revrec} eq 'y' && $args{defrec} eq 'n';
|
---|
| 3511 | $sf =~ s/r\.type/t.alphaorder/;
|
---|
| 3512 | $newsort .= ",$sf";
|
---|
| 3513 | }
|
---|
| 3514 | $newsort =~ s/^,//;
|
---|
[352] | 3515 |
|
---|
[224] | 3516 | my $sql = "SELECT r.record_id,r.host,r.type,r.val,r.ttl";
|
---|
[397] | 3517 | $sql .= ",l.description AS locname" if $args{defrec} eq 'n';
|
---|
| 3518 | $sql .= ",r.distance,r.weight,r.port" if $args{revrec} eq 'n';
|
---|
| 3519 | $sql .= " FROM "._rectable($args{defrec},$args{revrec})." r ";
|
---|
[104] | 3520 | $sql .= "INNER JOIN rectypes t ON r.type=t.val "; # for sorting by type alphabetically
|
---|
[397] | 3521 | $sql .= "LEFT JOIN locations l ON r.location=l.location " if $args{defrec} eq 'n';
|
---|
| 3522 | $sql .= "WHERE "._recparent($args{defrec},$args{revrec})." = ?";
|
---|
[104] | 3523 | $sql .= " AND NOT r.type=$reverse_typemap{SOA}";
|
---|
[439] | 3524 | $sql .= " AND (r.host ~* ? OR r.val ~* ?)" if $args{filter};
|
---|
[420] | 3525 | $sql .= " ORDER BY $newsort $args{sortorder}";
|
---|
[324] | 3526 | # ensure consistent ordering by sorting on record_id too
|
---|
[397] | 3527 | $sql .= ", record_id $args{sortorder}";
|
---|
[501] | 3528 | $sql .= ($args{offset} eq 'all' ? '' : " LIMIT $perpage OFFSET ".$args{offset}*$perpage);
|
---|
[4] | 3529 |
|
---|
[397] | 3530 | my @bindvars = ($args{id});
|
---|
[439] | 3531 | push @bindvars, ($args{filter},$args{filter}) if $args{filter};
|
---|
[224] | 3532 |
|
---|
[397] | 3533 | my $ret = $dbh->selectall_arrayref($sql, { Slice => {} }, (@bindvars) );
|
---|
[495] | 3534 | $errstr = "Error retrieving records: ".$dbh->errstr if !$ret;
|
---|
[2] | 3535 | return $ret;
|
---|
[495] | 3536 | } # end getRecList()
|
---|
[2] | 3537 |
|
---|
| 3538 |
|
---|
[91] | 3539 | ## DNSDB::getRecCount()
|
---|
[224] | 3540 | # Return count of non-SOA records in zone (or default records in a group)
|
---|
| 3541 | # Takes a database handle, default/live flag, reverse/forward flag, group/domain ID,
|
---|
| 3542 | # and optional filtering modifier
|
---|
[91] | 3543 | # Returns the count
|
---|
| 3544 | sub getRecCount {
|
---|
[481] | 3545 | my $self = shift;
|
---|
| 3546 | my $dbh = $self->{dbh};
|
---|
[91] | 3547 | my $defrec = shift;
|
---|
[224] | 3548 | my $revrec = shift;
|
---|
[91] | 3549 | my $id = shift;
|
---|
[135] | 3550 | my $filter = shift || '';
|
---|
[91] | 3551 |
|
---|
[135] | 3552 | # keep the nasties down, since we can't ?-sub this bit. :/
|
---|
| 3553 | # note this is chars allowed in DNS hostnames
|
---|
| 3554 | $filter =~ s/[^a-zA-Z0-9_.:-]//g;
|
---|
| 3555 |
|
---|
[222] | 3556 | my @bindvars = ($id);
|
---|
| 3557 | push @bindvars, $filter if $filter;
|
---|
[224] | 3558 | my $sql = "SELECT count(*) FROM ".
|
---|
| 3559 | _rectable($defrec,$revrec).
|
---|
| 3560 | " WHERE "._recparent($defrec,$revrec)."=? ".
|
---|
| 3561 | "AND NOT type=$reverse_typemap{SOA}".
|
---|
| 3562 | ($filter ? " AND host ~* ?" : '');
|
---|
| 3563 | my ($count) = $dbh->selectrow_array($sql, undef, (@bindvars) );
|
---|
[91] | 3564 |
|
---|
| 3565 | return $count;
|
---|
| 3566 |
|
---|
| 3567 | } # end getRecCount()
|
---|
| 3568 |
|
---|
| 3569 |
|
---|
[3] | 3570 | ## DNSDB::addRec()
|
---|
[2] | 3571 | # Add a new record to a domain or a group's default records
|
---|
| 3572 | # Takes a database handle, default/live flag, group/domain ID,
|
---|
| 3573 | # host, type, value, and TTL
|
---|
| 3574 | # Some types require additional detail: "distance" for MX and SRV,
|
---|
| 3575 | # and weight/port for SRV
|
---|
| 3576 | # Returns a status code and detail message in case of error
|
---|
[234] | 3577 | ##fixme: pass a hash with the record data, not a series of separate values
|
---|
[2] | 3578 | sub addRec {
|
---|
| 3579 | $errstr = '';
|
---|
[481] | 3580 | my $self = shift;
|
---|
| 3581 | my $dbh = $self->{dbh};
|
---|
[2] | 3582 | my $defrec = shift;
|
---|
[226] | 3583 | my $revrec = shift;
|
---|
| 3584 | my $id = shift; # parent (group_id for defrecs, rdns_id for reverse records,
|
---|
| 3585 | # domain_id for domain records)
|
---|
[2] | 3586 |
|
---|
| 3587 | my $host = shift;
|
---|
[234] | 3588 | my $rectype = shift; # reference so we can coerce it if "+"-types can't find both zones
|
---|
[2] | 3589 | my $val = shift;
|
---|
| 3590 | my $ttl = shift;
|
---|
[389] | 3591 | my $location = shift;
|
---|
| 3592 | $location = '' if !$location;
|
---|
[2] | 3593 |
|
---|
[417] | 3594 | # Spaces are evil.
|
---|
| 3595 | $$host =~ s/^\s+//;
|
---|
| 3596 | $$host =~ s/\s+$//;
|
---|
[418] | 3597 | if ($typemap{$$rectype} ne 'TXT') {
|
---|
[417] | 3598 | # Leading or trailng spaces could be legit in TXT records.
|
---|
| 3599 | $$val =~ s/^\s+//;
|
---|
| 3600 | $$val =~ s/\s+$//;
|
---|
| 3601 | }
|
---|
| 3602 |
|
---|
[226] | 3603 | # prep for validation
|
---|
[252] | 3604 | my $addr = NetAddr::IP->new($$val);
|
---|
| 3605 | $$host =~ s/\.+$//; # FQDNs ending in . are an internal detail, and really shouldn't be exposed in the UI.
|
---|
[226] | 3606 |
|
---|
| 3607 | my $domid = 0;
|
---|
| 3608 | my $revid = 0;
|
---|
| 3609 |
|
---|
| 3610 | my $retcode = 'OK'; # assume everything will go OK
|
---|
| 3611 | my $retmsg = '';
|
---|
| 3612 |
|
---|
| 3613 | # do simple validation first
|
---|
| 3614 | return ('FAIL', "TTL must be numeric") unless $ttl =~ /^\d+$/;
|
---|
| 3615 |
|
---|
[234] | 3616 | # Quick check on hostname parts. Note the regex is more forgiving than the error message;
|
---|
| 3617 | # domain names technically are case-insensitive, and we use printf-like % codes for a couple
|
---|
| 3618 | # of types. Other things may also be added to validate default records of several flavours.
|
---|
| 3619 | return ('FAIL', "Hostnames may not contain anything other than (0-9 a-z . _)")
|
---|
[350] | 3620 | if $defrec eq 'n' && ($revrec eq 'y' ? $$rectype != $reverse_typemap{TXT} : 1) &&
|
---|
| 3621 | $$host !~ /^[0-9a-z_%.-]+$/i;
|
---|
[226] | 3622 |
|
---|
[234] | 3623 | # Collect these even if we're only doing a simple A record so we can call *any* validation sub
|
---|
| 3624 | my $dist = shift;
|
---|
[281] | 3625 | my $weight = shift;
|
---|
[234] | 3626 | my $port = shift;
|
---|
[226] | 3627 |
|
---|
[234] | 3628 | my $fields;
|
---|
| 3629 | my @vallist;
|
---|
[226] | 3630 |
|
---|
[234] | 3631 | # Call the validation sub for the type requested.
|
---|
[481] | 3632 | ($retcode,$retmsg) = $validators{$$rectype}($self, defrec => $defrec, revrec => $revrec, id => $id,
|
---|
[249] | 3633 | host => $host, rectype => $rectype, val => $val, addr => $addr,
|
---|
[234] | 3634 | dist => \$dist, port => \$port, weight => \$weight,
|
---|
[481] | 3635 | fields => \$fields, vallist => \@vallist);
|
---|
[129] | 3636 |
|
---|
[234] | 3637 | return ($retcode,$retmsg) if $retcode eq 'FAIL';
|
---|
[209] | 3638 |
|
---|
[234] | 3639 | # Set up database fields and bind parameters
|
---|
[481] | 3640 | $fields .= "host,type,val,ttl,"._recparent($defrec,$revrec);
|
---|
| 3641 | push @vallist, ($$host,$$rectype,$$val,$ttl,$id);
|
---|
| 3642 |
|
---|
| 3643 | # locations are not for default records, silly coder!
|
---|
| 3644 | if ($defrec eq 'n') {
|
---|
| 3645 | $fields .= ",location";
|
---|
| 3646 | push @vallist, $location;
|
---|
| 3647 | }
|
---|
[234] | 3648 | my $vallen = '?'.(',?'x$#vallist);
|
---|
[2] | 3649 |
|
---|
[287] | 3650 | # Put together the success log entry. We have to use this horrible kludge
|
---|
| 3651 | # because domain_id and rdns_id may or may not be present, and if they are,
|
---|
| 3652 | # they're not at a guaranteed consistent index in the array. wheee!
|
---|
| 3653 | my %logdata;
|
---|
| 3654 | my @ftmp = split /,/, $fields;
|
---|
| 3655 | for (my $i=0; $i <= $#vallist; $i++) {
|
---|
| 3656 | $logdata{domain_id} = $vallist[$i] if $ftmp[$i] eq 'domain_id';
|
---|
| 3657 | $logdata{rdns_id} = $vallist[$i] if $ftmp[$i] eq 'rdns_id';
|
---|
| 3658 | }
|
---|
| 3659 | $logdata{group_id} = $id if $defrec eq 'y';
|
---|
[473] | 3660 | $logdata{group_id} = $self->parentID(id => $id, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec)
|
---|
[287] | 3661 | if $defrec eq 'n';
|
---|
[328] | 3662 | $logdata{entry} = "Added ".($defrec eq 'y' ? 'default record' : 'record');
|
---|
| 3663 | # NS records for revzones get special treatment
|
---|
| 3664 | if ($revrec eq 'y' && $$rectype == 2) {
|
---|
| 3665 | $logdata{entry} .= " '$$val $typemap{$$rectype} $$host";
|
---|
| 3666 | } else {
|
---|
| 3667 | $logdata{entry} .= " '$$host $typemap{$$rectype} $$val";
|
---|
| 3668 | }
|
---|
| 3669 |
|
---|
[287] | 3670 | $logdata{entry} .= " [distance $dist]" if $typemap{$$rectype} eq 'MX';
|
---|
| 3671 | $logdata{entry} .= " [priority $dist] [weight $weight] [port $port]"
|
---|
| 3672 | if $typemap{$$rectype} eq 'SRV';
|
---|
[425] | 3673 | $logdata{entry} .= "', TTL $ttl";
|
---|
[480] | 3674 | $logdata{entry} .= ", location ".$self->getLoc($location)->{description} if $location;
|
---|
[287] | 3675 |
|
---|
[90] | 3676 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3677 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3678 | local $dbh->{AutoCommit} = 0;
|
---|
| 3679 | local $dbh->{RaiseError} = 1;
|
---|
[2] | 3680 |
|
---|
[90] | 3681 | eval {
|
---|
[236] | 3682 | $dbh->do("INSERT INTO "._rectable($defrec, $revrec)." ($fields) VALUES ($vallen)",
|
---|
[90] | 3683 | undef, @vallist);
|
---|
[487] | 3684 | $self->_log(%logdata);
|
---|
[90] | 3685 | $dbh->commit;
|
---|
| 3686 | };
|
---|
| 3687 | if ($@) {
|
---|
| 3688 | my $msg = $@;
|
---|
| 3689 | eval { $dbh->rollback; };
|
---|
[289] | 3690 | if ($config{log_failures}) {
|
---|
| 3691 | $logdata{entry} = "Failed adding ".($defrec eq 'y' ? 'default ' : '').
|
---|
| 3692 | "record '$$host $typemap{$$rectype} $$val', TTL $ttl ($msg)";
|
---|
[487] | 3693 | $self->_log(%logdata);
|
---|
[289] | 3694 | $dbh->commit;
|
---|
| 3695 | }
|
---|
[90] | 3696 | return ('FAIL',$msg);
|
---|
| 3697 | }
|
---|
[2] | 3698 |
|
---|
[287] | 3699 | $resultstr = $logdata{entry};
|
---|
[226] | 3700 | return ($retcode, $retmsg);
|
---|
[90] | 3701 |
|
---|
[2] | 3702 | } # end addRec()
|
---|
| 3703 |
|
---|
| 3704 |
|
---|
[16] | 3705 | ## DNSDB::updateRec()
|
---|
| 3706 | # Update a record
|
---|
[273] | 3707 | # Takes a database handle, default and reverse flags, record ID, immediate parent ID, and new record data.
|
---|
| 3708 | # Returns a status code and message
|
---|
[16] | 3709 | sub updateRec {
|
---|
| 3710 | $errstr = '';
|
---|
[17] | 3711 |
|
---|
[481] | 3712 | my $self = shift;
|
---|
| 3713 | my $dbh = $self->{dbh};
|
---|
[16] | 3714 | my $defrec = shift;
|
---|
[272] | 3715 | my $revrec = shift;
|
---|
[16] | 3716 | my $id = shift;
|
---|
[272] | 3717 | my $parid = shift; # immediate parent entity that we're descending from to update the record
|
---|
[16] | 3718 |
|
---|
[273] | 3719 | # all records have these
|
---|
[16] | 3720 | my $host = shift;
|
---|
[272] | 3721 | my $hostbk = $$host; # Keep a backup copy of the original, so we can WARN if the update mangles the domain
|
---|
| 3722 | my $rectype = shift;
|
---|
[16] | 3723 | my $val = shift;
|
---|
| 3724 | my $ttl = shift;
|
---|
[389] | 3725 | my $location = shift; # may be empty/null/undef depending on caller
|
---|
| 3726 | $location = '' if !$location;
|
---|
[16] | 3727 |
|
---|
[417] | 3728 | # Spaces are evil.
|
---|
| 3729 | $$host =~ s/^\s+//;
|
---|
| 3730 | $$host =~ s/\s+$//;
|
---|
[418] | 3731 | if ($typemap{$$rectype} ne 'TXT') {
|
---|
[417] | 3732 | # Leading or trailng spaces could be legit in TXT records.
|
---|
| 3733 | $$val =~ s/^\s+//;
|
---|
| 3734 | $$val =~ s/\s+$//;
|
---|
| 3735 | }
|
---|
| 3736 |
|
---|
[272] | 3737 | # prep for validation
|
---|
| 3738 | my $addr = NetAddr::IP->new($$val);
|
---|
| 3739 | $$host =~ s/\.+$//; # FQDNs ending in . are an internal detail, and really shouldn't be exposed in the UI.
|
---|
[16] | 3740 |
|
---|
[272] | 3741 | my $domid = 0;
|
---|
| 3742 | my $revid = 0;
|
---|
| 3743 |
|
---|
| 3744 | my $retcode = 'OK'; # assume everything will go OK
|
---|
| 3745 | my $retmsg = '';
|
---|
| 3746 |
|
---|
[273] | 3747 | # do simple validation first
|
---|
[272] | 3748 | return ('FAIL', "TTL must be numeric") unless $ttl =~ /^\d+$/;
|
---|
| 3749 |
|
---|
| 3750 | # Quick check on hostname parts. Note the regex is more forgiving than the error message;
|
---|
| 3751 | # domain names technically are case-insensitive, and we use printf-like % codes for a couple
|
---|
| 3752 | # of types. Other things may also be added to validate default records of several flavours.
|
---|
[273] | 3753 | return ('FAIL', "Hostnames may not contain anything other than (0-9 a-z - . _)")
|
---|
[350] | 3754 | if $defrec eq 'n' && ($revrec eq 'y' ? $$rectype != $reverse_typemap{TXT} : 1) &&
|
---|
| 3755 | $$host !~ /^[0-9a-z_%.-]+$/i;
|
---|
[272] | 3756 |
|
---|
[273] | 3757 | # only MX and SRV will use these
|
---|
[288] | 3758 | my $dist = shift || 0;
|
---|
| 3759 | my $weight = shift || 0;
|
---|
| 3760 | my $port = shift || 0;
|
---|
[16] | 3761 |
|
---|
[272] | 3762 | my $fields;
|
---|
| 3763 | my @vallist;
|
---|
[16] | 3764 |
|
---|
[273] | 3765 | # get old record data so we have the right parent ID
|
---|
| 3766 | # and for logging (eventually)
|
---|
[481] | 3767 | my $oldrec = $self->getRecLine($defrec, $revrec, $id);
|
---|
[223] | 3768 |
|
---|
[272] | 3769 | # Call the validation sub for the type requested.
|
---|
| 3770 | # Note the ID to pass here is the *parent*, not the record
|
---|
[481] | 3771 | ($retcode,$retmsg) = $validators{$$rectype}($self, defrec => $defrec, revrec => $revrec,
|
---|
[272] | 3772 | id => ($defrec eq 'y' ? $oldrec->{group_id} : ($revrec eq 'n' ? $oldrec->{domain_id} : $oldrec->{rdns_id})),
|
---|
| 3773 | host => $host, rectype => $rectype, val => $val, addr => $addr,
|
---|
| 3774 | dist => \$dist, port => \$port, weight => \$weight,
|
---|
| 3775 | fields => \$fields, vallist => \@vallist,
|
---|
[481] | 3776 | update => $id);
|
---|
[272] | 3777 |
|
---|
| 3778 | return ($retcode,$retmsg) if $retcode eq 'FAIL';
|
---|
| 3779 |
|
---|
[273] | 3780 | # Set up database fields and bind parameters. Note only the optional fields
|
---|
| 3781 | # (distance, weight, port, secondary parent ID) are added in the validation call above
|
---|
[448] | 3782 | $fields .= "host,type,val,ttl,"._recparent($defrec,$revrec);
|
---|
| 3783 | push @vallist, ($$host,$$rectype,$$val,$ttl,
|
---|
[273] | 3784 | ($defrec eq 'y' ? $oldrec->{group_id} : ($revrec eq 'n' ? $oldrec->{domain_id} : $oldrec->{rdns_id})) );
|
---|
[272] | 3785 |
|
---|
[448] | 3786 | # locations are not for default records, silly coder!
|
---|
| 3787 | if ($defrec eq 'n') {
|
---|
| 3788 | $fields .= ",location";
|
---|
| 3789 | push @vallist, $location;
|
---|
| 3790 | }
|
---|
| 3791 |
|
---|
[273] | 3792 | # hack hack PTHUI
|
---|
| 3793 | # need to forcibly make sure we disassociate a record with a parent it's no longer related to.
|
---|
| 3794 | # eg, PTR records may not have a domain parent, or A/AAAA records may not have a revzone parent.
|
---|
| 3795 | # mainly needed for crossover types that got coerced down to "standard" types
|
---|
| 3796 | if ($defrec eq 'n') {
|
---|
| 3797 | if ($$rectype == $reverse_typemap{PTR}) {
|
---|
| 3798 | $fields .= ",domain_id";
|
---|
| 3799 | push @vallist, 0;
|
---|
| 3800 | }
|
---|
| 3801 | if ($$rectype == $reverse_typemap{A} || $$rectype == $reverse_typemap{AAAA}) {
|
---|
| 3802 | $fields .= ",rdns_id";
|
---|
| 3803 | push @vallist, 0;
|
---|
| 3804 | }
|
---|
| 3805 | }
|
---|
[345] | 3806 | # fix fat-finger-originated record type changes
|
---|
| 3807 | if ($$rectype == 65285) {
|
---|
| 3808 | $fields .= ",rdns_id" if $revrec eq 'n';
|
---|
| 3809 | $fields .= ",domain_id" if $revrec eq 'y';
|
---|
| 3810 | push @vallist, 0;
|
---|
| 3811 | }
|
---|
[341] | 3812 | if ($defrec eq 'n') {
|
---|
| 3813 | $domid = $parid if $revrec eq 'n';
|
---|
| 3814 | $revid = $parid if $revrec eq 'y';
|
---|
| 3815 | }
|
---|
[272] | 3816 |
|
---|
[288] | 3817 | # Put together the success log entry. Horrible kludge from addRec() copied as-is since
|
---|
| 3818 | # we don't know whether the passed arguments or retrieved values for domain_id and rdns_id
|
---|
| 3819 | # will be maintained (due to "not-in-zone" validation changes)
|
---|
| 3820 | my %logdata;
|
---|
[341] | 3821 | $logdata{domain_id} = $domid;
|
---|
| 3822 | $logdata{rdns_id} = $revid;
|
---|
[288] | 3823 | my @ftmp = split /,/, $fields;
|
---|
| 3824 | for (my $i=0; $i <= $#vallist; $i++) {
|
---|
| 3825 | $logdata{domain_id} = $vallist[$i] if $ftmp[$i] eq 'domain_id';
|
---|
| 3826 | $logdata{rdns_id} = $vallist[$i] if $ftmp[$i] eq 'rdns_id';
|
---|
| 3827 | }
|
---|
| 3828 | $logdata{group_id} = $parid if $defrec eq 'y';
|
---|
[473] | 3829 | $logdata{group_id} = $self->parentID(id => $parid, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec)
|
---|
[288] | 3830 | if $defrec eq 'n';
|
---|
[328] | 3831 | $logdata{entry} = "Updated ".($defrec eq 'y' ? 'default record' : 'record')." from\n";
|
---|
| 3832 | # NS records for revzones get special treatment
|
---|
| 3833 | if ($revrec eq 'y' && $$rectype == 2) {
|
---|
| 3834 | $logdata{entry} .= " '$oldrec->{val} $typemap{$oldrec->{type}} $oldrec->{host}";
|
---|
| 3835 | } else {
|
---|
| 3836 | $logdata{entry} .= " '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}";
|
---|
| 3837 | }
|
---|
[288] | 3838 | $logdata{entry} .= " [distance $oldrec->{distance}]" if $typemap{$oldrec->{type}} eq 'MX';
|
---|
| 3839 | $logdata{entry} .= " [priority $oldrec->{distance}] [weight $oldrec->{weight}] [port $oldrec->{port}]"
|
---|
| 3840 | if $typemap{$oldrec->{type}} eq 'SRV';
|
---|
[425] | 3841 | $logdata{entry} .= "', TTL $oldrec->{ttl}";
|
---|
[480] | 3842 | $logdata{entry} .= ", location ".$self->getLoc($oldrec->{location})->{description} if $oldrec->{location};
|
---|
[425] | 3843 | $logdata{entry} .= "\nto\n";
|
---|
[328] | 3844 | # More NS special
|
---|
| 3845 | if ($revrec eq 'y' && $$rectype == 2) {
|
---|
| 3846 | $logdata{entry} .= "'$$val $typemap{$$rectype} $$host";
|
---|
| 3847 | } else {
|
---|
| 3848 | $logdata{entry} .= "'$$host $typemap{$$rectype} $$val";
|
---|
| 3849 | }
|
---|
[288] | 3850 | $logdata{entry} .= " [distance $dist]" if $typemap{$$rectype} eq 'MX';
|
---|
| 3851 | $logdata{entry} .= " [priority $dist] [weight $weight] [port $port]" if $typemap{$$rectype} eq 'SRV';
|
---|
[425] | 3852 | $logdata{entry} .= "', TTL $ttl";
|
---|
[480] | 3853 | $logdata{entry} .= ", location ".$self->getLoc($location)->{description} if $location;
|
---|
[288] | 3854 |
|
---|
[90] | 3855 | local $dbh->{AutoCommit} = 0;
|
---|
| 3856 | local $dbh->{RaiseError} = 1;
|
---|
| 3857 |
|
---|
[341] | 3858 | # Fiddle the field list into something suitable for updates
|
---|
| 3859 | $fields =~ s/,/=?,/g;
|
---|
| 3860 | $fields .= "=?";
|
---|
| 3861 |
|
---|
[90] | 3862 | eval {
|
---|
[273] | 3863 | $dbh->do("UPDATE "._rectable($defrec,$revrec)." SET $fields WHERE record_id=?", undef, (@vallist, $id) );
|
---|
[487] | 3864 | $self->_log(%logdata);
|
---|
[130] | 3865 | $dbh->commit;
|
---|
[90] | 3866 | };
|
---|
| 3867 | if ($@) {
|
---|
| 3868 | my $msg = $@;
|
---|
[288] | 3869 | eval { $dbh->rollback; };
|
---|
[289] | 3870 | if ($config{log_failures}) {
|
---|
| 3871 | $logdata{entry} = "Failed updating ".($defrec eq 'y' ? 'default ' : '').
|
---|
| 3872 | "record '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}', TTL $oldrec->{ttl} ($msg)";
|
---|
[487] | 3873 | $self->_log(%logdata);
|
---|
[289] | 3874 | $dbh->commit;
|
---|
| 3875 | }
|
---|
[90] | 3876 | return ('FAIL', $msg);
|
---|
| 3877 | }
|
---|
| 3878 |
|
---|
[288] | 3879 | $resultstr = $logdata{entry};
|
---|
[272] | 3880 | return ($retcode, $retmsg);
|
---|
[16] | 3881 | } # end updateRec()
|
---|
| 3882 |
|
---|
| 3883 |
|
---|
[459] | 3884 | ## DNSDB::downconvert()
|
---|
| 3885 | # A mostly internal (not exported) semiutilty sub to downconvert from pseudotype <x>
|
---|
| 3886 | # to a compatible component type. Only a handful of operations are valid, anything
|
---|
| 3887 | # else is a null-op.
|
---|
| 3888 | # Takes the record ID and the new type. Returns boolean.
|
---|
| 3889 | sub downconvert {
|
---|
[481] | 3890 | my $self = shift;
|
---|
| 3891 | my $dbh = $self->{dbh};
|
---|
[459] | 3892 | my $recid = shift;
|
---|
| 3893 | my $newtype = shift;
|
---|
| 3894 |
|
---|
| 3895 | # also, only work on live records; little to no value trying to do this on default records.
|
---|
[481] | 3896 | my $rec = $self->getRecLine('n', 'y', $recid);
|
---|
[459] | 3897 |
|
---|
| 3898 | # hm?
|
---|
| 3899 | #return 1 if !$rec;
|
---|
| 3900 |
|
---|
| 3901 | return 1 if $rec->{type} < 65000; # Only the reverse-record pseudotypes can be downconverted
|
---|
| 3902 | return 1 if $rec->{type} == 65282; # Nowhere to go
|
---|
| 3903 |
|
---|
| 3904 | my $delpar;
|
---|
| 3905 | my @sqlargs;
|
---|
| 3906 | if ($rec->{type} == 65280) {
|
---|
| 3907 | return 1 if $newtype != 1 && $newtype != 12;
|
---|
| 3908 | $delpar = ($newtype == 1 ? 'rdns_id' : 'domain_id');
|
---|
| 3909 | push @sqlargs, 0, $newtype, $recid;
|
---|
| 3910 | } elsif ($rec->{type} == 65281) {
|
---|
| 3911 | return 1 if $newtype != 28 && $newtype != 12;
|
---|
| 3912 | $delpar = ($newtype == 28 ? 'rdns_id' : 'domain_id');
|
---|
| 3913 | push @sqlargs, 0, $newtype, $recid;
|
---|
| 3914 | } elsif ($rec->{type} == 65283) {
|
---|
| 3915 | return 1 if $newtype != 65282;
|
---|
| 3916 | $delpar = 'rdns_id';
|
---|
| 3917 | } elsif ($rec->{type} == 65284) {
|
---|
| 3918 | return 1 if $newtype != 65282;
|
---|
| 3919 | $delpar = 'rdns_id';
|
---|
| 3920 | } else {
|
---|
| 3921 | # Your llama is on fire.
|
---|
| 3922 | }
|
---|
| 3923 |
|
---|
| 3924 | local $dbh->{AutoCommit} = 0;
|
---|
| 3925 | local $dbh->{RaiseError} = 1;
|
---|
| 3926 |
|
---|
| 3927 | eval {
|
---|
| 3928 | $dbh->do("UPDATE records SET $delpar = ?, type = ? WHERE record_id = ?", undef, @sqlargs);
|
---|
| 3929 | $dbh->commit;
|
---|
| 3930 | };
|
---|
| 3931 | if ($@) {
|
---|
| 3932 | $errstr = $@;
|
---|
| 3933 | eval { $dbh->rollback; };
|
---|
| 3934 | return 0;
|
---|
| 3935 | }
|
---|
| 3936 | return 1;
|
---|
| 3937 | } # end downconvert()
|
---|
| 3938 |
|
---|
| 3939 |
|
---|
[3] | 3940 | ## DNSDB::delRec()
|
---|
| 3941 | # Delete a record.
|
---|
| 3942 | sub delRec {
|
---|
| 3943 | $errstr = '';
|
---|
[481] | 3944 | my $self = shift;
|
---|
| 3945 | my $dbh = $self->{dbh};
|
---|
[3] | 3946 | my $defrec = shift;
|
---|
[243] | 3947 | my $revrec = shift;
|
---|
[3] | 3948 | my $id = shift;
|
---|
| 3949 |
|
---|
[481] | 3950 | my $oldrec = $self->getRecLine($defrec, $revrec, $id);
|
---|
[3] | 3951 |
|
---|
[290] | 3952 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3953 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3954 | local $dbh->{AutoCommit} = 0;
|
---|
| 3955 | local $dbh->{RaiseError} = 1;
|
---|
[3] | 3956 |
|
---|
[290] | 3957 | # Put together the log entry
|
---|
| 3958 | my %logdata;
|
---|
| 3959 | $logdata{domain_id} = $oldrec->{domain_id};
|
---|
| 3960 | $logdata{rdns_id} = $oldrec->{rdns_id};
|
---|
| 3961 | $logdata{group_id} = $oldrec->{group_id} if $defrec eq 'y';
|
---|
[473] | 3962 | $logdata{group_id} = $self->parentID(id => $oldrec->{domain_id}, type => ($revrec eq 'n' ? 'domain' : 'revzone'),
|
---|
| 3963 | revrec => $revrec)
|
---|
[290] | 3964 | if $defrec eq 'n';
|
---|
| 3965 | $logdata{entry} = "Deleted ".($defrec eq 'y' ? 'default record ' : 'record ').
|
---|
| 3966 | "'$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}";
|
---|
| 3967 | $logdata{entry} .= " [distance $oldrec->{distance}]" if $typemap{$oldrec->{type}} eq 'MX';
|
---|
| 3968 | $logdata{entry} .= " [priority $oldrec->{distance}] [weight $oldrec->{weight}] [port $oldrec->{port}]"
|
---|
| 3969 | if $typemap{$oldrec->{type}} eq 'SRV';
|
---|
[425] | 3970 | $logdata{entry} .= "', TTL $oldrec->{ttl}";
|
---|
[480] | 3971 | $logdata{entry} .= ", location ".$self->getLoc($oldrec->{location})->{description} if $oldrec->{location};
|
---|
[290] | 3972 |
|
---|
| 3973 | eval {
|
---|
| 3974 | my $sth = $dbh->do("DELETE FROM "._rectable($defrec,$revrec)." WHERE record_id=?", undef, ($id));
|
---|
[487] | 3975 | $self->_log(%logdata);
|
---|
[290] | 3976 | $dbh->commit;
|
---|
| 3977 | };
|
---|
| 3978 | if ($@) {
|
---|
| 3979 | my $msg = $@;
|
---|
| 3980 | eval { $dbh->rollback; };
|
---|
| 3981 | if ($config{log_failures}) {
|
---|
| 3982 | $logdata{entry} = "Error deleting ".($defrec eq 'y' ? 'default record' : 'record').
|
---|
| 3983 | " '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}', TTL $oldrec->{ttl} ($msg)";
|
---|
[487] | 3984 | $self->_log(%logdata);
|
---|
[290] | 3985 | $dbh->commit;
|
---|
| 3986 | }
|
---|
| 3987 | return ('FAIL', $msg);
|
---|
| 3988 | }
|
---|
| 3989 |
|
---|
| 3990 | return ('OK',$logdata{entry});
|
---|
[3] | 3991 | } # end delRec()
|
---|
| 3992 |
|
---|
| 3993 |
|
---|
[323] | 3994 | ## DNSDB::getLogCount()
|
---|
| 3995 | # Get a count of log entries
|
---|
| 3996 | # Takes a database handle and a hash containing at least:
|
---|
| 3997 | # - Entity ID and entity type as the primary log "slice"
|
---|
| 3998 | sub getLogCount {
|
---|
[483] | 3999 | my $self = shift;
|
---|
| 4000 | my $dbh = $self->{dbh};
|
---|
[323] | 4001 |
|
---|
| 4002 | my %args = @_;
|
---|
| 4003 |
|
---|
| 4004 | my @filterargs;
|
---|
| 4005 | ##fixme: which fields do we want to filter on?
|
---|
| 4006 | # push @filterargs,
|
---|
| 4007 |
|
---|
| 4008 | $errstr = 'Missing primary parent ID and/or type';
|
---|
| 4009 | # fail early if we don't have a "prime" ID to look for log entries for
|
---|
| 4010 | return if !$args{id};
|
---|
| 4011 |
|
---|
| 4012 | # or if the prime id type is missing or invalid
|
---|
| 4013 | return if !$args{logtype};
|
---|
| 4014 | $args{logtype} = 'revzone' if $args{logtype} eq 'rdns'; # hack pthui
|
---|
| 4015 | $args{logtype} = 'domain' if $args{logtype} eq 'dom'; # hack pthui
|
---|
| 4016 | return if !grep /^$args{logtype}$/, ('group', 'domain', 'revzone', 'user');
|
---|
| 4017 |
|
---|
| 4018 | $args{logtype} = 'revzone' if $args{logtype} eq 'rdns'; # hack pthui
|
---|
| 4019 |
|
---|
| 4020 | my $sql = "SELECT count(*) FROM log ".
|
---|
| 4021 | "WHERE $id_col{$args{logtype}}=?".
|
---|
| 4022 | ($args{filter} ? " AND entry ~* ?" : '');
|
---|
| 4023 | my ($count) = $dbh->selectrow_array($sql, undef, ($args{id}, @filterargs) );
|
---|
| 4024 | $errstr = $dbh->errstr if !$count;
|
---|
| 4025 | return $count;
|
---|
| 4026 | } # end getLogCount()
|
---|
| 4027 |
|
---|
| 4028 |
|
---|
| 4029 | ## DNSDB::getLogEntries()
|
---|
| 4030 | # Get a list of log entries
|
---|
| 4031 | # Takes arguments as with getLogCount() above, plus optional:
|
---|
| 4032 | # - sort field
|
---|
| 4033 | # - sort order
|
---|
| 4034 | # - offset for pagination
|
---|
| 4035 | sub getLogEntries {
|
---|
[483] | 4036 | my $self = shift;
|
---|
| 4037 | my $dbh = $self->{dbh};
|
---|
[323] | 4038 |
|
---|
| 4039 | my %args = @_;
|
---|
| 4040 |
|
---|
| 4041 | my @filterargs;
|
---|
| 4042 |
|
---|
| 4043 | # fail early if we don't have a "prime" ID to look for log entries for
|
---|
| 4044 | return if !$args{id};
|
---|
| 4045 |
|
---|
| 4046 | # or if the prime id type is missing or invalid
|
---|
| 4047 | return if !$args{logtype};
|
---|
| 4048 | $args{logtype} = 'revzone' if $args{logtype} eq 'rdns'; # hack pthui
|
---|
| 4049 | $args{logtype} = 'domain' if $args{logtype} eq 'dom'; # hack pthui
|
---|
| 4050 | return if !grep /^$args{logtype}$/, ('group', 'domain', 'revzone', 'user');
|
---|
| 4051 |
|
---|
| 4052 | # Sorting defaults
|
---|
| 4053 | $args{sortby} = 'stamp' if !$args{sortby};
|
---|
| 4054 | $args{sortorder} = 'DESC' if !$args{sortorder};
|
---|
[397] | 4055 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
[323] | 4056 |
|
---|
[324] | 4057 | my %sortmap = (fname => 'name', username => 'email', entry => 'entry', stamp => 'stamp');
|
---|
[323] | 4058 | $args{sortby} = $sortmap{$args{sortby}};
|
---|
| 4059 |
|
---|
| 4060 | my $sql = "SELECT user_id AS userid, email AS useremail, name AS userfname, entry AS logentry, ".
|
---|
| 4061 | "date_trunc('second',stamp) AS logtime ".
|
---|
| 4062 | "FROM log ".
|
---|
| 4063 | "WHERE $id_col{$args{logtype}}=?".
|
---|
| 4064 | ($args{filter} ? " AND entry ~* ?" : '').
|
---|
[324] | 4065 | " ORDER BY $args{sortby} $args{sortorder}, log_id $args{sortorder}".
|
---|
[323] | 4066 | ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
|
---|
| 4067 | my $loglist = $dbh->selectall_arrayref($sql, { Slice => {} }, ($args{id}, @filterargs) );
|
---|
| 4068 | $errstr = $dbh->errstr if !$loglist;
|
---|
| 4069 | return $loglist;
|
---|
| 4070 | } # end getLogEntries()
|
---|
| 4071 |
|
---|
| 4072 |
|
---|
[452] | 4073 | ## IPDB::getRevPattern()
|
---|
| 4074 | # Get the narrowest template pattern applicable to a passed CIDR address (may be a netblock or an IP)
|
---|
| 4075 | sub getRevPattern {
|
---|
[483] | 4076 | my $self = shift;
|
---|
| 4077 | my $dbh = $self->{dbh};
|
---|
[452] | 4078 | my $cidr = shift;
|
---|
| 4079 | my $group = shift || 1; # just in case
|
---|
| 4080 |
|
---|
[462] | 4081 | # for speed! Casting and comparing even ~7K records takes ~2.5s, so narrow it down to one revzone first.
|
---|
| 4082 | my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet >>= ? AND group_id = ?",
|
---|
| 4083 | undef, ($cidr, $group) );
|
---|
| 4084 |
|
---|
| 4085 | ##fixme? may need to narrow things down more by octet-chopping and doing text comparisons before casting.
|
---|
| 4086 | my ($revpatt) = $dbh->selectrow_array("SELECT host FROM records ".
|
---|
| 4087 | "WHERE (type in (12,65280,65281,65282,65283,65284)) AND rdns_id = ? AND CAST (val AS inet) >>= ? ".
|
---|
| 4088 | "ORDER BY CAST (val AS inet) DESC LIMIT 1", undef, ($revid, $cidr) );
|
---|
[452] | 4089 | return $revpatt;
|
---|
| 4090 | } # end getRevPattern()
|
---|
| 4091 |
|
---|
| 4092 |
|
---|
[225] | 4093 | ## DNSDB::getTypelist()
|
---|
| 4094 | # Get a list of record types for various UI dropdowns
|
---|
| 4095 | # Takes database handle, forward/reverse/lookup flag, and optional "tag as selected" indicator (defaults to A)
|
---|
| 4096 | # Returns an arrayref to list of hashrefs perfect for HTML::Template
|
---|
| 4097 | sub getTypelist {
|
---|
[483] | 4098 | my $self = shift;
|
---|
| 4099 | my $dbh = $self->{dbh};
|
---|
[225] | 4100 | my $recgroup = shift;
|
---|
| 4101 | my $type = shift || $reverse_typemap{A};
|
---|
| 4102 |
|
---|
| 4103 | # also accepting $webvar{revrec}!
|
---|
| 4104 | $recgroup = 'f' if $recgroup eq 'n';
|
---|
| 4105 | $recgroup = 'r' if $recgroup eq 'y';
|
---|
| 4106 |
|
---|
| 4107 | my $sql = "SELECT val,name FROM rectypes WHERE ";
|
---|
| 4108 | if ($recgroup eq 'r') {
|
---|
| 4109 | # reverse zone types
|
---|
| 4110 | $sql .= "stdflag=2 OR stdflag=3";
|
---|
| 4111 | } elsif ($recgroup eq 'l') {
|
---|
| 4112 | # DNS lookup types. Note we avoid our custom types >= 65280, since those are entirely internal.
|
---|
| 4113 | $sql .= "(stdflag=1 OR stdflag=2 OR stdflag=3) AND val < 65280";
|
---|
| 4114 | } else {
|
---|
| 4115 | # default; forward zone types. technically $type eq 'f' but not worth the error message.
|
---|
| 4116 | $sql .= "stdflag=1 OR stdflag=2";
|
---|
| 4117 | }
|
---|
| 4118 | $sql .= " ORDER BY listorder";
|
---|
| 4119 |
|
---|
| 4120 | my $sth = $dbh->prepare($sql);
|
---|
| 4121 | $sth->execute;
|
---|
| 4122 | my @typelist;
|
---|
| 4123 | while (my ($rval,$rname) = $sth->fetchrow_array()) {
|
---|
| 4124 | my %row = ( recval => $rval, recname => $rname );
|
---|
| 4125 | $row{tselect} = 1 if $rval == $type;
|
---|
| 4126 | push @typelist, \%row;
|
---|
| 4127 | }
|
---|
| 4128 |
|
---|
| 4129 | # Add SOA on lookups since it's not listed in other dropdowns.
|
---|
| 4130 | if ($recgroup eq 'l') {
|
---|
| 4131 | my %row = ( recval => $reverse_typemap{SOA}, recname => 'SOA' );
|
---|
| 4132 | $row{tselect} = 1 if $reverse_typemap{SOA} == $type;
|
---|
| 4133 | push @typelist, \%row;
|
---|
| 4134 | }
|
---|
| 4135 |
|
---|
| 4136 | return \@typelist;
|
---|
| 4137 | } # end getTypelist()
|
---|
| 4138 |
|
---|
| 4139 |
|
---|
[254] | 4140 | ## DNSDB::parentID()
|
---|
| 4141 | # Get ID of entity that is nearest parent to requested id
|
---|
| 4142 | # Takes a database handle and a hash of entity ID, entity type, optional parent type flag
|
---|
| 4143 | # (domain/reverse zone or group), and optional default/live and forward/reverse flags
|
---|
| 4144 | # Returns the ID or undef on failure
|
---|
| 4145 | sub parentID {
|
---|
[473] | 4146 | my $self = shift;
|
---|
| 4147 | my $dbh = $self->{dbh};
|
---|
[116] | 4148 |
|
---|
[254] | 4149 | my %args = @_;
|
---|
[116] | 4150 |
|
---|
[254] | 4151 | # clean up the parent-type. Set it to group if not set; coerce revzone to domain for simpler logic
|
---|
| 4152 | $args{partype} = 'group' if !$args{partype};
|
---|
| 4153 | $args{partype} = 'domain' if $args{partype} eq 'revzone';
|
---|
[116] | 4154 |
|
---|
[254] | 4155 | # clean up defrec and revrec. default to live record, forward zone
|
---|
| 4156 | $args{defrec} = 'n' if !$args{defrec};
|
---|
| 4157 | $args{revrec} = 'n' if !$args{revrec};
|
---|
[116] | 4158 |
|
---|
[254] | 4159 | if ($par_type{$args{partype}} eq 'domain') {
|
---|
| 4160 | # only live records can have a domain/zone parent
|
---|
| 4161 | return unless ($args{type} eq 'record' && $args{defrec} eq 'n');
|
---|
| 4162 | my $result = $dbh->selectrow_hashref("SELECT ".($args{revrec} eq 'n' ? 'domain_id' : 'rdns_id').
|
---|
| 4163 | " FROM records WHERE record_id = ?",
|
---|
| 4164 | undef, ($args{id}) ) or return;
|
---|
| 4165 | return $result;
|
---|
| 4166 | } else {
|
---|
| 4167 | # snag some arguments that will either fall through or be overwritten to save some code duplication
|
---|
| 4168 | my $tmpid = $args{id};
|
---|
| 4169 | my $type = $args{type};
|
---|
| 4170 | if ($type eq 'record' && $args{defrec} eq 'n') {
|
---|
| 4171 | # Live records go through the records table first.
|
---|
| 4172 | ($tmpid) = $dbh->selectrow_array("SELECT ".($args{revrec} eq 'n' ? 'domain_id' : 'rdns_id').
|
---|
| 4173 | " FROM records WHERE record_id = ?",
|
---|
| 4174 | undef, ($args{id}) ) or return;
|
---|
| 4175 | $type = ($args{revrec} eq 'n' ? 'domain' : 'revzone');
|
---|
| 4176 | }
|
---|
| 4177 | my ($result) = $dbh->selectrow_array("SELECT $par_col{$type} FROM $par_tbl{$type} WHERE $id_col{$type} = ?",
|
---|
| 4178 | undef, ($tmpid) );
|
---|
| 4179 | return $result;
|
---|
| 4180 | }
|
---|
| 4181 | # should be impossible to get here with even remotely sane arguments
|
---|
| 4182 | return;
|
---|
| 4183 | } # end parentID()
|
---|
[116] | 4184 |
|
---|
| 4185 |
|
---|
[117] | 4186 | ## DNSDB::isParent()
|
---|
| 4187 | # Returns true if $id1 is a parent of $id2, false otherwise
|
---|
| 4188 | sub isParent {
|
---|
[470] | 4189 | my $self = shift;
|
---|
| 4190 | my $dbh = $self->{dbh};
|
---|
[117] | 4191 | my $id1 = shift;
|
---|
| 4192 | my $type1 = shift;
|
---|
| 4193 | my $id2 = shift;
|
---|
| 4194 | my $type2 = shift;
|
---|
| 4195 | ##todo: immediate, secondary, full (default)
|
---|
| 4196 |
|
---|
[157] | 4197 | # Return false on invalid types
|
---|
[244] | 4198 | return 0 if !grep /^$type1$/, ('record','defrec','defrevrec','user','domain','revzone','group');
|
---|
| 4199 | return 0 if !grep /^$type2$/, ('record','defrec','defrevrec','user','domain','revzone','group');
|
---|
[157] | 4200 |
|
---|
[117] | 4201 | # Return false on impossible relations
|
---|
| 4202 | return 0 if $type1 eq 'record'; # nothing may be a child of a record
|
---|
| 4203 | return 0 if $type1 eq 'defrec'; # nothing may be a child of a record
|
---|
[244] | 4204 | return 0 if $type1 eq 'defrevrec'; # nothing may be a child of a record
|
---|
[117] | 4205 | return 0 if $type1 eq 'user'; # nothing may be child of a user
|
---|
| 4206 | return 0 if $type1 eq 'domain' && $type2 ne 'record'; # domain may not be a parent of anything other than a record
|
---|
[244] | 4207 | return 0 if $type1 eq 'revzone' && $type2 ne 'record';# reverse zone may not be a parent of anything other than a record
|
---|
[117] | 4208 |
|
---|
[186] | 4209 | # ennnhhhh.... if we're passed an id of 0, it will never be found. usual
|
---|
| 4210 | # case would be the UI creating a new <thing>, and so we don't have an ID for
|
---|
| 4211 | # <thing> to look up yet. in that case the UI should check the parent as well.
|
---|
| 4212 | return 0 if $id1 == 0; # nothing can have a parent id of 0
|
---|
| 4213 | return 1 if $id2 == 0; # anything could have a child id of 0 (or "unknown")
|
---|
| 4214 |
|
---|
[117] | 4215 | # group 1 is the ultimate root parent
|
---|
| 4216 | return 1 if $type1 eq 'group' && $id1 == 1;
|
---|
| 4217 |
|
---|
[155] | 4218 | # groups are always (a) parent of themselves
|
---|
| 4219 | return 1 if $type1 eq 'group' && $type2 eq 'group' && $id1 == $id2;
|
---|
| 4220 |
|
---|
[117] | 4221 | my $id = $id2;
|
---|
| 4222 | my $type = $type2;
|
---|
| 4223 | my $foundparent = 0;
|
---|
[155] | 4224 |
|
---|
[244] | 4225 | # Records are the only entity with two possible parents. We need to split the parent checks on
|
---|
| 4226 | # domain/rdns.
|
---|
| 4227 | if ($type eq 'record') {
|
---|
| 4228 | my ($dom,$rdns) = $dbh->selectrow_array("SELECT domain_id,rdns_id FROM records WHERE record_id=?",
|
---|
| 4229 | undef, ($id));
|
---|
| 4230 | # check immediate parent against request
|
---|
| 4231 | return 1 if $type1 eq 'domain' && $id1 == $dom;
|
---|
| 4232 | return 1 if $type1 eq 'revzone' && $id1 == $rdns;
|
---|
| 4233 | # if request is group, check *both* parents. Only check if the parent is nonzero though.
|
---|
[470] | 4234 | return 1 if $dom && $self->isParent($id1, $type1, $dom, 'domain');
|
---|
| 4235 | return 1 if $rdns && $self->isParent($id1, $type1, $rdns, 'revzone');
|
---|
[244] | 4236 | # exit here since we've executed the loop below by proxy in the above recursive calls.
|
---|
| 4237 | return 0;
|
---|
| 4238 | }
|
---|
| 4239 |
|
---|
| 4240 | # almost the same loop as getParents() above
|
---|
[186] | 4241 | my $limiter = 0;
|
---|
[117] | 4242 | while (1) {
|
---|
[155] | 4243 | my $sql = "SELECT $par_col{$type} FROM $par_tbl{$type} WHERE $id_col{$type} = ?";
|
---|
[117] | 4244 | my $result = $dbh->selectrow_hashref($sql,
|
---|
[157] | 4245 | undef, ($id) );
|
---|
[186] | 4246 | if (!$result) {
|
---|
| 4247 | $limiter++;
|
---|
[244] | 4248 | ##fixme: how often will this happen on a live site? fail at max limiter <n>?
|
---|
[186] | 4249 | warn "no results looking for $sql with id $id (depth $limiter)\n";
|
---|
| 4250 | last;
|
---|
| 4251 | }
|
---|
[157] | 4252 | if ($result && $result->{$par_col{$type}} == $id1) {
|
---|
[117] | 4253 | $foundparent = 1;
|
---|
| 4254 | last;
|
---|
[157] | 4255 | } else {
|
---|
| 4256 | ##fixme: do we care about trying to return a "no such record/domain/user/group" error?
|
---|
[244] | 4257 | # should be impossible to create an inconsistent DB just with API calls.
|
---|
[157] | 4258 | warn $dbh->errstr." $sql, $id" if $dbh->errstr;
|
---|
[117] | 4259 | }
|
---|
| 4260 | # group 1 is its own parent. need this here more to break strange loops than for detecting a parent
|
---|
| 4261 | last if $result->{$par_col{$type}} == 1;
|
---|
[152] | 4262 | $id = $result->{$par_col{$type}};
|
---|
[117] | 4263 | $type = $par_type{$type};
|
---|
| 4264 | }
|
---|
| 4265 |
|
---|
| 4266 | return $foundparent;
|
---|
| 4267 | } # end isParent()
|
---|
| 4268 |
|
---|
| 4269 |
|
---|
[275] | 4270 | ## DNSDB::zoneStatus()
|
---|
| 4271 | # Returns and optionally sets a zone's status
|
---|
| 4272 | # Takes a database handle, domain/revzone ID, forward/reverse flag, and optionally a status argument
|
---|
| 4273 | # Returns status, or undef on errors.
|
---|
| 4274 | sub zoneStatus {
|
---|
[477] | 4275 | my $self = shift;
|
---|
| 4276 | my $dbh = $self->{dbh};
|
---|
[3] | 4277 | my $id = shift;
|
---|
[275] | 4278 | my $revrec = shift;
|
---|
| 4279 | my $newstatus = shift || 'mu';
|
---|
[3] | 4280 |
|
---|
| 4281 | return undef if $id !~ /^\d+$/;
|
---|
| 4282 |
|
---|
[283] | 4283 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 4284 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 4285 | local $dbh->{AutoCommit} = 0;
|
---|
| 4286 | local $dbh->{RaiseError} = 1;
|
---|
| 4287 |
|
---|
[275] | 4288 | if ($newstatus ne 'mu') {
|
---|
[283] | 4289 | # ooo, fun! let's see what we were passed for status
|
---|
| 4290 | eval {
|
---|
| 4291 | $newstatus = 0 if $newstatus eq 'domoff';
|
---|
| 4292 | $newstatus = 1 if $newstatus eq 'domon';
|
---|
| 4293 | $dbh->do("UPDATE ".($revrec eq 'n' ? 'domains' : 'revzones')." SET status=? WHERE ".
|
---|
[275] | 4294 | ($revrec eq 'n' ? 'domain_id' : 'rdns_id')."=?", undef, ($newstatus,$id) );
|
---|
[283] | 4295 |
|
---|
| 4296 | ##fixme switch to more consise "Enabled <domain"/"Disabled <domain>" as with users?
|
---|
[473] | 4297 | $resultstr = "Changed ".($revrec eq 'n' ? $self->domainName($id) : $self->revName($id)).
|
---|
[283] | 4298 | " state to ".($newstatus ? 'active' : 'inactive');
|
---|
| 4299 |
|
---|
| 4300 | my %loghash;
|
---|
| 4301 | $loghash{domain_id} = $id if $revrec eq 'n';
|
---|
| 4302 | $loghash{rdns_id} = $id if $revrec eq 'y';
|
---|
[473] | 4303 | $loghash{group_id} = $self->parentID(id => $id, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec);
|
---|
[283] | 4304 | $loghash{entry} = $resultstr;
|
---|
[487] | 4305 | $self->_log(%loghash);
|
---|
[283] | 4306 |
|
---|
| 4307 | $dbh->commit;
|
---|
| 4308 | };
|
---|
| 4309 | if ($@) {
|
---|
| 4310 | my $msg = $@;
|
---|
| 4311 | eval { $dbh->rollback; };
|
---|
| 4312 | $resultstr = '';
|
---|
| 4313 | $errstr = $msg;
|
---|
| 4314 | return;
|
---|
| 4315 | }
|
---|
[3] | 4316 | }
|
---|
| 4317 |
|
---|
[275] | 4318 | my ($status) = $dbh->selectrow_array("SELECT status FROM ".
|
---|
| 4319 | ($revrec eq 'n' ? "domains WHERE domain_id=?" : "revzones WHERE rdns_id=?"),
|
---|
| 4320 | undef, ($id) );
|
---|
[3] | 4321 | return $status;
|
---|
[275] | 4322 | } # end zoneStatus()
|
---|
[3] | 4323 |
|
---|
| 4324 |
|
---|
[452] | 4325 | ## DNSDB::getZonesByCIDR()
|
---|
| 4326 | # Get a list of zone names and IDs that records for a passed CIDR block are within.
|
---|
| 4327 | sub getZonesByCIDR {
|
---|
[477] | 4328 | my $self = shift;
|
---|
| 4329 | my $dbh = $self->{dbh};
|
---|
[452] | 4330 | my %args = @_;
|
---|
| 4331 |
|
---|
| 4332 | my $result = $dbh->selectall_arrayref("SELECT rdns_id,revnet FROM revzones WHERE revnet >>= ? OR revnet <<= ?",
|
---|
| 4333 | { Slice => {} }, ($args{cidr}, $args{cidr}) );
|
---|
| 4334 | return $result;
|
---|
| 4335 | } # end getZonesByCIDR()
|
---|
| 4336 |
|
---|
| 4337 |
|
---|
[33] | 4338 | ## DNSDB::importAXFR
|
---|
| 4339 | # Import a domain via AXFR
|
---|
[37] | 4340 | # Takes AXFR host, domain to transfer, group to put the domain in,
|
---|
[484] | 4341 | # and an optional hash containing:
|
---|
| 4342 | # status - active/inactive state flag (defaults to active)
|
---|
| 4343 | # rwsoa - overwrite-SOA flag (defaults to off)
|
---|
| 4344 | # rwns - overwrite-NS flag (defaults to off, doesn't affect subdomain NS records)
|
---|
| 4345 | # merge - flag to automerge A or AAAA records with matching PTR records
|
---|
[37] | 4346 | # Returns a status code (OK, WARN, or FAIL) and message - message should be blank
|
---|
| 4347 | # if status is OK, but WARN includes conditions that are not fatal but should
|
---|
| 4348 | # really be reported.
|
---|
[33] | 4349 | sub importAXFR {
|
---|
[484] | 4350 | my $self = shift;
|
---|
| 4351 | my $dbh = $self->{dbh};
|
---|
[35] | 4352 | my $ifrom_in = shift;
|
---|
[301] | 4353 | my $zone = shift;
|
---|
[33] | 4354 | my $group = shift;
|
---|
[484] | 4355 |
|
---|
| 4356 | my %args = @_;
|
---|
| 4357 |
|
---|
[33] | 4358 | ##fixme: add mode to delete&replace, merge+overwrite, merge new?
|
---|
| 4359 |
|
---|
[484] | 4360 | $args{status} = (defined($args{status}) ? $args{status} : 0);
|
---|
| 4361 | $args{status} = 1 if $args{status} eq 'on';
|
---|
| 4362 |
|
---|
[37] | 4363 | my $nrecs = 0;
|
---|
| 4364 | my $soaflag = 0;
|
---|
| 4365 | my $nsflag = 0;
|
---|
| 4366 | my $warnmsg = '';
|
---|
| 4367 | my $ifrom;
|
---|
[33] | 4368 |
|
---|
[301] | 4369 | my $rev = 'n';
|
---|
[302] | 4370 | my $code = 'OK';
|
---|
| 4371 | my $msg = 'foobar?';
|
---|
[301] | 4372 |
|
---|
[35] | 4373 | # choke on possible bad setting in ifrom
|
---|
[37] | 4374 | # IPv4 and v6, and valid hostnames!
|
---|
[35] | 4375 | ($ifrom) = ($ifrom_in =~ /^([0-9a-f\:.]+|[0-9a-z_.-]+)$/i);
|
---|
| 4376 | return ('FAIL', "Bad AXFR source host $ifrom")
|
---|
| 4377 | unless ($ifrom) = ($ifrom_in =~ /^([0-9a-f\:.]+|[0-9a-z_.-]+)$/i);
|
---|
| 4378 |
|
---|
[301] | 4379 | my $errmsg;
|
---|
| 4380 |
|
---|
| 4381 | my $zone_id;
|
---|
| 4382 | my $domain_id = 0;
|
---|
| 4383 | my $rdns_id = 0;
|
---|
| 4384 | my $cidr;
|
---|
| 4385 |
|
---|
| 4386 | # magic happens! detect if we're importing a domain or a reverse zone
|
---|
| 4387 | # while we're at it, figure out what the CIDR netblock is (if we got a .arpa)
|
---|
| 4388 | # or what the formal .arpa zone is (if we got a CIDR netblock)
|
---|
| 4389 | # Handles sub-octet v4 zones in the format specified in the Cricket Book, 2nd Ed, p217-218
|
---|
| 4390 |
|
---|
| 4391 | if ($zone =~ m{(?:\.arpa\.?|/\d+)$}) {
|
---|
| 4392 | # we seem to have a reverse zone
|
---|
| 4393 | $rev = 'y';
|
---|
| 4394 |
|
---|
| 4395 | if ($zone =~ /\.arpa\.?$/) {
|
---|
| 4396 | # we have a formal reverse zone. call _zone2cidr and get the CIDR block.
|
---|
| 4397 | ($code,$msg) = _zone2cidr($zone);
|
---|
| 4398 | return ($code, $msg) if $code eq 'FAIL';
|
---|
| 4399 | $cidr = $msg;
|
---|
| 4400 | } elsif ($zone =~ m|^[\d.]+/\d+$|) {
|
---|
| 4401 | # v4 revzone, CIDR netblock
|
---|
| 4402 | $cidr = NetAddr::IP->new($zone) or return ('FAIL',"$zone is not a valid CIDR block");
|
---|
| 4403 | $zone = _ZONE($cidr, 'ZONE.in-addr.arpa', 'r', '.');
|
---|
| 4404 | } elsif ($zone =~ m|^[a-fA-F\d:]+/\d+$|) {
|
---|
| 4405 | # v6 revzone, CIDR netblock
|
---|
| 4406 | $cidr = NetAddr::IP->new($zone) or return ('FAIL',"$zone is not a valid CIDR block");
|
---|
| 4407 | return ('FAIL', "$zone is not a nibble-aligned block") if $cidr->masklen % 4 != 0;
|
---|
| 4408 | $zone = _ZONE($cidr, 'ZONE.ip6.arpa', 'r', '.');
|
---|
| 4409 | } else {
|
---|
| 4410 | # there is. no. else!
|
---|
| 4411 | return ('FAIL', "Unknown zone name format");
|
---|
| 4412 | }
|
---|
| 4413 |
|
---|
| 4414 | # quick check to start to see if we've already got one
|
---|
| 4415 |
|
---|
| 4416 | ($zone_id) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet=?",
|
---|
| 4417 | undef, ("$cidr"));
|
---|
| 4418 | $rdns_id = $zone_id;
|
---|
| 4419 | } else {
|
---|
| 4420 | # default to domain
|
---|
[349] | 4421 | ($zone_id) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)",
|
---|
[301] | 4422 | undef, ($zone));
|
---|
| 4423 | $domain_id = $zone_id;
|
---|
| 4424 | }
|
---|
| 4425 |
|
---|
| 4426 | return ('FAIL', ($rev eq 'n' ? 'Domain' : 'Reverse zone')." already exists") if $zone_id;
|
---|
| 4427 |
|
---|
[303] | 4428 | # little local utility sub to swap $val and $host for revzone records.
|
---|
| 4429 | sub _revswap {
|
---|
| 4430 | my $rechost = shift;
|
---|
| 4431 | my $recdata = shift;
|
---|
| 4432 |
|
---|
| 4433 | if ($rechost =~ /\.in-addr\.arpa\.?$/) {
|
---|
| 4434 | $rechost =~ s/\.in-addr\.arpa\.?$//;
|
---|
| 4435 | $rechost = join '.', reverse split /\./, $rechost;
|
---|
| 4436 | } else {
|
---|
| 4437 | $rechost =~ s/\.ip6\.arpa\.?$//;
|
---|
| 4438 | my @nibs = reverse split /\./, $rechost;
|
---|
| 4439 | $rechost = '';
|
---|
| 4440 | my $nc;
|
---|
| 4441 | foreach (@nibs) {
|
---|
| 4442 | $rechost.= $_;
|
---|
| 4443 | $rechost .= ":" if ++$nc % 4 == 0 && $nc < 32;
|
---|
| 4444 | }
|
---|
[307] | 4445 | $rechost .= ":" if $nc < 32 && $rechost !~ /\*$/; # close netblock records?
|
---|
| 4446 | ##fixme: there's a case that ends up with a partial entry here:
|
---|
| 4447 | # ip:add:re:ss::
|
---|
| 4448 | # can't reproduce after letting it sit overnight after discovery. :(
|
---|
| 4449 | #print "$rechost\n";
|
---|
[303] | 4450 | # canonicalize with NetAddr::IP
|
---|
| 4451 | $rechost = NetAddr::IP->new($rechost)->addr unless $rechost =~ /\*$/;
|
---|
| 4452 | }
|
---|
| 4453 | return ($recdata,$rechost)
|
---|
| 4454 | }
|
---|
| 4455 |
|
---|
| 4456 |
|
---|
[33] | 4457 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 4458 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 4459 | local $dbh->{AutoCommit} = 0;
|
---|
| 4460 | local $dbh->{RaiseError} = 1;
|
---|
| 4461 |
|
---|
[301] | 4462 | my $sth;
|
---|
| 4463 | eval {
|
---|
[34] | 4464 |
|
---|
[301] | 4465 | if ($rev eq 'n') {
|
---|
[33] | 4466 | ##fixme: serial
|
---|
[484] | 4467 | $dbh->do("INSERT INTO domains (domain,group_id,status) VALUES (?,?,?)", undef,
|
---|
| 4468 | ($zone, $group, $args{status}) );
|
---|
[301] | 4469 | # get domain id so we can do the records
|
---|
| 4470 | ($zone_id) = $dbh->selectrow_array("SELECT currval('domains_domain_id_seq')");
|
---|
| 4471 | $domain_id = $zone_id;
|
---|
[487] | 4472 | $self->_log(group_id => $group, domain_id => $domain_id,
|
---|
| 4473 | entry => "[Added ".($args{status} ? 'active' : 'inactive')." domain $zone via AXFR]");
|
---|
[301] | 4474 | } else {
|
---|
| 4475 | ##fixme: serial
|
---|
[484] | 4476 | $dbh->do("INSERT INTO revzones (revnet,group_id,status) VALUES (?,?,?)", undef,
|
---|
| 4477 | ($cidr,$group,$args{status}) );
|
---|
[301] | 4478 | # get revzone id so we can do the records
|
---|
| 4479 | ($zone_id) = $dbh->selectrow_array("SELECT currval('revzones_rdns_id_seq')");
|
---|
| 4480 | $rdns_id = $zone_id;
|
---|
[487] | 4481 | $self->_log(group_id => $group, rdns_id => $rdns_id,
|
---|
| 4482 | entry => "[Added ".($args{status} ? 'active' : 'inactive')." reverse zone $cidr via AXFR]");
|
---|
[301] | 4483 | }
|
---|
[33] | 4484 |
|
---|
[35] | 4485 | ## bizarre DBI<->Net::DNS interaction bug:
|
---|
| 4486 | ## sometimes a zone will cause an immediate commit-and-exit (sort of) of the while()
|
---|
[37] | 4487 | ## fixed, apparently I was doing *something* odd, but not certain what it was that
|
---|
| 4488 | ## caused a commit instead of barfing
|
---|
[35] | 4489 |
|
---|
[34] | 4490 | my $res = Net::DNS::Resolver->new;
|
---|
[35] | 4491 | $res->nameservers($ifrom);
|
---|
[301] | 4492 | $res->axfr_start($zone)
|
---|
[35] | 4493 | or die "Couldn't begin AXFR\n";
|
---|
[34] | 4494 |
|
---|
[301] | 4495 | $sth = $dbh->prepare("INSERT INTO records (domain_id,rdns_id,host,type,val,distance,weight,port,ttl)".
|
---|
| 4496 | " VALUES (?,?,?,?,?,?,?,?,?)");
|
---|
| 4497 |
|
---|
[307] | 4498 | # Stash info about sub-octet v4 revzones here so we don't have
|
---|
| 4499 | # to store the CNAMEs used to delegate a suboctet zone
|
---|
| 4500 | # $suboct{zone}{ns}[] -> array of nameservers
|
---|
| 4501 | # $suboct{zone}{cname}[] -> array of extant CNAMEs (Just In Case someone did something bizarre)
|
---|
| 4502 | ## commented pending actual use of this data. for now, we'll just
|
---|
| 4503 | ## auto-(re)create the CNAMEs in revzones on export
|
---|
| 4504 | # my %suboct;
|
---|
| 4505 |
|
---|
[35] | 4506 | while (my $rr = $res->axfr_next()) {
|
---|
[301] | 4507 |
|
---|
| 4508 | my $val;
|
---|
| 4509 | my $distance = 0;
|
---|
| 4510 | my $weight = 0;
|
---|
| 4511 | my $port = 0;
|
---|
[303] | 4512 | my $logfrag = '';
|
---|
[301] | 4513 |
|
---|
[33] | 4514 | my $type = $rr->type;
|
---|
[301] | 4515 | my $host = $rr->name;
|
---|
[484] | 4516 | my $ttl = ($args{newttl} ? $args{newttl} : $rr->ttl); # allow force-override TTLs
|
---|
[35] | 4517 |
|
---|
[37] | 4518 | $soaflag = 1 if $type eq 'SOA';
|
---|
| 4519 | $nsflag = 1 if $type eq 'NS';
|
---|
[35] | 4520 |
|
---|
[34] | 4521 | # "Primary" types:
|
---|
| 4522 | # A, NS, CNAME, SOA, PTR(warn in forward), MX, TXT, AAAA, SRV, A6(ob), SPF
|
---|
| 4523 | # maybe KEY
|
---|
| 4524 |
|
---|
[302] | 4525 | # BIND supports:
|
---|
| 4526 | # [standard]
|
---|
| 4527 | # A AAAA CNAME MX NS PTR SOA TXT
|
---|
| 4528 | # [variously experimental, obsolete, or obscure]
|
---|
| 4529 | # HINFO MB(ex) MD(ob) MF(ob) MG(ex) MINFO(ex) MR(ex) NULL WKS AFSDB(ex) ISDN(ex) RP(ex) RT(ex) X25(ex) PX
|
---|
| 4530 | # ... if one can ever find the right magic to format them correctly
|
---|
| 4531 |
|
---|
| 4532 | # Net::DNS supports:
|
---|
| 4533 | # RRSIG SIG NSAP NS NIMLOC NAPTR MX MR MINFO MG MB LOC ISDN IPSECKEY HINFO
|
---|
| 4534 | # EID DNAME CNAME CERT APL AFSDB AAAA A DS NXT NSEC3PARAM NSEC3 NSEC KEY
|
---|
| 4535 | # DNSKEY DLV X25 TXT TSIG TKEY SSHFP SRV SPF SOA RT RP PX PTR NULL APL::AplItem
|
---|
| 4536 |
|
---|
[35] | 4537 | # nasty big ugly case-like thing here, since we have to do *some* different
|
---|
| 4538 | # processing depending on the record. le sigh.
|
---|
| 4539 |
|
---|
[105] | 4540 | ##fixme: what record types other than TXT can/will have >255-byte payloads?
|
---|
| 4541 |
|
---|
[34] | 4542 | if ($type eq 'A') {
|
---|
[301] | 4543 | $val = $rr->address;
|
---|
[34] | 4544 | } elsif ($type eq 'NS') {
|
---|
[37] | 4545 | # hmm. should we warn here if subdomain NS'es are left alone?
|
---|
[484] | 4546 | next if ($args{rwns} && ($rr->name eq $zone));
|
---|
[302] | 4547 | if ($rev eq 'y') {
|
---|
| 4548 | # revzones have records more or less reversed from forward zones.
|
---|
| 4549 | my ($tmpcode,$tmpmsg) = _zone2cidr($host);
|
---|
[401] | 4550 | die "Error converting NS record: $tmpmsg\n" if $tmpcode eq 'FAIL'; # hmm. may not make sense...
|
---|
[302] | 4551 | $val = "$tmpmsg";
|
---|
| 4552 | $host = $rr->nsdname;
|
---|
[303] | 4553 | $logfrag = "Added record '$val $type $host', TTL $ttl";
|
---|
[307] | 4554 | # Tag and preserve. For now this is commented for a no-op, but we have Ideas for
|
---|
| 4555 | # another custom storage type ("DELEGATE") that will use these subzone-delegation records
|
---|
| 4556 | #if ($val ne "$cidr") {
|
---|
| 4557 | # push @{$suboct{$val}{ns}}, $host;
|
---|
| 4558 | #}
|
---|
[302] | 4559 | } else {
|
---|
| 4560 | $val = $rr->nsdname;
|
---|
| 4561 | }
|
---|
[35] | 4562 | $nsflag = 1;
|
---|
[34] | 4563 | } elsif ($type eq 'CNAME') {
|
---|
[302] | 4564 | if ($rev eq 'y') {
|
---|
[303] | 4565 | # hmm. do we even want to bother with storing these at this level? Sub-octet delegation
|
---|
| 4566 | # by CNAME is essentially a record-publication hack, and we want to just represent the
|
---|
| 4567 | # "true" logical intentions as far down the stack as we can from the UI.
|
---|
| 4568 | ($host,$val) = _revswap($host,$rr->cname);
|
---|
| 4569 | $logfrag = "Added record '$val $type $host', TTL $ttl";
|
---|
[307] | 4570 | # Tag and preserve in case we want to commit them as-is later, but mostly we don't care.
|
---|
| 4571 | # Commented pending actually doing something with possibly new type DELEGATE
|
---|
| 4572 | #my $tmprev = $host;
|
---|
| 4573 | #$tmprev =~ s/^\d+\.//;
|
---|
| 4574 | #($code,$tmprev) = _zone2cidr($tmprev);
|
---|
| 4575 | #push @{$suboct{"$tmprev"}{cname}}, $val;
|
---|
| 4576 | # Silently skip CNAMEs in revzones.
|
---|
| 4577 | next;
|
---|
[302] | 4578 | } else {
|
---|
| 4579 | $val = $rr->cname;
|
---|
| 4580 | }
|
---|
[34] | 4581 | } elsif ($type eq 'SOA') {
|
---|
[484] | 4582 | next if $args{rwsoa};
|
---|
[307] | 4583 | $host = $rr->rname.":".$rr->mname;
|
---|
[301] | 4584 | $val = $rr->refresh.":".$rr->retry.":".$rr->expire.":".$rr->minimum;
|
---|
[35] | 4585 | $soaflag = 1;
|
---|
[34] | 4586 | } elsif ($type eq 'PTR') {
|
---|
[303] | 4587 | ($host,$val) = _revswap($host,$rr->ptrdname);
|
---|
| 4588 | $logfrag = "Added record '$val $type $host', TTL $ttl";
|
---|
[34] | 4589 | # hmm. PTR records should not be in forward zones.
|
---|
| 4590 | } elsif ($type eq 'MX') {
|
---|
[301] | 4591 | $val = $rr->exchange;
|
---|
| 4592 | $distance = $rr->preference;
|
---|
[34] | 4593 | } elsif ($type eq 'TXT') {
|
---|
| 4594 | ##fixme: Net::DNS docs say this should be deprecated for rdatastr() or char_str_list(),
|
---|
| 4595 | ## but don't really seem enthusiastic about it.
|
---|
[303] | 4596 | #print "should use rdatastr:\n\t".$rr->rdatastr."\n or char_str_list:\n\t".join(' ',$rr->char_str_list())."\n";
|
---|
| 4597 | # rdatastr returns a BIND-targetted logical string, including opening and closing quotes
|
---|
| 4598 | # char_str_list returns a list of the individual string fragments in the record
|
---|
[307] | 4599 | # txtdata returns the more useful all-in-one form (since we want to push such protocol
|
---|
| 4600 | # details as far down the stack as we can)
|
---|
[303] | 4601 | # NB: this may turn out to be more troublesome if we ever have need of >512-byte TXT records.
|
---|
| 4602 | if ($rev eq 'y') {
|
---|
| 4603 | ($host,$val) = _revswap($host,$rr->txtdata);
|
---|
| 4604 | $logfrag = "Added record '$val $type $host', TTL $ttl";
|
---|
| 4605 | } else {
|
---|
| 4606 | $val = $rr->txtdata;
|
---|
| 4607 | }
|
---|
[34] | 4608 | } elsif ($type eq 'SPF') {
|
---|
| 4609 | ##fixme: and the same caveat here, since it is apparently a clone of ::TXT
|
---|
[301] | 4610 | $val = $rr->txtdata;
|
---|
[34] | 4611 | } elsif ($type eq 'AAAA') {
|
---|
[301] | 4612 | $val = $rr->address;
|
---|
[34] | 4613 | } elsif ($type eq 'SRV') {
|
---|
[301] | 4614 | $val = $rr->target;
|
---|
| 4615 | $distance = $rr->priority;
|
---|
| 4616 | $weight = $rr->weight;
|
---|
| 4617 | $port = $rr->port;
|
---|
[34] | 4618 | } elsif ($type eq 'KEY') {
|
---|
[35] | 4619 | # we don't actually know what to do with these...
|
---|
[301] | 4620 | $val = $rr->flags.":".$rr->protocol.":".$rr->algorithm.":".$rr->key.":".$rr->keytag.":".$rr->privatekeyname;
|
---|
[35] | 4621 | } else {
|
---|
[301] | 4622 | $val = $rr->rdatastr;
|
---|
[35] | 4623 | # Finding a different record type is not fatal.... just problematic.
|
---|
[37] | 4624 | # We may not be able to export it correctly.
|
---|
[35] | 4625 | $warnmsg .= "Unusual record ".$rr->name." ($type) found\n";
|
---|
[33] | 4626 | }
|
---|
| 4627 |
|
---|
[303] | 4628 | my $logentry = "[AXFR ".($rev eq 'n' ? $zone : $cidr)."] ";
|
---|
[34] | 4629 |
|
---|
[484] | 4630 | if ($args{merge}) {
|
---|
[307] | 4631 | if ($rev eq 'n') {
|
---|
| 4632 | # importing a domain; we have A and AAAA records that could be merged with matching PTR records
|
---|
| 4633 | my $etype;
|
---|
| 4634 | my ($erdns,$erid,$ettl) = $dbh->selectrow_array("SELECT rdns_id,record_id,ttl FROM records ".
|
---|
| 4635 | "WHERE host=? AND val=? AND type=12",
|
---|
| 4636 | undef, ($host, $val) );
|
---|
| 4637 | if ($erid) {
|
---|
| 4638 | if ($type eq 'A') { # PTR -> A+PTR
|
---|
| 4639 | $etype = 65280;
|
---|
| 4640 | $logentry .= "Merged A record with existing PTR record '$host A+PTR $val', TTL $ettl";
|
---|
| 4641 | }
|
---|
| 4642 | if ($type eq 'AAAA') { # PTR -> AAAA+PTR
|
---|
| 4643 | $etype = 65281;
|
---|
| 4644 | $logentry .= "Merged AAAA record with existing PTR record '$host AAAA+PTR $val', TTL $ettl";
|
---|
| 4645 | }
|
---|
| 4646 | $ettl = ($ettl < $ttl ? $ettl : $ttl); # use lower TTL
|
---|
| 4647 | $dbh->do("UPDATE records SET domain_id=?,ttl=?,type=? WHERE record_id=?", undef,
|
---|
| 4648 | ($domain_id, $ettl, $etype, $erid));
|
---|
| 4649 | $nrecs++;
|
---|
[487] | 4650 | $self->_log(group_id => $group, domain_id => $domain_id, rdns_id => $erdns, entry => $logentry);
|
---|
[307] | 4651 | next; # while axfr_next
|
---|
| 4652 | }
|
---|
| 4653 | } # $rev eq 'n'
|
---|
| 4654 | else {
|
---|
| 4655 | # importing a revzone, we have PTR records that could be merged with matching A/AAAA records
|
---|
| 4656 | my ($domid,$erid,$ettl,$etype) = $dbh->selectrow_array("SELECT domain_id,record_id,ttl,type FROM records ".
|
---|
| 4657 | "WHERE host=? AND val=? AND (type=1 OR type=28)",
|
---|
| 4658 | undef, ($host, $val) );
|
---|
| 4659 | if ($erid) {
|
---|
| 4660 | if ($etype == 1) { # A -> A+PTR
|
---|
| 4661 | $etype = 65280;
|
---|
| 4662 | $logentry .= "Merged PTR record with existing matching A record '$host A+PTR $val', TTL $ettl";
|
---|
| 4663 | }
|
---|
| 4664 | if ($etype == 28) { # AAAA -> AAAA+PTR
|
---|
| 4665 | $etype = 65281;
|
---|
| 4666 | $logentry .= "Merged PTR record with existing matching AAAA record '$host AAAA+PTR $val', TTL $ettl";
|
---|
| 4667 | }
|
---|
| 4668 | $ettl = ($ettl < $ttl ? $ettl : $ttl); # use lower TTL
|
---|
| 4669 | $dbh->do("UPDATE records SET rdns_id=?,ttl=?,type=? WHERE record_id=?", undef,
|
---|
| 4670 | ($rdns_id, $ettl, $etype, $erid));
|
---|
| 4671 | $nrecs++;
|
---|
[487] | 4672 | $self->_log(group_id => $group, domain_id => $domid, rdns_id => $rdns_id, entry => $logentry);
|
---|
[307] | 4673 | next; # while axfr_next
|
---|
| 4674 | }
|
---|
| 4675 | } # $rev eq 'y'
|
---|
[484] | 4676 | } # if $args{merge}
|
---|
[34] | 4677 |
|
---|
[302] | 4678 | # Insert the new record
|
---|
[301] | 4679 | $sth->execute($domain_id, $rdns_id, $host, $reverse_typemap{$type}, $val,
|
---|
| 4680 | $distance, $weight, $port, $ttl);
|
---|
| 4681 |
|
---|
[37] | 4682 | $nrecs++;
|
---|
[34] | 4683 |
|
---|
[301] | 4684 | if ($type eq 'SOA') {
|
---|
[484] | 4685 | # also !$args{rwsoa}, but if that's set, it should be impossible to get here.
|
---|
[301] | 4686 | my @tmp1 = split /:/, $host;
|
---|
| 4687 | my @tmp2 = split /:/, $val;
|
---|
| 4688 | $logentry .= "Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
|
---|
| 4689 | "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl";
|
---|
[303] | 4690 | } elsif ($logfrag) {
|
---|
| 4691 | # special case for log entries we need to meddle with a little.
|
---|
| 4692 | $logentry .= $logfrag;
|
---|
[301] | 4693 | } else {
|
---|
| 4694 | $logentry .= "Added record '$host $type";
|
---|
| 4695 | $logentry .= " [distance $distance]" if $type eq 'MX';
|
---|
| 4696 | $logentry .= " [priority $distance] [weight $weight] [port $port]" if $type eq 'SRV';
|
---|
| 4697 | $logentry .= " $val', TTL $ttl";
|
---|
| 4698 | }
|
---|
[487] | 4699 | $self->_log(group_id => $group, domain_id => $domain_id, rdns_id => $rdns_id, entry => $logentry);
|
---|
[301] | 4700 |
|
---|
[37] | 4701 | } # while axfr_next
|
---|
| 4702 |
|
---|
[307] | 4703 | # Detect and handle delegated subzones
|
---|
| 4704 | # Placeholder for when we decide what to actually do with this, see previous comments in NS and CNAME handling.
|
---|
| 4705 | #foreach (keys %suboct) {
|
---|
| 4706 | # print "found ".($suboct{$_}{ns} ? @{$suboct{$_}{ns}} : '0')." NS records and ".
|
---|
| 4707 | # ($suboct{$_}{cname} ? @{$suboct{$_}{cname}} : '0')." CNAMEs for $_\n";
|
---|
| 4708 | #}
|
---|
| 4709 |
|
---|
[37] | 4710 | # Overwrite SOA record
|
---|
[484] | 4711 | if ($args{rwsoa}) {
|
---|
[37] | 4712 | $soaflag = 1;
|
---|
| 4713 | my $sthgetsoa = $dbh->prepare("SELECT host,val,ttl FROM default_records WHERE group_id=? AND type=?");
|
---|
| 4714 | my $sthputsoa = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,ttl) VALUES (?,?,?,?,?)");
|
---|
| 4715 | $sthgetsoa->execute($group,$reverse_typemap{SOA});
|
---|
| 4716 | while (my ($host,$val,$ttl) = $sthgetsoa->fetchrow_array()) {
|
---|
[301] | 4717 | $host =~ s/DOMAIN/$zone/g;
|
---|
| 4718 | $val =~ s/DOMAIN/$zone/g;
|
---|
| 4719 | $sthputsoa->execute($zone_id,$host,$reverse_typemap{SOA},$val,$ttl);
|
---|
[34] | 4720 | }
|
---|
[37] | 4721 | }
|
---|
[34] | 4722 |
|
---|
[37] | 4723 | # Overwrite NS records
|
---|
[484] | 4724 | if ($args{rwns}) {
|
---|
[37] | 4725 | $nsflag = 1;
|
---|
| 4726 | my $sthgetns = $dbh->prepare("SELECT host,val,ttl FROM default_records WHERE group_id=? AND type=?");
|
---|
| 4727 | my $sthputns = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,ttl) VALUES (?,?,?,?,?)");
|
---|
| 4728 | $sthgetns->execute($group,$reverse_typemap{NS});
|
---|
| 4729 | while (my ($host,$val,$ttl) = $sthgetns->fetchrow_array()) {
|
---|
[301] | 4730 | $host =~ s/DOMAIN/$zone/g;
|
---|
| 4731 | $val =~ s/DOMAIN/$zone/g;
|
---|
| 4732 | $sthputns->execute($zone_id,$host,$reverse_typemap{NS},$val,$ttl);
|
---|
[37] | 4733 | }
|
---|
| 4734 | }
|
---|
[34] | 4735 |
|
---|
[35] | 4736 | die "No records found; either $ifrom is not authoritative or doesn't allow transfers\n" if !$nrecs;
|
---|
| 4737 | die "Bad zone: No SOA record!\n" if !$soaflag;
|
---|
| 4738 | die "Bad zone: No NS records!\n" if !$nsflag;
|
---|
| 4739 |
|
---|
[37] | 4740 | $dbh->commit;
|
---|
[35] | 4741 |
|
---|
[33] | 4742 | };
|
---|
| 4743 |
|
---|
| 4744 | if ($@) {
|
---|
| 4745 | my $msg = $@;
|
---|
| 4746 | eval { $dbh->rollback; };
|
---|
[34] | 4747 | return ('FAIL',$msg." $warnmsg");
|
---|
[33] | 4748 | } else {
|
---|
[35] | 4749 | return ('WARN', $warnmsg) if $warnmsg;
|
---|
[91] | 4750 | return ('OK',"Imported OK");
|
---|
[33] | 4751 | }
|
---|
| 4752 |
|
---|
[37] | 4753 | # it should be impossible to get here.
|
---|
[34] | 4754 | return ('WARN',"OOOK!");
|
---|
[33] | 4755 | } # end importAXFR()
|
---|
| 4756 |
|
---|
| 4757 |
|
---|
[302] | 4758 | ## DNSDB::importBIND()
|
---|
| 4759 | sub importBIND {
|
---|
| 4760 | } # end importBIND()
|
---|
| 4761 |
|
---|
| 4762 |
|
---|
| 4763 | ## DNSDB::import_tinydns()
|
---|
| 4764 | sub import_tinydns {
|
---|
| 4765 | } # end import_tinydns()
|
---|
| 4766 |
|
---|
| 4767 |
|
---|
[103] | 4768 | ## DNSDB::export()
|
---|
| 4769 | # Export the DNS database, or a part of it
|
---|
[485] | 4770 | # Takes a string indicating the export type, plus optional arguments depending on type
|
---|
[103] | 4771 | # Writes zone data to targets as appropriate for type
|
---|
| 4772 | sub export {
|
---|
[485] | 4773 | my $self = shift;
|
---|
[103] | 4774 | my $target = shift;
|
---|
| 4775 |
|
---|
| 4776 | if ($target eq 'tiny') {
|
---|
[485] | 4777 | $self->__export_tiny(@_);
|
---|
[103] | 4778 | }
|
---|
| 4779 | # elsif ($target eq 'foo') {
|
---|
[485] | 4780 | # __export_foo(@_);
|
---|
[103] | 4781 | #}
|
---|
| 4782 | # etc
|
---|
| 4783 |
|
---|
| 4784 | } # end export()
|
---|
| 4785 |
|
---|
| 4786 |
|
---|
| 4787 | ## DNSDB::__export_tiny
|
---|
| 4788 | # Internal sub to implement tinyDNS (compatible) export
|
---|
[485] | 4789 | # Takes filehandle to write export to, optional argument(s)
|
---|
[103] | 4790 | # to determine which data gets exported
|
---|
| 4791 | sub __export_tiny {
|
---|
[485] | 4792 | my $self = shift;
|
---|
| 4793 | my $dbh = $self->{dbh};
|
---|
[103] | 4794 | my $datafile = shift;
|
---|
| 4795 |
|
---|
| 4796 | ##fixme: slurp up further options to specify particular zone(s) to export
|
---|
| 4797 |
|
---|
| 4798 | ##fixme: fail if $datafile isn't an open, writable file
|
---|
| 4799 |
|
---|
| 4800 | # easy case - export all evarything
|
---|
| 4801 | # not-so-easy case - export item(s) specified
|
---|
| 4802 | # todo: figure out what kind of list we use to export items
|
---|
| 4803 |
|
---|
[329] | 4804 | # raw packet in unknown format: first byte indicates length
|
---|
| 4805 | # of remaining data, allows up to 255 raw bytes
|
---|
| 4806 |
|
---|
[372] | 4807 | # Locations/views - worth including in the caching setup?
|
---|
| 4808 | my $lochash = $dbh->selectall_hashref("SELECT location,iplist FROM locations", 'location');
|
---|
| 4809 | foreach my $location (keys %$lochash) {
|
---|
[375] | 4810 | foreach my $ipprefix (split /[,\s]+/, $lochash->{$location}{iplist}) {
|
---|
| 4811 | $ipprefix =~ s/\s+//g;
|
---|
[449] | 4812 | $ipprefix = new NetAddr::IP $ipprefix;
|
---|
| 4813 | ##fixme: how to handle IPv6?
|
---|
| 4814 | next if $ipprefix->{isv6};
|
---|
| 4815 | # have to account for /nn CIDR entries. tinydns only speaks octet-sliced prefix.
|
---|
| 4816 | if ($ipprefix->masklen <= 8) {
|
---|
| 4817 | foreach ($ipprefix->split(8)) {
|
---|
| 4818 | my $tmp = $_->addr;
|
---|
| 4819 | $tmp =~ s/\.\d+\.\d+\.\d+$//;
|
---|
| 4820 | print $datafile "%$location:$tmp\n";
|
---|
| 4821 | }
|
---|
| 4822 | } elsif ($ipprefix->masklen <= 16) {
|
---|
| 4823 | foreach ($ipprefix->split(16)) {
|
---|
| 4824 | my $tmp = $_->addr;
|
---|
| 4825 | $tmp =~ s/\.\d+\.\d+$//;
|
---|
| 4826 | print $datafile "%$location:$tmp\n";
|
---|
| 4827 | }
|
---|
| 4828 | } elsif ($ipprefix->masklen <= 24) {
|
---|
| 4829 | foreach ($ipprefix->split(24)) {
|
---|
| 4830 | my $tmp = $_->addr;
|
---|
| 4831 | $tmp =~ s/\.\d+$//;
|
---|
| 4832 | print $datafile "%$location:$tmp\n";
|
---|
| 4833 | }
|
---|
| 4834 | } else {
|
---|
| 4835 | foreach ($ipprefix->split(32)) {
|
---|
| 4836 | print $datafile "%$location:".$_->addr."\n";
|
---|
| 4837 | }
|
---|
| 4838 | }
|
---|
[372] | 4839 | }
|
---|
| 4840 | print $datafile "%$location\n" if !$lochash->{$location}{iplist};
|
---|
| 4841 | }
|
---|
| 4842 |
|
---|
[329] | 4843 | # tracking hash so we don't double-export A+PTR or AAAA+PTR records.
|
---|
| 4844 | my %recflags;
|
---|
| 4845 |
|
---|
[368] | 4846 | my $domsth = $dbh->prepare("SELECT domain_id,domain,status,changed FROM domains WHERE status=1");
|
---|
[372] | 4847 | my $recsth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location ".
|
---|
[368] | 4848 | "FROM records WHERE domain_id=? AND type < 65280"); # Just exclude all types relating to rDNS
|
---|
[372] | 4849 | my $zonesth = $dbh->prepare("UPDATE domains SET changed='n' WHERE domain_id=?");
|
---|
[103] | 4850 | $domsth->execute();
|
---|
[368] | 4851 | while (my ($domid,$dom,$domstat,$changed) = $domsth->fetchrow_array) {
|
---|
| 4852 | ##fixme: need to find a way to block opening symlinked files without introducing a race.
|
---|
| 4853 | # O_NOFOLLOW
|
---|
| 4854 | # If pathname is a symbolic link, then the open fails. This is a FreeBSD extension, which was
|
---|
| 4855 | # added to Linux in version 2.1.126. Symbolic links in earlier components of the pathname will
|
---|
| 4856 | # still be followed.
|
---|
| 4857 | # but that doesn't help other platforms. :/
|
---|
| 4858 | sysopen(ZONECACHE, "$config{exportcache}/$dom", O_RDWR|O_CREAT);
|
---|
| 4859 | flock(ZONECACHE, LOCK_EX);
|
---|
| 4860 | if ($changed || -s "$config{exportcache}/$dom" == 0) {
|
---|
| 4861 | $recsth->execute($domid);
|
---|
[372] | 4862 | while (my ($host,$type,$val,$dist,$weight,$port,$ttl,$recid,$loc) = $recsth->fetchrow_array) {
|
---|
[368] | 4863 | next if $recflags{$recid};
|
---|
[108] | 4864 |
|
---|
[372] | 4865 | $loc = '' if !$loc; # de-nullify - just in case
|
---|
| 4866 | ##fixme: handle case of record-with-location-that-doesn't-exist better.
|
---|
| 4867 | # note this currently fails safe (tested) - records with a location that
|
---|
| 4868 | # doesn't exist will not be sent to any client
|
---|
| 4869 | # $loc = '' if !$lochash->{$loc};
|
---|
| 4870 |
|
---|
[108] | 4871 | ##fixme: record validity timestamp. tinydns supports fiddling with timestamps.
|
---|
| 4872 | # note $ttl must be set to 0 if we want to use tinydns's auto-expiring timestamps.
|
---|
| 4873 | # timestamps are TAI64
|
---|
| 4874 | # ~~ 2^62 + time()
|
---|
[368] | 4875 | my $stamp = '';
|
---|
[108] | 4876 |
|
---|
[368] | 4877 | # support tinydns' auto-TTL
|
---|
| 4878 | $ttl = '' if $ttl == '0';
|
---|
[367] | 4879 |
|
---|
[417] | 4880 | # Spaces are evil.
|
---|
[441] | 4881 | $host =~ s/^\s+//;
|
---|
| 4882 | $host =~ s/\s+$//;
|
---|
| 4883 | if ($typemap{$type} ne 'TXT') {
|
---|
[417] | 4884 | # Leading or trailng spaces could be legit in TXT records.
|
---|
[441] | 4885 | $val =~ s/^\s+//;
|
---|
| 4886 | $val =~ s/\s+$//;
|
---|
[417] | 4887 | }
|
---|
| 4888 |
|
---|
[368] | 4889 | _printrec_tiny(*ZONECACHE, 'n', \%recflags,
|
---|
| 4890 | $dom, $host, $type, $val, $dist, $weight, $port, $ttl, $loc, $stamp)
|
---|
| 4891 | if *ZONECACHE;
|
---|
[450] | 4892 |
|
---|
[368] | 4893 | # in case the zone shrunk, get rid of garbage at the end of the file.
|
---|
| 4894 | truncate(ZONECACHE, tell(ZONECACHE));
|
---|
| 4895 |
|
---|
| 4896 | $recflags{$recid} = 1;
|
---|
| 4897 | } # while ($recsth)
|
---|
| 4898 | }
|
---|
[450] | 4899 | # stream from cache, whether freshly created or existing
|
---|
| 4900 | print $datafile $_ while <ZONECACHE>;
|
---|
[368] | 4901 | close ZONECACHE;
|
---|
| 4902 | # mark domain as unmodified
|
---|
| 4903 | $zonesth->execute($domid);
|
---|
[329] | 4904 | } # while ($domsth)
|
---|
| 4905 |
|
---|
[368] | 4906 | my $revsth = $dbh->prepare("SELECT rdns_id,revnet,status,changed FROM revzones WHERE status=1 ".
|
---|
[337] | 4907 | "ORDER BY masklen(revnet) DESC");
|
---|
[372] | 4908 |
|
---|
[344] | 4909 | # For reasons unknown, we can't sanely UNION these statements. Feh.
|
---|
| 4910 | # Supposedly it should work though (note last 3 lines):
|
---|
| 4911 | ## PG manual
|
---|
| 4912 | #UNION Clause
|
---|
| 4913 | #
|
---|
| 4914 | #The UNION clause has this general form:
|
---|
| 4915 | #
|
---|
| 4916 | # select_statement UNION [ ALL ] select_statement
|
---|
| 4917 | #
|
---|
| 4918 | #select_statement is any SELECT statement without an ORDER BY, LIMIT, FOR UPDATE, or FOR SHARE clause. (ORDER BY
|
---|
| 4919 | #and LIMIT can be attached to a subexpression if it is enclosed in parentheses. Without parentheses, these
|
---|
| 4920 | #clauses will be taken to apply to the result of the UNION, not to its right-hand input expression.)
|
---|
[372] | 4921 | my $soasth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location ".
|
---|
[344] | 4922 | "FROM records WHERE rdns_id=? AND type=6");
|
---|
[372] | 4923 | $recsth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location ".
|
---|
[337] | 4924 | "FROM records WHERE rdns_id=? AND not type=6 ".
|
---|
[344] | 4925 | "ORDER BY masklen(CAST(val AS inet)) DESC, CAST(val AS inet)");
|
---|
[372] | 4926 | $zonesth = $dbh->prepare("UPDATE revzones SET changed='n' WHERE rdns_id=?");
|
---|
[329] | 4927 | $revsth->execute();
|
---|
[368] | 4928 | while (my ($revid,$revzone,$revstat,$changed) = $revsth->fetchrow_array) {
|
---|
| 4929 | ##fixme: need to find a way to block opening symlinked files without introducing a race.
|
---|
| 4930 | # O_NOFOLLOW
|
---|
| 4931 | # If pathname is a symbolic link, then the open fails. This is a FreeBSD extension, which was
|
---|
| 4932 | # added to Linux in version 2.1.126. Symbolic links in earlier components of the pathname will
|
---|
| 4933 | # still be followed.
|
---|
| 4934 | # but that doesn't help other platforms. :/
|
---|
| 4935 | my $tmpzone = NetAddr::IP->new($revzone);
|
---|
| 4936 | sysopen(ZONECACHE, "$config{exportcache}/".$tmpzone->network->addr, O_RDWR|O_CREAT);
|
---|
| 4937 | flock(ZONECACHE, LOCK_EX);
|
---|
| 4938 | if ($changed || -s "$config{exportcache}/".$tmpzone->network->addr == 0) {
|
---|
| 4939 | # need to fetch this separately since the rest of the records all (should) have real IPs in val
|
---|
| 4940 | $soasth->execute($revid);
|
---|
| 4941 | my (@zsoa) = $soasth->fetchrow_array();
|
---|
[445] | 4942 | _printrec_tiny(*ZONECACHE,'y',\%recflags,$revzone,
|
---|
| 4943 | $zsoa[0],$zsoa[1],$zsoa[2],$zsoa[3],$zsoa[4],$zsoa[5],$zsoa[6],$zsoa[8],'');
|
---|
[344] | 4944 |
|
---|
[368] | 4945 | $recsth->execute($revid);
|
---|
[372] | 4946 | while (my ($host,$type,$val,$dist,$weight,$port,$ttl,$recid,$loc) = $recsth->fetchrow_array) {
|
---|
[368] | 4947 | next if $recflags{$recid};
|
---|
[329] | 4948 |
|
---|
[372] | 4949 | $loc = '' if !$loc; # de-nullify - just in case
|
---|
| 4950 | ##fixme: handle case of record-with-location-that-doesn't-exist better.
|
---|
| 4951 | # note this currently fails safe (tested) - records with a location that
|
---|
| 4952 | # doesn't exist will not be sent to any client
|
---|
| 4953 | # $loc = '' if !$lochash->{$loc};
|
---|
| 4954 |
|
---|
[329] | 4955 | ##fixme: record validity timestamp. tinydns supports fiddling with timestamps.
|
---|
| 4956 | # note $ttl must be set to 0 if we want to use tinydns's auto-expiring timestamps.
|
---|
| 4957 | # timestamps are TAI64
|
---|
| 4958 | # ~~ 2^62 + time()
|
---|
[368] | 4959 | my $stamp = '';
|
---|
[329] | 4960 |
|
---|
[368] | 4961 | # support tinydns' auto-TTL
|
---|
| 4962 | $ttl = '' if $ttl == '0';
|
---|
[367] | 4963 |
|
---|
[368] | 4964 | _printrec_tiny(*ZONECACHE, 'y', \%recflags, $revzone,
|
---|
| 4965 | $host, $type, $val, $dist, $weight, $port, $ttl, $loc, $stamp)
|
---|
| 4966 | if *ZONECACHE;
|
---|
[329] | 4967 |
|
---|
[450] | 4968 | # in case the zone shrunk, get rid of garbage at the end of the file.
|
---|
| 4969 | truncate(ZONECACHE, tell(ZONECACHE));
|
---|
| 4970 |
|
---|
[368] | 4971 | $recflags{$recid} = 1;
|
---|
| 4972 | } # while ($recsth)
|
---|
| 4973 | }
|
---|
[450] | 4974 | # stream from cache, whether freshly created or existing
|
---|
| 4975 | print $datafile $_ while <ZONECACHE>;
|
---|
[368] | 4976 | close ZONECACHE;
|
---|
[450] | 4977 | # mark zone as unmodified
|
---|
[368] | 4978 | $zonesth->execute($revid);
|
---|
[329] | 4979 | } # while ($domsth)
|
---|
| 4980 |
|
---|
| 4981 | } # end __export_tiny()
|
---|
| 4982 |
|
---|
| 4983 |
|
---|
| 4984 | # Utility sub for __export_tiny above
|
---|
| 4985 | sub _printrec_tiny {
|
---|
| 4986 | my ($datafile,$revrec,$recflags,$zone,$host,$type,$val,$dist,$weight,$port,$ttl,$loc,$stamp) = @_;
|
---|
| 4987 |
|
---|
| 4988 | ## Convert a bare number into an octal-coded pair of octets.
|
---|
| 4989 | # Take optional arg to indicate a decimal or hex input. Defaults to hex.
|
---|
| 4990 | sub octalize {
|
---|
| 4991 | my $tmp = shift;
|
---|
| 4992 | my $srctype = shift || 'h'; # default assumes hex string
|
---|
| 4993 | $tmp = sprintf "%0.4x", hex($tmp) if $srctype eq 'h'; # 0-pad hex to 4 digits
|
---|
| 4994 | $tmp = sprintf "%0.4x", $tmp if $srctype eq 'd'; # 0-pad decimal to 4 hex digits
|
---|
| 4995 | my @o = ($tmp =~ /^(..)(..)$/); # split into octets
|
---|
| 4996 | return sprintf "\\%0.3o\\%0.3o", hex($o[0]), hex($o[1]);;
|
---|
| 4997 | }
|
---|
| 4998 |
|
---|
[339] | 4999 | ## WARNING: This works to export even the whole Internet's worth of IP space...
|
---|
| 5000 | ## if you have the disk/RAM to handle the dataset, and you call this sub based on /16-sized chunks
|
---|
| 5001 | ## A /16 took ~3 seconds with a handful of separate records; adding a /8 pushed export time out to ~13m:40s
|
---|
| 5002 | ## 0/0 is estimated to take ~54 hours and ~256G of disk
|
---|
| 5003 | ## RAM usage depends on how many non-template entries you have in the set.
|
---|
| 5004 | ## This should probably be done on record addition rather than export; large blocks may need to be done in a
|
---|
| 5005 | ## forked process
|
---|
| 5006 | sub __publish_subnet {
|
---|
| 5007 | my $sub = shift;
|
---|
| 5008 | my $recflags = shift;
|
---|
| 5009 | my $hpat = shift;
|
---|
| 5010 | my $fh = shift;
|
---|
| 5011 | my $ttl = shift;
|
---|
| 5012 | my $stamp = shift;
|
---|
| 5013 | my $loc = shift;
|
---|
| 5014 | my $ptronly = shift || 0;
|
---|
| 5015 |
|
---|
| 5016 | my $iplist = $sub->splitref(32);
|
---|
| 5017 | foreach (@$iplist) {
|
---|
| 5018 | my $ip = $_->addr;
|
---|
| 5019 | # make as if we split the non-octet-aligned block into octet-aligned blocks as with SOA
|
---|
| 5020 | next if $ip =~ /\.(0|255)$/;
|
---|
| 5021 | next if $$recflags{$ip};
|
---|
| 5022 | $$recflags{$ip}++;
|
---|
[463] | 5023 | next if $hpat eq '%blank%'; # Allows blanking a subnet so no records are published.
|
---|
[339] | 5024 | my $rec = $hpat; # start fresh with the template for each IP
|
---|
| 5025 | _template4_expand(\$rec, $ip);
|
---|
| 5026 | print $fh ($ptronly ? "^"._ZONE($_, 'ZONE.in-addr.arpa', 'r', '.').":$rec" : "=$rec:$ip").
|
---|
| 5027 | ":$ttl:$stamp:$loc\n";
|
---|
| 5028 | }
|
---|
| 5029 | }
|
---|
| 5030 |
|
---|
[103] | 5031 | ##fixme? append . to all host/val hostnames
|
---|
| 5032 | if ($typemap{$type} eq 'SOA') {
|
---|
| 5033 |
|
---|
| 5034 | # host contains pri-ns:responsible
|
---|
| 5035 | # val is abused to contain refresh:retry:expire:minttl
|
---|
| 5036 | ##fixme: "manual" serial vs tinydns-autoserial
|
---|
[202] | 5037 | # let's be explicit about abusing $host and $val
|
---|
| 5038 | my ($email, $primary) = (split /:/, $host)[0,1];
|
---|
| 5039 | my ($refresh, $retry, $expire, $min_ttl) = (split /:/, $val)[0,1,2,3];
|
---|
[330] | 5040 | if ($revrec eq 'y') {
|
---|
[337] | 5041 | ##fixme: have to publish SOA records for each v4 /24 in sub-/16, and each /16 in sub-/8
|
---|
| 5042 | # what about v6?
|
---|
| 5043 | # -> only need SOA for local chunks offset from reverse delegation boundaries, so v6 is fine
|
---|
[330] | 5044 | $zone = NetAddr::IP->new($zone);
|
---|
[337] | 5045 | # handle split-n-multiply SOA for off-octet (8 < mask < 16) or (16 < mask < 24) v4 zones
|
---|
| 5046 | if (!$zone->{isv6} && ($zone->masklen < 24) && ($zone->masklen % 8 != 0)) {
|
---|
| 5047 | foreach my $szone ($zone->split($zone->masklen + (8 - $zone->masklen % 8))) {
|
---|
| 5048 | $szone = _ZONE($szone, 'ZONE.in-addr.arpa', 'r', '.');
|
---|
| 5049 | print $datafile "Z$szone:$primary:$email"."::$refresh:$retry:$expire:$min_ttl:$ttl:$stamp:$loc\n";
|
---|
| 5050 | }
|
---|
| 5051 | return; # skips "default" bits just below
|
---|
| 5052 | }
|
---|
[330] | 5053 | $zone = _ZONE($zone, 'ZONE', 'r', '.').($zone->{isv6} ? '.ip6.arpa' : '.in-addr.arpa');
|
---|
| 5054 | }
|
---|
[329] | 5055 | print $datafile "Z$zone:$primary:$email"."::$refresh:$retry:$expire:$min_ttl:$ttl:$stamp:$loc\n";
|
---|
[103] | 5056 |
|
---|
| 5057 | } elsif ($typemap{$type} eq 'A') {
|
---|
| 5058 |
|
---|
[108] | 5059 | print $datafile "+$host:$val:$ttl:$stamp:$loc\n";
|
---|
[103] | 5060 |
|
---|
| 5061 | } elsif ($typemap{$type} eq 'NS') {
|
---|
| 5062 |
|
---|
[330] | 5063 | if ($revrec eq 'y') {
|
---|
| 5064 | $val = NetAddr::IP->new($val);
|
---|
[345] | 5065 | # handle split-n-multiply SOA for off-octet (8 < mask < 16) or (16 < mask < 24) v4 zones
|
---|
| 5066 | if (!$val->{isv6} && ($val->masklen < 24) && ($val->masklen % 8 != 0)) {
|
---|
[346] | 5067 | foreach my $szone ($val->split($val->masklen + (8 - $val->masklen % 8))) {
|
---|
[345] | 5068 | my $szone2 = _ZONE($szone, 'ZONE.in-addr.arpa', 'r', '.');
|
---|
[346] | 5069 | next if $$recflags{$szone2} && $$recflags{$szone2} > $val->masklen;
|
---|
[345] | 5070 | print $datafile "\&$szone2"."::$host:$ttl:$stamp:$loc\n";
|
---|
[346] | 5071 | $$recflags{$szone2} = $val->masklen;
|
---|
[345] | 5072 | }
|
---|
[346] | 5073 | } elsif ($val->{isv6} && ($val->masklen < 64) && ($val->masklen % 4 !=0)) {
|
---|
| 5074 | foreach my $szone ($val->split($val->masklen + (4 - $val->masklen % 4))) {
|
---|
| 5075 | my $szone2 = _ZONE($szone, 'ZONE.ip6.arpa', 'r', '.');
|
---|
| 5076 | next if $$recflags{$szone2} && $$recflags{$szone2} > $val->masklen;
|
---|
| 5077 | print $datafile "\&$szone2"."::$host:$ttl:$stamp:$loc\n";
|
---|
| 5078 | $$recflags{$szone2} = $val->masklen;
|
---|
| 5079 | }
|
---|
| 5080 | } else {
|
---|
| 5081 | my $val2 = _ZONE($val, 'ZONE', 'r', '.').($val->{isv6} ? '.ip6.arpa' : '.in-addr.arpa');
|
---|
| 5082 | print $datafile "\&$val2"."::$host:$ttl:$stamp:$loc\n";
|
---|
| 5083 | $$recflags{$val2} = $val->masklen;
|
---|
[345] | 5084 | }
|
---|
[330] | 5085 | } else {
|
---|
| 5086 | print $datafile "\&$host"."::$val:$ttl:$stamp:$loc\n";
|
---|
| 5087 | }
|
---|
[103] | 5088 |
|
---|
| 5089 | } elsif ($typemap{$type} eq 'AAAA') {
|
---|
| 5090 |
|
---|
| 5091 | print $datafile ":$host:28:";
|
---|
| 5092 | my $altgrp = 0;
|
---|
| 5093 | my @altconv;
|
---|
[108] | 5094 | # Split in to up to 8 groups of hex digits (allows for IPv6 :: 0-collapsing)
|
---|
[103] | 5095 | foreach (split /:/, $val) {
|
---|
| 5096 | if (/^$/) {
|
---|
| 5097 | # flag blank entry; this is a series of 0's of (currently) unknown length
|
---|
| 5098 | $altconv[$altgrp++] = 's';
|
---|
| 5099 | } else {
|
---|
| 5100 | # call sub to convert 1-4 hex digits to 2 string-rep octal bytes
|
---|
| 5101 | $altconv[$altgrp++] = octalize($_)
|
---|
| 5102 | }
|
---|
| 5103 | }
|
---|
| 5104 | foreach my $octet (@altconv) {
|
---|
| 5105 | # if not 's', output
|
---|
| 5106 | print $datafile $octet unless $octet =~ /^s$/;
|
---|
| 5107 | # if 's', output (9-array length)x literal '\000\000'
|
---|
| 5108 | print $datafile '\000\000'x(9-$altgrp) if $octet =~ /^s$/;
|
---|
| 5109 | }
|
---|
[108] | 5110 | print $datafile ":$ttl:$stamp:$loc\n";
|
---|
[103] | 5111 |
|
---|
| 5112 | } elsif ($typemap{$type} eq 'MX') {
|
---|
| 5113 |
|
---|
[108] | 5114 | print $datafile "\@$host"."::$val:$dist:$ttl:$stamp:$loc\n";
|
---|
[103] | 5115 |
|
---|
| 5116 | } elsif ($typemap{$type} eq 'TXT') {
|
---|
| 5117 |
|
---|
| 5118 | ##fixme: split v-e-r-y long TXT strings? will need to do so for BIND export, at least
|
---|
[350] | 5119 | if ($revrec eq 'n') {
|
---|
| 5120 | $val =~ s/:/\\072/g; # may need to replace other symbols
|
---|
| 5121 | print $datafile "'$host:$val:$ttl:$stamp:$loc\n";
|
---|
| 5122 | } else {
|
---|
| 5123 | $host =~ s/:/\\072/g; # may need to replace other symbols
|
---|
| 5124 | my $val2 = NetAddr::IP->new($val);
|
---|
| 5125 | print $datafile "'"._ZONE($val2, 'ZONE', 'r', '.').($val2->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
|
---|
| 5126 | ":$host:$ttl:$stamp:$loc\n";
|
---|
| 5127 | }
|
---|
[103] | 5128 |
|
---|
| 5129 | # by-hand TXT
|
---|
| 5130 | #:deepnet.cx:16:2v\075spf1\040a\040a\072bacon.deepnet.cx\040a\072home.deepnet.cx\040-all:3600
|
---|
| 5131 | #@ IN TXT "v=spf1 a a:bacon.deepnet.cx a:home.deepnet.cx -all"
|
---|
| 5132 | #'deepnet.cx:v=spf1 a a\072bacon.deepnet.cx a\072home.deepnet.cx -all:3600
|
---|
| 5133 |
|
---|
| 5134 | #txttest IN TXT "v=foo bar:bob kn;ob' \" !@#$%^&*()-=_+[]{}<>?"
|
---|
| 5135 | #:txttest.deepnet.cx:16:\054v\075foo\040bar\072bob\040kn\073ob\047\040\042\040\041\100\043\044\045\136\046\052\050\051-\075\137\053\133\135\173\175\074\076\077:3600
|
---|
| 5136 |
|
---|
| 5137 | # very long TXT record as brought in by axfr-get
|
---|
| 5138 | # note tinydns does not support >512-byte RR data, need axfr-dns (for TCP support) for that
|
---|
| 5139 | # also note, tinydns does not seem to support <512, >256-byte RRdata from axfr-get either. :/
|
---|
| 5140 | #:longtxt.deepnet.cx:16:
|
---|
| 5141 | #\170this is a very long txt record. it is really long. long. very long. really very long. this is a very long txt record.
|
---|
| 5142 | #\263 it is really long. long. very long. really very long. this is a very long txt record. it is really long. long. very long. really very long. this is a very long txt record.
|
---|
| 5143 | #\351 it is really long. long. very long. really very long.this is a very long txt record. it is really long. long. very long. really very long. this is a very long txt record. it is really long. long. very long. really very long.
|
---|
| 5144 | #:3600
|
---|
| 5145 |
|
---|
| 5146 | } elsif ($typemap{$type} eq 'CNAME') {
|
---|
| 5147 |
|
---|
[372] | 5148 | if ($revrec eq 'n') {
|
---|
| 5149 | print $datafile "C$host:$val:$ttl:$stamp:$loc\n";
|
---|
| 5150 | } else {
|
---|
| 5151 | my $val2 = NetAddr::IP->new($val);
|
---|
| 5152 | print $datafile "C"._ZONE($val2, 'ZONE', 'r', '.').($val2->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
|
---|
| 5153 | ":$host:$ttl:$stamp:$loc\n";
|
---|
| 5154 | }
|
---|
[103] | 5155 |
|
---|
| 5156 | } elsif ($typemap{$type} eq 'SRV') {
|
---|
| 5157 |
|
---|
| 5158 | # data is two-byte values for priority, weight, port, in that order,
|
---|
| 5159 | # followed by length/string data
|
---|
| 5160 |
|
---|
| 5161 | print $datafile ":$host:33:".octalize($dist,'d').octalize($weight,'d').octalize($port,'d');
|
---|
| 5162 |
|
---|
| 5163 | $val .= '.' if $val !~ /\.$/;
|
---|
| 5164 | foreach (split /\./, $val) {
|
---|
| 5165 | printf $datafile "\\%0.3o%s", length($_), $_;
|
---|
| 5166 | }
|
---|
[108] | 5167 | print $datafile "\\000:$ttl:$stamp:$loc\n";
|
---|
[103] | 5168 |
|
---|
| 5169 | } elsif ($typemap{$type} eq 'RP') {
|
---|
| 5170 |
|
---|
| 5171 | # RP consists of two mostly free-form strings.
|
---|
| 5172 | # The first is supposed to be an email address with @ replaced by . (as with the SOA contact)
|
---|
| 5173 | # The second is the "hostname" of a TXT record with more info.
|
---|
| 5174 | print $datafile ":$host:17:";
|
---|
| 5175 | my ($who,$what) = split /\s/, $val;
|
---|
| 5176 | foreach (split /\./, $who) {
|
---|
| 5177 | printf $datafile "\\%0.3o%s", length($_), $_;
|
---|
| 5178 | }
|
---|
| 5179 | print $datafile '\000';
|
---|
| 5180 | foreach (split /\./, $what) {
|
---|
| 5181 | printf $datafile "\\%0.3o%s", length($_), $_;
|
---|
| 5182 | }
|
---|
[108] | 5183 | print $datafile "\\000:$ttl:$stamp:$loc\n";
|
---|
[103] | 5184 |
|
---|
| 5185 | } elsif ($typemap{$type} eq 'PTR') {
|
---|
| 5186 |
|
---|
[332] | 5187 | $zone = NetAddr::IP->new($zone);
|
---|
[337] | 5188 | $$recflags{$val}++;
|
---|
[332] | 5189 | if (!$zone->{isv6} && $zone->masklen > 24) {
|
---|
| 5190 | ($val) = ($val =~ /\.(\d+)$/);
|
---|
| 5191 | print $datafile "^$val."._ZONE($zone, 'ZONE', 'r', '.').'.in-addr.arpa'.
|
---|
| 5192 | ":$host:ttl:$stamp:$loc\n";
|
---|
| 5193 | } else {
|
---|
| 5194 | $val = NetAddr::IP->new($val);
|
---|
| 5195 | print $datafile "^".
|
---|
| 5196 | _ZONE($val, 'ZONE', 'r', '.').($val->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
|
---|
[334] | 5197 | ":$host:$ttl:$stamp:$loc\n";
|
---|
[332] | 5198 | }
|
---|
[103] | 5199 |
|
---|
[333] | 5200 | } elsif ($type == 65280) { # A+PTR
|
---|
[334] | 5201 |
|
---|
[337] | 5202 | $$recflags{$val}++;
|
---|
[334] | 5203 | print $datafile "=$host:$val:$ttl:$stamp:$loc\n";
|
---|
| 5204 |
|
---|
[333] | 5205 | } elsif ($type == 65281) { # AAAA+PTR
|
---|
| 5206 |
|
---|
[337] | 5207 | #$$recflags{$val}++;
|
---|
[333] | 5208 | # treat these as two separate records. since tinydns doesn't have
|
---|
| 5209 | # a native combined type, we have to create them separately anyway.
|
---|
| 5210 | if ($revrec eq 'n') {
|
---|
| 5211 | $type = 28;
|
---|
| 5212 | } else {
|
---|
| 5213 | $type = 12;
|
---|
| 5214 | }
|
---|
[334] | 5215 | _printrec_tiny($datafile,$revrec,$recflags,$zone,$host,$type,$val,$dist,$weight,$port,$ttl,$loc,$stamp);
|
---|
[335] | 5216 | ##fixme: add a config flag to indicate use of the patch from http://www.fefe.de/dns/
|
---|
| 5217 | # type 6 is for AAAA+PTR, type 3 is for AAAA
|
---|
[333] | 5218 |
|
---|
| 5219 | } elsif ($type == 65282) { # PTR template
|
---|
[335] | 5220 |
|
---|
| 5221 | # only useful for v4 with standard DNS software, since this expands all
|
---|
| 5222 | # IPs in $zone (or possibly $val?) with autogenerated records
|
---|
[337] | 5223 | $val = NetAddr::IP->new($val);
|
---|
| 5224 | return if $val->{isv6};
|
---|
[336] | 5225 |
|
---|
[339] | 5226 | if ($val->masklen <= 16) {
|
---|
| 5227 | foreach my $sub ($val->split(16)) {
|
---|
| 5228 | __publish_subnet($sub, $recflags, $host, $datafile, $ttl, $stamp, $loc, 1);
|
---|
| 5229 | }
|
---|
| 5230 | } else {
|
---|
| 5231 | __publish_subnet($val, $recflags, $host, $datafile, $ttl, $stamp, $loc, 1);
|
---|
[337] | 5232 | }
|
---|
[335] | 5233 |
|
---|
[333] | 5234 | } elsif ($type == 65283) { # A+PTR template
|
---|
[335] | 5235 |
|
---|
[337] | 5236 | $val = NetAddr::IP->new($val);
|
---|
| 5237 | # Just In Case. An A+PTR should be impossible to add to a v6 revzone via API.
|
---|
| 5238 | return if $val->{isv6};
|
---|
[339] | 5239 |
|
---|
| 5240 | if ($val->masklen <= 16) {
|
---|
| 5241 | foreach my $sub ($val->split(16)) {
|
---|
| 5242 | __publish_subnet($sub, $recflags, $host, $datafile, $ttl, $stamp, $loc, 0);
|
---|
| 5243 | }
|
---|
| 5244 | } else {
|
---|
| 5245 | __publish_subnet($val, $recflags, $host, $datafile, $ttl, $stamp, $loc, 0);
|
---|
[337] | 5246 | }
|
---|
[335] | 5247 |
|
---|
[333] | 5248 | } elsif ($type == 65284) { # AAAA+PTR template
|
---|
[335] | 5249 | # Stub for completeness. Could be exported to DNS software that supports
|
---|
| 5250 | # some degree of internal automagic in generic-record-creation
|
---|
| 5251 | # (eg http://search.cpan.org/dist/AllKnowingDNS/ )
|
---|
[333] | 5252 |
|
---|
[345] | 5253 | } elsif ($type == 65285) { # Delegation
|
---|
| 5254 | # This is intended for reverse zones, but may prove useful in forward zones.
|
---|
| 5255 |
|
---|
[346] | 5256 | # All delegations need to create one or more NS records. The NS record handler knows what to do.
|
---|
| 5257 | _printrec_tiny($datafile,$revrec,$recflags,$zone,$host,$reverse_typemap{'NS'},
|
---|
| 5258 | $val,$dist,$weight,$port,$ttl,$loc,$stamp);
|
---|
| 5259 | if ($revrec eq 'y') {
|
---|
| 5260 | # In the case of a sub-/24 v4 reverse delegation, we need to generate CNAMEs
|
---|
| 5261 | # to redirect all of the individual IP lookups as well.
|
---|
| 5262 | # Not sure how this would actually resolve if a /24 or larger was delegated
|
---|
| 5263 | # one way, and a sub-/24 in that >=/24 was delegated elsewhere...
|
---|
| 5264 | my $dblock = NetAddr::IP->new($val);
|
---|
| 5265 | if (!$dblock->{isv6} && $dblock->masklen > 24) {
|
---|
| 5266 | my @subs = $dblock->split;
|
---|
| 5267 | foreach (@subs) {
|
---|
| 5268 | next if $$recflags{"$_"};
|
---|
| 5269 | my ($oct) = ($_->addr =~ /(\d+)$/);
|
---|
| 5270 | print $datafile "C"._ZONE($_, 'ZONE.in-addr.arpa', 'r', '.').":$oct.".
|
---|
| 5271 | _ZONE($dblock, 'ZONE.in-addr.arpa', 'r', '.').":$ttl:$stamp:$loc\n";
|
---|
| 5272 | $$recflags{"$_"}++;
|
---|
| 5273 | }
|
---|
| 5274 | }
|
---|
| 5275 | }
|
---|
[345] | 5276 |
|
---|
[364] | 5277 | ##
|
---|
| 5278 | ## Uncommon types. These will need better UI support Any Day Sometime Maybe(TM).
|
---|
| 5279 | ##
|
---|
| 5280 |
|
---|
| 5281 | } elsif ($type == 44) { # SSHFP
|
---|
| 5282 | my ($algo,$fpt,$fp) = split /\s+/, $val;
|
---|
| 5283 |
|
---|
| 5284 | my $rec = sprintf ":$host:44:\\%0.3o\\%0.3o", $algo, $fpt;
|
---|
| 5285 | while (my ($byte) = ($fp =~ /^(..)/) ) {
|
---|
| 5286 | $rec .= sprintf "\\%0.3o", hex($byte);
|
---|
| 5287 | $fp =~ s/^..//;
|
---|
| 5288 | }
|
---|
| 5289 | print $datafile "$rec:$ttl:$stamp:$loc\n";
|
---|
| 5290 |
|
---|
[345] | 5291 | } else {
|
---|
[108] | 5292 | # raw record. we don't know what's in here, so we ASS-U-ME the user has
|
---|
| 5293 | # put it in correctly, since either the user is messing directly with the
|
---|
| 5294 | # database, or the record was imported via AXFR
|
---|
| 5295 | # <split by char>
|
---|
| 5296 | # convert anything not a-zA-Z0-9.- to octal coding
|
---|
| 5297 |
|
---|
| 5298 | ##fixme: add flag to export "unknown" record types - note we'll probably end up
|
---|
| 5299 | # mangling them since they were written to the DB from Net::DNS::RR::<type>->rdatastr.
|
---|
| 5300 | #print $datafile ":$host:$type:$val:$ttl:$stamp:$loc\n";
|
---|
| 5301 |
|
---|
[103] | 5302 | } # record type if-else
|
---|
| 5303 |
|
---|
[329] | 5304 | } # end _printrec_tiny()
|
---|
[103] | 5305 |
|
---|
| 5306 |
|
---|
[197] | 5307 | ## DNSDB::mailNotify()
|
---|
[283] | 5308 | # Sends notification mail to recipients regarding a DNSDB operation
|
---|
[197] | 5309 | sub mailNotify {
|
---|
[483] | 5310 | my $self = shift;
|
---|
| 5311 | my $dbh = $self->{dbh};
|
---|
[197] | 5312 | my ($subj,$message) = @_;
|
---|
| 5313 |
|
---|
| 5314 | return if $config{mailhost} eq 'smtp.example.com'; # do nothing if still using default SMTP host.
|
---|
| 5315 |
|
---|
| 5316 | my $mailer = Net::SMTP->new($config{mailhost}, Hello => "dnsadmin.$config{domain}");
|
---|
| 5317 |
|
---|
| 5318 | my $mailsender = ($config{mailsender} ? $config{mailsender} : $config{mailnotify});
|
---|
| 5319 |
|
---|
| 5320 | $mailer->mail($mailsender);
|
---|
| 5321 | $mailer->to($config{mailnotify});
|
---|
[198] | 5322 | $mailer->data("From: \"$config{mailname}\" <$mailsender>\n",
|
---|
| 5323 | "To: <$config{mailnotify}>\n",
|
---|
[197] | 5324 | "Date: ".strftime("%a, %d %b %Y %H:%M:%S %z",localtime)."\n",
|
---|
| 5325 | "Subject: $subj\n",
|
---|
| 5326 | "X-Mailer: DNSAdmin Notify v".sprintf("%.1d",$DNSDB::VERSION)."\n",
|
---|
| 5327 | "Organization: $config{orgname}\n",
|
---|
| 5328 | "\n$message\n");
|
---|
| 5329 | $mailer->quit;
|
---|
| 5330 | }
|
---|
| 5331 |
|
---|
[2] | 5332 | # shut Perl up
|
---|
| 5333 | 1;
|
---|