[2] | 1 | # dns/trunk/DNSDB.pm
|
---|
| 2 | # Abstraction functions for DNS administration
|
---|
[262] | 3 | ##
|
---|
| 4 | # $Id: DNSDB.pm 469 2013-03-12 20:12:46Z kdeugau $
|
---|
[320] | 5 | # Copyright 2008-2012 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
|
---|
[67] | 40 | &initPermissions &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
|
---|
[277] | 51 | &getSOA &updateSOA &getRecLine &getDomRecs &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
|
---|
[390] | 62 | %permissions @permtypes $permlist %permchains
|
---|
[2] | 63 | );
|
---|
| 64 |
|
---|
| 65 | @EXPORT = (); # Export nothing by default.
|
---|
| 66 | %EXPORT_TAGS = ( ALL => [qw(
|
---|
[279] | 67 | &initGlobals &login &initActionLog
|
---|
[67] | 68 | &initPermissions &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
|
---|
[277] | 79 | &getSOA &updateSOA &getRecLine &getDomRecs &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
|
---|
[390] | 90 | %permissions @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 |
|
---|
[65] | 138 | our %permissions;
|
---|
[55] | 139 |
|
---|
[128] | 140 | # Prepopulate a basic config. Note some of these *will* cause errors if left unset.
|
---|
[195] | 141 | # note: add appropriate stanzas in loadConfig to parse these
|
---|
[128] | 142 | our %config = (
|
---|
| 143 | # Database connection info
|
---|
| 144 | dbname => 'dnsdb',
|
---|
| 145 | dbuser => 'dnsdb',
|
---|
| 146 | dbpass => 'secret',
|
---|
| 147 | dbhost => '',
|
---|
| 148 |
|
---|
| 149 | # Email notice settings
|
---|
| 150 | mailhost => 'smtp.example.com',
|
---|
[195] | 151 | mailnotify => 'dnsdb@example.com', # to
|
---|
| 152 | mailsender => 'dnsdb@example.com', # from
|
---|
[128] | 153 | mailname => 'DNS Administration',
|
---|
[195] | 154 | orgname => 'Example Corp',
|
---|
| 155 | domain => 'example.com',
|
---|
[128] | 156 |
|
---|
| 157 | # Template directory
|
---|
| 158 | templatedir => 'templates/',
|
---|
| 159 | # fmeh. this is a real web path, not a logical internal one. hm..
|
---|
[163] | 160 | # cssdir => 'templates/',
|
---|
[216] | 161 | sessiondir => 'session/',
|
---|
[368] | 162 | exportcache => 'cache/',
|
---|
[163] | 163 |
|
---|
| 164 | # Session params
|
---|
[195] | 165 | timeout => '3600', # 1 hour default
|
---|
| 166 |
|
---|
| 167 | # Other miscellanea
|
---|
| 168 | log_failures => 1, # log all evarthing by default
|
---|
[201] | 169 | perpage => 15,
|
---|
[128] | 170 | );
|
---|
| 171 |
|
---|
[228] | 172 | ## (Semi)private variables
|
---|
[278] | 173 |
|
---|
[228] | 174 | # Hash of functions for validating record types. Filled in initGlobals() since
|
---|
| 175 | # it relies on visibility flags from the rectypes table in the DB
|
---|
| 176 | my %validators;
|
---|
[128] | 177 |
|
---|
[278] | 178 | # Username, full name, ID - mainly for logging
|
---|
| 179 | my %userdata;
|
---|
[228] | 180 |
|
---|
[295] | 181 | # Entity-relationship reference hashes.
|
---|
| 182 | my %par_tbl = (
|
---|
| 183 | group => 'groups',
|
---|
| 184 | user => 'users',
|
---|
| 185 | defrec => 'default_records',
|
---|
| 186 | defrevrec => 'default_rev_records',
|
---|
| 187 | domain => 'domains',
|
---|
| 188 | revzone => 'revzones',
|
---|
| 189 | record => 'records'
|
---|
| 190 | );
|
---|
| 191 | my %id_col = (
|
---|
| 192 | group => 'group_id',
|
---|
| 193 | user => 'user_id',
|
---|
| 194 | defrec => 'record_id',
|
---|
| 195 | defrevrec => 'record_id',
|
---|
| 196 | domain => 'domain_id',
|
---|
| 197 | revzone => 'rdns_id',
|
---|
| 198 | record => 'record_id'
|
---|
| 199 | );
|
---|
| 200 | my %par_col = (
|
---|
| 201 | group => 'parent_group_id',
|
---|
| 202 | user => 'group_id',
|
---|
| 203 | defrec => 'group_id',
|
---|
| 204 | defrevrec => 'group_id',
|
---|
| 205 | domain => 'group_id',
|
---|
| 206 | revzone => 'group_id',
|
---|
| 207 | record => 'domain_id'
|
---|
| 208 | );
|
---|
| 209 | my %par_type = (
|
---|
| 210 | group => 'group',
|
---|
| 211 | user => 'group',
|
---|
| 212 | defrec => 'group',
|
---|
| 213 | defrevrec => 'group',
|
---|
| 214 | domain => 'group',
|
---|
| 215 | revzone => 'group',
|
---|
| 216 | record => 'domain'
|
---|
| 217 | );
|
---|
[278] | 218 |
|
---|
[2] | 219 | ##
|
---|
[465] | 220 | ## Constructor and destructor
|
---|
| 221 | ##
|
---|
| 222 |
|
---|
| 223 | sub new {
|
---|
| 224 | my $this = shift;
|
---|
| 225 | my $class = ref($this) || $this;
|
---|
| 226 | my %args = @_;
|
---|
| 227 | ##fixme? to ponder: do we do some magic if the caller sets eg dbname to prevent parsing of the config file?
|
---|
| 228 | if (!loadConfig(basename => $args{configfile})) {
|
---|
| 229 | warn "Using default configuration; unable to load custom settings: $errstr\n";
|
---|
| 230 | }
|
---|
| 231 | my $self = \%config;
|
---|
| 232 | $self->{configfile} = $args{configfile};
|
---|
| 233 | bless $self, $class;
|
---|
| 234 | $self->{dbh} = connectDB($self->{dbname}, $self->{dbuser}, $self->{dbpass}, $self->{dbhost}) or return;
|
---|
| 235 | $self->initGlobals();
|
---|
| 236 |
|
---|
| 237 | return $self;
|
---|
| 238 | }
|
---|
| 239 |
|
---|
| 240 | sub DESTROY {
|
---|
| 241 | my $self = shift;
|
---|
| 242 | $self->{dbh}->disconnect;
|
---|
| 243 | }
|
---|
| 244 |
|
---|
| 245 | ##
|
---|
[225] | 246 | ## utility functions
|
---|
[281] | 247 | ##
|
---|
| 248 |
|
---|
| 249 | ## DNSDB::_rectable()
|
---|
[224] | 250 | # Takes default+rdns flags, returns appropriate table name
|
---|
| 251 | sub _rectable {
|
---|
| 252 | my $def = shift;
|
---|
| 253 | my $rev = shift;
|
---|
| 254 |
|
---|
| 255 | return 'records' if $def ne 'y';
|
---|
| 256 | return 'default_records' if $rev ne 'y';
|
---|
| 257 | return 'default_rev_records';
|
---|
| 258 | } # end _rectable()
|
---|
| 259 |
|
---|
[281] | 260 | ## DNSDB::_recparent()
|
---|
[224] | 261 | # Takes default+rdns flags, returns appropriate parent-id column name
|
---|
| 262 | sub _recparent {
|
---|
| 263 | my $def = shift;
|
---|
| 264 | my $rev = shift;
|
---|
| 265 |
|
---|
| 266 | return 'group_id' if $def eq 'y';
|
---|
| 267 | return 'rdns_id' if $rev eq 'y';
|
---|
| 268 | return 'domain_id';
|
---|
| 269 | } # end _recparent()
|
---|
| 270 |
|
---|
[281] | 271 | ## DNSDB::_ipparent()
|
---|
[226] | 272 | # Check an IP to be added in a reverse zone to see if it's really in the requested parent.
|
---|
[466] | 273 | # Takes default and reverse flags, IP (fragment) to check, parent zone ID,
|
---|
[226] | 274 | # and a reference to a NetAddr::IP object (also used to pass back a fully-reconstructed IP for
|
---|
| 275 | # database insertion)
|
---|
| 276 | sub _ipparent {
|
---|
[466] | 277 | my $self = shift;
|
---|
| 278 | my $dbh = $self->{dbh};
|
---|
[226] | 279 | my $defrec = shift;
|
---|
| 280 | my $revrec = shift;
|
---|
| 281 | my $val = shift;
|
---|
| 282 | my $id = shift;
|
---|
| 283 | my $addr = shift;
|
---|
[224] | 284 |
|
---|
[232] | 285 | return if $revrec ne 'y'; # this sub not useful in forward zones
|
---|
| 286 |
|
---|
| 287 | $$addr = NetAddr::IP->new($$val); #necessary?
|
---|
| 288 |
|
---|
[226] | 289 | # subsub to split, reverse, and overlay an IP fragment on a netblock
|
---|
| 290 | sub __rev_overlay {
|
---|
| 291 | my $splitme = shift; # ':' or '.', m'lud?
|
---|
| 292 | my $parnet = shift;
|
---|
| 293 | my $val = shift;
|
---|
| 294 | my $addr = shift;
|
---|
| 295 |
|
---|
| 296 | my $joinme = $splitme;
|
---|
| 297 | $splitme = '\.' if $splitme eq '.';
|
---|
[232] | 298 | my @working = reverse(split($splitme, $parnet->addr));
|
---|
| 299 | my @parts = reverse(split($splitme, $$val));
|
---|
[226] | 300 | for (my $i = 0; $i <= $#parts; $i++) {
|
---|
| 301 | $working[$i] = $parts[$i];
|
---|
| 302 | }
|
---|
[232] | 303 | my $checkme = NetAddr::IP->new(join($joinme, reverse(@working))) or return 0;
|
---|
| 304 | return 0 unless $checkme->within($parnet);
|
---|
[226] | 305 | $$addr = $checkme; # force "correct" IP to be recorded.
|
---|
| 306 | return 1;
|
---|
| 307 | }
|
---|
| 308 |
|
---|
| 309 | my ($parstr) = $dbh->selectrow_array("SELECT revnet FROM revzones WHERE rdns_id = ?", undef, ($id));
|
---|
| 310 | my $parnet = NetAddr::IP->new($parstr);
|
---|
| 311 |
|
---|
| 312 | # Fail early on v6-in-v4 or v4-in-v6. We're not accepting these ATM.
|
---|
[232] | 313 | return 0 if $parnet->addr =~ /\./ && $$val =~ /:/;
|
---|
| 314 | return 0 if $parnet->addr =~ /:/ && $$val =~ /\./;
|
---|
[226] | 315 |
|
---|
[340] | 316 | if ($$addr && ($$val =~ /^[\da-fA-F][\da-fA-F:]+[\da-fA-F]$/ || $$val =~ m|/\d+$|)) {
|
---|
| 317 | # the only case where NetAddr::IP's acceptance of legitimate IPs is "correct" is for a proper IPv6 address,
|
---|
| 318 | # or a netblock (only expected on templates)
|
---|
[232] | 319 | # the rest we have to restructure before fiddling. *sigh*
|
---|
| 320 | return 1 if $$addr->within($parnet);
|
---|
| 321 | } else {
|
---|
[340] | 322 | # We don't have a complete IP in $$val (yet)... unless we have a netblock
|
---|
[232] | 323 | if ($parnet->addr =~ /:/) {
|
---|
| 324 | $$val =~ s/^:+//; # gotta strip'em all...
|
---|
[226] | 325 | return __rev_overlay(':', $parnet, $val, $addr);
|
---|
| 326 | }
|
---|
[232] | 327 | if ($parnet->addr =~ /\./) {
|
---|
| 328 | $$val =~ s/^\.+//;
|
---|
| 329 | return __rev_overlay('.', $parnet, $val, $addr);
|
---|
| 330 | }
|
---|
[226] | 331 | # should be impossible to get here...
|
---|
| 332 | }
|
---|
| 333 | # ... and here.
|
---|
| 334 | # can't do nuttin' in forward zones
|
---|
| 335 | } # end _ipparent()
|
---|
| 336 |
|
---|
[281] | 337 | ## DNSDB::_hostparent()
|
---|
[232] | 338 | # A little different than _ipparent above; this tries to *find* the parent zone of a hostname
|
---|
[466] | 339 | # Takes a hostname.
|
---|
[281] | 340 | # Returns the domain ID of the parent domain if one was found.
|
---|
[232] | 341 | sub _hostparent {
|
---|
[466] | 342 | my $self = shift;
|
---|
| 343 | my $dbh = $self->{dbh};
|
---|
[232] | 344 | my $hname = shift;
|
---|
[347] | 345 |
|
---|
| 346 | $hname =~ s/^\*\.//; # this should be impossible to find in the domains table.
|
---|
[232] | 347 | my @hostbits = split /\./, $hname;
|
---|
[349] | 348 | my $sth = $dbh->prepare("SELECT count(*),domain_id FROM domains WHERE lower(domain) = lower(?) GROUP BY domain_id");
|
---|
[232] | 349 | foreach (@hostbits) {
|
---|
| 350 | $sth->execute($hname);
|
---|
| 351 | my ($found, $parid) = $sth->fetchrow_array;
|
---|
| 352 | if ($found) {
|
---|
| 353 | return $parid;
|
---|
| 354 | }
|
---|
| 355 | $hname =~ s/^$_\.//;
|
---|
| 356 | }
|
---|
| 357 | } # end _hostparent()
|
---|
[228] | 358 |
|
---|
[281] | 359 | ## DNSDB::_log()
|
---|
| 360 | # Log an action
|
---|
[466] | 361 | # Takes a log entry hash containing at least:
|
---|
[282] | 362 | # group_id, log entry
|
---|
[281] | 363 | # and optionally one or more of:
|
---|
| 364 | # domain_id, rdns_id
|
---|
[282] | 365 | # The %userdata hash provides the user ID, username, and fullname
|
---|
[281] | 366 | sub _log {
|
---|
[466] | 367 | my $self = shift;
|
---|
| 368 | my $dbh = $self->{dbh};
|
---|
[281] | 369 |
|
---|
| 370 | my %args = @_;
|
---|
| 371 |
|
---|
| 372 | $args{rdns_id} = 0 if !$args{rdns_id};
|
---|
| 373 | $args{domain_id} = 0 if !$args{domain_id};
|
---|
| 374 |
|
---|
| 375 | ##fixme: farm out the actual logging to different subs for file, syslog, internal, etc based on config
|
---|
| 376 | # if ($config{log_channel} eq 'sql') {
|
---|
| 377 | $dbh->do("INSERT INTO log (domain_id,rdns_id,group_id,entry,user_id,email,name) VALUES (?,?,?,?,?,?,?)",
|
---|
| 378 | undef,
|
---|
| 379 | ($args{domain_id}, $args{rdns_id}, $args{group_id}, $args{entry},
|
---|
| 380 | $userdata{userid}, $userdata{username}, $userdata{fullname}) );
|
---|
| 381 | # } elsif ($config{log_channel} eq 'file') {
|
---|
| 382 | # } elsif ($config{log_channel} eq 'syslog') {
|
---|
| 383 | # }
|
---|
| 384 | } # end _log
|
---|
| 385 |
|
---|
| 386 |
|
---|
[224] | 387 | ##
|
---|
[228] | 388 | ## Record validation subs.
|
---|
| 389 | ##
|
---|
| 390 |
|
---|
[281] | 391 | ## All of these subs take substantially the same arguments:
|
---|
| 392 | # a hash containing at least the following keys:
|
---|
| 393 | # - defrec (default/live flag)
|
---|
| 394 | # - revrec (forward/reverse flag)
|
---|
| 395 | # - id (parent entity ID)
|
---|
| 396 | # - host (hostname)
|
---|
| 397 | # - rectype
|
---|
| 398 | # - val (IP, hostname [CNAME/MX/SRV] or text)
|
---|
| 399 | # - addr (NetAddr::IP object from val. May be undef.)
|
---|
| 400 | # MX and SRV record validation also expect distance, and SRV records expect weight and port as well.
|
---|
| 401 | # host, rectype, and addr should be references as these may be modified in validation
|
---|
| 402 |
|
---|
[228] | 403 | # A record
|
---|
| 404 | sub _validate_1 {
|
---|
[467] | 405 | my $self = shift;
|
---|
| 406 | my $dbh = $self->{dbh};
|
---|
[229] | 407 |
|
---|
[230] | 408 | my %args = @_;
|
---|
[229] | 409 |
|
---|
[230] | 410 | return ('FAIL', 'Reverse zones cannot contain A records') if $args{revrec} eq 'y';
|
---|
[229] | 411 |
|
---|
| 412 | # Coerce all hostnames to end in ".DOMAIN" for group/default records,
|
---|
| 413 | # or the intended parent domain for live records.
|
---|
[467] | 414 | my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
|
---|
[230] | 415 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
[229] | 416 |
|
---|
| 417 | # Check IP is well-formed, and that it's a v4 address
|
---|
[234] | 418 | # Fail on "compact" IPv4 variants, because they are not consistent and predictable.
|
---|
[232] | 419 | return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv4 address")
|
---|
[234] | 420 | unless ${$args{val}} =~ /^\d+\.\d+\.\d+\.\d+$/;
|
---|
| 421 | return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv4 address")
|
---|
[230] | 422 | unless $args{addr} && !$args{addr}->{isv6};
|
---|
[229] | 423 | # coerce IP/value to normalized form for storage
|
---|
[230] | 424 | ${$args{val}} = $args{addr}->addr;
|
---|
[229] | 425 |
|
---|
[228] | 426 | return ('OK','OK');
|
---|
| 427 | } # done A record
|
---|
| 428 |
|
---|
| 429 | # NS record
|
---|
| 430 | sub _validate_2 {
|
---|
[467] | 431 | my $self = shift;
|
---|
| 432 | my $dbh = $self->{dbh};
|
---|
[230] | 433 |
|
---|
| 434 | my %args = @_;
|
---|
| 435 |
|
---|
[328] | 436 | # Check that the target of the record is within the parent.
|
---|
| 437 | # Yes, host<->val are mixed up here; can't see a way to avoid it. :(
|
---|
| 438 | if ($args{defrec} eq 'n') {
|
---|
| 439 | # Check if IP/address/zone/"subzone" is within the parent
|
---|
| 440 | if ($args{revrec} eq 'y') {
|
---|
| 441 | my $tmpip = NetAddr::IP->new(${$args{val}});
|
---|
[467] | 442 | my $pname = $self->revName($args{id});
|
---|
[328] | 443 | return ('FAIL',"${$args{val}} not within $pname")
|
---|
[467] | 444 | unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$tmpip);
|
---|
[328] | 445 | # Sub the returned thing for ZONE? This could get stupid if you have typos...
|
---|
| 446 | ${$args{val}} =~ s/ZONE/$tmpip->address/;
|
---|
| 447 | } else {
|
---|
[467] | 448 | my $pname = $self->domainName($args{id});
|
---|
[328] | 449 | ${$args{host}} = $pname if ${$args{host}} !~ /\.$pname$/;
|
---|
| 450 | }
|
---|
[230] | 451 | } else {
|
---|
[328] | 452 | # Default reverse NS records should always refer to the implied parent
|
---|
| 453 | ${$args{host}} = 'DOMAIN' if $args{revrec} eq 'n';
|
---|
| 454 | ${$args{val}} = 'ZONE' if $args{revrec} eq 'y';
|
---|
[230] | 455 | }
|
---|
| 456 |
|
---|
| 457 | # Let this lie for now. Needs more magic.
|
---|
| 458 | # # Check IP is well-formed, and that it's a v4 address
|
---|
| 459 | # return ('FAIL',"A record must be a valid IPv4 address")
|
---|
| 460 | # unless $addr && !$addr->{isv6};
|
---|
| 461 | # # coerce IP/value to normalized form for storage
|
---|
| 462 | # $$val = $addr->addr;
|
---|
| 463 |
|
---|
[228] | 464 | return ('OK','OK');
|
---|
| 465 | } # done NS record
|
---|
| 466 |
|
---|
| 467 | # CNAME record
|
---|
| 468 | sub _validate_5 {
|
---|
[467] | 469 | my $self = shift;
|
---|
| 470 | my $dbh = $self->{dbh};
|
---|
[230] | 471 |
|
---|
| 472 | my %args = @_;
|
---|
| 473 |
|
---|
| 474 | # Not really true, but these are only useful for delegating smaller-than-/24 IP blocks.
|
---|
| 475 | # This is fundamentally a messy operation and should really just be taken care of by the
|
---|
| 476 | # export process, not manual maintenance of the necessary records.
|
---|
| 477 | return ('FAIL', 'Reverse zones cannot contain CNAME records') if $args{revrec} eq 'y';
|
---|
| 478 |
|
---|
| 479 | # Coerce all hostnames to end in ".DOMAIN" for group/default records,
|
---|
| 480 | # or the intended parent domain for live records.
|
---|
[467] | 481 | my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
|
---|
[230] | 482 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
| 483 |
|
---|
[228] | 484 | return ('OK','OK');
|
---|
| 485 | } # done CNAME record
|
---|
| 486 |
|
---|
| 487 | # SOA record
|
---|
| 488 | sub _validate_6 {
|
---|
[230] | 489 | # Smart monkeys won't stick their fingers in here; we have
|
---|
| 490 | # separate dedicated routines to deal with SOA records.
|
---|
[228] | 491 | return ('OK','OK');
|
---|
| 492 | } # done SOA record
|
---|
| 493 |
|
---|
| 494 | # PTR record
|
---|
| 495 | sub _validate_12 {
|
---|
[467] | 496 | my $self = shift;
|
---|
| 497 | my $dbh = $self->{dbh};
|
---|
[232] | 498 |
|
---|
| 499 | my %args = @_;
|
---|
| 500 |
|
---|
| 501 | if ($args{revrec} eq 'y') {
|
---|
| 502 | if ($args{defrec} eq 'n') {
|
---|
[467] | 503 | return ('FAIL', "IP or IP fragment ${$args{val}} is not within ".$self->revName($args{id}))
|
---|
| 504 | unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$args{addr});
|
---|
[232] | 505 | ${$args{val}} = $args{addr}->addr;
|
---|
| 506 | } else {
|
---|
[234] | 507 | if (${$args{val}} =~ /\./) {
|
---|
| 508 | # looks like a v4 or fragment
|
---|
| 509 | if (${$args{val}} =~ /^\d+\.\d+\.\d+\.\d+$/) {
|
---|
| 510 | # woo! a complete IP! validate it and normalize, or fail.
|
---|
| 511 | $args{addr} = NetAddr::IP->new(${$args{val}})
|
---|
| 512 | or return ('FAIL', "IP/value looks like IPv4 but isn't valid");
|
---|
| 513 | ${$args{val}} = $args{addr}->addr;
|
---|
| 514 | } else {
|
---|
[249] | 515 | ${$args{val}} =~ s/^\.*/ZONE./ unless ${$args{val}} =~ /^ZONE/;
|
---|
[234] | 516 | }
|
---|
| 517 | } elsif (${$args{val}} =~ /[a-f:]/) {
|
---|
| 518 | # looks like a v6 or fragment
|
---|
[251] | 519 | ${$args{val}} =~ s/^:*/ZONE::/ if !$args{addr} && ${$args{val}} !~ /^ZONE/;
|
---|
[234] | 520 | if ($args{addr}) {
|
---|
| 521 | if ($args{addr}->addr =~ /^0/) {
|
---|
[251] | 522 | ${$args{val}} =~ s/^:*/ZONE::/ unless ${$args{val}} =~ /^ZONE/;
|
---|
[234] | 523 | } else {
|
---|
| 524 | ${$args{val}} = $args{addr}->addr;
|
---|
| 525 | }
|
---|
| 526 | }
|
---|
| 527 | } else {
|
---|
| 528 | # bare number (probably). These could be v4 or v6, so we'll
|
---|
| 529 | # expand on these on creation of a reverse zone.
|
---|
[251] | 530 | ${$args{val}} = "ZONE,${$args{val}}" unless ${$args{val}} =~ /^ZONE/;
|
---|
[234] | 531 | }
|
---|
[249] | 532 | ${$args{host}} =~ s/\.*$/\.$config{domain}/ if ${$args{host}} !~ /(?:$config{domain}|ADMINDOMAIN)$/;
|
---|
[232] | 533 | }
|
---|
| 534 |
|
---|
| 535 | # Multiple PTR records do NOT generally do what most people believe they do,
|
---|
| 536 | # and tend to fail in the most awkward way possible. Check and warn.
|
---|
| 537 | # We use $val instead of $addr->addr since we may be in a defrec, and may have eg "ZONE::42" or "ZONE.12"
|
---|
[249] | 538 |
|
---|
| 539 | my @checkvals = (${$args{val}});
|
---|
| 540 | if (${$args{val}} =~ /,/) {
|
---|
| 541 | # push . and :: variants into checkvals if val has ,
|
---|
| 542 | my $tmp;
|
---|
| 543 | ($tmp = ${$args{val}}) =~ s/,/./;
|
---|
| 544 | push @checkvals, $tmp;
|
---|
| 545 | ($tmp = ${$args{val}}) =~ s/,/::/;
|
---|
| 546 | push @checkvals, $tmp;
|
---|
| 547 | }
|
---|
| 548 | my $pcsth = $dbh->prepare("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec})." WHERE val = ?");
|
---|
| 549 | foreach my $checkme (@checkvals) {
|
---|
[272] | 550 | if ($args{update}) {
|
---|
| 551 | # Record update. There should usually be an existing PTR (the record being updated)
|
---|
| 552 | my @ptrs = @{ $dbh->selectcol_arrayref("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 553 | " WHERE val = ?", undef, ($checkme)) };
|
---|
| 554 | return ('WARN', "PTR record for $checkme already exists; adding another will probably not do what you want")
|
---|
[273] | 555 | if @ptrs && (!grep /^$args{update}$/, @ptrs);
|
---|
[272] | 556 | } else {
|
---|
| 557 | # New record. Always warn if a PTR exists
|
---|
| 558 | my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 559 | " WHERE val = ?", undef, ($checkme));
|
---|
| 560 | return ('WARN', "PTR record for $checkme already exists; adding another will probably not do what you want")
|
---|
| 561 | if $ptrcount;
|
---|
| 562 | }
|
---|
[249] | 563 | }
|
---|
[272] | 564 |
|
---|
[232] | 565 | } else {
|
---|
| 566 | # Not absolutely true but only useful if you hack things up for sub-/24 v4 reverse delegations
|
---|
| 567 | # Simpler to just create the reverse zone and grant access for the customer to edit it, and create direct
|
---|
| 568 | # PTR records on export
|
---|
| 569 | return ('FAIL',"Forward zones cannot contain PTR records");
|
---|
| 570 | }
|
---|
| 571 |
|
---|
[228] | 572 | return ('OK','OK');
|
---|
| 573 | } # done PTR record
|
---|
| 574 |
|
---|
| 575 | # MX record
|
---|
| 576 | sub _validate_15 {
|
---|
[467] | 577 | my $self = shift;
|
---|
| 578 | my $dbh = $self->{dbh};
|
---|
[230] | 579 |
|
---|
| 580 | my %args = @_;
|
---|
| 581 |
|
---|
| 582 | # Not absolutely true but WTF use is an MX record for a reverse zone?
|
---|
| 583 | return ('FAIL', 'Reverse zones cannot contain MX records') if $args{revrec} eq 'y';
|
---|
| 584 |
|
---|
| 585 | return ('FAIL', "Distance is required for MX records") unless defined(${$args{dist}});
|
---|
| 586 | ${$args{dist}} =~ s/\s*//g;
|
---|
| 587 | return ('FAIL',"Distance is required, and must be numeric") unless ${$args{dist}} =~ /^\d+$/;
|
---|
| 588 |
|
---|
| 589 | ${$args{fields}} = "distance,";
|
---|
| 590 | push @{$args{vallist}}, ${$args{dist}};
|
---|
| 591 |
|
---|
| 592 | # Coerce all hostnames to end in ".DOMAIN" for group/default records,
|
---|
| 593 | # or the intended parent domain for live records.
|
---|
[467] | 594 | my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
|
---|
[230] | 595 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
| 596 |
|
---|
[273] | 597 | # hmm.. this might work. except possibly for something pointing to "deadbeef.ca". <g>
|
---|
| 598 | # if ($type == $reverse_typemap{NS} || $type == $reverse_typemap{MX} || $type == $reverse_typemap{SRV}) {
|
---|
| 599 | # if ($val =~ /^\s*[\da-f:.]+\s*$/) {
|
---|
| 600 | # return ('FAIL',"$val is not a valid IP address") if !$addr;
|
---|
| 601 | # }
|
---|
| 602 | # }
|
---|
| 603 |
|
---|
[228] | 604 | return ('OK','OK');
|
---|
| 605 | } # done MX record
|
---|
| 606 |
|
---|
| 607 | # TXT record
|
---|
| 608 | sub _validate_16 {
|
---|
[231] | 609 | # Could arguably put a WARN return here on very long (>512) records
|
---|
[228] | 610 | return ('OK','OK');
|
---|
| 611 | } # done TXT record
|
---|
| 612 |
|
---|
| 613 | # RP record
|
---|
| 614 | sub _validate_17 {
|
---|
[231] | 615 | # Probably have to validate these some day
|
---|
[228] | 616 | return ('OK','OK');
|
---|
| 617 | } # done RP record
|
---|
| 618 |
|
---|
| 619 | # AAAA record
|
---|
| 620 | sub _validate_28 {
|
---|
[467] | 621 | my $self = shift;
|
---|
| 622 | my $dbh = $self->{dbh};
|
---|
[229] | 623 |
|
---|
[230] | 624 | my %args = @_;
|
---|
[229] | 625 |
|
---|
[230] | 626 | return ('FAIL', 'Reverse zones cannot contain AAAA records') if $args{revrec} eq 'y';
|
---|
[229] | 627 |
|
---|
| 628 | # Coerce all hostnames to end in ".DOMAIN" for group/default records,
|
---|
| 629 | # or the intended parent domain for live records.
|
---|
[467] | 630 | my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
|
---|
[230] | 631 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
[229] | 632 |
|
---|
| 633 | # Check IP is well-formed, and that it's a v6 address
|
---|
[232] | 634 | return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv6 address")
|
---|
[230] | 635 | unless $args{addr} && $args{addr}->{isv6};
|
---|
[229] | 636 | # coerce IP/value to normalized form for storage
|
---|
[230] | 637 | ${$args{val}} = $args{addr}->addr;
|
---|
[229] | 638 |
|
---|
[228] | 639 | return ('OK','OK');
|
---|
| 640 | } # done AAAA record
|
---|
| 641 |
|
---|
| 642 | # SRV record
|
---|
| 643 | sub _validate_33 {
|
---|
[467] | 644 | my $self = shift;
|
---|
| 645 | my $dbh = $self->{dbh};
|
---|
[231] | 646 |
|
---|
| 647 | my %args = @_;
|
---|
| 648 |
|
---|
| 649 | # Not absolutely true but WTF use is an SRV record for a reverse zone?
|
---|
| 650 | return ('FAIL', 'Reverse zones cannot contain SRV records') if $args{revrec} eq 'y';
|
---|
| 651 |
|
---|
| 652 | return ('FAIL', "Distance is required for SRV records") unless defined(${$args{dist}});
|
---|
| 653 | ${$args{dist}} =~ s/\s*//g;
|
---|
| 654 | return ('FAIL',"Distance is required, and must be numeric") unless ${$args{dist}} =~ /^\d+$/;
|
---|
| 655 |
|
---|
| 656 | return ('FAIL',"SRV records must begin with _service._protocol [${$args{host}}]")
|
---|
| 657 | unless ${$args{host}} =~ /^_[A-Za-z]+\._[A-Za-z]+\.[a-zA-Z0-9-]+/;
|
---|
| 658 | return ('FAIL',"Port and weight are required for SRV records")
|
---|
| 659 | unless defined(${$args{weight}}) && defined(${$args{port}});
|
---|
| 660 | ${$args{weight}} =~ s/\s*//g;
|
---|
| 661 | ${$args{port}} =~ s/\s*//g;
|
---|
| 662 |
|
---|
| 663 | return ('FAIL',"Port and weight are required, and must be numeric")
|
---|
| 664 | unless ${$args{weight}} =~ /^\d+$/ && ${$args{port}} =~ /^\d+$/;
|
---|
| 665 |
|
---|
| 666 | ${$args{fields}} = "distance,weight,port,";
|
---|
| 667 | push @{$args{vallist}}, (${$args{dist}}, ${$args{weight}}, ${$args{port}});
|
---|
| 668 |
|
---|
| 669 | # Coerce all hostnames to end in ".DOMAIN" for group/default records,
|
---|
| 670 | # or the intended parent domain for live records.
|
---|
[467] | 671 | my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
|
---|
[231] | 672 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
| 673 |
|
---|
[228] | 674 | return ('OK','OK');
|
---|
| 675 | } # done SRV record
|
---|
| 676 |
|
---|
| 677 | # Now the custom types
|
---|
| 678 |
|
---|
[232] | 679 | # A+PTR record. With a very little bit of magic we can also use this sub to validate AAAA+PTR. Whee!
|
---|
[228] | 680 | sub _validate_65280 {
|
---|
[467] | 681 | my $self = shift;
|
---|
| 682 | my $dbh = $self->{dbh};
|
---|
[232] | 683 |
|
---|
| 684 | my %args = @_;
|
---|
| 685 |
|
---|
| 686 | my $code = 'OK';
|
---|
| 687 | my $msg = 'OK';
|
---|
| 688 |
|
---|
| 689 | if ($args{defrec} eq 'n') {
|
---|
| 690 | # live record; revrec determines whether we validate the PTR or A component first.
|
---|
[233] | 691 |
|
---|
[232] | 692 | if ($args{revrec} eq 'y') {
|
---|
[467] | 693 | ($code,$msg) = $self->_validate_12(%args);
|
---|
[232] | 694 | return ($code,$msg) if $code eq 'FAIL';
|
---|
| 695 |
|
---|
[467] | 696 | # check A+PTR is really v4
|
---|
| 697 | return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv4 address")
|
---|
| 698 | if ${$args{rectype}} == 65280 && $args{addr}->{isv6};
|
---|
| 699 | # check AAAA+PTR is really v6
|
---|
| 700 | return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv6 address")
|
---|
| 701 | if ${$args{rectype}} == 65281 && !$args{addr}->{isv6};
|
---|
| 702 |
|
---|
[232] | 703 | # Check if the reqested domain exists. If not, coerce the type down to PTR and warn.
|
---|
[467] | 704 | if (!(${$args{domid}} = $self->_hostparent(${$args{host}}))) {
|
---|
[272] | 705 | my $addmsg = "Record ".($args{update} ? 'updated' : 'added').
|
---|
| 706 | " as PTR instead of $typemap{${$args{rectype}}}; domain not found for ${$args{host}}";
|
---|
[232] | 707 | $msg .= "\n$addmsg" if $code eq 'WARN';
|
---|
| 708 | $msg = $addmsg if $code eq 'OK';
|
---|
| 709 | ${$args{rectype}} = $reverse_typemap{PTR};
|
---|
| 710 | return ('WARN', $msg);
|
---|
| 711 | }
|
---|
| 712 |
|
---|
[242] | 713 | # Add domain ID to field list and values
|
---|
| 714 | ${$args{fields}} .= "domain_id,";
|
---|
| 715 | push @{$args{vallist}}, ${$args{domid}};
|
---|
| 716 |
|
---|
[232] | 717 | } else {
|
---|
[467] | 718 | ($code,$msg) = $self->_validate_1(%args) if ${$args{rectype}} == 65280;
|
---|
| 719 | ($code,$msg) = $self->_validate_28(%args) if ${$args{rectype}} == 65281;
|
---|
[232] | 720 | return ($code,$msg) if $code eq 'FAIL';
|
---|
| 721 |
|
---|
| 722 | # Check if the requested reverse zone exists - note, an IP fragment won't
|
---|
| 723 | # work here since we don't *know* which parent to put it in.
|
---|
[233] | 724 | # ${$args{val}} has been validated as a valid IP by now, in one of the above calls.
|
---|
[232] | 725 | my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet >> ?".
|
---|
| 726 | " ORDER BY masklen(revnet) DESC", undef, (${$args{val}}));
|
---|
| 727 | if (!$revid) {
|
---|
[272] | 728 | $msg = "Record ".($args{update} ? 'updated' : 'added')." as ".(${$args{rectype}} == 65280 ? 'A' : 'AAAA').
|
---|
[232] | 729 | " instead of $typemap{${$args{rectype}}}; reverse zone not found for ${$args{val}}";
|
---|
| 730 | ${$args{rectype}} = (${$args{rectype}} == 65280 ? $reverse_typemap{A} : $reverse_typemap{AAAA});
|
---|
| 731 | return ('WARN', $msg);
|
---|
| 732 | }
|
---|
| 733 |
|
---|
| 734 | # Check for duplicate PTRs. Note we don't have to play games with $code and $msg, because
|
---|
| 735 | # by definition there can't be duplicate PTRs if the reverse zone isn't managed here.
|
---|
[272] | 736 | if ($args{update}) {
|
---|
| 737 | # Record update. There should usually be an existing PTR (the record being updated)
|
---|
| 738 | my @ptrs = @{ $dbh->selectcol_arrayref("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 739 | " WHERE val = ?", undef, (${$args{val}})) };
|
---|
[273] | 740 | if (@ptrs && (!grep /^$args{update}$/, @ptrs)) {
|
---|
[272] | 741 | $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want";
|
---|
| 742 | $code = 'WARN';
|
---|
| 743 | }
|
---|
| 744 | } else {
|
---|
| 745 | # New record. Always warn if a PTR exists
|
---|
| 746 | my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 747 | " WHERE val = ?", undef, (${$args{val}}));
|
---|
| 748 | $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want"
|
---|
| 749 | if $ptrcount;
|
---|
| 750 | $code = 'WARN' if $ptrcount;
|
---|
[232] | 751 | }
|
---|
| 752 |
|
---|
[272] | 753 | # my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 754 | # " WHERE val = ?", undef, ${$args{val}});
|
---|
| 755 | # if ($ptrcount) {
|
---|
| 756 | # my $curid = $dbh->selectrow_array("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
|
---|
| 757 | # " WHERE val = ?
|
---|
| 758 | # $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want";
|
---|
| 759 | # $code = 'WARN';
|
---|
| 760 | # }
|
---|
| 761 |
|
---|
[232] | 762 | ${$args{fields}} .= "rdns_id,";
|
---|
| 763 | push @{$args{vallist}}, $revid;
|
---|
| 764 | }
|
---|
| 765 |
|
---|
[233] | 766 | } else { # defrec eq 'y'
|
---|
| 767 | if ($args{revrec} eq 'y') {
|
---|
[467] | 768 | ($code,$msg) = $self->_validate_12(%args);
|
---|
[233] | 769 | return ($code,$msg) if $code eq 'FAIL';
|
---|
| 770 | if (${$args{rectype}} == 65280) {
|
---|
| 771 | return ('FAIL',"A+PTR record must be a valid IPv4 address or fragment")
|
---|
| 772 | if ${$args{val}} =~ /:/;
|
---|
[234] | 773 | ${$args{val}} =~ s/^ZONE,/ZONE./; # Clean up after uncertain IP-fragment-type from _validate_12
|
---|
[233] | 774 | } elsif (${$args{rectype}} == 65281) {
|
---|
| 775 | return ('FAIL',"AAAA+PTR record must be a valid IPv6 address or fragment")
|
---|
| 776 | if ${$args{val}} =~ /\./;
|
---|
[234] | 777 | ${$args{val}} =~ s/^ZONE,/ZONE::/; # Clean up after uncertain IP-fragment-type from _validate_12
|
---|
[233] | 778 | }
|
---|
| 779 | } else {
|
---|
| 780 | # This is easy. I also can't see a real use-case for A/AAAA+PTR in *all* forward
|
---|
| 781 | # domains, since you wouldn't be able to substitute both domain and reverse zone
|
---|
| 782 | # sanely, and you'd end up with guaranteed over-replicated PTR records that would
|
---|
| 783 | # confuse the hell out of pretty much anything that uses them.
|
---|
[234] | 784 | ##fixme: make this a config flag?
|
---|
[233] | 785 | return ('FAIL', "$typemap{${$args{rectype}}} records not allowed in default domains");
|
---|
| 786 | }
|
---|
[232] | 787 | }
|
---|
| 788 |
|
---|
| 789 | return ($code, $msg);
|
---|
[228] | 790 | } # done A+PTR record
|
---|
| 791 |
|
---|
| 792 | # AAAA+PTR record
|
---|
[232] | 793 | # A+PTR above has been magicked to handle AAAA+PTR as well.
|
---|
[228] | 794 | sub _validate_65281 {
|
---|
[232] | 795 | return _validate_65280(@_);
|
---|
[228] | 796 | } # done AAAA+PTR record
|
---|
| 797 |
|
---|
| 798 | # PTR template record
|
---|
| 799 | sub _validate_65282 {
|
---|
[467] | 800 | my $self = shift;
|
---|
| 801 | my $dbh = $self->{dbh};
|
---|
[340] | 802 |
|
---|
| 803 | my %args = @_;
|
---|
| 804 |
|
---|
| 805 | # we're *this* >.< close to being able to just call _validate_12... unfortunately we can't, quite.
|
---|
| 806 | if ($args{revrec} eq 'y') {
|
---|
| 807 | if ($args{defrec} eq 'n') {
|
---|
[467] | 808 | return ('FAIL', "Template block ${$args{val}} is not within ".$self->revName($args{id}))
|
---|
| 809 | unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$args{addr});
|
---|
[340] | 810 | ##fixme: warn if $args{val} is not /31 or larger block?
|
---|
| 811 | ${$args{val}} = "$args{addr}";
|
---|
| 812 | } else {
|
---|
| 813 | if (${$args{val}} =~ /\./) {
|
---|
| 814 | # looks like a v4 or fragment
|
---|
| 815 | if (${$args{val}} =~ m|^\d+\.\d+\.\d+\.\d+(?:/\d+)?$|) {
|
---|
| 816 | # woo! a complete IP! validate it and normalize, or fail.
|
---|
| 817 | $args{addr} = NetAddr::IP->new(${$args{val}})
|
---|
| 818 | or return ('FAIL', "IP/value looks like IPv4 but isn't valid");
|
---|
| 819 | ${$args{val}} = "$args{addr}";
|
---|
| 820 | } else {
|
---|
| 821 | ${$args{val}} =~ s/^\.*/ZONE./ unless ${$args{val}} =~ /^ZONE/;
|
---|
| 822 | }
|
---|
| 823 | } elsif (${$args{val}} =~ /[a-f:]/) {
|
---|
| 824 | # looks like a v6 or fragment
|
---|
| 825 | ${$args{val}} =~ s/^:*/ZONE::/ if !$args{addr} && ${$args{val}} !~ /^ZONE/;
|
---|
| 826 | if ($args{addr}) {
|
---|
| 827 | if ($args{addr}->addr =~ /^0/) {
|
---|
| 828 | ${$args{val}} =~ s/^:*/ZONE::/ unless ${$args{val}} =~ /^ZONE/;
|
---|
| 829 | } else {
|
---|
| 830 | ${$args{val}} = "$args{addr}";
|
---|
| 831 | }
|
---|
| 832 | }
|
---|
| 833 | } else {
|
---|
| 834 | # bare number (probably). These could be v4 or v6, so we'll
|
---|
| 835 | # expand on these on creation of a reverse zone.
|
---|
| 836 | ${$args{val}} = "ZONE,${$args{val}}" unless ${$args{val}} =~ /^ZONE/;
|
---|
| 837 | }
|
---|
| 838 | }
|
---|
| 839 | ##fixme: validate %-patterns?
|
---|
| 840 |
|
---|
| 841 | # Unlike single PTR records, there is absolutely no way to sanely support multiple
|
---|
| 842 | # PTR templates for the same block, since they expect to expand to all the individual
|
---|
| 843 | # IPs on export. Nested templates should be supported though.
|
---|
| 844 |
|
---|
| 845 | my @checkvals = (${$args{val}});
|
---|
| 846 | if (${$args{val}} =~ /,/) {
|
---|
| 847 | # push . and :: variants into checkvals if val has ,
|
---|
| 848 | my $tmp;
|
---|
| 849 | ($tmp = ${$args{val}}) =~ s/,/./;
|
---|
| 850 | push @checkvals, $tmp;
|
---|
| 851 | ($tmp = ${$args{val}}) =~ s/,/::/;
|
---|
| 852 | push @checkvals, $tmp;
|
---|
| 853 | }
|
---|
| 854 | ##fixme: this feels wrong still - need to restrict template pseudorecords to One Of Each
|
---|
| 855 | # Per Netblock such that they don't conflict on export
|
---|
| 856 | my $typeck;
|
---|
| 857 | # type 65282 -> ptr template -> look for any of 65282, 65283, 65284
|
---|
| 858 | $typeck = 'type=65283 OR type=65284' if ${$args{rectype}} == 65282;
|
---|
| 859 | # type 65283 -> a+ptr template -> v4 -> look for 65282 or 65283
|
---|
| 860 | $typeck = 'type=65283' if ${$args{rectype}} == 65282;
|
---|
| 861 | # type 65284 -> aaaa+ptr template -> v6 -> look for 65282 or 65284
|
---|
| 862 | $typeck = 'type=65284' if ${$args{rectype}} == 65282;
|
---|
| 863 | my $pcsth = $dbh->prepare("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec})." WHERE val = ? ".
|
---|
| 864 | "AND (type=65282 OR $typeck)");
|
---|
| 865 | foreach my $checkme (@checkvals) {
|
---|
| 866 | $pcsth->execute($checkme);
|
---|
| 867 | my ($rc) = $pcsth->fetchrow_array;
|
---|
[442] | 868 | return ('FAIL', "Only one template pseudorecord may exist for a given IP block") if $rc > 1;
|
---|
[340] | 869 | }
|
---|
| 870 |
|
---|
| 871 | } else {
|
---|
| 872 | return ('FAIL', "Forward zones cannot contain PTR records");
|
---|
| 873 | }
|
---|
| 874 |
|
---|
[228] | 875 | return ('OK','OK');
|
---|
| 876 | } # done PTR template record
|
---|
| 877 |
|
---|
| 878 | # A+PTR template record
|
---|
| 879 | sub _validate_65283 {
|
---|
[467] | 880 | my $self = shift;
|
---|
| 881 | my $dbh = $self->{dbh};
|
---|
[340] | 882 |
|
---|
| 883 | my %args = @_;
|
---|
| 884 |
|
---|
| 885 | my ($code,$msg) = ('OK','OK');
|
---|
| 886 |
|
---|
| 887 | ##fixme: need to fiddle things since A+PTR templates are acceptable in live
|
---|
| 888 | # forward zones but not default records
|
---|
| 889 | if ($args{defrec} eq 'n') {
|
---|
| 890 | if ($args{revrec} eq 'n') {
|
---|
[467] | 891 | ($code,$msg) = $self->_validate_1(%args) if ${$args{rectype}} == 65280;
|
---|
| 892 | ($code,$msg) = $self->_validate_28(%args) if ${$args{rectype}} == 65281;
|
---|
[340] | 893 | return ($code,$msg) if $code eq 'FAIL';
|
---|
| 894 |
|
---|
| 895 | # Check if the requested reverse zone exists - note, an IP fragment won't
|
---|
| 896 | # work here since we don't *know* which parent to put it in.
|
---|
| 897 | # ${$args{val}} has been validated as a valid IP by now, in one of the above calls.
|
---|
| 898 | my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet >> ?".
|
---|
| 899 | " ORDER BY masklen(revnet) DESC", undef, (${$args{val}}));
|
---|
| 900 | # Fail if no match; we can't coerce a PTR-template type down to not include the PTR bit currently.
|
---|
| 901 | if (!$revid) {
|
---|
| 902 | $msg = "Can't ".($args{update} ? 'update' : 'add')." ${$args{host}}/${$args{val}} as ".
|
---|
| 903 | "$typemap{${$args{rectype}}}: reverse zone not found for ${$args{val}}";
|
---|
| 904 | ##fixme: add A template, AAAA template types?
|
---|
| 905 | # ${$args{rectype}} = (${$args{rectype}} == 65280 ? $reverse_typemap{A} : $reverse_typemap{AAAA});
|
---|
| 906 | return ('FAIL', $msg);
|
---|
| 907 | }
|
---|
| 908 |
|
---|
| 909 | # Add reverse zone ID to field list and values
|
---|
| 910 | ${$args{fields}} .= "rdns_id,";
|
---|
| 911 | push @{$args{vallist}}, $revid;
|
---|
| 912 |
|
---|
| 913 | } else {
|
---|
[467] | 914 | return ('FAIL', "IP or IP fragment ${$args{val}} is not within ".$self->revName($args{id}))
|
---|
| 915 | unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$args{addr});
|
---|
[340] | 916 | ${$args{val}} = "$args{addr}";
|
---|
| 917 |
|
---|
[467] | 918 | if (!(${$args{domid}} = $self->_hostparent(${$args{host}}))) {
|
---|
[340] | 919 | my $addmsg = "Record ".($args{update} ? 'updated' : 'added').
|
---|
| 920 | " as PTR template instead of $typemap{${$args{rectype}}}; domain not found for ${$args{host}}";
|
---|
| 921 | $msg .= "\n$addmsg" if $code eq 'WARN';
|
---|
| 922 | $msg = $addmsg if $code eq 'OK';
|
---|
| 923 | ${$args{rectype}} = 65282;
|
---|
| 924 | return ('WARN', $msg);
|
---|
| 925 | }
|
---|
| 926 |
|
---|
| 927 | # Add domain ID to field list and values
|
---|
| 928 | ${$args{fields}} .= "domain_id,";
|
---|
| 929 | push @{$args{vallist}}, ${$args{domid}};
|
---|
| 930 | }
|
---|
| 931 |
|
---|
| 932 | } else {
|
---|
[467] | 933 | my ($code,$msg) = $self->_validate_65282(%args);
|
---|
[340] | 934 | return ($code, $msg) if $code eq 'FAIL';
|
---|
| 935 | # get domain, check against ${$args{name}}
|
---|
| 936 | }
|
---|
| 937 |
|
---|
[228] | 938 | return ('OK','OK');
|
---|
| 939 | } # done AAAA+PTR template record
|
---|
| 940 |
|
---|
| 941 | # AAAA+PTR template record
|
---|
| 942 | sub _validate_65284 {
|
---|
| 943 | return ('OK','OK');
|
---|
| 944 | } # done AAAA+PTR template record
|
---|
| 945 |
|
---|
[342] | 946 | # Delegation record
|
---|
[345] | 947 | # This is essentially a specialized clone of the NS record, primarily useful
|
---|
| 948 | # for delegating IPv4 sub-/24 reverse blocks
|
---|
[342] | 949 | sub _validate_65285 {
|
---|
[467] | 950 | my $self = shift;
|
---|
| 951 | my $dbh = $self->{dbh};
|
---|
[345] | 952 |
|
---|
| 953 | my %args = @_;
|
---|
| 954 |
|
---|
| 955 | # Almost, but not quite, identical to NS record validation.
|
---|
| 956 |
|
---|
| 957 | # Check that the target of the record is within the parent.
|
---|
| 958 | # Yes, host<->val are mixed up here; can't see a way to avoid it. :(
|
---|
| 959 | if ($args{defrec} eq 'n') {
|
---|
| 960 | # Check if IP/address/zone/"subzone" is within the parent
|
---|
| 961 | if ($args{revrec} eq 'y') {
|
---|
| 962 | my $tmpip = NetAddr::IP->new(${$args{val}});
|
---|
[467] | 963 | my $pname = $self->revName($args{id});
|
---|
[345] | 964 | return ('FAIL',"${$args{val}} not within $pname")
|
---|
[467] | 965 | unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$tmpip);
|
---|
[345] | 966 | # Normalize
|
---|
| 967 | ${$args{val}} = "$tmpip";
|
---|
| 968 | } else {
|
---|
[467] | 969 | my $pname = $self->domainName($args{id});
|
---|
[345] | 970 | ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
|
---|
| 971 | }
|
---|
| 972 | } else {
|
---|
| 973 | return ('FAIL',"Delegation records are not permitted in default record sets");
|
---|
| 974 | }
|
---|
[342] | 975 | return ('OK','OK');
|
---|
| 976 | }
|
---|
[228] | 977 |
|
---|
[342] | 978 |
|
---|
[265] | 979 | ##
|
---|
| 980 | ## Record data substitution subs
|
---|
| 981 | ##
|
---|
[228] | 982 |
|
---|
[298] | 983 | # Replace ZONE in hostname, or create (most of) the actual proper zone name
|
---|
[265] | 984 | sub _ZONE {
|
---|
| 985 | my $zone = shift;
|
---|
| 986 | my $string = shift;
|
---|
| 987 | my $fr = shift || 'f'; # flag for forward/reverse order? nb: ignored for IP
|
---|
[298] | 988 | my $sep = shift || '-'; # Separator character - unlikely we'll ever need more than . or -
|
---|
[265] | 989 |
|
---|
[298] | 990 | my $prefix;
|
---|
[265] | 991 |
|
---|
| 992 | $string =~ s/,/./ if !$zone->{isv6};
|
---|
| 993 | $string =~ s/,/::/ if $zone->{isv6};
|
---|
| 994 |
|
---|
[298] | 995 | # Subbing ZONE in the host. We need to properly ID the netblock range
|
---|
| 996 | # The subbed text should have "network IP with trailing zeros stripped" for
|
---|
| 997 | # blocks lined up on octet (for v4) or hex-quad (for v6) boundaries
|
---|
| 998 | # For blocks that do NOT line up on these boundaries, we take the most
|
---|
| 999 | # significant octet or 16-bit chunk of the "broadcast" IP and append it
|
---|
| 1000 | # after a double-dash
|
---|
| 1001 | # ie:
|
---|
| 1002 | # 8.0.0.0/6 -> 8.0.0.0 -> 11.255.255.255; sub should be 8--11
|
---|
| 1003 | # 10.0.0.0/12 -> 10.0.0.0 -> 10.0.0.0 -> 10.15.255.255; sub should be 10-0--15
|
---|
| 1004 | # 192.168.4.0/22 -> 192.168.4.0 -> 192.168.7.255; sub should be 192-168-4--7
|
---|
| 1005 | # 192.168.0.8/29 -> 192.168.0.8 -> 192.168.0.15; sub should be 192-168-0-8--15
|
---|
| 1006 | # Similar for v6
|
---|
[265] | 1007 |
|
---|
[298] | 1008 | if (!$zone->{isv6}) { # IPv4
|
---|
| 1009 |
|
---|
| 1010 | $prefix = $zone->network->addr; # Just In Case someone managed to slip in
|
---|
| 1011 | # a funky subnet that had host bits set.
|
---|
| 1012 | my $bc = $zone->broadcast->addr;
|
---|
| 1013 |
|
---|
| 1014 | if ($zone->masklen > 24) {
|
---|
| 1015 | $bc =~ s/^\d+\.\d+\.\d+\.//;
|
---|
| 1016 | } elsif ($zone->masklen > 16) {
|
---|
| 1017 | $prefix =~ s/\.0$//;
|
---|
| 1018 | $bc =~ s/^\d+\.\d+\.//;
|
---|
| 1019 | } elsif ($zone->masklen > 8) {
|
---|
| 1020 | $bc =~ s/^\d+\.//;
|
---|
| 1021 | $prefix =~ s/\.0\.0$//;
|
---|
| 1022 | } else {
|
---|
| 1023 | $prefix =~ s/\.0\.0\.0$//;
|
---|
| 1024 | }
|
---|
| 1025 | if ($zone->masklen % 8) {
|
---|
| 1026 | $bc =~ s/(\.255)+$//;
|
---|
| 1027 | $prefix .= "--$bc"; #"--".zone->masklen; # use range or mask length?
|
---|
| 1028 | }
|
---|
| 1029 | if ($fr eq 'f') {
|
---|
| 1030 | $prefix =~ s/\.+/$sep/g;
|
---|
| 1031 | } else {
|
---|
| 1032 | $prefix = join($sep, reverse(split(/\./, $prefix)));
|
---|
| 1033 | }
|
---|
| 1034 |
|
---|
| 1035 | } else { # IPv6
|
---|
| 1036 |
|
---|
| 1037 | if ($fr eq 'f') {
|
---|
| 1038 |
|
---|
| 1039 | $prefix = $zone->network->addr; # Just In Case someone managed to slip in
|
---|
| 1040 | # a funky subnet that had host bits set.
|
---|
[265] | 1041 | my $bc = $zone->broadcast->addr;
|
---|
| 1042 | if (($zone->masklen % 16) != 0) {
|
---|
[298] | 1043 | # Strip trailing :0 off $prefix, and :ffff off the broadcast IP
|
---|
| 1044 | for (my $i=0; $i<(7-int($zone->masklen / 16)); $i++) {
|
---|
| 1045 | $prefix =~ s/:0$//;
|
---|
| 1046 | $bc =~ s/:ffff$//;
|
---|
| 1047 | }
|
---|
| 1048 | # Strip the leading 16-bit chunks off the front of the broadcast IP
|
---|
| 1049 | $bc =~ s/^([a-f0-9]+:)+//;
|
---|
| 1050 | # Append the remaining 16-bit chunk to the prefix after "--"
|
---|
| 1051 | $prefix .= "--$bc";
|
---|
[265] | 1052 | } else {
|
---|
[298] | 1053 | # Strip off :0 from the end until we reach the netblock length.
|
---|
| 1054 | for (my $i=0; $i<(8-$zone->masklen / 16); $i++) {
|
---|
[265] | 1055 | $prefix =~ s/:0$//;
|
---|
[298] | 1056 | }
|
---|
[265] | 1057 | }
|
---|
[298] | 1058 | # Actually deal with the separator
|
---|
| 1059 | $prefix =~ s/:/$sep/g;
|
---|
| 1060 |
|
---|
| 1061 | } else { # $fr eq 'f'
|
---|
| 1062 |
|
---|
| 1063 | $prefix = $zone->network->full; # Just In Case someone managed to slip in
|
---|
| 1064 | # a funky subnet that had host bits set.
|
---|
| 1065 | my $bc = $zone->broadcast->full;
|
---|
| 1066 | $prefix =~ s/://g; # clean these out since they're not spaced right for this case
|
---|
| 1067 | $bc =~ s/://g;
|
---|
| 1068 | # Strip trailing 0 off $prefix, and f off the broadcast IP, to match the mask length
|
---|
| 1069 | for (my $i=0; $i<(31-int($zone->masklen / 4)); $i++) {
|
---|
| 1070 | $prefix =~ s/0$//;
|
---|
| 1071 | $bc =~ s/f$//;
|
---|
| 1072 | }
|
---|
| 1073 | # Split and reverse the order of the nibbles in the network/broadcast IPs
|
---|
[332] | 1074 | # trim another 0 for nibble-aligned blocks first, but only if we really have a block, not an IP
|
---|
| 1075 | $prefix =~ s/0$// if $zone->masklen % 4 == 0 && $zone->masklen != 128;
|
---|
[298] | 1076 | my @nbits = reverse split //, $prefix;
|
---|
| 1077 | my @bbits = reverse split //, $bc;
|
---|
| 1078 | # Handle the sub-nibble case. Eww. I feel dirty supporting this...
|
---|
| 1079 | $nbits[0] = "$nbits[0]-$bbits[0]" if ($zone->masklen % 4) != 0;
|
---|
| 1080 | # Glue it back together
|
---|
| 1081 | $prefix = join($sep, @nbits);
|
---|
| 1082 |
|
---|
| 1083 | } # $fr ne 'f'
|
---|
| 1084 |
|
---|
| 1085 | } # $zone->{isv6}
|
---|
| 1086 |
|
---|
| 1087 | # Do the substitution, finally
|
---|
| 1088 | $string =~ s/ZONE/$prefix/;
|
---|
| 1089 | $string =~ s/--/-/ if $sep ne '-'; # - as separator needs extra help for sub-octet v4 netblocks
|
---|
| 1090 | return $string;
|
---|
| 1091 | } # done _ZONE()
|
---|
| 1092 |
|
---|
| 1093 | # Not quite a substitution sub, but placed here as it's basically the inverse of above;
|
---|
| 1094 | # given the .arpa zone name, return the CIDR netblock the zone is for.
|
---|
[304] | 1095 | # Supports v4 non-octet/non-classful netblocks as per the method outlined in the Grasshopper Book (2nd Ed p217-218)
|
---|
[298] | 1096 | # Does NOT support non-quad v6 netblocks via the same scheme; it shouldn't ever be necessary.
|
---|
| 1097 | # Takes a nominal .arpa zone name, returns a success code and NetAddr::IP, or a fail code and message
|
---|
| 1098 | sub _zone2cidr {
|
---|
| 1099 | my $zone = shift;
|
---|
| 1100 |
|
---|
| 1101 | my $cidr;
|
---|
[301] | 1102 | my $tmpcidr;
|
---|
| 1103 | my $warnmsg = '';
|
---|
[298] | 1104 |
|
---|
| 1105 | if ($zone =~ /\.in-addr\.arpa\.?$/) {
|
---|
| 1106 | # v4 revzone, formal zone name type
|
---|
| 1107 | my $tmpzone = $zone;
|
---|
| 1108 | $tmpzone =~ s/\.in-addr\.arpa\.?//;
|
---|
[301] | 1109 | return ('FAIL', "Non-numerics in apparent IPv4 reverse zone name") if $tmpzone !~ /^(?:\d+-)?[\d\.]+$/;
|
---|
[298] | 1110 |
|
---|
| 1111 | # Snag the octet pieces
|
---|
| 1112 | my @octs = split /\./, $tmpzone;
|
---|
| 1113 |
|
---|
| 1114 | # Map result of a range manipulation to a mask length change. Cheaper than finding the 2-root of $octets[0]+1.
|
---|
[304] | 1115 | # Note we will not support /31 blocks, mostly due to issues telling "24-31" -> .24/29 apart from
|
---|
| 1116 | # "24-31" -> .24/31", with a litte bit of "/31 is icky".
|
---|
| 1117 | my %maskmap = ( 3 => 2, 7 => 3, 15 => 4, 31 => 5, 63 => 6, 127 => 7,
|
---|
| 1118 | 30 => 2, 29 => 3, 28 => 4, 27 => 5, 26 => 6, 25 => 7
|
---|
| 1119 | );
|
---|
[298] | 1120 |
|
---|
| 1121 | # Handle "range" blocks, eg, 80-83.168.192.in-addr.arpa (192.168.80.0/22)
|
---|
| 1122 | # Need to take the size of the range to offset the basic octet-based mask length,
|
---|
| 1123 | # and make sure the first number in the range gets used as the network address for the block
|
---|
[304] | 1124 | # Alternate form: The second number is actually the real netmask, not the end of the range.
|
---|
[298] | 1125 | my $masklen = 0;
|
---|
[307] | 1126 | if ($octs[0] =~ /^((\d+)-(\d+))$/) { # take the range...
|
---|
| 1127 | if (24 < $3 && $3 < 31) {
|
---|
[304] | 1128 | # we have a real netmask
|
---|
[307] | 1129 | $masklen = -$maskmap{$3};
|
---|
[304] | 1130 | } else {
|
---|
| 1131 | # we have a range. NB: only real CIDR ranges are supported
|
---|
[307] | 1132 | $masklen -= $maskmap{-(eval $1)}; # find the mask base...
|
---|
[304] | 1133 | }
|
---|
[307] | 1134 | $octs[0] = $2; # set the base octet of the range...
|
---|
[265] | 1135 | }
|
---|
[298] | 1136 | @octs = reverse @octs; # We can reverse the octet pieces now that we've extracted and munged any ranges
|
---|
[265] | 1137 |
|
---|
[304] | 1138 | # arguably we should only allow sub-octet range/mask in-addr.arpa
|
---|
| 1139 | # specifications in the least significant octet, but the code is
|
---|
| 1140 | # simpler if we deal with sub-octet delegations at any level.
|
---|
| 1141 |
|
---|
[298] | 1142 | # Now we find the "true" mask with the aid of the "base" calculated above
|
---|
| 1143 | if ($#octs == 0) {
|
---|
| 1144 | $masklen += 8;
|
---|
| 1145 | $tmpcidr = "$octs[0].0.0.0/$masklen"; # really hope we don't see one of these very often.
|
---|
| 1146 | } elsif ($#octs == 1) {
|
---|
| 1147 | $masklen += 16;
|
---|
| 1148 | $tmpcidr = "$octs[0].$octs[1].0.0/$masklen";
|
---|
| 1149 | } elsif ($#octs == 2) {
|
---|
| 1150 | $masklen += 24;
|
---|
| 1151 | $tmpcidr = "$octs[0].$octs[1].$octs[2].0/$masklen";
|
---|
[265] | 1152 | } else {
|
---|
[298] | 1153 | $masklen += 32;
|
---|
| 1154 | $tmpcidr = "$octs[0].$octs[1].$octs[2].$octs[3]/$masklen";
|
---|
[265] | 1155 | }
|
---|
| 1156 |
|
---|
[298] | 1157 | } elsif ($zone =~ /\.ip6\.arpa$/) {
|
---|
| 1158 | # v6 revzone, formal zone name type
|
---|
| 1159 | my $tmpzone = $zone;
|
---|
| 1160 | $tmpzone =~ s/\.ip6\.arpa\.?//;
|
---|
[301] | 1161 | ##fixme: if-n-when we decide we can support sub-nibble v6 zone names, we'll need to change this segment
|
---|
| 1162 | return ('FAIL', "Non-hexadecimals in apparent IPv6 reverse zone name") if $tmpzone !~ /^[a-fA-F\d\.]+$/;
|
---|
[298] | 1163 | my @quads = reverse(split(/\./, $tmpzone));
|
---|
| 1164 | $warnmsg .= "Apparent sub-/64 IPv6 reverse zone\n" if $#quads > 15;
|
---|
| 1165 | my $nc;
|
---|
| 1166 | foreach (@quads) {
|
---|
[301] | 1167 | $tmpcidr .= $_;
|
---|
| 1168 | $tmpcidr .= ":" if ++$nc % 4 == 0;
|
---|
[298] | 1169 | }
|
---|
| 1170 | my $nq = 1 if $nc % 4 != 0;
|
---|
| 1171 | my $mask = $nc * 4; # need to do this here because we probably increment it below
|
---|
| 1172 | while ($nc++ % 4 != 0) {
|
---|
[301] | 1173 | $tmpcidr .= "0";
|
---|
[298] | 1174 | }
|
---|
[301] | 1175 | $tmpcidr .= ($nq ? '::' : ':')."/$mask";
|
---|
[298] | 1176 | }
|
---|
[301] | 1177 |
|
---|
| 1178 | # Just to be sure, use NetAddr::IP to validate. Saves a lot of nasty regex watching for valid octet values.
|
---|
| 1179 | return ('FAIL', "Invalid zone $zone (apparent netblock $tmpcidr)")
|
---|
| 1180 | unless $cidr = NetAddr::IP->new($tmpcidr);
|
---|
| 1181 |
|
---|
| 1182 | if ($warnmsg) {
|
---|
| 1183 | $errstr = $warnmsg;
|
---|
| 1184 | return ('WARN', $cidr);
|
---|
| 1185 | }
|
---|
| 1186 | return ('OK', $cidr);
|
---|
[298] | 1187 | } # done _zone2cidr()
|
---|
[265] | 1188 |
|
---|
[337] | 1189 | # Record template %-parameter expansion, IPv4. Note that IPv6 doesn't
|
---|
| 1190 | # really have a sane way to handle this type of expansion at the moment
|
---|
| 1191 | # due to the size of the address space.
|
---|
| 1192 | # Takes a reference to a template string to be expanded, and an IP to use in the replacement.
|
---|
| 1193 | sub _template4_expand {
|
---|
| 1194 | my $tmpl = shift;
|
---|
| 1195 | my $ip = shift;
|
---|
[298] | 1196 |
|
---|
[337] | 1197 | my @ipparts = split /\./, $ip;
|
---|
| 1198 | my @iphex;
|
---|
| 1199 | my @ippad;
|
---|
| 1200 | for (@ipparts) {
|
---|
| 1201 | push @iphex, sprintf("%x", $_);
|
---|
[443] | 1202 | push @ippad, sprintf("%0.3u", $_);
|
---|
[337] | 1203 | }
|
---|
| 1204 |
|
---|
| 1205 | # IP substitutions in template records:
|
---|
| 1206 | #major patterns:
|
---|
| 1207 | #dashed IP, forward and reverse
|
---|
| 1208 | #dotted IP, forward and reverse (even if forward is... dumb)
|
---|
| 1209 | # -> %r for reverse, %i for forward, leading - or . to indicate separator, defaults to -
|
---|
| 1210 | # %r or %-r => %4d-%3d-%2d-%1d
|
---|
| 1211 | # %.r => %4d.%3d.%2d.%1d
|
---|
| 1212 | # %i or %-i => %1d-%2d-%3d-%4d
|
---|
| 1213 | # %.i => %1d.%2d.%3d.%4d
|
---|
| 1214 | $$tmpl =~ s/\%r/\%4d-\%3d-\%2d-\%1d/g;
|
---|
| 1215 | $$tmpl =~ s/\%([-.])r/\%4d$1\%3d$1\%2d$1\%1d/g;
|
---|
| 1216 | $$tmpl =~ s/\%i/\%1d-\%2d-\%3d-\%4d/g;
|
---|
| 1217 | $$tmpl =~ s/\%([-.])i/\%1d$1\%2d$1\%3d$1\%4d/g;
|
---|
| 1218 |
|
---|
| 1219 | #hex-coded IP
|
---|
| 1220 | # %h
|
---|
| 1221 | $$tmpl =~ s/\%h/$iphex[0]$iphex[1]$iphex[2]$iphex[3]/g;
|
---|
| 1222 |
|
---|
| 1223 | #IP as decimal-coded 32-bit value
|
---|
| 1224 | # %d
|
---|
| 1225 | my $iptmp = $ipparts[0]*256*256*256 + $ipparts[1]*256*256 + $ipparts[2]*256 + $ipparts[3];
|
---|
| 1226 | $$tmpl =~ s/\%d/$iptmp/g;
|
---|
| 1227 |
|
---|
| 1228 | #minor patterns (per-octet)
|
---|
| 1229 | # %[1234][dh0]
|
---|
| 1230 | #octet
|
---|
| 1231 | #hex-coded octet
|
---|
| 1232 | #0-padded octet
|
---|
| 1233 | $$tmpl =~ s/\%([1234])d/$ipparts[$1-1]/g;
|
---|
| 1234 | $$tmpl =~ s/\%([1234])h/$iphex[$1-1]/g;
|
---|
[443] | 1235 | $$tmpl =~ s/\%([1234])0/$ippad[$1-1]/g;
|
---|
[337] | 1236 | } # _template4_expand()
|
---|
| 1237 |
|
---|
| 1238 |
|
---|
[228] | 1239 | ##
|
---|
[2] | 1240 | ## Initialization and cleanup subs
|
---|
| 1241 | ##
|
---|
| 1242 |
|
---|
[128] | 1243 | ## DNSDB::loadConfig()
|
---|
| 1244 | # Load the minimum required initial state (DB connect info) from a config file
|
---|
| 1245 | # Load misc other bits while we're at it.
|
---|
[400] | 1246 | # Takes an optional hash that may contain:
|
---|
| 1247 | # - basename and config path to look for
|
---|
[128] | 1248 | # Populates the %config and %def hashes
|
---|
| 1249 | sub loadConfig {
|
---|
[400] | 1250 | my %args = @_;
|
---|
[465] | 1251 | $args{configfile} = '' if !$args{configfile};
|
---|
[128] | 1252 |
|
---|
[465] | 1253 | ##fixme this is *intended* to load a system-default config template, and allow
|
---|
| 1254 | # overriding on a per-tool or per-web-UI-instance basis with a secondary config
|
---|
| 1255 | # file. The "default" config file can't be deleted in the current form.
|
---|
| 1256 |
|
---|
[128] | 1257 | my $deferr = ''; # place to put error from default config file in case we can't find either one
|
---|
| 1258 |
|
---|
[219] | 1259 | my $configroot = "/etc/dnsdb"; ##CFG_LEAF##
|
---|
[465] | 1260 | $configroot = '' if $args{configfile} =~ m|^/|; # allow passed siteconfig to specify an arbitrary absolute path
|
---|
| 1261 | $args{configfile} .= ".conf" if $args{configfile} !~ /\.conf$/;
|
---|
[128] | 1262 | my $defconfig = "$configroot/dnsdb.conf";
|
---|
[465] | 1263 | my $siteconfig = "$configroot/$args{configfile}";
|
---|
[128] | 1264 |
|
---|
| 1265 | # System defaults
|
---|
[465] | 1266 | __cfgload("$defconfig") or $deferr = $errstr;
|
---|
[128] | 1267 |
|
---|
[131] | 1268 | # Per-site-ish settings.
|
---|
[465] | 1269 | if ($args{configfile} ne '.conf') {
|
---|
| 1270 | unless (__cfgload("$siteconfig")) {
|
---|
[131] | 1271 | $errstr = ($deferr ? "Error opening default config file $defconfig: $deferr\n" : '').
|
---|
[128] | 1272 | "Error opening site config file $siteconfig";
|
---|
[131] | 1273 | return;
|
---|
| 1274 | }
|
---|
[128] | 1275 | }
|
---|
| 1276 |
|
---|
[195] | 1277 | # Munge log_failures.
|
---|
| 1278 | if ($config{log_failures} ne '1' && $config{log_failures} ne '0') {
|
---|
| 1279 | # true/false, on/off, yes/no all valid.
|
---|
| 1280 | if ($config{log_failures} =~ /^(?:true|false|on|off|yes|no)$/) {
|
---|
| 1281 | if ($config{log_failures} =~ /(?:true|on|yes)/) {
|
---|
| 1282 | $config{log_failures} = 1;
|
---|
| 1283 | } else {
|
---|
| 1284 | $config{log_failures} = 0;
|
---|
| 1285 | }
|
---|
| 1286 | } else {
|
---|
| 1287 | $errstr = "Bad log_failures setting $config{log_failures}";
|
---|
| 1288 | $config{log_failures} = 1;
|
---|
| 1289 | # Bad setting shouldn't be fatal.
|
---|
| 1290 | # return 2;
|
---|
| 1291 | }
|
---|
| 1292 | }
|
---|
| 1293 |
|
---|
[128] | 1294 | # All good, clear the error and go home.
|
---|
| 1295 | $errstr = '';
|
---|
| 1296 | return 1;
|
---|
| 1297 | } # end loadConfig()
|
---|
| 1298 |
|
---|
| 1299 |
|
---|
| 1300 | ## DNSDB::__cfgload()
|
---|
| 1301 | # Private sub to parse a config file and load it into %config
|
---|
[465] | 1302 | # Takes a filename
|
---|
[128] | 1303 | sub __cfgload {
|
---|
| 1304 | $errstr = '';
|
---|
| 1305 | my $cfgfile = shift;
|
---|
[131] | 1306 |
|
---|
[128] | 1307 | if (open CFG, "<$cfgfile") {
|
---|
| 1308 | while (<CFG>) {
|
---|
| 1309 | chomp;
|
---|
| 1310 | s/^\s*//;
|
---|
| 1311 | next if /^#/;
|
---|
| 1312 | next if /^$/;
|
---|
| 1313 | # hmm. more complex bits in this file might require [heading] headers, maybe?
|
---|
| 1314 | # $mode = $1 if /^\[(a-z)+]/;
|
---|
| 1315 | # DB connect info
|
---|
| 1316 | $config{dbname} = $1 if /^dbname\s*=\s*([a-z0-9_.-]+)/i;
|
---|
| 1317 | $config{dbuser} = $1 if /^dbuser\s*=\s*([a-z0-9_.-]+)/i;
|
---|
| 1318 | $config{dbpass} = $1 if /^dbpass\s*=\s*([a-z0-9_.-]+)/i;
|
---|
| 1319 | $config{dbhost} = $1 if /^dbhost\s*=\s*([a-z0-9_.-]+)/i;
|
---|
| 1320 | # SOA defaults
|
---|
| 1321 | $def{contact} = $1 if /^contact\s*=\s*([a-z0-9_.-]+)/i;
|
---|
| 1322 | $def{prins} = $1 if /^prins\s*=\s*([a-z0-9_.-]+)/i;
|
---|
[201] | 1323 | $def{soattl} = $1 if /^soattl\s*=\s*(\d+)/i;
|
---|
| 1324 | $def{refresh} = $1 if /^refresh\s*=\s*(\d+)/i;
|
---|
| 1325 | $def{retry} = $1 if /^retry\s*=\s*(\d+)/i;
|
---|
| 1326 | $def{expire} = $1 if /^expire\s*=\s*(\d+)/i;
|
---|
| 1327 | $def{minttl} = $1 if /^minttl\s*=\s*(\d+)/i;
|
---|
| 1328 | $def{ttl} = $1 if /^ttl\s*=\s*(\d+)/i;
|
---|
[128] | 1329 | # Mail settings
|
---|
| 1330 | $config{mailhost} = $1 if /^mailhost\s*=\s*([a-z0-9_.-]+)/i;
|
---|
[198] | 1331 | $config{mailnotify} = $1 if /^mailnotify\s*=\s*([a-z0-9_.\@-]+)/i;
|
---|
| 1332 | $config{mailsender} = $1 if /^mailsender\s*=\s*([a-z0-9_.\@-]+)/i;
|
---|
[128] | 1333 | $config{mailname} = $1 if /^mailname\s*=\s*([a-z0-9\s_.-]+)/i;
|
---|
[195] | 1334 | $config{orgname} = $1 if /^orgname\s*=\s*([a-z0-9\s_.,'-]+)/i;
|
---|
| 1335 | $config{domain} = $1 if /^domain\s*=\s*([a-z0-9_.-]+)/i;
|
---|
[163] | 1336 | # session - note this is fed directly to CGI::Session
|
---|
[216] | 1337 | $config{timeout} = $1 if /^[tT][iI][mM][eE][oO][uU][tT]\s*=\s*(\d+[smhdwMy]?)/;
|
---|
| 1338 | $config{sessiondir} = $1 if m{^sessiondir\s*=\s*([a-z0-9/_.-]+)}i;
|
---|
[201] | 1339 | # misc
|
---|
[195] | 1340 | $config{log_failures} = $1 if /^log_failures\s*=\s*([a-z01]+)/i;
|
---|
[201] | 1341 | $config{perpage} = $1 if /^perpage\s*=\s*(\d+)/i;
|
---|
[368] | 1342 | $config{exportcache} = $1 if m{^exportcache\s*=\s*([a-z0-9/_.-]+)}i;
|
---|
[400] | 1343 | # RPC options
|
---|
[465] | 1344 | $config{rpcmode} = $1 if /^rpc_mode\s*=\s*(socket|HTTP|XMLRPC)\s*$/i;
|
---|
| 1345 | if (my ($tmp) = /^rpc_iplist\s*=\s*(.+)/i) {
|
---|
| 1346 | my @ips = split /[,\s]+/, $tmp;
|
---|
| 1347 | my $rpcsys = shift @ips;
|
---|
| 1348 | push @{$config{rpcacl}{$rpcsys}}, @ips;
|
---|
[400] | 1349 | }
|
---|
[128] | 1350 | }
|
---|
| 1351 | close CFG;
|
---|
| 1352 | } else {
|
---|
| 1353 | $errstr = $!;
|
---|
| 1354 | return;
|
---|
| 1355 | }
|
---|
| 1356 | return 1;
|
---|
| 1357 | } # end __cfgload()
|
---|
| 1358 |
|
---|
| 1359 |
|
---|
[2] | 1360 | ## DNSDB::connectDB()
|
---|
| 1361 | # Creates connection to DNS database.
|
---|
| 1362 | # Requires the database name, username, and password.
|
---|
[465] | 1363 | # Returns a handle to the db or undef on failure.
|
---|
[2] | 1364 | # Set up for a PostgreSQL db; could be any transactional DBMS with the
|
---|
| 1365 | # right changes.
|
---|
[465] | 1366 | # Called by new(); not intended to be called publicly.
|
---|
[2] | 1367 | sub connectDB {
|
---|
| 1368 | $errstr = '';
|
---|
[15] | 1369 | my $dbname = shift;
|
---|
| 1370 | my $user = shift;
|
---|
| 1371 | my $pass = shift;
|
---|
[2] | 1372 | my $dbh;
|
---|
| 1373 | my $DSN = "DBI:Pg:dbname=$dbname";
|
---|
| 1374 |
|
---|
| 1375 | my $host = shift;
|
---|
| 1376 | $DSN .= ";host=$host" if $host;
|
---|
| 1377 |
|
---|
| 1378 | # Note that we want to autocommit by default, and we will turn it off locally as necessary.
|
---|
| 1379 | # We may not want to print gobbledygook errors; YMMV. Have to ponder that further.
|
---|
| 1380 | $dbh = DBI->connect($DSN, $user, $pass, {
|
---|
| 1381 | AutoCommit => 1,
|
---|
| 1382 | PrintError => 0
|
---|
[465] | 1383 | });
|
---|
| 1384 | if (!$dbh) {
|
---|
| 1385 | $errstr = $DBI::errstr;
|
---|
| 1386 | return;
|
---|
| 1387 | }
|
---|
| 1388 | #) if(!$dbh);
|
---|
[2] | 1389 |
|
---|
[465] | 1390 | local $dbh->{RaiseError} = 1;
|
---|
| 1391 |
|
---|
| 1392 | eval {
|
---|
[212] | 1393 | ##fixme: initialize the DB if we can't find the table (since, by definition, there's
|
---|
| 1394 | # nothing there if we can't select from it...)
|
---|
[465] | 1395 | my $tblsth = $dbh->prepare("SELECT count(*) FROM pg_catalog.pg_class WHERE relkind='r' AND relname=?");
|
---|
| 1396 | my ($tblcount) = $dbh->selectrow_array($tblsth, undef, ('misc'));
|
---|
| 1397 | # return (undef,$DBI::errstr) if $dbh->err;
|
---|
[212] | 1398 |
|
---|
| 1399 | #if ($tblcount == 0) {
|
---|
| 1400 | # # create tables one at a time, checking for each.
|
---|
| 1401 | # return (undef, "check table misc missing");
|
---|
| 1402 | #}
|
---|
| 1403 |
|
---|
| 1404 | # Return here if we can't select.
|
---|
| 1405 | # This should retrieve the dbversion key.
|
---|
[465] | 1406 | my $sth = $dbh->prepare("SELECT key,value FROM misc WHERE misc_id=1");
|
---|
| 1407 | $sth->execute();
|
---|
| 1408 | # return (undef,$DBI::errstr) if ($sth->err);
|
---|
[2] | 1409 |
|
---|
[212] | 1410 | ##fixme: do stuff to the DB on version mismatch
|
---|
| 1411 | # x.y series should upgrade on $DNSDB::VERSION > misc(key=>version)
|
---|
| 1412 | # DB should be downward-compatible; column defaults should give sane (if possibly
|
---|
| 1413 | # useless-and-needs-help) values in columns an older software stack doesn't know about.
|
---|
| 1414 |
|
---|
[2] | 1415 | # See if the select returned anything (or null data). This should
|
---|
| 1416 | # succeed if the select executed, but...
|
---|
[465] | 1417 | $sth->fetchrow();
|
---|
| 1418 | # return (undef,$DBI::errstr) if ($sth->err);
|
---|
[2] | 1419 |
|
---|
[465] | 1420 | $sth->finish;
|
---|
[2] | 1421 |
|
---|
[465] | 1422 | }; # wrapped DB checks
|
---|
| 1423 | if ($@) {
|
---|
| 1424 | $errstr = $@;
|
---|
| 1425 | return;
|
---|
| 1426 | }
|
---|
| 1427 |
|
---|
[2] | 1428 | # If we get here, we should be OK.
|
---|
[465] | 1429 | return $dbh;
|
---|
[2] | 1430 | } # end connectDB
|
---|
| 1431 |
|
---|
| 1432 |
|
---|
| 1433 | ## DNSDB::finish()
|
---|
| 1434 | # Cleans up after database handles and so on.
|
---|
| 1435 | # Requires a database handle
|
---|
| 1436 | sub finish {
|
---|
[465] | 1437 | my $self = shift;
|
---|
| 1438 | $self->{dbh}->disconnect;
|
---|
[2] | 1439 | } # end finish
|
---|
| 1440 |
|
---|
| 1441 |
|
---|
| 1442 | ## DNSDB::initGlobals()
|
---|
| 1443 | # Initialize global variables
|
---|
| 1444 | # NB: this does NOT include web-specific session variables!
|
---|
| 1445 | sub initGlobals {
|
---|
[465] | 1446 | my $self = shift;
|
---|
| 1447 | my $dbh = $self->{dbh};
|
---|
[2] | 1448 |
|
---|
[208] | 1449 | # load record types from database
|
---|
[228] | 1450 | my $sth = $dbh->prepare("SELECT val,name,stdflag FROM rectypes");
|
---|
[2] | 1451 | $sth->execute;
|
---|
[228] | 1452 | while (my ($recval,$recname,$stdflag) = $sth->fetchrow_array()) {
|
---|
[2] | 1453 | $typemap{$recval} = $recname;
|
---|
| 1454 | $reverse_typemap{$recname} = $recval;
|
---|
[228] | 1455 | # now we fill the record validation function hash
|
---|
| 1456 | if ($stdflag < 5) {
|
---|
| 1457 | my $fn = "_validate_$recval";
|
---|
| 1458 | $validators{$recval} = \&$fn;
|
---|
| 1459 | } else {
|
---|
| 1460 | my $fn = "sub { return ('FAIL','Type $recval ($recname) not supported'); }";
|
---|
| 1461 | $validators{$recval} = eval $fn;
|
---|
| 1462 | }
|
---|
[2] | 1463 | }
|
---|
| 1464 | } # end initGlobals
|
---|
| 1465 |
|
---|
| 1466 |
|
---|
[401] | 1467 | ## DNSDB::initRPC()
|
---|
[469] | 1468 | # Takes a remote username and remote fullname.
|
---|
[401] | 1469 | # Sets up the RPC logging-pseudouser if needed.
|
---|
| 1470 | # Sets the %userdata hash for logging.
|
---|
| 1471 | # Returns undef on failure
|
---|
| 1472 | sub initRPC {
|
---|
[469] | 1473 | my $self = shift;
|
---|
| 1474 | my $dbh = $self->{dbh};
|
---|
[401] | 1475 | my %args = @_;
|
---|
| 1476 |
|
---|
| 1477 | return if !$args{username};
|
---|
| 1478 | return if !$args{fullname};
|
---|
| 1479 |
|
---|
[406] | 1480 | $args{username} = "$args{username}/$args{rpcsys}";
|
---|
| 1481 |
|
---|
| 1482 | my $tmpuser = $dbh->selectrow_hashref("SELECT username,user_id AS userid,group_id,firstname,lastname,status".
|
---|
[404] | 1483 | " FROM users WHERE username=?", undef, ($args{username}) );
|
---|
[406] | 1484 | if (!$tmpuser) {
|
---|
[401] | 1485 | $dbh->do("INSERT INTO users (username,password,firstname,type) VALUES (?,'RPC',?,'R')", undef,
|
---|
| 1486 | ($args{username}, $args{fullname}) );
|
---|
[406] | 1487 | $tmpuser = $dbh->selectrow_hashref("SELECT username,user_id AS userid,group_id,firstname,lastname,status".
|
---|
[404] | 1488 | " FROM users WHERE username=?", undef, ($args{username}) );
|
---|
[401] | 1489 | }
|
---|
[404] | 1490 | %userdata = %{$tmpuser};
|
---|
[410] | 1491 | $userdata{lastname} = '' if !$userdata{lastname};
|
---|
[404] | 1492 | $userdata{fullname} = "$userdata{firstname} $userdata{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 |
|
---|
| 1551 | $userdata{username} = $username;
|
---|
| 1552 | $userdata{userid} = $uid;
|
---|
| 1553 | $userdata{fullname} = $fullname;
|
---|
| 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::initPermissions()
|
---|
| 1564 | # Set up permissions global
|
---|
| 1565 | # Takes database handle and UID
|
---|
| 1566 | sub initPermissions {
|
---|
[469] | 1567 | my $self = shift;
|
---|
| 1568 | my $dbh = $self->{dbh};
|
---|
[65] | 1569 | my $uid = shift;
|
---|
| 1570 |
|
---|
[469] | 1571 | # %permissions = $(getPermissions('user',$uid));
|
---|
| 1572 | $self->getPermissions('user', $uid, \%permissions);
|
---|
[65] | 1573 |
|
---|
| 1574 | } # end initPermissions()
|
---|
| 1575 |
|
---|
| 1576 |
|
---|
| 1577 | ## DNSDB::getPermissions()
|
---|
| 1578 | # Get permissions from DB
|
---|
| 1579 | # Requires DB handle, group or user flag, ID, and hashref.
|
---|
| 1580 | sub getPermissions {
|
---|
[469] | 1581 | my $self = shift;
|
---|
| 1582 | my $dbh = $self->{dbh};
|
---|
| 1583 |
|
---|
[65] | 1584 | my $type = shift;
|
---|
| 1585 | my $id = shift;
|
---|
| 1586 | my $hash = shift;
|
---|
| 1587 |
|
---|
| 1588 | my $sql = qq(
|
---|
| 1589 | SELECT
|
---|
| 1590 | p.admin,p.self_edit,
|
---|
| 1591 | p.group_create,p.group_edit,p.group_delete,
|
---|
| 1592 | p.user_create,p.user_edit,p.user_delete,
|
---|
| 1593 | p.domain_create,p.domain_edit,p.domain_delete,
|
---|
[387] | 1594 | p.record_create,p.record_edit,p.record_delete,p.record_locchg,
|
---|
[382] | 1595 | p.location_create,p.location_edit,p.location_delete,p.location_view
|
---|
[65] | 1596 | FROM permissions p
|
---|
| 1597 | );
|
---|
| 1598 | if ($type eq 'group') {
|
---|
| 1599 | $sql .= qq(
|
---|
| 1600 | JOIN groups g ON g.permission_id=p.permission_id
|
---|
| 1601 | WHERE g.group_id=?
|
---|
| 1602 | );
|
---|
| 1603 | } else {
|
---|
| 1604 | $sql .= qq(
|
---|
| 1605 | JOIN users u ON u.permission_id=p.permission_id
|
---|
| 1606 | WHERE u.user_id=?
|
---|
| 1607 | );
|
---|
| 1608 | }
|
---|
| 1609 |
|
---|
| 1610 | my $sth = $dbh->prepare($sql);
|
---|
| 1611 |
|
---|
| 1612 | $sth->execute($id) or die "argh: ".$sth->errstr;
|
---|
| 1613 |
|
---|
| 1614 | # my $permref = $sth->fetchrow_hashref;
|
---|
| 1615 | # return $permref;
|
---|
| 1616 | # $hash = $permref;
|
---|
| 1617 | # Eww. Need to learn how to forcibly drop a hashref onto an existing hash.
|
---|
| 1618 | ($hash->{admin},$hash->{self_edit},
|
---|
| 1619 | $hash->{group_create},$hash->{group_edit},$hash->{group_delete},
|
---|
| 1620 | $hash->{user_create},$hash->{user_edit},$hash->{user_delete},
|
---|
| 1621 | $hash->{domain_create},$hash->{domain_edit},$hash->{domain_delete},
|
---|
[387] | 1622 | $hash->{record_create},$hash->{record_edit},$hash->{record_delete},$hash->{record_locchg},
|
---|
[382] | 1623 | $hash->{location_create},$hash->{location_edit},$hash->{location_delete},$hash->{location_view}
|
---|
| 1624 | ) = $sth->fetchrow_array;
|
---|
[65] | 1625 |
|
---|
| 1626 | } # end getPermissions()
|
---|
| 1627 |
|
---|
| 1628 |
|
---|
| 1629 | ## DNSDB::changePermissions()
|
---|
| 1630 | # Update an ACL entry
|
---|
| 1631 | # Takes a db handle, type, owner-id, and hashref for the changed permissions.
|
---|
| 1632 | sub changePermissions {
|
---|
| 1633 | my $dbh = shift;
|
---|
| 1634 | my $type = shift;
|
---|
| 1635 | my $id = shift;
|
---|
| 1636 | my $newperms = shift;
|
---|
[87] | 1637 | my $inherit = shift || 0;
|
---|
[65] | 1638 |
|
---|
[294] | 1639 | my $resultmsg = '';
|
---|
[66] | 1640 |
|
---|
[87] | 1641 | # see if we're switching from inherited to custom. for bonus points,
|
---|
| 1642 | # snag the permid and parent permid anyway, since we'll need the permid
|
---|
| 1643 | # to set/alter custom perms, and both if we're switching from custom to
|
---|
| 1644 | # inherited.
|
---|
[294] | 1645 | my $sth = $dbh->prepare("SELECT (u.permission_id=g.permission_id) AS was_inherited,u.permission_id,g.permission_id,".
|
---|
| 1646 | ($type eq 'user' ? 'u.group_id,u.username' : 'u.parent_group_id,u.group_name').
|
---|
[65] | 1647 | " FROM ".($type eq 'user' ? 'users' : 'groups')." u ".
|
---|
[66] | 1648 | " JOIN groups g ON u.".($type eq 'user' ? '' : 'parent_')."group_id=g.group_id ".
|
---|
[65] | 1649 | " WHERE u.".($type eq 'user' ? 'user' : 'group')."_id=?");
|
---|
| 1650 | $sth->execute($id);
|
---|
| 1651 |
|
---|
[294] | 1652 | my ($wasinherited,$permid,$parpermid,$parid,$name) = $sth->fetchrow_array;
|
---|
[66] | 1653 |
|
---|
[78] | 1654 | # hack phtoui
|
---|
| 1655 | # group id 1 is "special" in that it's it's own parent (err... possibly.)
|
---|
| 1656 | # may make its parent id 0 which doesn't exist, and as a bonus is Perl-false.
|
---|
| 1657 | $wasinherited = 0 if ($type eq 'group' && $id == 1);
|
---|
| 1658 |
|
---|
[66] | 1659 | local $dbh->{AutoCommit} = 0;
|
---|
| 1660 | local $dbh->{RaiseError} = 1;
|
---|
| 1661 |
|
---|
| 1662 | # Wrap all the SQL in a transaction
|
---|
| 1663 | eval {
|
---|
[87] | 1664 | if ($inherit) {
|
---|
| 1665 |
|
---|
| 1666 | $dbh->do("UPDATE ".($type eq 'user' ? 'users' : 'groups')." SET inherit_perm='t',permission_id=? ".
|
---|
| 1667 | "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($parpermid, $id) );
|
---|
| 1668 | $dbh->do("DELETE FROM permissions WHERE permission_id=?", undef, ($permid) );
|
---|
| 1669 |
|
---|
| 1670 | } else {
|
---|
| 1671 |
|
---|
| 1672 | if ($wasinherited) { # munge new permission entry in if we're switching from inherited perms
|
---|
[66] | 1673 | ##fixme: need to add semirecursive bit to properly munge inherited permission ID on subgroups and users
|
---|
[87] | 1674 | # ... if'n'when we have groups with fully inherited permissions.
|
---|
| 1675 | # SQL is coo
|
---|
| 1676 | $dbh->do("INSERT INTO permissions ($permlist,".($type eq 'user' ? 'user' : 'group')."_id) ".
|
---|
| 1677 | "SELECT $permlist,? FROM permissions WHERE permission_id=?", undef, ($id,$permid) );
|
---|
| 1678 | ($permid) = $dbh->selectrow_array("SELECT permission_id FROM permissions ".
|
---|
| 1679 | "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($id) );
|
---|
| 1680 | $dbh->do("UPDATE ".($type eq 'user' ? 'users' : 'groups')." SET inherit_perm='f',permission_id=? ".
|
---|
| 1681 | "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($permid, $id) );
|
---|
[66] | 1682 | }
|
---|
[78] | 1683 |
|
---|
[87] | 1684 | # and now set the permissions we were passed
|
---|
| 1685 | foreach (@permtypes) {
|
---|
| 1686 | if (defined ($newperms->{$_})) {
|
---|
| 1687 | $dbh->do("UPDATE permissions SET $_=? WHERE permission_id=?", undef, ($newperms->{$_},$permid) );
|
---|
| 1688 | }
|
---|
| 1689 | }
|
---|
| 1690 |
|
---|
| 1691 | } # (inherited->)? custom
|
---|
| 1692 |
|
---|
[294] | 1693 | if ($type eq 'user') {
|
---|
| 1694 | $resultmsg = "Updated permissions for user $name";
|
---|
| 1695 | } else {
|
---|
| 1696 | $resultmsg = "Updated default permissions for group $name";
|
---|
| 1697 | }
|
---|
| 1698 | _log($dbh, (group_id => ($type eq 'user' ? $parid : $id), entry => $resultmsg));
|
---|
[66] | 1699 | $dbh->commit;
|
---|
| 1700 | }; # end eval
|
---|
| 1701 | if ($@) {
|
---|
| 1702 | my $msg = $@;
|
---|
| 1703 | eval { $dbh->rollback; };
|
---|
[294] | 1704 | return ('FAIL',"Error changing permissions: $msg");
|
---|
[66] | 1705 | }
|
---|
| 1706 |
|
---|
[294] | 1707 | return ('OK',$resultmsg);
|
---|
[65] | 1708 | } # end changePermissions()
|
---|
| 1709 |
|
---|
| 1710 |
|
---|
[67] | 1711 | ## DNSDB::comparePermissions()
|
---|
| 1712 | # Compare two permission hashes
|
---|
| 1713 | # Returns '>', '<', '=', '!'
|
---|
| 1714 | sub comparePermissions {
|
---|
| 1715 | my $p1 = shift;
|
---|
| 1716 | my $p2 = shift;
|
---|
| 1717 |
|
---|
| 1718 | my $retval = '='; # assume equality until proven otherwise
|
---|
| 1719 |
|
---|
| 1720 | no warnings "uninitialized";
|
---|
| 1721 |
|
---|
| 1722 | foreach (@permtypes) {
|
---|
| 1723 | next if $p1->{$_} == $p2->{$_}; # equal is good
|
---|
| 1724 | if ($p1->{$_} && !$p2->{$_}) {
|
---|
| 1725 | if ($retval eq '<') { # if we've already found an unequal pair where
|
---|
| 1726 | $retval = '!'; # $p2 has more access, and we now find a pair
|
---|
| 1727 | last; # where $p1 has more access, the overall access
|
---|
| 1728 | } # is neither greater or lesser, it's unequal.
|
---|
| 1729 | $retval = '>';
|
---|
| 1730 | }
|
---|
| 1731 | if (!$p1->{$_} && $p2->{$_}) {
|
---|
| 1732 | if ($retval eq '>') { # if we've already found an unequal pair where
|
---|
| 1733 | $retval = '!'; # $p1 has more access, and we now find a pair
|
---|
| 1734 | last; # where $p2 has more access, the overall access
|
---|
| 1735 | } # is neither greater or lesser, it's unequal.
|
---|
| 1736 | $retval = '<';
|
---|
| 1737 | }
|
---|
| 1738 | }
|
---|
| 1739 | return $retval;
|
---|
| 1740 | } # end comparePermissions()
|
---|
| 1741 |
|
---|
| 1742 |
|
---|
[112] | 1743 | ## DNSDB::changeGroup()
|
---|
| 1744 | # Change group ID of an entity
|
---|
| 1745 | # Takes a database handle, entity type, entity ID, and new group ID
|
---|
| 1746 | sub changeGroup {
|
---|
| 1747 | my $dbh = shift;
|
---|
| 1748 | my $type = shift;
|
---|
| 1749 | my $id = shift;
|
---|
| 1750 | my $newgrp = shift;
|
---|
| 1751 |
|
---|
| 1752 | ##fixme: fail on not enough args
|
---|
| 1753 | #return ('FAIL', "Missing
|
---|
| 1754 |
|
---|
[295] | 1755 | return ('FAIL', "Can't change the group of a $type")
|
---|
| 1756 | unless grep /^$type$/, ('domain','revzone','user','group'); # could be extended for defrecs?
|
---|
| 1757 |
|
---|
| 1758 | # Collect some names for logging and messages
|
---|
| 1759 | my $entname;
|
---|
[112] | 1760 | if ($type eq 'domain') {
|
---|
[295] | 1761 | $entname = domainName($dbh, $id);
|
---|
| 1762 | } elsif ($type eq 'revzone') {
|
---|
| 1763 | $entname = revName($dbh, $id);
|
---|
[112] | 1764 | } elsif ($type eq 'user') {
|
---|
[295] | 1765 | $entname = userFullName($dbh, $id, '%u');
|
---|
[112] | 1766 | } elsif ($type eq 'group') {
|
---|
[295] | 1767 | $entname = groupName($dbh, $id);
|
---|
[112] | 1768 | }
|
---|
[295] | 1769 |
|
---|
| 1770 | my ($oldgid) = $dbh->selectrow_array("SELECT group_id FROM $par_tbl{$type} WHERE $id_col{$type}=?",
|
---|
| 1771 | undef, ($id));
|
---|
| 1772 | my $oldgname = groupName($dbh, $oldgid);
|
---|
| 1773 | my $newgname = groupName($dbh, $newgrp);
|
---|
| 1774 |
|
---|
| 1775 | return ('FAIL', "Can't move things into a group that doesn't exist") if !$newgname;
|
---|
| 1776 |
|
---|
| 1777 | return ('WARN', "Nothing to do, new group is the same as the old group") if $oldgid == $newgrp;
|
---|
| 1778 |
|
---|
| 1779 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 1780 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 1781 | local $dbh->{AutoCommit} = 0;
|
---|
| 1782 | local $dbh->{RaiseError} = 1;
|
---|
| 1783 |
|
---|
| 1784 | eval {
|
---|
| 1785 | $dbh->do("UPDATE $par_tbl{$type} SET group_id=? WHERE $id_col{$type}=?", undef, ($newgrp, $id));
|
---|
| 1786 | # Log the change in both the old and new groups
|
---|
| 1787 | _log($dbh, (group_id => $oldgid, entry => "Moved $type $entname from $oldgname to $newgname"));
|
---|
| 1788 | _log($dbh, (group_id => $newgrp, entry => "Moved $type $entname from $oldgname to $newgname"));
|
---|
| 1789 | $dbh->commit;
|
---|
| 1790 | };
|
---|
| 1791 | if ($@) {
|
---|
| 1792 | my $msg = $@;
|
---|
| 1793 | eval { $dbh->rollback; };
|
---|
| 1794 | if ($config{log_failures}) {
|
---|
| 1795 | _log($dbh, (group_id => $oldgid, entry => "Error moving $type $entname to $newgname: $msg"));
|
---|
| 1796 | $dbh->commit; # since we enabled transactions earlier
|
---|
| 1797 | }
|
---|
| 1798 | return ('FAIL',"Error moving $type $entname to $newgname: $msg");
|
---|
| 1799 | }
|
---|
| 1800 |
|
---|
| 1801 | return ('OK',"Moved $type $entname from $oldgname to $newgname");
|
---|
[112] | 1802 | } # end changeGroup()
|
---|
| 1803 |
|
---|
| 1804 |
|
---|
[2] | 1805 | ##
|
---|
| 1806 | ## Processing subs
|
---|
| 1807 | ##
|
---|
| 1808 |
|
---|
| 1809 | ## DNSDB::addDomain()
|
---|
| 1810 | # Add a domain
|
---|
[190] | 1811 | # Takes a database handle, domain name, numeric group, boolean(ish) state (active/inactive),
|
---|
| 1812 | # and user info hash (for logging).
|
---|
[2] | 1813 | # Returns a status code and message
|
---|
| 1814 | sub addDomain {
|
---|
| 1815 | $errstr = '';
|
---|
| 1816 | my $dbh = shift;
|
---|
| 1817 | return ('FAIL',"Need database handle") if !$dbh;
|
---|
| 1818 | my $domain = shift;
|
---|
[91] | 1819 | return ('FAIL',"Domain must not be blank") if !$domain;
|
---|
[2] | 1820 | my $group = shift;
|
---|
| 1821 | return ('FAIL',"Need group") if !defined($group);
|
---|
| 1822 | my $state = shift;
|
---|
| 1823 | return ('FAIL',"Need domain status") if !defined($state);
|
---|
| 1824 |
|
---|
[116] | 1825 | $state = 1 if $state =~ /^active$/;
|
---|
| 1826 | $state = 1 if $state =~ /^on$/;
|
---|
| 1827 | $state = 0 if $state =~ /^inactive$/;
|
---|
| 1828 | $state = 0 if $state =~ /^off$/;
|
---|
| 1829 |
|
---|
| 1830 | return ('FAIL',"Invalid domain status") if $state !~ /^\d+$/;
|
---|
| 1831 |
|
---|
[190] | 1832 | return ('FAIL', "Invalid characters in domain") if $domain !~ /^[a-zA-Z0-9_.-]+$/;
|
---|
| 1833 |
|
---|
[349] | 1834 | my $sth = $dbh->prepare("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)");
|
---|
[3] | 1835 | my $dom_id;
|
---|
| 1836 |
|
---|
[38] | 1837 | # quick check to start to see if we've already got one
|
---|
| 1838 | $sth->execute($domain);
|
---|
| 1839 | ($dom_id) = $sth->fetchrow_array;
|
---|
| 1840 |
|
---|
| 1841 | return ('FAIL', "Domain already exists") if $dom_id;
|
---|
| 1842 |
|
---|
[2] | 1843 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 1844 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 1845 | local $dbh->{AutoCommit} = 0;
|
---|
| 1846 | local $dbh->{RaiseError} = 1;
|
---|
| 1847 |
|
---|
| 1848 | # Wrap all the SQL in a transaction
|
---|
| 1849 | eval {
|
---|
| 1850 | # insert the domain...
|
---|
[190] | 1851 | $dbh->do("INSERT INTO domains (domain,group_id,status) VALUES (?,?,?)", undef, ($domain, $group, $state));
|
---|
[2] | 1852 |
|
---|
| 1853 | # get the ID...
|
---|
[349] | 1854 | ($dom_id) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)",
|
---|
| 1855 | undef, ($domain));
|
---|
[2] | 1856 |
|
---|
[284] | 1857 | _log($dbh, (domain_id => $dom_id, group_id => $group,
|
---|
[259] | 1858 | entry => "Added ".($state ? 'active' : 'inactive')." domain $domain"));
|
---|
[190] | 1859 |
|
---|
[2] | 1860 | # ... and now we construct the standard records from the default set. NB: group should be variable.
|
---|
[190] | 1861 | my $sth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl FROM default_records WHERE group_id=?");
|
---|
| 1862 | my $sth_in = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,distance,weight,port,ttl)".
|
---|
| 1863 | " VALUES ($dom_id,?,?,?,?,?,?,?)");
|
---|
| 1864 | $sth->execute($group);
|
---|
[3] | 1865 | while (my ($host,$type,$val,$dist,$weight,$port,$ttl) = $sth->fetchrow_array()) {
|
---|
[2] | 1866 | $host =~ s/DOMAIN/$domain/g;
|
---|
[37] | 1867 | $val =~ s/DOMAIN/$domain/g;
|
---|
[3] | 1868 | $sth_in->execute($host,$type,$val,$dist,$weight,$port,$ttl);
|
---|
[190] | 1869 | if ($typemap{$type} eq 'SOA') {
|
---|
| 1870 | my @tmp1 = split /:/, $host;
|
---|
| 1871 | my @tmp2 = split /:/, $val;
|
---|
[284] | 1872 | _log($dbh, (domain_id => $dom_id, group_id => $group,
|
---|
| 1873 | entry => "[new $domain] Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
|
---|
[257] | 1874 | "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl"));
|
---|
[190] | 1875 | } else {
|
---|
| 1876 | my $logentry = "[new $domain] Added record '$host $typemap{$type}";
|
---|
| 1877 | $logentry .= " [distance $dist]" if $typemap{$type} eq 'MX';
|
---|
| 1878 | $logentry .= " [priority $dist] [weight $weight] [port $port]" if $typemap{$type} eq 'SRV';
|
---|
[284] | 1879 | _log($dbh, (domain_id => $dom_id, group_id => $group,
|
---|
| 1880 | entry => $logentry." $val', TTL $ttl"));
|
---|
[190] | 1881 | }
|
---|
[2] | 1882 | }
|
---|
| 1883 |
|
---|
| 1884 | # once we get here, we should have suceeded.
|
---|
| 1885 | $dbh->commit;
|
---|
| 1886 | }; # end eval
|
---|
| 1887 |
|
---|
| 1888 | if ($@) {
|
---|
| 1889 | my $msg = $@;
|
---|
| 1890 | eval { $dbh->rollback; };
|
---|
[286] | 1891 | _log($dbh, (group_id => $group, entry => "Failed adding domain $domain ($msg)"))
|
---|
[284] | 1892 | if $config{log_failures};
|
---|
| 1893 | $dbh->commit; # since we enabled transactions earlier
|
---|
[193] | 1894 | return ('FAIL',$msg);
|
---|
[2] | 1895 | } else {
|
---|
[3] | 1896 | return ('OK',$dom_id);
|
---|
[2] | 1897 | }
|
---|
| 1898 | } # end addDomain
|
---|
| 1899 |
|
---|
| 1900 |
|
---|
[274] | 1901 | ## DNSDB::delZone()
|
---|
| 1902 | # Delete a forward or reverse zone.
|
---|
| 1903 | # Takes a database handle, zone ID, and forward/reverse flag.
|
---|
[3] | 1904 | # for now, just delete the records, then the domain.
|
---|
| 1905 | # later we may want to archive it in some way instead (status code 2, for example?)
|
---|
[274] | 1906 | sub delZone {
|
---|
[3] | 1907 | my $dbh = shift;
|
---|
[274] | 1908 | my $zoneid = shift;
|
---|
| 1909 | my $revrec = shift;
|
---|
[3] | 1910 |
|
---|
| 1911 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 1912 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 1913 | local $dbh->{AutoCommit} = 0;
|
---|
| 1914 | local $dbh->{RaiseError} = 1;
|
---|
| 1915 |
|
---|
[285] | 1916 | my $msg = '';
|
---|
[23] | 1917 | my $failmsg = '';
|
---|
[285] | 1918 | my $zone = ($revrec eq 'n' ? domainName($dbh, $zoneid) : revName($dbh, $zoneid));
|
---|
[23] | 1919 |
|
---|
[343] | 1920 | return ('FAIL', ($revrec eq 'n' ? 'Domain' : 'Reverse zone')." ID $zoneid doesn't exist") if !$zone;
|
---|
| 1921 |
|
---|
[285] | 1922 | # Set this up here since we may use if if $config{log_failures} is enabled
|
---|
| 1923 | my %loghash;
|
---|
| 1924 | $loghash{domain_id} = $zoneid if $revrec eq 'n';
|
---|
| 1925 | $loghash{rdns_id} = $zoneid if $revrec eq 'y';
|
---|
| 1926 | $loghash{group_id} = parentID($dbh,
|
---|
| 1927 | (id => $zoneid, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec) );
|
---|
| 1928 |
|
---|
[3] | 1929 | # Wrap all the SQL in a transaction
|
---|
| 1930 | eval {
|
---|
[274] | 1931 | # Disentangle custom record types before removing the
|
---|
| 1932 | # ones that are only in the zone to be deleted
|
---|
| 1933 | if ($revrec eq 'n') {
|
---|
| 1934 | my $sth = $dbh->prepare("UPDATE records SET type=?,domain_id=0 WHERE domain_id=? AND type=?");
|
---|
| 1935 | $failmsg = "Failure converting multizone types to single-zone";
|
---|
| 1936 | $sth->execute($reverse_typemap{PTR}, $zoneid, 65280);
|
---|
| 1937 | $sth->execute($reverse_typemap{PTR}, $zoneid, 65281);
|
---|
| 1938 | $sth->execute(65282, $zoneid, 65283);
|
---|
| 1939 | $sth->execute(65282, $zoneid, 65284);
|
---|
| 1940 | $failmsg = "Failure removing domain records";
|
---|
| 1941 | $dbh->do("DELETE FROM records WHERE domain_id=?", undef, ($zoneid));
|
---|
| 1942 | $failmsg = "Failure removing domain";
|
---|
| 1943 | $dbh->do("DELETE FROM domains WHERE domain_id=?", undef, ($zoneid));
|
---|
| 1944 | } else {
|
---|
| 1945 | my $sth = $dbh->prepare("UPDATE records SET type=?,rdns_id=0 WHERE rdns_id=? AND type=?");
|
---|
| 1946 | $failmsg = "Failure converting multizone types to single-zone";
|
---|
| 1947 | $sth->execute($reverse_typemap{A}, $zoneid, 65280);
|
---|
| 1948 | $sth->execute($reverse_typemap{AAAA}, $zoneid, 65281);
|
---|
| 1949 | # We don't have an "A template" or "AAAA template" type, although it might be useful for symmetry.
|
---|
[345] | 1950 | # $sth->execute(65286?, $zoneid, 65283);
|
---|
| 1951 | # $sth->execute(65286?, $zoneid, 65284);
|
---|
[274] | 1952 | $failmsg = "Failure removing reverse records";
|
---|
| 1953 | $dbh->do("DELETE FROM records WHERE rdns_id=?", undef, ($zoneid));
|
---|
| 1954 | $failmsg = "Failure removing reverse zone";
|
---|
| 1955 | $dbh->do("DELETE FROM revzones WHERE rdns_id=?", undef, ($zoneid));
|
---|
| 1956 | }
|
---|
[3] | 1957 |
|
---|
[285] | 1958 | $msg = "Deleted ".($revrec eq 'n' ? 'domain' : 'reverse zone')." $zone";
|
---|
| 1959 | $loghash{entry} = $msg;
|
---|
| 1960 | _log($dbh, %loghash);
|
---|
| 1961 |
|
---|
[3] | 1962 | # once we get here, we should have suceeded.
|
---|
[23] | 1963 | $dbh->commit;
|
---|
[3] | 1964 | }; # end eval
|
---|
| 1965 |
|
---|
| 1966 | if ($@) {
|
---|
[285] | 1967 | $msg = $@;
|
---|
[3] | 1968 | eval { $dbh->rollback; };
|
---|
[295] | 1969 | $loghash{entry} = "Error deleting $zone: $msg ($failmsg)";
|
---|
| 1970 | if ($config{log_failures}) {
|
---|
| 1971 | _log($dbh, %loghash);
|
---|
| 1972 | $dbh->commit; # since we enabled transactions earlier
|
---|
| 1973 | }
|
---|
| 1974 | return ('FAIL', $loghash{entry});
|
---|
[3] | 1975 | } else {
|
---|
[295] | 1976 | return ('OK', $msg);
|
---|
[3] | 1977 | }
|
---|
| 1978 |
|
---|
[274] | 1979 | } # end delZone()
|
---|
[3] | 1980 |
|
---|
| 1981 |
|
---|
[2] | 1982 | ## DNSDB::domainName()
|
---|
| 1983 | # Return the domain name based on a domain ID
|
---|
| 1984 | # Takes a database handle and the domain ID
|
---|
| 1985 | # Returns the domain name or undef on failure
|
---|
| 1986 | sub domainName {
|
---|
| 1987 | $errstr = '';
|
---|
| 1988 | my $dbh = shift;
|
---|
| 1989 | my $domid = shift;
|
---|
[91] | 1990 | my ($domname) = $dbh->selectrow_array("SELECT domain FROM domains WHERE domain_id=?", undef, ($domid) );
|
---|
[2] | 1991 | $errstr = $DBI::errstr if !$domname;
|
---|
| 1992 | return $domname if $domname;
|
---|
[91] | 1993 | } # end domainName()
|
---|
[2] | 1994 |
|
---|
| 1995 |
|
---|
[224] | 1996 | ## DNSDB::revName()
|
---|
| 1997 | # Return the reverse zone name based on an rDNS ID
|
---|
| 1998 | # Takes a database handle and the rDNS ID
|
---|
| 1999 | # Returns the reverse zone name or undef on failure
|
---|
| 2000 | sub revName {
|
---|
| 2001 | $errstr = '';
|
---|
| 2002 | my $dbh = shift;
|
---|
| 2003 | my $revid = shift;
|
---|
| 2004 | my ($revname) = $dbh->selectrow_array("SELECT revnet FROM revzones WHERE rdns_id=?", undef, ($revid) );
|
---|
| 2005 | $errstr = $DBI::errstr if !$revname;
|
---|
| 2006 | return $revname if $revname;
|
---|
| 2007 | } # end revName()
|
---|
| 2008 |
|
---|
| 2009 |
|
---|
[91] | 2010 | ## DNSDB::domainID()
|
---|
| 2011 | # Takes a database handle and domain name
|
---|
| 2012 | # Returns the domain ID number
|
---|
| 2013 | sub domainID {
|
---|
| 2014 | $errstr = '';
|
---|
| 2015 | my $dbh = shift;
|
---|
| 2016 | my $domain = shift;
|
---|
[349] | 2017 | my ($domid) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)",
|
---|
| 2018 | undef, ($domain) );
|
---|
[91] | 2019 | $errstr = $DBI::errstr if !$domid;
|
---|
| 2020 | return $domid if $domid;
|
---|
| 2021 | } # end domainID()
|
---|
| 2022 |
|
---|
| 2023 |
|
---|
[276] | 2024 | ## DNSDB::revID()
|
---|
| 2025 | # Takes a database handle and reverse zone name
|
---|
| 2026 | # Returns the rDNS ID number
|
---|
| 2027 | sub revID {
|
---|
| 2028 | $errstr = '';
|
---|
| 2029 | my $dbh = shift;
|
---|
| 2030 | my $revzone = shift;
|
---|
| 2031 | my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet=?", undef, ($revzone) );
|
---|
| 2032 | $errstr = $DBI::errstr if !$revid;
|
---|
| 2033 | return $revid if $revid;
|
---|
| 2034 | } # end revID()
|
---|
| 2035 |
|
---|
| 2036 |
|
---|
[260] | 2037 | ## DNSDB::addRDNS
|
---|
| 2038 | # Adds a reverse DNS zone
|
---|
[286] | 2039 | # Takes a database handle, CIDR block, reverse DNS pattern, numeric group,
|
---|
| 2040 | # and boolean(ish) state (active/inactive)
|
---|
[260] | 2041 | # Returns a status code and message
|
---|
| 2042 | sub addRDNS {
|
---|
| 2043 | my $dbh = shift;
|
---|
| 2044 | my $zone = NetAddr::IP->new(shift);
|
---|
[446] | 2045 |
|
---|
[260] | 2046 | return ('FAIL',"Zone name must be a valid CIDR netblock") unless ($zone && $zone->addr !~ /^0/);
|
---|
[270] | 2047 | my $revpatt = shift; # construct a custom (A/AAAA+)? PTR template record
|
---|
[260] | 2048 | my $group = shift;
|
---|
| 2049 | my $state = shift;
|
---|
[446] | 2050 | my $defloc = shift || '';
|
---|
[260] | 2051 |
|
---|
| 2052 | $state = 1 if $state =~ /^active$/;
|
---|
| 2053 | $state = 1 if $state =~ /^on$/;
|
---|
| 2054 | $state = 0 if $state =~ /^inactive$/;
|
---|
| 2055 | $state = 0 if $state =~ /^off$/;
|
---|
| 2056 |
|
---|
| 2057 | return ('FAIL',"Invalid zone status") if $state !~ /^\d+$/;
|
---|
| 2058 |
|
---|
| 2059 | # quick check to start to see if we've already got one
|
---|
[299] | 2060 | my ($rdns_id) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet=?", undef, ("$zone"));
|
---|
[260] | 2061 |
|
---|
| 2062 | return ('FAIL', "Zone already exists") if $rdns_id;
|
---|
| 2063 |
|
---|
| 2064 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2065 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2066 | local $dbh->{AutoCommit} = 0;
|
---|
| 2067 | local $dbh->{RaiseError} = 1;
|
---|
| 2068 |
|
---|
[264] | 2069 | my $warnstr = '';
|
---|
[270] | 2070 | my $defttl = 3600; # 1 hour should be reasonable. And unless things have gone horribly
|
---|
| 2071 | # wrong, we should have a value to override this anyway.
|
---|
[264] | 2072 |
|
---|
[260] | 2073 | # Wrap all the SQL in a transaction
|
---|
| 2074 | eval {
|
---|
[446] | 2075 | # insert the zone...
|
---|
| 2076 | $dbh->do("INSERT INTO revzones (revnet,group_id,status,default_location) VALUES (?,?,?,?)", undef,
|
---|
| 2077 | ($zone, $group, $state, $defloc) );
|
---|
[260] | 2078 |
|
---|
| 2079 | # get the ID...
|
---|
| 2080 | ($rdns_id) = $dbh->selectrow_array("SELECT currval('revzones_rdns_id_seq')");
|
---|
| 2081 |
|
---|
[286] | 2082 | _log($dbh, (rdns_id => $rdns_id, group_id => $group,
|
---|
[260] | 2083 | entry => "Added ".($state ? 'active' : 'inactive')." reverse zone $zone"));
|
---|
| 2084 |
|
---|
| 2085 | # ... and now we construct the standard records from the default set. NB: group should be variable.
|
---|
| 2086 | my $sth = $dbh->prepare("SELECT host,type,val,ttl FROM default_rev_records WHERE group_id=?");
|
---|
[446] | 2087 | my $sth_in = $dbh->prepare("INSERT INTO records (rdns_id,domain_id,host,type,val,ttl,location)".
|
---|
| 2088 | " VALUES ($rdns_id,?,?,?,?,?,?)");
|
---|
[260] | 2089 | $sth->execute($group);
|
---|
| 2090 | while (my ($host,$type,$val,$ttl) = $sth->fetchrow_array()) {
|
---|
[264] | 2091 | # Silently skip v4/v6 mismatches. This is not an error, this is expected.
|
---|
| 2092 | if ($zone->{isv6}) {
|
---|
| 2093 | next if ($type == 65280 || $type == 65283);
|
---|
| 2094 | } else {
|
---|
| 2095 | next if ($type == 65281 || $type == 65284);
|
---|
| 2096 | }
|
---|
[269] | 2097 |
|
---|
[260] | 2098 | $host =~ s/ADMINDOMAIN/$config{domain}/g;
|
---|
[264] | 2099 |
|
---|
[265] | 2100 | # Check to make sure the IP stubs will fit in the zone. Under most usage failures here should be rare.
|
---|
| 2101 | # On failure, tack a note on to a warning string and continue without adding this record.
|
---|
| 2102 | # While we're at it, we substitute $zone for ZONE in the value.
|
---|
| 2103 | if ($val eq 'ZONE') {
|
---|
[444] | 2104 | # If we've got a pattern, we skip the default record version on (A+)PTR-template types
|
---|
| 2105 | next if $revpatt && ($type == 65282 || $type == 65283);
|
---|
[269] | 2106 | ##fixme? do we care if we have multiple whole-zone templates?
|
---|
[265] | 2107 | $val = $zone->network;
|
---|
| 2108 | } elsif ($val =~ /ZONE/) {
|
---|
| 2109 | my $tmpval = $val;
|
---|
| 2110 | $tmpval =~ s/ZONE//;
|
---|
[269] | 2111 | # Bend the rules and allow single-trailing-number PTR or PTR template records to be inserted
|
---|
| 2112 | # as either v4 or v6. May make this an off-by-default config flag
|
---|
| 2113 | # Note that the origin records that may trigger this **SHOULD** already have ZONE,\d
|
---|
| 2114 | if ($type == 12 || $type == 65282) {
|
---|
| 2115 | $tmpval =~ s/[,.]/::/ if ($tmpval =~ /^[,.]\d+$/ && $zone->{isv6});
|
---|
| 2116 | $tmpval =~ s/[,:]+/./ if ($tmpval =~ /^(?:,|::)\d+$/ && !$zone->{isv6});
|
---|
| 2117 | }
|
---|
[265] | 2118 | my $addr;
|
---|
| 2119 | if (_ipparent($dbh, 'n', 'y', \$tmpval, $rdns_id, \$addr)) {
|
---|
| 2120 | $val = $addr->addr;
|
---|
| 2121 | } else {
|
---|
[269] | 2122 | $warnstr .= "\nDefault record '$val $typemap{$type} $host' doesn't fit in $zone, skipping";
|
---|
[264] | 2123 | next;
|
---|
| 2124 | }
|
---|
| 2125 | }
|
---|
| 2126 |
|
---|
[328] | 2127 | # Substitute $zone for ZONE in the hostname, but only for non-NS records.
|
---|
| 2128 | # NS records get this substitution on the value instead.
|
---|
| 2129 | $host = _ZONE($zone, $host) if $type != 2;
|
---|
[265] | 2130 |
|
---|
[269] | 2131 | # Fill in the forward domain ID if we can find it, otherwise:
|
---|
| 2132 | # Coerce type down to PTR or PTR template if we can't
|
---|
| 2133 | my $domid = 0;
|
---|
| 2134 | if ($type >= 65280) {
|
---|
| 2135 | if (!($domid = _hostparent($dbh, $host))) {
|
---|
| 2136 | $warnstr .= "\nRecord added as PTR instead of $typemap{$type}; domain not found for $host";
|
---|
| 2137 | $type = $reverse_typemap{PTR};
|
---|
| 2138 | $domid = 0; # just to be explicit.
|
---|
| 2139 | }
|
---|
| 2140 | }
|
---|
| 2141 |
|
---|
[446] | 2142 | $sth_in->execute($domid,$host,$type,$val,$ttl,$defloc);
|
---|
[269] | 2143 |
|
---|
[260] | 2144 | if ($typemap{$type} eq 'SOA') {
|
---|
| 2145 | my @tmp1 = split /:/, $host;
|
---|
| 2146 | my @tmp2 = split /:/, $val;
|
---|
[286] | 2147 | _log($dbh, (rdns_id => $rdns_id, group_id => $group,
|
---|
| 2148 | entry => "[new $zone] Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
|
---|
[260] | 2149 | "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl"));
|
---|
[270] | 2150 | $defttl = $tmp2[3];
|
---|
[260] | 2151 | } else {
|
---|
[446] | 2152 | my $logentry = "[new $zone] Added record '$host $typemap{$type} $val', TTL $ttl";
|
---|
| 2153 | $logentry .= ", default location ".getLoc($dbh, $defloc)->{description} if $defloc;
|
---|
| 2154 | _log($dbh, (rdns_id => $rdns_id, domain_id => $domid, group_id => $group, entry => $logentry) );
|
---|
[260] | 2155 | }
|
---|
| 2156 | }
|
---|
| 2157 |
|
---|
[270] | 2158 | # Generate record based on provided pattern.
|
---|
| 2159 | if ($revpatt) {
|
---|
| 2160 | my $host;
|
---|
| 2161 | my $type = ($zone->{isv6} ? 65284 : 65283);
|
---|
| 2162 | my $val = $zone->network;
|
---|
[269] | 2163 |
|
---|
[270] | 2164 | # Substitute $zone for ZONE in the hostname.
|
---|
| 2165 | $host = _ZONE($zone, $revpatt);
|
---|
| 2166 |
|
---|
| 2167 | my $domid = 0;
|
---|
| 2168 | if (!($domid = _hostparent($dbh, $host))) {
|
---|
| 2169 | $warnstr .= "\nDefault pattern added as PTR template instead of $typemap{$type}; domain not found for $host";
|
---|
| 2170 | $type = 65282;
|
---|
| 2171 | $domid = 0; # just to be explicit.
|
---|
| 2172 | }
|
---|
| 2173 |
|
---|
[446] | 2174 | $sth_in->execute($domid,$host,$type,$val,$defttl,$defloc);
|
---|
[286] | 2175 | my $logentry = "[new $zone] Added record '$host $typemap{$type}";
|
---|
| 2176 | _log($dbh, (rdns_id => $rdns_id, domain_id => $domid, group_id => $group,
|
---|
| 2177 | entry => $logentry." $val', TTL $defttl from pattern"));
|
---|
[270] | 2178 | }
|
---|
| 2179 |
|
---|
[264] | 2180 | # If there are warnings (presumably about default records skipped for cause) log them
|
---|
[286] | 2181 | _log($dbh, (rdns_id => $rdns_id, group_id => $group, entry => "Warning(s) adding $zone:$warnstr"))
|
---|
[264] | 2182 | if $warnstr;
|
---|
[269] | 2183 |
|
---|
[260] | 2184 | # once we get here, we should have suceeded.
|
---|
| 2185 | $dbh->commit;
|
---|
| 2186 | }; # end eval
|
---|
| 2187 |
|
---|
| 2188 | if ($@) {
|
---|
| 2189 | my $msg = $@;
|
---|
| 2190 | eval { $dbh->rollback; };
|
---|
[286] | 2191 | _log($dbh, (group_id => $group, entry => "Failed adding reverse zone $zone ($msg)"))
|
---|
| 2192 | if $config{log_failures};
|
---|
| 2193 | $dbh->commit; # since we enabled transactions earlier
|
---|
[260] | 2194 | return ('FAIL',$msg);
|
---|
| 2195 | } else {
|
---|
[286] | 2196 | my $retcode = 'OK';
|
---|
| 2197 | if ($warnstr) {
|
---|
| 2198 | $resultstr = $warnstr;
|
---|
| 2199 | $retcode = 'WARN';
|
---|
| 2200 | }
|
---|
| 2201 | return ($retcode, $rdns_id);
|
---|
[260] | 2202 | }
|
---|
| 2203 |
|
---|
| 2204 | } # end addRDNS()
|
---|
| 2205 |
|
---|
| 2206 |
|
---|
[237] | 2207 | ## DNSDB::getZoneCount
|
---|
| 2208 | # Get count of zones in group or groups
|
---|
| 2209 | # Takes a database handle and hash containing:
|
---|
| 2210 | # - the "current" group
|
---|
| 2211 | # - an array of "acceptable" groups
|
---|
| 2212 | # - a flag for forward/reverse zones
|
---|
| 2213 | # - Optionally accept a "starts with" and/or "contains" filter argument
|
---|
| 2214 | # Returns an integer count of the resulting zone list.
|
---|
| 2215 | sub getZoneCount {
|
---|
| 2216 | my $dbh = shift;
|
---|
| 2217 |
|
---|
| 2218 | my %args = @_;
|
---|
| 2219 |
|
---|
| 2220 | my @filterargs;
|
---|
[239] | 2221 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2222 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2223 | $args{filter} =~ s/\./\[\.\]/g if $args{filter}; # only match literal dots, usually in reverse zones
|
---|
[237] | 2224 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2225 |
|
---|
| 2226 | my $sql;
|
---|
| 2227 | # Not as compact, and fix-me-twice if the common bits get wrong, but much easier to read
|
---|
| 2228 | if ($args{revrec} eq 'n') {
|
---|
| 2229 | $sql = "SELECT count(*) FROM domains".
|
---|
| 2230 | " WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2231 | ($args{startwith} ? " AND domain ~* ?" : '').
|
---|
| 2232 | ($args{filter} ? " AND domain ~* ?" : '');
|
---|
| 2233 | } else {
|
---|
| 2234 | $sql = "SELECT count(*) FROM revzones".
|
---|
| 2235 | " WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2236 | ($args{startwith} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '').
|
---|
| 2237 | ($args{filter} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '');
|
---|
| 2238 | }
|
---|
| 2239 | my ($count) = $dbh->selectrow_array($sql, undef, @filterargs);
|
---|
| 2240 | return $count;
|
---|
| 2241 | } # end getZoneCount()
|
---|
| 2242 |
|
---|
| 2243 |
|
---|
| 2244 | ## DNSDB::getZoneList()
|
---|
| 2245 | # Get a list of zones in the specified group(s)
|
---|
| 2246 | # Takes the same arguments as getZoneCount() above
|
---|
| 2247 | # Returns a reference to an array of hashrefs suitable for feeding to HTML::Template
|
---|
| 2248 | sub getZoneList {
|
---|
| 2249 | my $dbh = shift;
|
---|
| 2250 |
|
---|
| 2251 | my %args = @_;
|
---|
| 2252 |
|
---|
| 2253 | my @zonelist;
|
---|
| 2254 |
|
---|
[309] | 2255 | $args{sortorder} = 'ASC' if !grep /^$args{sortorder}$/, ('ASC','DESC');
|
---|
[239] | 2256 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
[237] | 2257 |
|
---|
| 2258 | my @filterargs;
|
---|
[239] | 2259 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2260 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2261 | $args{filter} =~ s/\./\[\.\]/g if $args{filter}; # only match literal dots, usually in reverse zones
|
---|
[237] | 2262 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2263 |
|
---|
| 2264 | my $sql;
|
---|
| 2265 | # Not as compact, and fix-me-twice if the common bits get wrong, but much easier to read
|
---|
| 2266 | if ($args{revrec} eq 'n') {
|
---|
[309] | 2267 | $args{sortby} = 'domain' if !grep /^$args{sortby}$/, ('domain','group','status');
|
---|
[237] | 2268 | $sql = "SELECT domain_id,domain,status,groups.group_name AS group FROM domains".
|
---|
| 2269 | " INNER JOIN groups ON domains.group_id=groups.group_id".
|
---|
| 2270 | " WHERE domains.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2271 | ($args{startwith} ? " AND domain ~* ?" : '').
|
---|
| 2272 | ($args{filter} ? " AND domain ~* ?" : '');
|
---|
| 2273 | } else {
|
---|
[239] | 2274 | ##fixme: arguably startwith here is irrelevant. depends on the UI though.
|
---|
[309] | 2275 | $args{sortby} = 'revnet' if !grep /^$args{sortby}$/, ('revnet','group','status');
|
---|
[237] | 2276 | $sql = "SELECT rdns_id,revnet,status,groups.group_name AS group FROM revzones".
|
---|
| 2277 | " INNER JOIN groups ON revzones.group_id=groups.group_id".
|
---|
| 2278 | " WHERE revzones.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2279 | ($args{startwith} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '').
|
---|
| 2280 | ($args{filter} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '');
|
---|
| 2281 | }
|
---|
| 2282 | # A common tail.
|
---|
[239] | 2283 | $sql .= " ORDER BY ".($args{sortby} eq 'group' ? 'groups.group_name' : $args{sortby})." $args{sortorder} ".
|
---|
| 2284 | ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage}".
|
---|
[237] | 2285 | " OFFSET ".$args{offset}*$config{perpage});
|
---|
[402] | 2286 | my $sth = $dbh->prepare($sql);
|
---|
| 2287 | $sth->execute(@filterargs);
|
---|
| 2288 | my $rownum = 0;
|
---|
[237] | 2289 |
|
---|
[402] | 2290 | while (my @data = $sth->fetchrow_array) {
|
---|
| 2291 | my %row;
|
---|
| 2292 | $row{domain_id} = $data[0];
|
---|
| 2293 | $row{domain} = $data[1];
|
---|
| 2294 | $row{status} = $data[2];
|
---|
| 2295 | $row{group} = $data[3];
|
---|
| 2296 | push @zonelist, \%row;
|
---|
| 2297 | }
|
---|
| 2298 |
|
---|
| 2299 | return \@zonelist;
|
---|
[237] | 2300 | } # end getZoneList()
|
---|
| 2301 |
|
---|
| 2302 |
|
---|
[383] | 2303 | ## DNSDB::getZoneLocation()
|
---|
[387] | 2304 | # Retrieve the default location for a zone.
|
---|
[383] | 2305 | # Takes a database handle, forward/reverse flag, and zone ID
|
---|
| 2306 | sub getZoneLocation {
|
---|
| 2307 | my $dbh = shift;
|
---|
| 2308 | my $revrec = shift;
|
---|
| 2309 | my $zoneid = shift;
|
---|
| 2310 |
|
---|
| 2311 | my ($loc) = $dbh->selectrow_array("SELECT default_location FROM ".
|
---|
| 2312 | ($revrec eq 'n' ? 'domains WHERE domain_id = ?' : 'revzones WHERE rdns_id = ?'),
|
---|
| 2313 | undef, ($zoneid));
|
---|
| 2314 | return $loc;
|
---|
| 2315 | } # end getZoneLocation()
|
---|
| 2316 |
|
---|
| 2317 |
|
---|
[18] | 2318 | ## DNSDB::addGroup()
|
---|
| 2319 | # Add a group
|
---|
[66] | 2320 | # Takes a database handle, group name, parent group, hashref for permissions,
|
---|
[292] | 2321 | # and optional template-vs-cloneme flag for the default records
|
---|
[18] | 2322 | # Returns a status code and message
|
---|
| 2323 | sub addGroup {
|
---|
| 2324 | $errstr = '';
|
---|
| 2325 | my $dbh = shift;
|
---|
[20] | 2326 | my $groupname = shift;
|
---|
| 2327 | my $pargroup = shift;
|
---|
[66] | 2328 | my $permissions = shift;
|
---|
[18] | 2329 |
|
---|
[66] | 2330 | # 0 indicates "custom", hardcoded.
|
---|
[18] | 2331 | # Any other value clones that group's default records, if it exists.
|
---|
[66] | 2332 | my $inherit = shift || 0;
|
---|
| 2333 | ##fixme: need a flag to indicate clone records or <?> ?
|
---|
[18] | 2334 |
|
---|
| 2335 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2336 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2337 | local $dbh->{AutoCommit} = 0;
|
---|
| 2338 | local $dbh->{RaiseError} = 1;
|
---|
| 2339 |
|
---|
[292] | 2340 | my ($group_id) = $dbh->selectrow_array("SELECT group_id FROM groups WHERE group_name=?", undef, ($groupname));
|
---|
[38] | 2341 |
|
---|
| 2342 | return ('FAIL', "Group already exists") if $group_id;
|
---|
| 2343 |
|
---|
[18] | 2344 | # Wrap all the SQL in a transaction
|
---|
| 2345 | eval {
|
---|
[292] | 2346 | $dbh->do("INSERT INTO groups (parent_group_id,group_name) VALUES (?,?)", undef, ($pargroup, $groupname) );
|
---|
[18] | 2347 |
|
---|
[292] | 2348 | my ($groupid) = $dbh->selectrow_array("SELECT currval('groups_group_id_seq')");
|
---|
[18] | 2349 |
|
---|
[292] | 2350 | # We work through the whole set of permissions instead of specifying them so
|
---|
| 2351 | # that when we add a new permission, we don't have to change the code anywhere
|
---|
| 2352 | # that doesn't explicitly deal with that specific permission.
|
---|
| 2353 | my @permvals;
|
---|
| 2354 | foreach (@permtypes) {
|
---|
| 2355 | if (!defined ($permissions->{$_})) {
|
---|
| 2356 | push @permvals, 0;
|
---|
| 2357 | } else {
|
---|
| 2358 | push @permvals, $permissions->{$_};
|
---|
[66] | 2359 | }
|
---|
[292] | 2360 | }
|
---|
| 2361 | $dbh->do("INSERT INTO permissions (group_id,$permlist) values (?".',?'x($#permtypes+1).")",
|
---|
| 2362 | undef, ($groupid, @permvals) );
|
---|
| 2363 | my ($permid) = $dbh->selectrow_array("SELECT currval('permissions_permission_id_seq')");
|
---|
| 2364 | $dbh->do("UPDATE groups SET permission_id=$permid WHERE group_id=$groupid");
|
---|
[66] | 2365 |
|
---|
[292] | 2366 | # Default records
|
---|
[255] | 2367 | my $sthf = $dbh->prepare("INSERT INTO default_records (group_id,host,type,val,distance,weight,port,ttl) ".
|
---|
[20] | 2368 | "VALUES ($groupid,?,?,?,?,?,?,?)");
|
---|
[255] | 2369 | my $sthr = $dbh->prepare("INSERT INTO default_rev_records (group_id,host,type,val,ttl) ".
|
---|
| 2370 | "VALUES ($groupid,?,?,?,?)");
|
---|
[66] | 2371 | if ($inherit) {
|
---|
[87] | 2372 | # Duplicate records from parent. Actually relying on inherited records feels
|
---|
| 2373 | # very fragile, and it would be problematic to roll over at a later time.
|
---|
[18] | 2374 | my $sth2 = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl FROM default_records WHERE group_id=?");
|
---|
[87] | 2375 | $sth2->execute($pargroup);
|
---|
[18] | 2376 | while (my @clonedata = $sth2->fetchrow_array) {
|
---|
[255] | 2377 | $sthf->execute(@clonedata);
|
---|
[18] | 2378 | }
|
---|
[255] | 2379 | # And now the reverse records
|
---|
[292] | 2380 | $sth2 = $dbh->prepare("SELECT host,type,val,ttl FROM default_rev_records WHERE group_id=?");
|
---|
[255] | 2381 | $sth2->execute($pargroup);
|
---|
| 2382 | while (my @clonedata = $sth2->fetchrow_array) {
|
---|
| 2383 | $sthr->execute(@clonedata);
|
---|
| 2384 | }
|
---|
[18] | 2385 | } else {
|
---|
[66] | 2386 | ##fixme: Hardcoding is Bad, mmmmkaaaay?
|
---|
[18] | 2387 | # reasonable basic defaults for SOA, MX, NS, and minimal hosting
|
---|
| 2388 | # could load from a config file, but somewhere along the line we need hardcoded bits.
|
---|
[255] | 2389 | $sthf->execute('ns1.example.com:hostmaster.example.com', 6, '10800:3600:604800:10800', 0, 0, 0, 86400);
|
---|
| 2390 | $sthf->execute('DOMAIN', 1, '192.168.4.2', 0, 0, 0, 7200);
|
---|
| 2391 | $sthf->execute('DOMAIN', 15, 'mx.example.com', 10, 0, 0, 7200);
|
---|
| 2392 | $sthf->execute('DOMAIN', 2, 'ns1.example.com', 0, 0, 0, 7200);
|
---|
| 2393 | $sthf->execute('DOMAIN', 2, 'ns2.example.com', 0, 0, 0, 7200);
|
---|
| 2394 | $sthf->execute('www.DOMAIN', 5, 'DOMAIN', 0, 0, 0, 7200);
|
---|
| 2395 | # reasonable basic defaults for generic reverse zone. Same as initial SQL tabledef.
|
---|
| 2396 | $sthr->execute('hostmaster.ADMINDOMAIN:ns1.ADMINDOMAIN', 6, '10800:3600:604800:10800', 86400);
|
---|
| 2397 | $sthr->execute('unused-%r.ADMINDOMAIN', 65283, 'ZONE', 3600);
|
---|
[18] | 2398 | }
|
---|
| 2399 |
|
---|
[292] | 2400 | _log($dbh, (group_id => $pargroup, entry => "Added group $groupname") );
|
---|
| 2401 |
|
---|
[18] | 2402 | # once we get here, we should have suceeded.
|
---|
| 2403 | $dbh->commit;
|
---|
| 2404 | }; # end eval
|
---|
| 2405 |
|
---|
| 2406 | if ($@) {
|
---|
| 2407 | my $msg = $@;
|
---|
| 2408 | eval { $dbh->rollback; };
|
---|
[292] | 2409 | if ($config{log_failures}) {
|
---|
| 2410 | _log($dbh, (group_id => $pargroup, entry => "Failed to add group $groupname: $msg") );
|
---|
| 2411 | $dbh->commit;
|
---|
| 2412 | }
|
---|
[18] | 2413 | return ('FAIL',$msg);
|
---|
| 2414 | }
|
---|
| 2415 |
|
---|
[292] | 2416 | return ('OK','OK');
|
---|
[18] | 2417 | } # end addGroup()
|
---|
| 2418 |
|
---|
| 2419 |
|
---|
[22] | 2420 | ## DNSDB::delGroup()
|
---|
| 2421 | # Delete a group.
|
---|
| 2422 | # Takes a group ID
|
---|
| 2423 | # Returns a status code and message
|
---|
| 2424 | sub delGroup {
|
---|
| 2425 | my $dbh = shift;
|
---|
| 2426 | my $groupid = shift;
|
---|
| 2427 |
|
---|
| 2428 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2429 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2430 | local $dbh->{AutoCommit} = 0;
|
---|
| 2431 | local $dbh->{RaiseError} = 1;
|
---|
| 2432 |
|
---|
| 2433 | ##fixme: locate "knowable" error conditions and deal with them before the eval
|
---|
[23] | 2434 | # ... or inside, whatever.
|
---|
[22] | 2435 | # -> domains still exist in group
|
---|
| 2436 | # -> ...
|
---|
[23] | 2437 | my $failmsg = '';
|
---|
[293] | 2438 | my $resultmsg = '';
|
---|
[22] | 2439 |
|
---|
[293] | 2440 | # collect some pieces for logging and error messages
|
---|
| 2441 | my $groupname = groupName($dbh,$groupid);
|
---|
| 2442 | my $parid = parentID($dbh, (id => $groupid, type => 'group'));
|
---|
| 2443 |
|
---|
[22] | 2444 | # Wrap all the SQL in a transaction
|
---|
| 2445 | eval {
|
---|
[293] | 2446 | # Check for Things in the group
|
---|
| 2447 | $failmsg = "Can't remove group $groupname";
|
---|
| 2448 | my ($grpcnt) = $dbh->selectrow_array("SELECT count(*) FROM groups WHERE parent_group_id=?", undef, ($groupid));
|
---|
| 2449 | die "$grpcnt groups still in group\n" if $grpcnt;
|
---|
| 2450 | my ($domcnt) = $dbh->selectrow_array("SELECT count(*) FROM domains WHERE group_id=?", undef, ($groupid));
|
---|
[23] | 2451 | die "$domcnt domains still in group\n" if $domcnt;
|
---|
[293] | 2452 | my ($usercnt) = $dbh->selectrow_array("SELECT count(*) FROM users WHERE group_id=?", undef, ($groupid));
|
---|
| 2453 | die "$usercnt users still in group\n" if $usercnt;
|
---|
[23] | 2454 |
|
---|
[293] | 2455 | $failmsg = "Failed to delete default records for $groupname";
|
---|
| 2456 | $dbh->do("DELETE from default_records WHERE group_id=?", undef, ($groupid));
|
---|
| 2457 | $failmsg = "Failed to delete default reverse records for $groupname";
|
---|
| 2458 | $dbh->do("DELETE from default_rev_records WHERE group_id=?", undef, ($groupid));
|
---|
| 2459 | $failmsg = "Failed to remove group $groupname";
|
---|
| 2460 | $dbh->do("DELETE from groups WHERE group_id=?", undef, ($groupid));
|
---|
[22] | 2461 |
|
---|
[293] | 2462 | _log($dbh, (group_id => $parid, entry => "Deleted group $groupname"));
|
---|
| 2463 | $resultmsg = "Deleted group $groupname";
|
---|
| 2464 |
|
---|
[22] | 2465 | # once we get here, we should have suceeded.
|
---|
| 2466 | $dbh->commit;
|
---|
| 2467 | }; # end eval
|
---|
| 2468 |
|
---|
| 2469 | if ($@) {
|
---|
| 2470 | my $msg = $@;
|
---|
| 2471 | eval { $dbh->rollback; };
|
---|
[293] | 2472 | if ($config{log_failures}) {
|
---|
| 2473 | _log($dbh, (group_id => $parid, entry => "$failmsg: $msg"));
|
---|
| 2474 | $dbh->commit; # since we enabled transactions earlier
|
---|
| 2475 | }
|
---|
[23] | 2476 | return ('FAIL',"$failmsg: $msg");
|
---|
[22] | 2477 | }
|
---|
[293] | 2478 |
|
---|
| 2479 | return ('OK',$resultmsg);
|
---|
[22] | 2480 | } # end delGroup()
|
---|
| 2481 |
|
---|
| 2482 |
|
---|
[19] | 2483 | ## DNSDB::getChildren()
|
---|
| 2484 | # Get a list of all groups whose parent^n is group <n>
|
---|
[24] | 2485 | # Takes a database handle, group ID, reference to an array to put the group IDs in,
|
---|
| 2486 | # and an optional flag to return only immediate children or all children-of-children
|
---|
| 2487 | # default to returning all children
|
---|
[19] | 2488 | # Calls itself
|
---|
| 2489 | sub getChildren {
|
---|
| 2490 | $errstr = '';
|
---|
| 2491 | my $dbh = shift;
|
---|
[20] | 2492 | my $rootgroup = shift;
|
---|
| 2493 | my $groupdest = shift;
|
---|
[24] | 2494 | my $immed = shift || 'all';
|
---|
[19] | 2495 |
|
---|
| 2496 | # special break for default group; otherwise we get stuck.
|
---|
[20] | 2497 | if ($rootgroup == 1) {
|
---|
[19] | 2498 | # by definition, group 1 is the Root Of All Groups
|
---|
[24] | 2499 | my $sth = $dbh->prepare("SELECT group_id FROM groups WHERE NOT (group_id=1)".
|
---|
[331] | 2500 | ($immed ne 'all' ? " AND parent_group_id=1" : '')." ORDER BY group_name");
|
---|
[19] | 2501 | $sth->execute;
|
---|
| 2502 | while (my @this = $sth->fetchrow_array) {
|
---|
[20] | 2503 | push @$groupdest, @this;
|
---|
[19] | 2504 | }
|
---|
| 2505 | } else {
|
---|
[331] | 2506 | my $sth = $dbh->prepare("SELECT group_id FROM groups WHERE parent_group_id=? ORDER BY group_name");
|
---|
[20] | 2507 | $sth->execute($rootgroup);
|
---|
[19] | 2508 | return if $sth->rows == 0;
|
---|
[20] | 2509 | my @grouplist;
|
---|
| 2510 | while (my ($group) = $sth->fetchrow_array) {
|
---|
| 2511 | push @$groupdest, $group;
|
---|
[24] | 2512 | getChildren($dbh,$group,$groupdest) if $immed eq 'all';
|
---|
[19] | 2513 | }
|
---|
| 2514 | }
|
---|
| 2515 | } # end getChildren()
|
---|
| 2516 |
|
---|
| 2517 |
|
---|
[20] | 2518 | ## DNSDB::groupName()
|
---|
[17] | 2519 | # Return the group name based on a group ID
|
---|
| 2520 | # Takes a database handle and the group ID
|
---|
| 2521 | # Returns the group name or undef on failure
|
---|
[20] | 2522 | sub groupName {
|
---|
[13] | 2523 | $errstr = '';
|
---|
| 2524 | my $dbh = shift;
|
---|
[20] | 2525 | my $groupid = shift;
|
---|
| 2526 | my $sth = $dbh->prepare("SELECT group_name FROM groups WHERE group_id=?");
|
---|
| 2527 | $sth->execute($groupid);
|
---|
| 2528 | my ($groupname) = $sth->fetchrow_array();
|
---|
| 2529 | $errstr = $DBI::errstr if !$groupname;
|
---|
| 2530 | return $groupname if $groupname;
|
---|
| 2531 | } # end groupName
|
---|
[13] | 2532 |
|
---|
| 2533 |
|
---|
[314] | 2534 | ## DNSDB::getGroupCount()
|
---|
| 2535 | # Get count of subgroups in group or groups
|
---|
| 2536 | # Takes a database handle and hash containing:
|
---|
| 2537 | # - the "current" group
|
---|
| 2538 | # - an array of "acceptable" groups
|
---|
| 2539 | # - Optionally accept a "starts with" and/or "contains" filter argument
|
---|
| 2540 | # Returns an integer count of the resulting group list.
|
---|
| 2541 | sub getGroupCount {
|
---|
| 2542 | my $dbh = shift;
|
---|
| 2543 |
|
---|
| 2544 | my %args = @_;
|
---|
| 2545 |
|
---|
| 2546 | my @filterargs;
|
---|
| 2547 |
|
---|
| 2548 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2549 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2550 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2551 |
|
---|
| 2552 | my $sql = "SELECT count(*) FROM groups ".
|
---|
| 2553 | "WHERE parent_group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2554 | ($args{startwith} ? " AND group_name ~* ?" : '').
|
---|
| 2555 | ($args{filter} ? " AND group_name ~* ?" : '');
|
---|
| 2556 | my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
|
---|
| 2557 | $errstr = $dbh->errstr if !$count;
|
---|
| 2558 | return $count;
|
---|
| 2559 | } # end getGroupCount
|
---|
| 2560 |
|
---|
| 2561 |
|
---|
| 2562 | ## DNSDB::getGroupList()
|
---|
| 2563 | # Get a list of sub^n-groups in the specified group(s)
|
---|
| 2564 | # Takes the same arguments as getGroupCount() above
|
---|
| 2565 | # Returns an arrayref containing hashrefs suitable for feeding straight to HTML::Template
|
---|
| 2566 | sub getGroupList {
|
---|
| 2567 | my $dbh = shift;
|
---|
| 2568 |
|
---|
| 2569 | my %args = @_;
|
---|
| 2570 |
|
---|
| 2571 | my @filterargs;
|
---|
| 2572 |
|
---|
| 2573 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2574 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2575 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2576 |
|
---|
| 2577 | # protection against bad or missing arguments
|
---|
| 2578 | $args{sortorder} = 'ASC' if !$args{sortorder};
|
---|
[397] | 2579 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
[314] | 2580 |
|
---|
| 2581 | # munge sortby for columns in database
|
---|
| 2582 | $args{sortby} = 'g.group_name' if $args{sortby} eq 'group';
|
---|
| 2583 | $args{sortby} = 'g2.group_name' if $args{sortby} eq 'parent';
|
---|
| 2584 |
|
---|
[385] | 2585 | my $sql = q(SELECT g.group_id AS groupid, g.group_name AS groupname, g2.group_name AS pgroup
|
---|
[314] | 2586 | FROM groups g
|
---|
| 2587 | INNER JOIN groups g2 ON g2.group_id=g.parent_group_id
|
---|
| 2588 | ).
|
---|
[385] | 2589 | " WHERE g.parent_group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
[314] | 2590 | ($args{startwith} ? " AND g.group_name ~* ?" : '').
|
---|
| 2591 | ($args{filter} ? " AND g.group_name ~* ?" : '').
|
---|
| 2592 | " GROUP BY g.group_id, g.group_name, g2.group_name ".
|
---|
| 2593 | " ORDER BY $args{sortby} $args{sortorder} ".
|
---|
| 2594 | ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
|
---|
| 2595 | my $glist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
|
---|
| 2596 | $errstr = $dbh->errstr if !$glist;
|
---|
[385] | 2597 |
|
---|
| 2598 | # LEFT JOINs make the result set balloon beyond sanity just to include counts;
|
---|
| 2599 | # this means there's lots of crunching needed to trim the result set back down.
|
---|
| 2600 | # So instead we track the order of the groups, and push the counts into the
|
---|
| 2601 | # arrayref result separately.
|
---|
| 2602 | ##fixme: put this whole sub in a transaction? might be
|
---|
| 2603 | # needed for accurate results on very busy systems.
|
---|
[386] | 2604 | ##fixme: large group lists need prepared statements?
|
---|
| 2605 | #my $ucsth = $dbh->prepare("SELECT count(*) FROM users WHERE group_id=?");
|
---|
| 2606 | #my $dcsth = $dbh->prepare("SELECT count(*) FROM domains WHERE group_id=?");
|
---|
| 2607 | #my $rcsth = $dbh->prepare("SELECT count(*) FROM revzones WHERE group_id=?");
|
---|
[385] | 2608 | foreach (@{$glist}) {
|
---|
[386] | 2609 | my ($ucnt) = $dbh->selectrow_array("SELECT count(*) FROM users WHERE group_id=?", undef, ($$_{groupid}));
|
---|
| 2610 | $$_{nusers} = $ucnt;
|
---|
| 2611 | my ($dcnt) = $dbh->selectrow_array("SELECT count(*) FROM domains WHERE group_id=?", undef, ($$_{groupid}));
|
---|
| 2612 | $$_{ndomains} = $dcnt;
|
---|
| 2613 | my ($rcnt) = $dbh->selectrow_array("SELECT count(*) FROM revzones WHERE group_id=?", undef, ($$_{groupid}));
|
---|
| 2614 | $$_{nrevzones} = $rcnt;
|
---|
[385] | 2615 | }
|
---|
| 2616 |
|
---|
[314] | 2617 | return $glist;
|
---|
| 2618 | } # end getGroupList
|
---|
| 2619 |
|
---|
| 2620 |
|
---|
[118] | 2621 | ## DNSDB::groupID()
|
---|
| 2622 | # Return the group ID based on the group name
|
---|
| 2623 | # Takes a database handle and the group name
|
---|
| 2624 | # Returns the group ID or undef on failure
|
---|
| 2625 | sub groupID {
|
---|
| 2626 | $errstr = '';
|
---|
| 2627 | my $dbh = shift;
|
---|
| 2628 | my $group = shift;
|
---|
[406] | 2629 | my ($grpid) = $dbh->selectrow_array("SELECT group_id FROM groups WHERE group_name=?", undef, ($group) );
|
---|
[118] | 2630 | $errstr = $DBI::errstr if !$grpid;
|
---|
| 2631 | return $grpid if $grpid;
|
---|
| 2632 | } # end groupID()
|
---|
| 2633 |
|
---|
| 2634 |
|
---|
[24] | 2635 | ## DNSDB::addUser()
|
---|
[87] | 2636 | # Add a user.
|
---|
| 2637 | # Takes a DB handle, username, group ID, password, state (active/inactive).
|
---|
| 2638 | # Optionally accepts:
|
---|
| 2639 | # user type (user/admin) - defaults to user
|
---|
| 2640 | # permissions string - defaults to inherit from group
|
---|
| 2641 | # three valid forms:
|
---|
| 2642 | # i - Inherit permissions
|
---|
| 2643 | # c:<user_id> - Clone permissions from <user_id>
|
---|
| 2644 | # C:<permission list> - Set these specific permissions
|
---|
| 2645 | # first name - defaults to username
|
---|
| 2646 | # last name - defaults to blank
|
---|
| 2647 | # phone - defaults to blank (could put other data within column def)
|
---|
[90] | 2648 | # Returns (OK,<uid>) on success, (FAIL,<message>) on failure
|
---|
[24] | 2649 | sub addUser {
|
---|
| 2650 | $errstr = '';
|
---|
| 2651 | my $dbh = shift;
|
---|
| 2652 | my $username = shift;
|
---|
| 2653 | my $group = shift;
|
---|
| 2654 | my $pass = shift;
|
---|
| 2655 | my $state = shift;
|
---|
[25] | 2656 |
|
---|
[90] | 2657 | return ('FAIL', "Missing one or more required entries") if !defined($state);
|
---|
| 2658 | return ('FAIL', "Username must not be blank") if !$username;
|
---|
[87] | 2659 |
|
---|
[408] | 2660 | # Munge in some alternate state values
|
---|
| 2661 | $state = 1 if $state =~ /^active$/;
|
---|
| 2662 | $state = 1 if $state =~ /^on$/;
|
---|
| 2663 | $state = 0 if $state =~ /^inactive$/;
|
---|
| 2664 | $state = 0 if $state =~ /^off$/;
|
---|
| 2665 |
|
---|
[25] | 2666 | my $type = shift || 'u'; # create limited users by default - fwiw, not sure yet how this will interact with ACLs
|
---|
| 2667 |
|
---|
[67] | 2668 | my $permstring = shift || 'i'; # default is to inhert permissions from group
|
---|
| 2669 |
|
---|
[25] | 2670 | my $fname = shift || $username;
|
---|
[24] | 2671 | my $lname = shift || '';
|
---|
[25] | 2672 | my $phone = shift || ''; # not going format-check
|
---|
[24] | 2673 |
|
---|
[38] | 2674 | my $sth = $dbh->prepare("SELECT user_id FROM users WHERE username=?");
|
---|
[24] | 2675 | my $user_id;
|
---|
| 2676 |
|
---|
[38] | 2677 | # quick check to start to see if we've already got one
|
---|
| 2678 | $sth->execute($username);
|
---|
| 2679 | ($user_id) = $sth->fetchrow_array;
|
---|
| 2680 |
|
---|
| 2681 | return ('FAIL', "User already exists") if $user_id;
|
---|
| 2682 |
|
---|
[24] | 2683 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2684 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2685 | local $dbh->{AutoCommit} = 0;
|
---|
| 2686 | local $dbh->{RaiseError} = 1;
|
---|
| 2687 |
|
---|
| 2688 | # Wrap all the SQL in a transaction
|
---|
| 2689 | eval {
|
---|
[87] | 2690 | # insert the user... note we set inherited perms by default since
|
---|
| 2691 | # it's simple and cleans up some other bits of state
|
---|
| 2692 | my $sth = $dbh->prepare("INSERT INTO users ".
|
---|
| 2693 | "(group_id,username,password,firstname,lastname,phone,type,status,permission_id,inherit_perm) ".
|
---|
| 2694 | "VALUES (?,?,?,?,?,?,?,?,(SELECT permission_id FROM permissions WHERE group_id=?),'t')");
|
---|
| 2695 | $sth->execute($group,$username,unix_md5_crypt($pass),$fname,$lname,$phone,$type,$state,$group);
|
---|
[24] | 2696 |
|
---|
| 2697 | # get the ID...
|
---|
[94] | 2698 | ($user_id) = $dbh->selectrow_array("SELECT currval('users_user_id_seq')");
|
---|
[24] | 2699 |
|
---|
[87] | 2700 | # Permissions! Gotta set'em all!
|
---|
[401] | 2701 | die "Invalid permission string $permstring\n"
|
---|
[87] | 2702 | if $permstring !~ /^(?:
|
---|
| 2703 | i # inherit
|
---|
| 2704 | |c:\d+ # clone
|
---|
| 2705 | # custom. no, the leading , is not a typo
|
---|
[391] | 2706 | |C:(?:,(?:group|user|domain|record|location|self)_(?:edit|create|delete|locchg|view))*
|
---|
[87] | 2707 | )$/x;
|
---|
| 2708 | # bleh. I'd call another function to do my dirty work, but we're in the middle of a transaction already.
|
---|
| 2709 | if ($permstring ne 'i') {
|
---|
| 2710 | # for cloned or custom permissions, we have to create a new permissions entry.
|
---|
| 2711 | my $clonesrc = $group;
|
---|
| 2712 | if ($permstring =~ /^c:(\d+)/) { $clonesrc = $1; }
|
---|
| 2713 | $dbh->do("INSERT INTO permissions ($permlist,user_id) ".
|
---|
| 2714 | "SELECT $permlist,? FROM permissions WHERE permission_id=".
|
---|
| 2715 | "(SELECT permission_id FROM permissions WHERE ".($permstring =~ /^c:/ ? 'user' : 'group')."_id=?)",
|
---|
| 2716 | undef, ($user_id,$clonesrc) );
|
---|
| 2717 | $dbh->do("UPDATE users SET permission_id=".
|
---|
| 2718 | "(SELECT permission_id FROM permissions WHERE user_id=?) ".
|
---|
| 2719 | "WHERE user_id=?", undef, ($user_id, $user_id) );
|
---|
| 2720 | }
|
---|
| 2721 | if ($permstring =~ /^C:/) {
|
---|
| 2722 | # finally for custom permissions, we set the passed-in permissions (and unset
|
---|
| 2723 | # any that might have been brought in by the clone operation above)
|
---|
| 2724 | my ($permid) = $dbh->selectrow_array("SELECT permission_id FROM permissions WHERE user_id=?",
|
---|
| 2725 | undef, ($user_id) );
|
---|
| 2726 | foreach (@permtypes) {
|
---|
| 2727 | if ($permstring =~ /,$_/) {
|
---|
| 2728 | $dbh->do("UPDATE permissions SET $_='t' WHERE permission_id=?", undef, ($permid) );
|
---|
| 2729 | } else {
|
---|
| 2730 | $dbh->do("UPDATE permissions SET $_='f' WHERE permission_id=?", undef, ($permid) );
|
---|
| 2731 | }
|
---|
| 2732 | }
|
---|
| 2733 | }
|
---|
| 2734 |
|
---|
| 2735 | $dbh->do("UPDATE users SET inherit_perm='n' WHERE user_id=?", undef, ($user_id) );
|
---|
| 2736 |
|
---|
[25] | 2737 | ##fixme: add another table to hold name/email for log table?
|
---|
| 2738 |
|
---|
[294] | 2739 | _log($dbh, (group_id => $group, entry => "Added user $username ($fname $lname)"));
|
---|
[24] | 2740 | # once we get here, we should have suceeded.
|
---|
| 2741 | $dbh->commit;
|
---|
| 2742 | }; # end eval
|
---|
| 2743 |
|
---|
| 2744 | if ($@) {
|
---|
| 2745 | my $msg = $@;
|
---|
| 2746 | eval { $dbh->rollback; };
|
---|
[294] | 2747 | if ($config{log_failures}) {
|
---|
| 2748 | _log($dbh, (group_id => $group, entry => "Error adding user $username: $msg"));
|
---|
| 2749 | $dbh->commit; # since we enabled transactions earlier
|
---|
| 2750 | }
|
---|
| 2751 | return ('FAIL',"Error adding user $username: $msg");
|
---|
[24] | 2752 | }
|
---|
[294] | 2753 |
|
---|
| 2754 | return ('OK',"User $username ($fname $lname) added");
|
---|
[24] | 2755 | } # end addUser
|
---|
| 2756 |
|
---|
| 2757 |
|
---|
[325] | 2758 | ## DNSDB::getUserCount()
|
---|
| 2759 | # Get count of users in group
|
---|
| 2760 | # Takes a database handle and hash containing at least the current group, and optionally:
|
---|
| 2761 | # - a reference list of secondary groups
|
---|
| 2762 | # - a filter string
|
---|
| 2763 | # - a "Starts with" string
|
---|
| 2764 | sub getUserCount {
|
---|
| 2765 | my $dbh = shift;
|
---|
| 2766 |
|
---|
| 2767 | my %args = @_;
|
---|
| 2768 |
|
---|
| 2769 | my @filterargs;
|
---|
| 2770 |
|
---|
| 2771 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2772 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2773 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2774 |
|
---|
| 2775 |
|
---|
| 2776 | my $sql = "SELECT count(*) FROM users ".
|
---|
| 2777 | "WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2778 | ($args{startwith} ? " AND username ~* ?" : '').
|
---|
| 2779 | ($args{filter} ? " AND username ~* ?" : '');
|
---|
| 2780 | my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
|
---|
| 2781 | $errstr = $dbh->errstr if !$count;
|
---|
| 2782 | return $count;
|
---|
| 2783 | } # end getUserCount()
|
---|
| 2784 |
|
---|
| 2785 |
|
---|
| 2786 | ## DNSDB::getUserList()
|
---|
| 2787 | # Get list of users
|
---|
| 2788 | # Takes the same arguments as getUserCount() above, plus optional:
|
---|
| 2789 | # - sort field
|
---|
| 2790 | # - sort order
|
---|
| 2791 | # - offset/return-all-everything flag (defaults to $perpage records)
|
---|
| 2792 | sub getUserList {
|
---|
| 2793 | my $dbh = shift;
|
---|
| 2794 |
|
---|
| 2795 | my %args = @_;
|
---|
| 2796 |
|
---|
| 2797 | my @filterargs;
|
---|
| 2798 |
|
---|
| 2799 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 2800 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 2801 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 2802 |
|
---|
| 2803 | # better to request sorts on "simple" names, but it means we need to map it to real columns
|
---|
| 2804 | my %sortmap = (user => 'u.username', type => 'u.type', group => 'g.group_name', status => 'u.status',
|
---|
| 2805 | fname => 'fname');
|
---|
| 2806 | $args{sortby} = $sortmap{$args{sortby}};
|
---|
| 2807 |
|
---|
| 2808 | # protection against bad or missing arguments
|
---|
| 2809 | $args{sortorder} = 'ASC' if !$args{sortorder};
|
---|
| 2810 | $args{sortby} = 'u.username' if !$args{sortby};
|
---|
[397] | 2811 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
[325] | 2812 |
|
---|
| 2813 | my $sql = "SELECT u.user_id, u.username, u.firstname || ' ' || u.lastname AS fname, u.type, g.group_name, u.status ".
|
---|
| 2814 | "FROM users u ".
|
---|
| 2815 | "INNER JOIN groups g ON u.group_id=g.group_id ".
|
---|
| 2816 | "WHERE u.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 2817 | ($args{startwith} ? " AND u.username ~* ?" : '').
|
---|
| 2818 | ($args{filter} ? " AND u.username ~* ?" : '').
|
---|
[401] | 2819 | " AND NOT u.type = 'R' ".
|
---|
[325] | 2820 | " ORDER BY $args{sortby} $args{sortorder} ".
|
---|
| 2821 | ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
|
---|
| 2822 | my $ulist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
|
---|
| 2823 | $errstr = $dbh->errstr if !$ulist;
|
---|
| 2824 | return $ulist;
|
---|
| 2825 | } # end getUserList()
|
---|
| 2826 |
|
---|
| 2827 |
|
---|
[326] | 2828 | ## DNSDB::getUserDropdown()
|
---|
| 2829 | # Get a list of usernames for use in a dropdown menu.
|
---|
| 2830 | # Takes a database handle, current group, and optional "tag this as selected" flag.
|
---|
| 2831 | # Returns a reference to a list of hashrefs suitable to feeding to HTML::Template
|
---|
| 2832 | sub getUserDropdown {
|
---|
| 2833 | my $dbh = shift;
|
---|
| 2834 | my $grp = shift;
|
---|
| 2835 | my $sel = shift || 0;
|
---|
| 2836 |
|
---|
| 2837 | my $sth = $dbh->prepare("SELECT username,user_id FROM users WHERE group_id=?");
|
---|
| 2838 | $sth->execute($grp);
|
---|
| 2839 |
|
---|
| 2840 | my @userlist;
|
---|
| 2841 | while (my ($username,$uid) = $sth->fetchrow_array) {
|
---|
| 2842 | my %row = (
|
---|
| 2843 | username => $username,
|
---|
| 2844 | uid => $uid,
|
---|
| 2845 | selected => ($sel == $uid ? 1 : 0)
|
---|
| 2846 | );
|
---|
| 2847 | push @userlist, \%row;
|
---|
| 2848 | }
|
---|
| 2849 | return \@userlist;
|
---|
| 2850 | } # end getUserDropdown()
|
---|
| 2851 |
|
---|
| 2852 |
|
---|
[55] | 2853 | ## DNSDB::checkUser()
|
---|
| 2854 | # Check user/pass combo on login
|
---|
| 2855 | sub checkUser {
|
---|
| 2856 | my $dbh = shift;
|
---|
| 2857 | my $user = shift;
|
---|
[56] | 2858 | my $inpass = shift;
|
---|
[55] | 2859 |
|
---|
| 2860 | my $sth = $dbh->prepare("SELECT user_id,group_id,password,firstname,lastname FROM users WHERE username=?");
|
---|
| 2861 | $sth->execute($user);
|
---|
| 2862 | my ($uid,$gid,$pass,$fname,$lname) = $sth->fetchrow_array;
|
---|
| 2863 | my $loginfailed = 1 if !defined($uid);
|
---|
| 2864 |
|
---|
| 2865 | if ($pass =~ m|^\$1\$([A-Za-z0-9/.]+)\$|) {
|
---|
[56] | 2866 | $loginfailed = 1 if $pass ne unix_md5_crypt($inpass,$1);
|
---|
[55] | 2867 | } else {
|
---|
[56] | 2868 | $loginfailed = 1 if $pass ne $inpass;
|
---|
[55] | 2869 | }
|
---|
| 2870 |
|
---|
| 2871 | # nnnngggg
|
---|
| 2872 | return ($uid, $gid);
|
---|
| 2873 | } # end checkUser
|
---|
| 2874 |
|
---|
| 2875 |
|
---|
[83] | 2876 | ## DNSDB:: updateUser()
|
---|
[90] | 2877 | # Update general data about user
|
---|
[83] | 2878 | sub updateUser {
|
---|
| 2879 | my $dbh = shift;
|
---|
[118] | 2880 |
|
---|
| 2881 | ##fixme: tweak calling convention so that we can update any given bit of data
|
---|
[83] | 2882 | my $uid = shift;
|
---|
| 2883 | my $username = shift;
|
---|
| 2884 | my $group = shift;
|
---|
| 2885 | my $pass = shift;
|
---|
| 2886 | my $state = shift;
|
---|
[87] | 2887 | my $type = shift || 'u';
|
---|
[83] | 2888 | my $fname = shift || $username;
|
---|
| 2889 | my $lname = shift || '';
|
---|
| 2890 | my $phone = shift || ''; # not going format-check
|
---|
| 2891 |
|
---|
[294] | 2892 | my $resultmsg = '';
|
---|
[83] | 2893 |
|
---|
[411] | 2894 | # Munge in some alternate state values
|
---|
| 2895 | $state = 1 if $state =~ /^active$/;
|
---|
| 2896 | $state = 1 if $state =~ /^on$/;
|
---|
| 2897 | $state = 0 if $state =~ /^inactive$/;
|
---|
| 2898 | $state = 0 if $state =~ /^off$/;
|
---|
| 2899 |
|
---|
[83] | 2900 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2901 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2902 | local $dbh->{AutoCommit} = 0;
|
---|
| 2903 | local $dbh->{RaiseError} = 1;
|
---|
| 2904 |
|
---|
| 2905 | my $sth;
|
---|
| 2906 |
|
---|
| 2907 | # Password can be left blank; if so we assume there's one on file.
|
---|
| 2908 | # Actual blank passwords are bad, mm'kay?
|
---|
| 2909 | if (!$pass) {
|
---|
[294] | 2910 | ($pass) = $dbh->selectrow_array("SELECT password FROM users WHERE user_id=?", undef, ($uid));
|
---|
[83] | 2911 | } else {
|
---|
| 2912 | $pass = unix_md5_crypt($pass);
|
---|
| 2913 | }
|
---|
| 2914 |
|
---|
| 2915 | eval {
|
---|
[294] | 2916 | $dbh->do("UPDATE users SET username=?, password=?, firstname=?, lastname=?, phone=?, type=?, status=?".
|
---|
| 2917 | " WHERE user_id=?", undef, ($username, $pass, $fname, $lname, $phone, $type, $state, $uid));
|
---|
| 2918 | $resultmsg = "Updated user info for $username ($fname $lname)";
|
---|
| 2919 | _log($dbh, group_id => $group, entry => $resultmsg);
|
---|
[83] | 2920 | $dbh->commit;
|
---|
| 2921 | };
|
---|
| 2922 | if ($@) {
|
---|
| 2923 | my $msg = $@;
|
---|
| 2924 | eval { $dbh->rollback; };
|
---|
[294] | 2925 | if ($config{log_failures}) {
|
---|
| 2926 | _log($dbh, (group_id => $group, entry => "Error updating user $username: $msg"));
|
---|
| 2927 | $dbh->commit; # since we enabled transactions earlier
|
---|
| 2928 | }
|
---|
| 2929 | return ('FAIL',"Error updating user $username: $msg");
|
---|
[83] | 2930 | }
|
---|
[294] | 2931 |
|
---|
| 2932 | return ('OK',$resultmsg);
|
---|
[83] | 2933 | } # end updateUser()
|
---|
| 2934 |
|
---|
| 2935 |
|
---|
[24] | 2936 | ## DNSDB::delUser()
|
---|
[297] | 2937 | # Delete a user.
|
---|
| 2938 | # Takes a database handle and user ID
|
---|
| 2939 | # Returns a success/failure code and matching message
|
---|
[24] | 2940 | sub delUser {
|
---|
[25] | 2941 | my $dbh = shift;
|
---|
| 2942 | my $userid = shift;
|
---|
| 2943 |
|
---|
[297] | 2944 | return ('FAIL',"Bad userid") if !defined($userid);
|
---|
[25] | 2945 |
|
---|
[297] | 2946 | my $userdata = getUserData($dbh, $userid);
|
---|
[25] | 2947 |
|
---|
[297] | 2948 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 2949 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 2950 | local $dbh->{AutoCommit} = 0;
|
---|
| 2951 | local $dbh->{RaiseError} = 1;
|
---|
[25] | 2952 |
|
---|
[297] | 2953 | eval {
|
---|
| 2954 | $dbh->do("DELETE FROM users WHERE user_id=?", undef, ($userid));
|
---|
| 2955 | _log($dbh, (group_id => $userdata->{group_id},
|
---|
| 2956 | entry => "Deleted user ID $userid/".$userdata->{username}.
|
---|
| 2957 | " (".$userdata->{firstname}." ".$userdata->{lastname}.")") );
|
---|
| 2958 | $dbh->commit;
|
---|
| 2959 | };
|
---|
| 2960 | if ($@) {
|
---|
| 2961 | my $msg = $@;
|
---|
| 2962 | eval { $dbh->rollback; };
|
---|
| 2963 | if ($config{log_failures}) {
|
---|
| 2964 | _log($dbh, (group_id => $userdata->{group_id}, entry => "Error deleting user ID ".
|
---|
| 2965 | "$userid/".$userdata->{username}.": $msg") );
|
---|
| 2966 | $dbh->commit;
|
---|
| 2967 | }
|
---|
| 2968 | return ('FAIL',"Error deleting user $userid/".$userdata->{username}.": $msg");
|
---|
| 2969 | }
|
---|
| 2970 |
|
---|
| 2971 | return ('OK',"Deleted user ".$userdata->{username}." (".$userdata->{firstname}." ".$userdata->{lastname}.")");
|
---|
[24] | 2972 | } # end delUser
|
---|
| 2973 |
|
---|
| 2974 |
|
---|
[25] | 2975 | ## DNSDB::userFullName()
|
---|
| 2976 | # Return a pretty string!
|
---|
| 2977 | # Takes a user_id and optional printf-ish string to indicate which pieces where:
|
---|
| 2978 | # %u for the username
|
---|
| 2979 | # %f for the first name
|
---|
| 2980 | # %l for the last name
|
---|
| 2981 | # All other text in the passed string will be left as-is.
|
---|
| 2982 | ##fixme: need a "smart" option too, so that missing/null/blank first/last names don't give funky output
|
---|
| 2983 | sub userFullName {
|
---|
| 2984 | $errstr = '';
|
---|
| 2985 | my $dbh = shift;
|
---|
| 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 {
|
---|
| 3006 | my $dbh = shift;
|
---|
| 3007 | my $id = shift;
|
---|
[296] | 3008 | my $newstatus = shift || 'mu';
|
---|
[51] | 3009 |
|
---|
| 3010 | return undef if $id !~ /^\d+$/;
|
---|
| 3011 |
|
---|
[296] | 3012 | my $userdata = getUserData($dbh, $id);
|
---|
[51] | 3013 |
|
---|
[296] | 3014 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3015 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3016 | local $dbh->{AutoCommit} = 0;
|
---|
| 3017 | local $dbh->{RaiseError} = 1;
|
---|
| 3018 |
|
---|
| 3019 | if ($newstatus ne 'mu') {
|
---|
| 3020 | # ooo, fun! let's see what we were passed for status
|
---|
| 3021 | eval {
|
---|
| 3022 | $newstatus = 0 if $newstatus eq 'useroff';
|
---|
| 3023 | $newstatus = 1 if $newstatus eq 'useron';
|
---|
| 3024 | $dbh->do("UPDATE users SET status=? WHERE user_id=?", undef, ($newstatus, $id));
|
---|
| 3025 |
|
---|
[297] | 3026 | $resultstr = ($newstatus ? 'Enabled' : 'Disabled')." user ".$userdata->{username}.
|
---|
| 3027 | " (".$userdata->{firstname}." ".$userdata->{lastname}.")";
|
---|
[296] | 3028 |
|
---|
| 3029 | my %loghash;
|
---|
| 3030 | $loghash{group_id} = parentID($dbh, (id => $id, type => 'user'));
|
---|
| 3031 | $loghash{entry} = $resultstr;
|
---|
| 3032 | _log($dbh, %loghash);
|
---|
| 3033 |
|
---|
| 3034 | $dbh->commit;
|
---|
| 3035 | };
|
---|
| 3036 | if ($@) {
|
---|
| 3037 | my $msg = $@;
|
---|
| 3038 | eval { $dbh->rollback; };
|
---|
| 3039 | $resultstr = '';
|
---|
| 3040 | $errstr = $msg;
|
---|
| 3041 | ##fixme: failure logging?
|
---|
| 3042 | return;
|
---|
[51] | 3043 | }
|
---|
| 3044 | }
|
---|
| 3045 |
|
---|
[296] | 3046 | my ($status) = $dbh->selectrow_array("SELECT status FROM users WHERE user_id=?", undef, ($id));
|
---|
[51] | 3047 | return $status;
|
---|
| 3048 | } # end userStatus()
|
---|
| 3049 |
|
---|
| 3050 |
|
---|
[83] | 3051 | ## DNSDB::getUserData()
|
---|
| 3052 | # Get misc user data for display
|
---|
| 3053 | sub getUserData {
|
---|
| 3054 | my $dbh = shift;
|
---|
| 3055 | my $uid = shift;
|
---|
| 3056 |
|
---|
| 3057 | my $sth = $dbh->prepare("SELECT group_id,username,firstname,lastname,phone,type,status,inherit_perm ".
|
---|
| 3058 | "FROM users WHERE user_id=?");
|
---|
| 3059 | $sth->execute($uid);
|
---|
| 3060 | return $sth->fetchrow_hashref();
|
---|
| 3061 | } # end getUserData()
|
---|
| 3062 |
|
---|
| 3063 |
|
---|
[370] | 3064 | ## DNSDB::addLoc()
|
---|
[375] | 3065 | # Add a new location.
|
---|
| 3066 | # Takes a database handle, group ID, short and long description, and a comma-separated
|
---|
| 3067 | # list of IP addresses.
|
---|
| 3068 | # Returns ('OK',<location>) on success, ('FAIL',<failmsg>) on failure
|
---|
| 3069 | sub addLoc {
|
---|
| 3070 | my $dbh = shift;
|
---|
| 3071 | my $grp = shift;
|
---|
| 3072 | my $shdesc = shift;
|
---|
| 3073 | my $comments = shift;
|
---|
| 3074 | my $iplist = shift;
|
---|
[370] | 3075 |
|
---|
[375] | 3076 | # $shdesc gets set to the generated location ID if possible, but these can be de-undefined here.
|
---|
| 3077 | $comments = '' if !$comments;
|
---|
| 3078 | $iplist = '' if !$iplist;
|
---|
| 3079 |
|
---|
| 3080 | my $loc;
|
---|
| 3081 |
|
---|
| 3082 | # Generate a location ID. This is, by spec, a two-character widget. We'll use [a-z][a-z]
|
---|
| 3083 | # for now; 676 locations should satisfy all but the largest of the huge networks.
|
---|
| 3084 | # Not sure whether these are case-sensitive, or what other rules might apply - in any case
|
---|
| 3085 | # the absolute maximum is 16K (256*256) since it's parsed by tinydns as a two-character field.
|
---|
| 3086 |
|
---|
| 3087 | # add just after "my $origloc = $loc;":
|
---|
| 3088 | # # These expand the possible space from 26^2 to 52^2 [* note in testing only 2052 were achieved],
|
---|
| 3089 | # # and wrap it around.
|
---|
| 3090 | # # Yes, they skip a couple of possibles. No, I don't care.
|
---|
| 3091 | # $loc = 'aA' if $loc eq 'zz';
|
---|
| 3092 | # $loc = 'Aa' if $loc eq 'zZ';
|
---|
| 3093 | # $loc = 'ZA' if $loc eq 'Zz';
|
---|
| 3094 | # $loc = 'aa' if $loc eq 'ZZ';
|
---|
| 3095 |
|
---|
| 3096 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3097 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3098 | local $dbh->{AutoCommit} = 0;
|
---|
| 3099 | local $dbh->{RaiseError} = 1;
|
---|
| 3100 |
|
---|
| 3101 | ##fixme: There is probably a far better way to do this. Sequential increments
|
---|
| 3102 | # are marginally less stupid that pure random generation though, and the existence
|
---|
| 3103 | # check makes sure we don't stomp on an imported one.
|
---|
| 3104 |
|
---|
| 3105 | eval {
|
---|
| 3106 | # Get the "last" location. Note this is the only use for loc_id, because selecting on location Does Funky Things
|
---|
| 3107 | ($loc) = $dbh->selectrow_array("SELECT location FROM locations ORDER BY loc_id DESC LIMIT 1");
|
---|
| 3108 | ($loc) = ($loc =~ /^(..)/);
|
---|
| 3109 | my $origloc = $loc;
|
---|
[446] | 3110 | $loc = 'aa' if !$loc;
|
---|
[375] | 3111 | # Make a change...
|
---|
| 3112 | $loc++;
|
---|
| 3113 | # ... and keep changing if it exists
|
---|
| 3114 | while ($dbh->selectrow_array("SELECT count(*) FROM locations WHERE location LIKE ?", undef, ($loc.'%'))) {
|
---|
| 3115 | $loc++;
|
---|
| 3116 | ($loc) = ($loc =~ /^(..)/);
|
---|
| 3117 | die "too many locations in use, can't add another one\n" if $loc eq $origloc;
|
---|
| 3118 | ##fixme: really need to handle this case faster somehow
|
---|
| 3119 | #if $loc eq $origloc die "<thwap> bad admin: all locations used, your network is too fragmented";
|
---|
| 3120 | }
|
---|
| 3121 | # And now we should have a unique location. tinydns fundamentally limits the
|
---|
| 3122 | # number of these but there's no doc on what characters are valid.
|
---|
| 3123 | $shdesc = $loc if !$shdesc;
|
---|
| 3124 | $dbh->do("INSERT INTO locations (location, group_id, iplist, description, comments) VALUES (?,?,?,?,?)",
|
---|
| 3125 | undef, ($loc, $grp, $iplist, $shdesc, $comments) );
|
---|
[377] | 3126 | _log($dbh, entry => "Added location ($shdesc, '$iplist')");
|
---|
| 3127 | $dbh->commit;
|
---|
[375] | 3128 | };
|
---|
| 3129 | if ($@) {
|
---|
| 3130 | my $msg = $@;
|
---|
| 3131 | eval { $dbh->rollback; };
|
---|
| 3132 | if ($config{log_failures}) {
|
---|
| 3133 | $shdesc = $loc if !$shdesc;
|
---|
| 3134 | _log($dbh, (entry => "Failed adding location ($shdesc, '$iplist'): $msg"));
|
---|
| 3135 | $dbh->commit;
|
---|
| 3136 | }
|
---|
| 3137 | return ('FAIL',$msg);
|
---|
| 3138 | }
|
---|
| 3139 |
|
---|
| 3140 | return ('OK',$loc);
|
---|
[377] | 3141 | } # end addLoc()
|
---|
[375] | 3142 |
|
---|
| 3143 |
|
---|
[370] | 3144 | ## DNSDB::updateLoc()
|
---|
[428] | 3145 | # Update details of a location.
|
---|
| 3146 | # Takes a database handle, location ID, group ID, short description,
|
---|
| 3147 | # long comments/notes, and comma/space-separated IP list
|
---|
| 3148 | # Returns a result code and message
|
---|
[377] | 3149 | sub updateLoc {
|
---|
| 3150 | my $dbh = shift;
|
---|
| 3151 | my $loc = shift;
|
---|
| 3152 | my $grp = shift;
|
---|
| 3153 | my $shdesc = shift;
|
---|
| 3154 | my $comments = shift;
|
---|
| 3155 | my $iplist = shift;
|
---|
[370] | 3156 |
|
---|
[377] | 3157 | $shdesc = '' if !$shdesc;
|
---|
| 3158 | $comments = '' if !$comments;
|
---|
| 3159 | $iplist = '' if !$iplist;
|
---|
| 3160 |
|
---|
| 3161 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3162 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3163 | local $dbh->{AutoCommit} = 0;
|
---|
| 3164 | local $dbh->{RaiseError} = 1;
|
---|
| 3165 |
|
---|
| 3166 | my $oldloc = getLoc($dbh, $loc);
|
---|
| 3167 | my $okmsg = "Updated location (".$oldloc->{description}.", '".$oldloc->{iplist}."') to ($shdesc, '$iplist')";
|
---|
| 3168 |
|
---|
| 3169 | eval {
|
---|
| 3170 | $dbh->do("UPDATE locations SET group_id=?,iplist=?,description=?,comments=? WHERE location=?",
|
---|
| 3171 | undef, ($grp, $iplist, $shdesc, $comments, $loc) );
|
---|
| 3172 | _log($dbh, entry => $okmsg);
|
---|
| 3173 | $dbh->commit;
|
---|
| 3174 | };
|
---|
| 3175 | if ($@) {
|
---|
| 3176 | my $msg = $@;
|
---|
| 3177 | eval { $dbh->rollback; };
|
---|
| 3178 | if ($config{log_failures}) {
|
---|
| 3179 | $shdesc = $loc if !$shdesc;
|
---|
| 3180 | _log($dbh, (entry => "Failed updating location ($shdesc, '$iplist'): $msg"));
|
---|
| 3181 | $dbh->commit;
|
---|
| 3182 | }
|
---|
| 3183 | return ('FAIL',$msg);
|
---|
| 3184 | }
|
---|
| 3185 |
|
---|
| 3186 | return ('OK',$okmsg);
|
---|
| 3187 | } # end updateLoc()
|
---|
| 3188 |
|
---|
| 3189 |
|
---|
[370] | 3190 | ## DNSDB::delLoc()
|
---|
[428] | 3191 | sub delLoc {
|
---|
| 3192 | my $dbh = shift;
|
---|
| 3193 | my $loc = shift;
|
---|
[370] | 3194 |
|
---|
[428] | 3195 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3196 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3197 | local $dbh->{AutoCommit} = 0;
|
---|
| 3198 | local $dbh->{RaiseError} = 1;
|
---|
[370] | 3199 |
|
---|
[428] | 3200 | my $oldloc = getLoc($dbh, $loc);
|
---|
| 3201 | my $olddesc = ($oldloc->{description} ? $oldloc->{description} : $loc);
|
---|
| 3202 | my $okmsg = "Deleted location ($olddesc, '".$oldloc->{iplist}."')";
|
---|
| 3203 |
|
---|
| 3204 | eval {
|
---|
| 3205 | # Check for records with this location first. Deleting a location without deleting records
|
---|
| 3206 | # tagged for that location will render them unpublished without other warning.
|
---|
| 3207 | my ($r) = $dbh->selectrow_array("SELECT record_id FROM records WHERE location=? LIMIT 1", undef, ($loc) );
|
---|
| 3208 | die "Records still exist in location $olddesc\n" if $r;
|
---|
| 3209 | $dbh->do("DELETE FROM locations WHERE location=?", undef, ($loc) );
|
---|
| 3210 | _log($dbh, entry => $okmsg);
|
---|
| 3211 | $dbh->commit;
|
---|
| 3212 | };
|
---|
| 3213 | if ($@) {
|
---|
| 3214 | my $msg = $@;
|
---|
| 3215 | eval { $dbh->rollback; };
|
---|
| 3216 | if ($config{log_failures}) {
|
---|
| 3217 | _log($dbh, (entry => "Failed to delete location ($olddesc, '$oldloc->{iplist}'): $msg"));
|
---|
| 3218 | $dbh->commit;
|
---|
| 3219 | }
|
---|
| 3220 | return ('FAIL', "Failed to delete location ($olddesc, '$oldloc->{iplist}'): $msg");
|
---|
| 3221 | }
|
---|
| 3222 |
|
---|
| 3223 | return ('OK',$okmsg);
|
---|
| 3224 | } # end delLoc()
|
---|
| 3225 |
|
---|
| 3226 |
|
---|
[375] | 3227 | ## DNSDB::getLoc()
|
---|
[428] | 3228 | # Get details about a location/view
|
---|
| 3229 | # Takes a database handle and location ID.
|
---|
| 3230 | # Returns a reference to a hash containing the group ID, IP list, description, and comments/notes
|
---|
[375] | 3231 | sub getLoc {
|
---|
| 3232 | my $dbh = shift;
|
---|
| 3233 | my $loc = shift;
|
---|
| 3234 |
|
---|
| 3235 | my $sth = $dbh->prepare("SELECT group_id,iplist,description,comments FROM locations WHERE location=?");
|
---|
| 3236 | $sth->execute($loc);
|
---|
| 3237 | return $sth->fetchrow_hashref();
|
---|
| 3238 | } # end getLoc()
|
---|
| 3239 |
|
---|
| 3240 |
|
---|
[370] | 3241 | ## DNSDB::getLocCount()
|
---|
| 3242 | # Get count of locations/views
|
---|
| 3243 | # Takes a database handle and hash containing at least the current group, and optionally:
|
---|
| 3244 | # - a reference list of secondary groups
|
---|
| 3245 | # - a filter string
|
---|
| 3246 | # - a "Starts with" string
|
---|
| 3247 | sub getLocCount {
|
---|
| 3248 | my $dbh = shift;
|
---|
| 3249 |
|
---|
| 3250 | my %args = @_;
|
---|
| 3251 |
|
---|
| 3252 | my @filterargs;
|
---|
| 3253 |
|
---|
| 3254 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 3255 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 3256 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 3257 |
|
---|
| 3258 |
|
---|
| 3259 | my $sql = "SELECT count(*) FROM locations ".
|
---|
| 3260 | "WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 3261 | ($args{startwith} ? " AND description ~* ?" : '').
|
---|
| 3262 | ($args{filter} ? " AND description ~* ?" : '');
|
---|
| 3263 | my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
|
---|
| 3264 | $errstr = $dbh->errstr if !$count;
|
---|
| 3265 | return $count;
|
---|
| 3266 | } # end getLocCount()
|
---|
| 3267 |
|
---|
| 3268 |
|
---|
| 3269 | ## DNSDB::getLocList()
|
---|
| 3270 | sub getLocList {
|
---|
| 3271 | my $dbh = shift;
|
---|
| 3272 |
|
---|
| 3273 | my %args = @_;
|
---|
| 3274 |
|
---|
| 3275 | my @filterargs;
|
---|
| 3276 |
|
---|
| 3277 | $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
|
---|
| 3278 | push @filterargs, "^$args{startwith}" if $args{startwith};
|
---|
| 3279 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 3280 |
|
---|
| 3281 | # better to request sorts on "simple" names, but it means we need to map it to real columns
|
---|
| 3282 | # my %sortmap = (user => 'u.username', type => 'u.type', group => 'g.group_name', status => 'u.status',
|
---|
| 3283 | # fname => 'fname');
|
---|
| 3284 | # $args{sortby} = $sortmap{$args{sortby}};
|
---|
| 3285 |
|
---|
| 3286 | # protection against bad or missing arguments
|
---|
| 3287 | $args{sortorder} = 'ASC' if !$args{sortorder};
|
---|
| 3288 | $args{sortby} = 'l.description' if !$args{sortby};
|
---|
[397] | 3289 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
[370] | 3290 |
|
---|
| 3291 | my $sql = "SELECT l.location, l.description, l.iplist, g.group_name ".
|
---|
| 3292 | "FROM locations l ".
|
---|
| 3293 | "INNER JOIN groups g ON l.group_id=g.group_id ".
|
---|
| 3294 | "WHERE l.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
|
---|
| 3295 | ($args{startwith} ? " AND l.description ~* ?" : '').
|
---|
| 3296 | ($args{filter} ? " AND l.description ~* ?" : '').
|
---|
| 3297 | " ORDER BY $args{sortby} $args{sortorder} ".
|
---|
| 3298 | ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
|
---|
| 3299 | my $ulist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
|
---|
| 3300 | $errstr = $dbh->errstr if !$ulist;
|
---|
| 3301 | return $ulist;
|
---|
| 3302 | } # end getLocList()
|
---|
| 3303 |
|
---|
| 3304 |
|
---|
| 3305 | ## DNSDB::getLocDropdown()
|
---|
[383] | 3306 | # Get a list of location names for use in a dropdown menu.
|
---|
| 3307 | # Takes a database handle, current group, and optional "tag this as selected" flag.
|
---|
| 3308 | # Returns a reference to a list of hashrefs suitable to feeding to HTML::Template
|
---|
| 3309 | sub getLocDropdown {
|
---|
| 3310 | my $dbh = shift;
|
---|
| 3311 | my $grp = shift;
|
---|
| 3312 | my $sel = shift || '';
|
---|
[370] | 3313 |
|
---|
[383] | 3314 | my $sth = $dbh->prepare(qq(
|
---|
| 3315 | SELECT description,location FROM locations
|
---|
| 3316 | WHERE group_id=?
|
---|
| 3317 | ORDER BY description
|
---|
| 3318 | ) );
|
---|
| 3319 | $sth->execute($grp);
|
---|
[370] | 3320 |
|
---|
[383] | 3321 | my @loclist;
|
---|
[446] | 3322 | push @loclist, { locname => "(Default/All)", loc => '', selected => ($sel ? 0 : ($sel eq '' ? 1 : 0)) };
|
---|
[383] | 3323 | while (my ($locname, $loc) = $sth->fetchrow_array) {
|
---|
| 3324 | my %row = (
|
---|
| 3325 | locname => $locname,
|
---|
| 3326 | loc => $loc,
|
---|
| 3327 | selected => ($sel eq $loc ? 1 : 0)
|
---|
| 3328 | );
|
---|
| 3329 | push @loclist, \%row;
|
---|
| 3330 | }
|
---|
| 3331 | return \@loclist;
|
---|
| 3332 | } # end getLocDropdown()
|
---|
| 3333 |
|
---|
| 3334 |
|
---|
[2] | 3335 | ## DNSDB::getSOA()
|
---|
| 3336 | # Return all suitable fields from an SOA record in separate elements of a hash
|
---|
[224] | 3337 | # Takes a database handle, default/live flag, domain/reverse flag, and parent ID
|
---|
[2] | 3338 | sub getSOA {
|
---|
| 3339 | $errstr = '';
|
---|
| 3340 | my $dbh = shift;
|
---|
| 3341 | my $def = shift;
|
---|
[224] | 3342 | my $rev = shift;
|
---|
[2] | 3343 | my $id = shift;
|
---|
| 3344 |
|
---|
[224] | 3345 | # (ab)use distance and weight columns to store SOA data? can't for default_rev_records...
|
---|
| 3346 | # - should really attach serial to the zone parent somewhere
|
---|
[101] | 3347 |
|
---|
[224] | 3348 | my $sql = "SELECT record_id,host,val,ttl from "._rectable($def,$rev).
|
---|
| 3349 | " WHERE "._recparent($def,$rev)." = ? AND type=$reverse_typemap{SOA}";
|
---|
[311] | 3350 | my $ret = $dbh->selectrow_hashref($sql, undef, ($id) );
|
---|
| 3351 | return if !$ret;
|
---|
[246] | 3352 | ##fixme: stick a flag somewhere if the record doesn't exist. by the API, this is an impossible case, but...
|
---|
[2] | 3353 |
|
---|
[311] | 3354 | ($ret->{contact},$ret->{prins}) = split /:/, $ret->{host};
|
---|
| 3355 | delete $ret->{host};
|
---|
| 3356 | ($ret->{refresh},$ret->{retry},$ret->{expire},$ret->{minttl}) = split /:/, $ret->{val};
|
---|
| 3357 | delete $ret->{val};
|
---|
[2] | 3358 |
|
---|
[311] | 3359 | return $ret;
|
---|
[2] | 3360 | } # end getSOA()
|
---|
| 3361 |
|
---|
| 3362 |
|
---|
[246] | 3363 | ## DNSDB::updateSOA()
|
---|
| 3364 | # Update the specified SOA record
|
---|
| 3365 | # Takes a database handle, default/live flag, forward/reverse flag, and SOA data hash
|
---|
[277] | 3366 | # Returns a two-element list with a result code and message
|
---|
[246] | 3367 | sub updateSOA {
|
---|
| 3368 | my $dbh = shift;
|
---|
| 3369 | my $defrec = shift;
|
---|
[248] | 3370 | my $revrec = shift;
|
---|
[246] | 3371 |
|
---|
| 3372 | my %soa = @_;
|
---|
| 3373 |
|
---|
[311] | 3374 | my $oldsoa = getSOA($dbh, $defrec, $revrec, $soa{id});
|
---|
[277] | 3375 |
|
---|
[311] | 3376 | my $msg;
|
---|
| 3377 | my %logdata;
|
---|
| 3378 | if ($defrec eq 'n') {
|
---|
| 3379 | $logdata{domain_id} = $soa{id} if $revrec eq 'n';
|
---|
| 3380 | $logdata{rdns_id} = $soa{id} if $revrec eq 'y';
|
---|
| 3381 | $logdata{group_id} = parentID($dbh, (id => $soa{id}, revrec => $revrec,
|
---|
| 3382 | type => ($revrec eq 'n' ? 'domain' : 'revzone') ) );
|
---|
| 3383 | } else {
|
---|
| 3384 | $logdata{group_id} = $soa{id};
|
---|
| 3385 | }
|
---|
| 3386 | my $parname = ($defrec eq 'y' ? groupName($dbh, $soa{id}) :
|
---|
| 3387 | ($revrec eq 'n' ? domainName($dbh, $soa{id}) : revName($dbh, $soa{id})) );
|
---|
| 3388 |
|
---|
[277] | 3389 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3390 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3391 | local $dbh->{AutoCommit} = 0;
|
---|
| 3392 | local $dbh->{RaiseError} = 1;
|
---|
| 3393 |
|
---|
| 3394 | eval {
|
---|
| 3395 | my $sql = "UPDATE "._rectable($defrec, $revrec)." SET host=?, val=?, ttl=? WHERE record_id=? AND type=6";
|
---|
| 3396 | $dbh->do($sql, undef, ("$soa{contact}:$soa{prins}", "$soa{refresh}:$soa{retry}:$soa{expire}:$soa{minttl}",
|
---|
[311] | 3397 | $soa{ttl}, $oldsoa->{record_id}) );
|
---|
| 3398 | $msg = "Updated ".($defrec eq 'y' ? ($revrec eq 'y' ? 'default reverse ' : 'default ') : '').
|
---|
| 3399 | "SOA for $parname: ".
|
---|
| 3400 | "(ns $oldsoa->{prins}, contact $oldsoa->{contact}, refresh $oldsoa->{refresh},".
|
---|
| 3401 | " retry $oldsoa->{retry}, expire $oldsoa->{expire}, minTTL $oldsoa->{minttl}, TTL $oldsoa->{ttl}) to ".
|
---|
[277] | 3402 | "(ns $soa{prins}, contact $soa{contact}, refresh $soa{refresh},".
|
---|
| 3403 | " retry $soa{retry}, expire $soa{expire}, minTTL $soa{minttl}, TTL $soa{ttl})";
|
---|
| 3404 |
|
---|
[311] | 3405 | $logdata{entry} = $msg;
|
---|
| 3406 | _log($dbh, %logdata);
|
---|
[277] | 3407 |
|
---|
| 3408 | $dbh->commit;
|
---|
| 3409 | };
|
---|
| 3410 | if ($@) {
|
---|
| 3411 | $msg = $@;
|
---|
| 3412 | eval { $dbh->rollback; };
|
---|
[311] | 3413 | $logdata{entry} = "Error updating ".($defrec eq 'y' ? ($revrec eq 'y' ? 'default reverse zone ' : 'default ') : '').
|
---|
| 3414 | "SOA record for $parname: $msg";
|
---|
| 3415 | if ($config{log_failures}) {
|
---|
| 3416 | _log($dbh, %logdata);
|
---|
| 3417 | $dbh->commit;
|
---|
| 3418 | }
|
---|
| 3419 | return ('FAIL', $logdata{entry});
|
---|
[277] | 3420 | } else {
|
---|
| 3421 | return ('OK', $msg);
|
---|
| 3422 | }
|
---|
[246] | 3423 | } # end updateSOA()
|
---|
| 3424 |
|
---|
| 3425 |
|
---|
[2] | 3426 | ## DNSDB::getRecLine()
|
---|
| 3427 | # Return all data fields for a zone record in separate elements of a hash
|
---|
[243] | 3428 | # Takes a database handle, default/live flag, forward/reverse flag, and record ID
|
---|
[2] | 3429 | sub getRecLine {
|
---|
| 3430 | $errstr = '';
|
---|
| 3431 | my $dbh = shift;
|
---|
[243] | 3432 | my $defrec = shift;
|
---|
| 3433 | my $revrec = shift;
|
---|
[2] | 3434 | my $id = shift;
|
---|
| 3435 |
|
---|
[429] | 3436 | my $sql = "SELECT record_id,host,type,val,ttl".
|
---|
| 3437 | ($defrec eq 'n' ? ',location' : '').
|
---|
| 3438 | ($revrec eq 'n' ? ',distance,weight,port' : '').
|
---|
[243] | 3439 | (($defrec eq 'y') ? ',group_id FROM ' : ',domain_id,rdns_id FROM ').
|
---|
| 3440 | _rectable($defrec,$revrec)." WHERE record_id=?";
|
---|
[123] | 3441 | my $ret = $dbh->selectrow_hashref($sql, undef, ($id) );
|
---|
[2] | 3442 |
|
---|
[90] | 3443 | if ($dbh->err) {
|
---|
[2] | 3444 | $errstr = $DBI::errstr;
|
---|
| 3445 | return undef;
|
---|
| 3446 | }
|
---|
| 3447 |
|
---|
[123] | 3448 | if (!$ret) {
|
---|
| 3449 | $errstr = "No such record";
|
---|
| 3450 | return undef;
|
---|
| 3451 | }
|
---|
| 3452 |
|
---|
[243] | 3453 | # explicitly set a parent id
|
---|
| 3454 | if ($defrec eq 'y') {
|
---|
| 3455 | $ret->{parid} = $ret->{group_id};
|
---|
| 3456 | } else {
|
---|
| 3457 | $ret->{parid} = (($revrec eq 'n') ? $ret->{domain_id} : $ret->{rdns_id});
|
---|
| 3458 | # and a secondary if we have a custom type that lives in both a forward and reverse zone
|
---|
| 3459 | $ret->{secid} = (($revrec eq 'y') ? $ret->{domain_id} : $ret->{rdns_id}) if $ret->{type} > 65279;
|
---|
| 3460 | }
|
---|
[451] | 3461 | $ret->{address} = $ret->{val}; # because.
|
---|
[90] | 3462 |
|
---|
| 3463 | return $ret;
|
---|
[2] | 3464 | }
|
---|
| 3465 |
|
---|
| 3466 |
|
---|
| 3467 | ##fixme: should use above (getRecLine()) to get lines for below?
|
---|
| 3468 | ## DNSDB::getDomRecs()
|
---|
| 3469 | # Return records for a domain
|
---|
| 3470 | # Takes a database handle, default/live flag, group/domain ID, start,
|
---|
| 3471 | # number of records, sort field, and sort order
|
---|
| 3472 | # Returns a reference to an array of hashes
|
---|
| 3473 | sub getDomRecs {
|
---|
| 3474 | $errstr = '';
|
---|
| 3475 | my $dbh = shift;
|
---|
| 3476 |
|
---|
[397] | 3477 | my %args = @_;
|
---|
[4] | 3478 |
|
---|
[397] | 3479 | my @filterargs;
|
---|
[135] | 3480 |
|
---|
[397] | 3481 | push @filterargs, $args{filter} if $args{filter};
|
---|
| 3482 |
|
---|
| 3483 | # protection against bad or missing arguments
|
---|
| 3484 | $args{sortorder} = 'ASC' if !$args{sortorder};
|
---|
[399] | 3485 | $args{sortby} = 'host' if !$args{sortby} && $args{revrec} eq 'n'; # default sort by host on domain record list
|
---|
| 3486 | $args{sortby} = 'val' if !$args{sortby} && $args{revrec} eq 'y'; # default sort by IP on revzone record list
|
---|
[397] | 3487 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
| 3488 |
|
---|
[352] | 3489 | # sort reverse zones on IP, correctly
|
---|
[397] | 3490 | # do other fiddling with $args{sortby} while we're at it.
|
---|
[420] | 3491 | # whee! multisort means just passing comma-separated fields in sortby!
|
---|
| 3492 | my $newsort = '';
|
---|
| 3493 | foreach my $sf (split /,/, $args{sortby}) {
|
---|
| 3494 | $sf = "r.$sf";
|
---|
| 3495 | $sf =~ s/r\.val/CAST (r.val AS inet)/
|
---|
| 3496 | if $args{revrec} eq 'y' && $args{defrec} eq 'n';
|
---|
| 3497 | $sf =~ s/r\.type/t.alphaorder/;
|
---|
| 3498 | $newsort .= ",$sf";
|
---|
| 3499 | }
|
---|
| 3500 | $newsort =~ s/^,//;
|
---|
[352] | 3501 |
|
---|
[224] | 3502 | my $sql = "SELECT r.record_id,r.host,r.type,r.val,r.ttl";
|
---|
[397] | 3503 | $sql .= ",l.description AS locname" if $args{defrec} eq 'n';
|
---|
| 3504 | $sql .= ",r.distance,r.weight,r.port" if $args{revrec} eq 'n';
|
---|
| 3505 | $sql .= " FROM "._rectable($args{defrec},$args{revrec})." r ";
|
---|
[104] | 3506 | $sql .= "INNER JOIN rectypes t ON r.type=t.val "; # for sorting by type alphabetically
|
---|
[397] | 3507 | $sql .= "LEFT JOIN locations l ON r.location=l.location " if $args{defrec} eq 'n';
|
---|
| 3508 | $sql .= "WHERE "._recparent($args{defrec},$args{revrec})." = ?";
|
---|
[104] | 3509 | $sql .= " AND NOT r.type=$reverse_typemap{SOA}";
|
---|
[439] | 3510 | $sql .= " AND (r.host ~* ? OR r.val ~* ?)" if $args{filter};
|
---|
[420] | 3511 | $sql .= " ORDER BY $newsort $args{sortorder}";
|
---|
[324] | 3512 | # ensure consistent ordering by sorting on record_id too
|
---|
[397] | 3513 | $sql .= ", record_id $args{sortorder}";
|
---|
| 3514 | $sql .= ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
|
---|
[4] | 3515 |
|
---|
[397] | 3516 | my @bindvars = ($args{id});
|
---|
[439] | 3517 | push @bindvars, ($args{filter},$args{filter}) if $args{filter};
|
---|
[224] | 3518 |
|
---|
[397] | 3519 | my $ret = $dbh->selectall_arrayref($sql, { Slice => {} }, (@bindvars) );
|
---|
[2] | 3520 | return $ret;
|
---|
| 3521 | } # end getDomRecs()
|
---|
| 3522 |
|
---|
| 3523 |
|
---|
[91] | 3524 | ## DNSDB::getRecCount()
|
---|
[224] | 3525 | # Return count of non-SOA records in zone (or default records in a group)
|
---|
| 3526 | # Takes a database handle, default/live flag, reverse/forward flag, group/domain ID,
|
---|
| 3527 | # and optional filtering modifier
|
---|
[91] | 3528 | # Returns the count
|
---|
| 3529 | sub getRecCount {
|
---|
| 3530 | my $dbh = shift;
|
---|
| 3531 | my $defrec = shift;
|
---|
[224] | 3532 | my $revrec = shift;
|
---|
[91] | 3533 | my $id = shift;
|
---|
[135] | 3534 | my $filter = shift || '';
|
---|
[91] | 3535 |
|
---|
[135] | 3536 | # keep the nasties down, since we can't ?-sub this bit. :/
|
---|
| 3537 | # note this is chars allowed in DNS hostnames
|
---|
| 3538 | $filter =~ s/[^a-zA-Z0-9_.:-]//g;
|
---|
| 3539 |
|
---|
[222] | 3540 | my @bindvars = ($id);
|
---|
| 3541 | push @bindvars, $filter if $filter;
|
---|
[224] | 3542 | my $sql = "SELECT count(*) FROM ".
|
---|
| 3543 | _rectable($defrec,$revrec).
|
---|
| 3544 | " WHERE "._recparent($defrec,$revrec)."=? ".
|
---|
| 3545 | "AND NOT type=$reverse_typemap{SOA}".
|
---|
| 3546 | ($filter ? " AND host ~* ?" : '');
|
---|
| 3547 | my ($count) = $dbh->selectrow_array($sql, undef, (@bindvars) );
|
---|
[91] | 3548 |
|
---|
| 3549 | return $count;
|
---|
| 3550 |
|
---|
| 3551 | } # end getRecCount()
|
---|
| 3552 |
|
---|
| 3553 |
|
---|
[3] | 3554 | ## DNSDB::addRec()
|
---|
[2] | 3555 | # Add a new record to a domain or a group's default records
|
---|
| 3556 | # Takes a database handle, default/live flag, group/domain ID,
|
---|
| 3557 | # host, type, value, and TTL
|
---|
| 3558 | # Some types require additional detail: "distance" for MX and SRV,
|
---|
| 3559 | # and weight/port for SRV
|
---|
| 3560 | # Returns a status code and detail message in case of error
|
---|
[234] | 3561 | ##fixme: pass a hash with the record data, not a series of separate values
|
---|
[2] | 3562 | sub addRec {
|
---|
| 3563 | $errstr = '';
|
---|
| 3564 | my $dbh = shift;
|
---|
| 3565 | my $defrec = shift;
|
---|
[226] | 3566 | my $revrec = shift;
|
---|
| 3567 | my $id = shift; # parent (group_id for defrecs, rdns_id for reverse records,
|
---|
| 3568 | # domain_id for domain records)
|
---|
[2] | 3569 |
|
---|
| 3570 | my $host = shift;
|
---|
[234] | 3571 | my $rectype = shift; # reference so we can coerce it if "+"-types can't find both zones
|
---|
[2] | 3572 | my $val = shift;
|
---|
| 3573 | my $ttl = shift;
|
---|
[389] | 3574 | my $location = shift;
|
---|
| 3575 | $location = '' if !$location;
|
---|
[2] | 3576 |
|
---|
[417] | 3577 | # Spaces are evil.
|
---|
| 3578 | $$host =~ s/^\s+//;
|
---|
| 3579 | $$host =~ s/\s+$//;
|
---|
[418] | 3580 | if ($typemap{$$rectype} ne 'TXT') {
|
---|
[417] | 3581 | # Leading or trailng spaces could be legit in TXT records.
|
---|
| 3582 | $$val =~ s/^\s+//;
|
---|
| 3583 | $$val =~ s/\s+$//;
|
---|
| 3584 | }
|
---|
| 3585 |
|
---|
[226] | 3586 | # prep for validation
|
---|
[252] | 3587 | my $addr = NetAddr::IP->new($$val);
|
---|
| 3588 | $$host =~ s/\.+$//; # FQDNs ending in . are an internal detail, and really shouldn't be exposed in the UI.
|
---|
[226] | 3589 |
|
---|
| 3590 | my $domid = 0;
|
---|
| 3591 | my $revid = 0;
|
---|
| 3592 |
|
---|
| 3593 | my $retcode = 'OK'; # assume everything will go OK
|
---|
| 3594 | my $retmsg = '';
|
---|
| 3595 |
|
---|
| 3596 | # do simple validation first
|
---|
| 3597 | return ('FAIL', "TTL must be numeric") unless $ttl =~ /^\d+$/;
|
---|
| 3598 |
|
---|
[234] | 3599 | # Quick check on hostname parts. Note the regex is more forgiving than the error message;
|
---|
| 3600 | # domain names technically are case-insensitive, and we use printf-like % codes for a couple
|
---|
| 3601 | # of types. Other things may also be added to validate default records of several flavours.
|
---|
| 3602 | return ('FAIL', "Hostnames may not contain anything other than (0-9 a-z . _)")
|
---|
[350] | 3603 | if $defrec eq 'n' && ($revrec eq 'y' ? $$rectype != $reverse_typemap{TXT} : 1) &&
|
---|
| 3604 | $$host !~ /^[0-9a-z_%.-]+$/i;
|
---|
[226] | 3605 |
|
---|
[234] | 3606 | # Collect these even if we're only doing a simple A record so we can call *any* validation sub
|
---|
| 3607 | my $dist = shift;
|
---|
[281] | 3608 | my $weight = shift;
|
---|
[234] | 3609 | my $port = shift;
|
---|
[226] | 3610 |
|
---|
[234] | 3611 | my $fields;
|
---|
| 3612 | my @vallist;
|
---|
[226] | 3613 |
|
---|
[234] | 3614 | # Call the validation sub for the type requested.
|
---|
| 3615 | ($retcode,$retmsg) = $validators{$$rectype}($dbh, (defrec => $defrec, revrec => $revrec, id => $id,
|
---|
[249] | 3616 | host => $host, rectype => $rectype, val => $val, addr => $addr,
|
---|
[234] | 3617 | dist => \$dist, port => \$port, weight => \$weight,
|
---|
| 3618 | fields => \$fields, vallist => \@vallist) );
|
---|
[129] | 3619 |
|
---|
[234] | 3620 | return ($retcode,$retmsg) if $retcode eq 'FAIL';
|
---|
[209] | 3621 |
|
---|
[234] | 3622 | # Set up database fields and bind parameters
|
---|
[389] | 3623 | $fields .= "host,type,val,ttl,location,"._recparent($defrec,$revrec);
|
---|
| 3624 | push @vallist, ($$host,$$rectype,$$val,$ttl,$location,$id);
|
---|
[234] | 3625 | my $vallen = '?'.(',?'x$#vallist);
|
---|
[2] | 3626 |
|
---|
[287] | 3627 | # Put together the success log entry. We have to use this horrible kludge
|
---|
| 3628 | # because domain_id and rdns_id may or may not be present, and if they are,
|
---|
| 3629 | # they're not at a guaranteed consistent index in the array. wheee!
|
---|
| 3630 | my %logdata;
|
---|
| 3631 | my @ftmp = split /,/, $fields;
|
---|
| 3632 | for (my $i=0; $i <= $#vallist; $i++) {
|
---|
| 3633 | $logdata{domain_id} = $vallist[$i] if $ftmp[$i] eq 'domain_id';
|
---|
| 3634 | $logdata{rdns_id} = $vallist[$i] if $ftmp[$i] eq 'rdns_id';
|
---|
| 3635 | }
|
---|
| 3636 | $logdata{group_id} = $id if $defrec eq 'y';
|
---|
| 3637 | $logdata{group_id} = parentID($dbh,
|
---|
| 3638 | (id => $id, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec) )
|
---|
| 3639 | if $defrec eq 'n';
|
---|
[328] | 3640 | $logdata{entry} = "Added ".($defrec eq 'y' ? 'default record' : 'record');
|
---|
| 3641 | # NS records for revzones get special treatment
|
---|
| 3642 | if ($revrec eq 'y' && $$rectype == 2) {
|
---|
| 3643 | $logdata{entry} .= " '$$val $typemap{$$rectype} $$host";
|
---|
| 3644 | } else {
|
---|
| 3645 | $logdata{entry} .= " '$$host $typemap{$$rectype} $$val";
|
---|
| 3646 | }
|
---|
| 3647 |
|
---|
[287] | 3648 | $logdata{entry} .= " [distance $dist]" if $typemap{$$rectype} eq 'MX';
|
---|
| 3649 | $logdata{entry} .= " [priority $dist] [weight $weight] [port $port]"
|
---|
| 3650 | if $typemap{$$rectype} eq 'SRV';
|
---|
[425] | 3651 | $logdata{entry} .= "', TTL $ttl";
|
---|
| 3652 | $logdata{entry} .= ", location ".getLoc($dbh, $location)->{description} if $location;
|
---|
[287] | 3653 |
|
---|
[90] | 3654 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3655 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3656 | local $dbh->{AutoCommit} = 0;
|
---|
| 3657 | local $dbh->{RaiseError} = 1;
|
---|
[2] | 3658 |
|
---|
[90] | 3659 | eval {
|
---|
[236] | 3660 | $dbh->do("INSERT INTO "._rectable($defrec, $revrec)." ($fields) VALUES ($vallen)",
|
---|
[90] | 3661 | undef, @vallist);
|
---|
[287] | 3662 | _log($dbh, %logdata);
|
---|
[90] | 3663 | $dbh->commit;
|
---|
| 3664 | };
|
---|
| 3665 | if ($@) {
|
---|
| 3666 | my $msg = $@;
|
---|
| 3667 | eval { $dbh->rollback; };
|
---|
[289] | 3668 | if ($config{log_failures}) {
|
---|
| 3669 | $logdata{entry} = "Failed adding ".($defrec eq 'y' ? 'default ' : '').
|
---|
| 3670 | "record '$$host $typemap{$$rectype} $$val', TTL $ttl ($msg)";
|
---|
| 3671 | _log($dbh, %logdata);
|
---|
| 3672 | $dbh->commit;
|
---|
| 3673 | }
|
---|
[90] | 3674 | return ('FAIL',$msg);
|
---|
| 3675 | }
|
---|
[2] | 3676 |
|
---|
[287] | 3677 | $resultstr = $logdata{entry};
|
---|
[226] | 3678 | return ($retcode, $retmsg);
|
---|
[90] | 3679 |
|
---|
[2] | 3680 | } # end addRec()
|
---|
| 3681 |
|
---|
| 3682 |
|
---|
[16] | 3683 | ## DNSDB::updateRec()
|
---|
| 3684 | # Update a record
|
---|
[273] | 3685 | # Takes a database handle, default and reverse flags, record ID, immediate parent ID, and new record data.
|
---|
| 3686 | # Returns a status code and message
|
---|
[16] | 3687 | sub updateRec {
|
---|
| 3688 | $errstr = '';
|
---|
[17] | 3689 |
|
---|
[16] | 3690 | my $dbh = shift;
|
---|
| 3691 | my $defrec = shift;
|
---|
[272] | 3692 | my $revrec = shift;
|
---|
[16] | 3693 | my $id = shift;
|
---|
[272] | 3694 | my $parid = shift; # immediate parent entity that we're descending from to update the record
|
---|
[16] | 3695 |
|
---|
[273] | 3696 | # all records have these
|
---|
[16] | 3697 | my $host = shift;
|
---|
[272] | 3698 | my $hostbk = $$host; # Keep a backup copy of the original, so we can WARN if the update mangles the domain
|
---|
| 3699 | my $rectype = shift;
|
---|
[16] | 3700 | my $val = shift;
|
---|
| 3701 | my $ttl = shift;
|
---|
[389] | 3702 | my $location = shift; # may be empty/null/undef depending on caller
|
---|
| 3703 | $location = '' if !$location;
|
---|
[16] | 3704 |
|
---|
[417] | 3705 | # Spaces are evil.
|
---|
| 3706 | $$host =~ s/^\s+//;
|
---|
| 3707 | $$host =~ s/\s+$//;
|
---|
[418] | 3708 | if ($typemap{$$rectype} ne 'TXT') {
|
---|
[417] | 3709 | # Leading or trailng spaces could be legit in TXT records.
|
---|
| 3710 | $$val =~ s/^\s+//;
|
---|
| 3711 | $$val =~ s/\s+$//;
|
---|
| 3712 | }
|
---|
| 3713 |
|
---|
[272] | 3714 | # prep for validation
|
---|
| 3715 | my $addr = NetAddr::IP->new($$val);
|
---|
| 3716 | $$host =~ s/\.+$//; # FQDNs ending in . are an internal detail, and really shouldn't be exposed in the UI.
|
---|
[16] | 3717 |
|
---|
[272] | 3718 | my $domid = 0;
|
---|
| 3719 | my $revid = 0;
|
---|
| 3720 |
|
---|
| 3721 | my $retcode = 'OK'; # assume everything will go OK
|
---|
| 3722 | my $retmsg = '';
|
---|
| 3723 |
|
---|
[273] | 3724 | # do simple validation first
|
---|
[272] | 3725 | return ('FAIL', "TTL must be numeric") unless $ttl =~ /^\d+$/;
|
---|
| 3726 |
|
---|
| 3727 | # Quick check on hostname parts. Note the regex is more forgiving than the error message;
|
---|
| 3728 | # domain names technically are case-insensitive, and we use printf-like % codes for a couple
|
---|
| 3729 | # of types. Other things may also be added to validate default records of several flavours.
|
---|
[273] | 3730 | return ('FAIL', "Hostnames may not contain anything other than (0-9 a-z - . _)")
|
---|
[350] | 3731 | if $defrec eq 'n' && ($revrec eq 'y' ? $$rectype != $reverse_typemap{TXT} : 1) &&
|
---|
| 3732 | $$host !~ /^[0-9a-z_%.-]+$/i;
|
---|
[272] | 3733 |
|
---|
[273] | 3734 | # only MX and SRV will use these
|
---|
[288] | 3735 | my $dist = shift || 0;
|
---|
| 3736 | my $weight = shift || 0;
|
---|
| 3737 | my $port = shift || 0;
|
---|
[16] | 3738 |
|
---|
[272] | 3739 | my $fields;
|
---|
| 3740 | my @vallist;
|
---|
[16] | 3741 |
|
---|
[273] | 3742 | # get old record data so we have the right parent ID
|
---|
| 3743 | # and for logging (eventually)
|
---|
| 3744 | my $oldrec = getRecLine($dbh, $defrec, $revrec, $id);
|
---|
[223] | 3745 |
|
---|
[272] | 3746 | # Call the validation sub for the type requested.
|
---|
| 3747 | # Note the ID to pass here is the *parent*, not the record
|
---|
| 3748 | ($retcode,$retmsg) = $validators{$$rectype}($dbh, (defrec => $defrec, revrec => $revrec,
|
---|
| 3749 | id => ($defrec eq 'y' ? $oldrec->{group_id} : ($revrec eq 'n' ? $oldrec->{domain_id} : $oldrec->{rdns_id})),
|
---|
| 3750 | host => $host, rectype => $rectype, val => $val, addr => $addr,
|
---|
| 3751 | dist => \$dist, port => \$port, weight => \$weight,
|
---|
| 3752 | fields => \$fields, vallist => \@vallist,
|
---|
| 3753 | update => $id) );
|
---|
| 3754 |
|
---|
| 3755 | return ($retcode,$retmsg) if $retcode eq 'FAIL';
|
---|
| 3756 |
|
---|
[273] | 3757 | # Set up database fields and bind parameters. Note only the optional fields
|
---|
| 3758 | # (distance, weight, port, secondary parent ID) are added in the validation call above
|
---|
[448] | 3759 | $fields .= "host,type,val,ttl,"._recparent($defrec,$revrec);
|
---|
| 3760 | push @vallist, ($$host,$$rectype,$$val,$ttl,
|
---|
[273] | 3761 | ($defrec eq 'y' ? $oldrec->{group_id} : ($revrec eq 'n' ? $oldrec->{domain_id} : $oldrec->{rdns_id})) );
|
---|
[272] | 3762 |
|
---|
[448] | 3763 | # locations are not for default records, silly coder!
|
---|
| 3764 | if ($defrec eq 'n') {
|
---|
| 3765 | $fields .= ",location";
|
---|
| 3766 | push @vallist, $location;
|
---|
| 3767 | }
|
---|
| 3768 |
|
---|
[273] | 3769 | # hack hack PTHUI
|
---|
| 3770 | # need to forcibly make sure we disassociate a record with a parent it's no longer related to.
|
---|
| 3771 | # eg, PTR records may not have a domain parent, or A/AAAA records may not have a revzone parent.
|
---|
| 3772 | # mainly needed for crossover types that got coerced down to "standard" types
|
---|
| 3773 | if ($defrec eq 'n') {
|
---|
| 3774 | if ($$rectype == $reverse_typemap{PTR}) {
|
---|
| 3775 | $fields .= ",domain_id";
|
---|
| 3776 | push @vallist, 0;
|
---|
| 3777 | }
|
---|
| 3778 | if ($$rectype == $reverse_typemap{A} || $$rectype == $reverse_typemap{AAAA}) {
|
---|
| 3779 | $fields .= ",rdns_id";
|
---|
| 3780 | push @vallist, 0;
|
---|
| 3781 | }
|
---|
| 3782 | }
|
---|
[345] | 3783 | # fix fat-finger-originated record type changes
|
---|
| 3784 | if ($$rectype == 65285) {
|
---|
| 3785 | $fields .= ",rdns_id" if $revrec eq 'n';
|
---|
| 3786 | $fields .= ",domain_id" if $revrec eq 'y';
|
---|
| 3787 | push @vallist, 0;
|
---|
| 3788 | }
|
---|
[341] | 3789 | if ($defrec eq 'n') {
|
---|
| 3790 | $domid = $parid if $revrec eq 'n';
|
---|
| 3791 | $revid = $parid if $revrec eq 'y';
|
---|
| 3792 | }
|
---|
[272] | 3793 |
|
---|
[288] | 3794 | # Put together the success log entry. Horrible kludge from addRec() copied as-is since
|
---|
| 3795 | # we don't know whether the passed arguments or retrieved values for domain_id and rdns_id
|
---|
| 3796 | # will be maintained (due to "not-in-zone" validation changes)
|
---|
| 3797 | my %logdata;
|
---|
[341] | 3798 | $logdata{domain_id} = $domid;
|
---|
| 3799 | $logdata{rdns_id} = $revid;
|
---|
[288] | 3800 | my @ftmp = split /,/, $fields;
|
---|
| 3801 | for (my $i=0; $i <= $#vallist; $i++) {
|
---|
| 3802 | $logdata{domain_id} = $vallist[$i] if $ftmp[$i] eq 'domain_id';
|
---|
| 3803 | $logdata{rdns_id} = $vallist[$i] if $ftmp[$i] eq 'rdns_id';
|
---|
| 3804 | }
|
---|
| 3805 | $logdata{group_id} = $parid if $defrec eq 'y';
|
---|
| 3806 | $logdata{group_id} = parentID($dbh,
|
---|
| 3807 | (id => $parid, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec) )
|
---|
| 3808 | if $defrec eq 'n';
|
---|
[328] | 3809 | $logdata{entry} = "Updated ".($defrec eq 'y' ? 'default record' : 'record')." from\n";
|
---|
| 3810 | # NS records for revzones get special treatment
|
---|
| 3811 | if ($revrec eq 'y' && $$rectype == 2) {
|
---|
| 3812 | $logdata{entry} .= " '$oldrec->{val} $typemap{$oldrec->{type}} $oldrec->{host}";
|
---|
| 3813 | } else {
|
---|
| 3814 | $logdata{entry} .= " '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}";
|
---|
| 3815 | }
|
---|
[288] | 3816 | $logdata{entry} .= " [distance $oldrec->{distance}]" if $typemap{$oldrec->{type}} eq 'MX';
|
---|
| 3817 | $logdata{entry} .= " [priority $oldrec->{distance}] [weight $oldrec->{weight}] [port $oldrec->{port}]"
|
---|
| 3818 | if $typemap{$oldrec->{type}} eq 'SRV';
|
---|
[425] | 3819 | $logdata{entry} .= "', TTL $oldrec->{ttl}";
|
---|
| 3820 | $logdata{entry} .= ", location ".getLoc($dbh, $oldrec->{location})->{description} if $oldrec->{location};
|
---|
| 3821 | $logdata{entry} .= "\nto\n";
|
---|
[328] | 3822 | # More NS special
|
---|
| 3823 | if ($revrec eq 'y' && $$rectype == 2) {
|
---|
| 3824 | $logdata{entry} .= "'$$val $typemap{$$rectype} $$host";
|
---|
| 3825 | } else {
|
---|
| 3826 | $logdata{entry} .= "'$$host $typemap{$$rectype} $$val";
|
---|
| 3827 | }
|
---|
[288] | 3828 | $logdata{entry} .= " [distance $dist]" if $typemap{$$rectype} eq 'MX';
|
---|
| 3829 | $logdata{entry} .= " [priority $dist] [weight $weight] [port $port]" if $typemap{$$rectype} eq 'SRV';
|
---|
[425] | 3830 | $logdata{entry} .= "', TTL $ttl";
|
---|
| 3831 | $logdata{entry} .= ", location ".getLoc($dbh, $location)->{description} if $location;
|
---|
[288] | 3832 |
|
---|
[90] | 3833 | local $dbh->{AutoCommit} = 0;
|
---|
| 3834 | local $dbh->{RaiseError} = 1;
|
---|
| 3835 |
|
---|
[341] | 3836 | # Fiddle the field list into something suitable for updates
|
---|
| 3837 | $fields =~ s/,/=?,/g;
|
---|
| 3838 | $fields .= "=?";
|
---|
| 3839 |
|
---|
[90] | 3840 | eval {
|
---|
[273] | 3841 | $dbh->do("UPDATE "._rectable($defrec,$revrec)." SET $fields WHERE record_id=?", undef, (@vallist, $id) );
|
---|
[288] | 3842 | _log($dbh, %logdata);
|
---|
[130] | 3843 | $dbh->commit;
|
---|
[90] | 3844 | };
|
---|
| 3845 | if ($@) {
|
---|
| 3846 | my $msg = $@;
|
---|
[288] | 3847 | eval { $dbh->rollback; };
|
---|
[289] | 3848 | if ($config{log_failures}) {
|
---|
| 3849 | $logdata{entry} = "Failed updating ".($defrec eq 'y' ? 'default ' : '').
|
---|
| 3850 | "record '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}', TTL $oldrec->{ttl} ($msg)";
|
---|
| 3851 | _log($dbh, %logdata);
|
---|
| 3852 | $dbh->commit;
|
---|
| 3853 | }
|
---|
[90] | 3854 | return ('FAIL', $msg);
|
---|
| 3855 | }
|
---|
| 3856 |
|
---|
[288] | 3857 | $resultstr = $logdata{entry};
|
---|
[272] | 3858 | return ($retcode, $retmsg);
|
---|
[16] | 3859 | } # end updateRec()
|
---|
| 3860 |
|
---|
| 3861 |
|
---|
[459] | 3862 | ## DNSDB::downconvert()
|
---|
| 3863 | # A mostly internal (not exported) semiutilty sub to downconvert from pseudotype <x>
|
---|
| 3864 | # to a compatible component type. Only a handful of operations are valid, anything
|
---|
| 3865 | # else is a null-op.
|
---|
| 3866 | # Takes the record ID and the new type. Returns boolean.
|
---|
| 3867 | sub downconvert {
|
---|
| 3868 | my $dbh = shift;
|
---|
| 3869 | my $recid = shift;
|
---|
| 3870 | my $newtype = shift;
|
---|
| 3871 |
|
---|
| 3872 | # also, only work on live records; little to no value trying to do this on default records.
|
---|
| 3873 | my $rec = getRecLine($dbh, 'n', 'y', $recid);
|
---|
| 3874 |
|
---|
| 3875 | # hm?
|
---|
| 3876 | #return 1 if !$rec;
|
---|
| 3877 |
|
---|
| 3878 | return 1 if $rec->{type} < 65000; # Only the reverse-record pseudotypes can be downconverted
|
---|
| 3879 | return 1 if $rec->{type} == 65282; # Nowhere to go
|
---|
| 3880 |
|
---|
| 3881 | my $delpar;
|
---|
| 3882 | my @sqlargs;
|
---|
| 3883 | if ($rec->{type} == 65280) {
|
---|
| 3884 | return 1 if $newtype != 1 && $newtype != 12;
|
---|
| 3885 | $delpar = ($newtype == 1 ? 'rdns_id' : 'domain_id');
|
---|
| 3886 | push @sqlargs, 0, $newtype, $recid;
|
---|
| 3887 | } elsif ($rec->{type} == 65281) {
|
---|
| 3888 | return 1 if $newtype != 28 && $newtype != 12;
|
---|
| 3889 | $delpar = ($newtype == 28 ? 'rdns_id' : 'domain_id');
|
---|
| 3890 | push @sqlargs, 0, $newtype, $recid;
|
---|
| 3891 | } elsif ($rec->{type} == 65283) {
|
---|
| 3892 | return 1 if $newtype != 65282;
|
---|
| 3893 | $delpar = 'rdns_id';
|
---|
| 3894 | } elsif ($rec->{type} == 65284) {
|
---|
| 3895 | return 1 if $newtype != 65282;
|
---|
| 3896 | $delpar = 'rdns_id';
|
---|
| 3897 | } else {
|
---|
| 3898 | # Your llama is on fire.
|
---|
| 3899 | }
|
---|
| 3900 |
|
---|
| 3901 | local $dbh->{AutoCommit} = 0;
|
---|
| 3902 | local $dbh->{RaiseError} = 1;
|
---|
| 3903 |
|
---|
| 3904 | eval {
|
---|
| 3905 | $dbh->do("UPDATE records SET $delpar = ?, type = ? WHERE record_id = ?", undef, @sqlargs);
|
---|
| 3906 | $dbh->commit;
|
---|
| 3907 | };
|
---|
| 3908 | if ($@) {
|
---|
| 3909 | $errstr = $@;
|
---|
| 3910 | eval { $dbh->rollback; };
|
---|
| 3911 | return 0;
|
---|
| 3912 | }
|
---|
| 3913 | return 1;
|
---|
| 3914 | } # end downconvert()
|
---|
| 3915 |
|
---|
| 3916 |
|
---|
[3] | 3917 | ## DNSDB::delRec()
|
---|
| 3918 | # Delete a record.
|
---|
| 3919 | sub delRec {
|
---|
| 3920 | $errstr = '';
|
---|
| 3921 | my $dbh = shift;
|
---|
| 3922 | my $defrec = shift;
|
---|
[243] | 3923 | my $revrec = shift;
|
---|
[3] | 3924 | my $id = shift;
|
---|
| 3925 |
|
---|
[290] | 3926 | my $oldrec = getRecLine($dbh, $defrec, $revrec, $id);
|
---|
[3] | 3927 |
|
---|
[290] | 3928 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 3929 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 3930 | local $dbh->{AutoCommit} = 0;
|
---|
| 3931 | local $dbh->{RaiseError} = 1;
|
---|
[3] | 3932 |
|
---|
[290] | 3933 | # Put together the log entry
|
---|
| 3934 | my %logdata;
|
---|
| 3935 | $logdata{domain_id} = $oldrec->{domain_id};
|
---|
| 3936 | $logdata{rdns_id} = $oldrec->{rdns_id};
|
---|
| 3937 | $logdata{group_id} = $oldrec->{group_id} if $defrec eq 'y';
|
---|
| 3938 | $logdata{group_id} = parentID($dbh,
|
---|
| 3939 | (id => $oldrec->{domain_id}, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec) )
|
---|
| 3940 | if $defrec eq 'n';
|
---|
| 3941 | $logdata{entry} = "Deleted ".($defrec eq 'y' ? 'default record ' : 'record ').
|
---|
| 3942 | "'$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}";
|
---|
| 3943 | $logdata{entry} .= " [distance $oldrec->{distance}]" if $typemap{$oldrec->{type}} eq 'MX';
|
---|
| 3944 | $logdata{entry} .= " [priority $oldrec->{distance}] [weight $oldrec->{weight}] [port $oldrec->{port}]"
|
---|
| 3945 | if $typemap{$oldrec->{type}} eq 'SRV';
|
---|
[425] | 3946 | $logdata{entry} .= "', TTL $oldrec->{ttl}";
|
---|
| 3947 | $logdata{entry} .= ", location ".getLoc($dbh, $oldrec->{location})->{description} if $oldrec->{location};
|
---|
[290] | 3948 |
|
---|
| 3949 | eval {
|
---|
| 3950 | my $sth = $dbh->do("DELETE FROM "._rectable($defrec,$revrec)." WHERE record_id=?", undef, ($id));
|
---|
| 3951 | _log($dbh, %logdata);
|
---|
| 3952 | $dbh->commit;
|
---|
| 3953 | };
|
---|
| 3954 | if ($@) {
|
---|
| 3955 | my $msg = $@;
|
---|
| 3956 | eval { $dbh->rollback; };
|
---|
| 3957 | if ($config{log_failures}) {
|
---|
| 3958 | $logdata{entry} = "Error deleting ".($defrec eq 'y' ? 'default record' : 'record').
|
---|
| 3959 | " '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}', TTL $oldrec->{ttl} ($msg)";
|
---|
| 3960 | _log($dbh, %logdata);
|
---|
| 3961 | $dbh->commit;
|
---|
| 3962 | }
|
---|
| 3963 | return ('FAIL', $msg);
|
---|
| 3964 | }
|
---|
| 3965 |
|
---|
| 3966 | return ('OK',$logdata{entry});
|
---|
[3] | 3967 | } # end delRec()
|
---|
| 3968 |
|
---|
| 3969 |
|
---|
[323] | 3970 | ## DNSDB::getLogCount()
|
---|
| 3971 | # Get a count of log entries
|
---|
| 3972 | # Takes a database handle and a hash containing at least:
|
---|
| 3973 | # - Entity ID and entity type as the primary log "slice"
|
---|
| 3974 | sub getLogCount {
|
---|
| 3975 | my $dbh = shift;
|
---|
| 3976 |
|
---|
| 3977 | my %args = @_;
|
---|
| 3978 |
|
---|
| 3979 | my @filterargs;
|
---|
| 3980 | ##fixme: which fields do we want to filter on?
|
---|
| 3981 | # push @filterargs,
|
---|
| 3982 |
|
---|
| 3983 | $errstr = 'Missing primary parent ID and/or type';
|
---|
| 3984 | # fail early if we don't have a "prime" ID to look for log entries for
|
---|
| 3985 | return if !$args{id};
|
---|
| 3986 |
|
---|
| 3987 | # or if the prime id type is missing or invalid
|
---|
| 3988 | return if !$args{logtype};
|
---|
| 3989 | $args{logtype} = 'revzone' if $args{logtype} eq 'rdns'; # hack pthui
|
---|
| 3990 | $args{logtype} = 'domain' if $args{logtype} eq 'dom'; # hack pthui
|
---|
| 3991 | return if !grep /^$args{logtype}$/, ('group', 'domain', 'revzone', 'user');
|
---|
| 3992 |
|
---|
| 3993 | $args{logtype} = 'revzone' if $args{logtype} eq 'rdns'; # hack pthui
|
---|
| 3994 |
|
---|
| 3995 | my $sql = "SELECT count(*) FROM log ".
|
---|
| 3996 | "WHERE $id_col{$args{logtype}}=?".
|
---|
| 3997 | ($args{filter} ? " AND entry ~* ?" : '');
|
---|
| 3998 | my ($count) = $dbh->selectrow_array($sql, undef, ($args{id}, @filterargs) );
|
---|
| 3999 | $errstr = $dbh->errstr if !$count;
|
---|
| 4000 | return $count;
|
---|
| 4001 | } # end getLogCount()
|
---|
| 4002 |
|
---|
| 4003 |
|
---|
| 4004 | ## DNSDB::getLogEntries()
|
---|
| 4005 | # Get a list of log entries
|
---|
| 4006 | # Takes arguments as with getLogCount() above, plus optional:
|
---|
| 4007 | # - sort field
|
---|
| 4008 | # - sort order
|
---|
| 4009 | # - offset for pagination
|
---|
| 4010 | sub getLogEntries {
|
---|
| 4011 | my $dbh = shift;
|
---|
| 4012 |
|
---|
| 4013 | my %args = @_;
|
---|
| 4014 |
|
---|
| 4015 | my @filterargs;
|
---|
| 4016 |
|
---|
| 4017 | # fail early if we don't have a "prime" ID to look for log entries for
|
---|
| 4018 | return if !$args{id};
|
---|
| 4019 |
|
---|
| 4020 | # or if the prime id type is missing or invalid
|
---|
| 4021 | return if !$args{logtype};
|
---|
| 4022 | $args{logtype} = 'revzone' if $args{logtype} eq 'rdns'; # hack pthui
|
---|
| 4023 | $args{logtype} = 'domain' if $args{logtype} eq 'dom'; # hack pthui
|
---|
| 4024 | return if !grep /^$args{logtype}$/, ('group', 'domain', 'revzone', 'user');
|
---|
| 4025 |
|
---|
| 4026 | # Sorting defaults
|
---|
| 4027 | $args{sortby} = 'stamp' if !$args{sortby};
|
---|
| 4028 | $args{sortorder} = 'DESC' if !$args{sortorder};
|
---|
[397] | 4029 | $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
|
---|
[323] | 4030 |
|
---|
[324] | 4031 | my %sortmap = (fname => 'name', username => 'email', entry => 'entry', stamp => 'stamp');
|
---|
[323] | 4032 | $args{sortby} = $sortmap{$args{sortby}};
|
---|
| 4033 |
|
---|
| 4034 | my $sql = "SELECT user_id AS userid, email AS useremail, name AS userfname, entry AS logentry, ".
|
---|
| 4035 | "date_trunc('second',stamp) AS logtime ".
|
---|
| 4036 | "FROM log ".
|
---|
| 4037 | "WHERE $id_col{$args{logtype}}=?".
|
---|
| 4038 | ($args{filter} ? " AND entry ~* ?" : '').
|
---|
[324] | 4039 | " ORDER BY $args{sortby} $args{sortorder}, log_id $args{sortorder}".
|
---|
[323] | 4040 | ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
|
---|
| 4041 | my $loglist = $dbh->selectall_arrayref($sql, { Slice => {} }, ($args{id}, @filterargs) );
|
---|
| 4042 | $errstr = $dbh->errstr if !$loglist;
|
---|
| 4043 | return $loglist;
|
---|
| 4044 | } # end getLogEntries()
|
---|
| 4045 |
|
---|
| 4046 |
|
---|
[452] | 4047 | ## IPDB::getRevPattern()
|
---|
| 4048 | # Get the narrowest template pattern applicable to a passed CIDR address (may be a netblock or an IP)
|
---|
| 4049 | sub getRevPattern {
|
---|
| 4050 | my $dbh = shift;
|
---|
| 4051 | my $cidr = shift;
|
---|
| 4052 | my $group = shift || 1; # just in case
|
---|
| 4053 |
|
---|
[462] | 4054 | # for speed! Casting and comparing even ~7K records takes ~2.5s, so narrow it down to one revzone first.
|
---|
| 4055 | my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet >>= ? AND group_id = ?",
|
---|
| 4056 | undef, ($cidr, $group) );
|
---|
| 4057 |
|
---|
| 4058 | ##fixme? may need to narrow things down more by octet-chopping and doing text comparisons before casting.
|
---|
| 4059 | my ($revpatt) = $dbh->selectrow_array("SELECT host FROM records ".
|
---|
| 4060 | "WHERE (type in (12,65280,65281,65282,65283,65284)) AND rdns_id = ? AND CAST (val AS inet) >>= ? ".
|
---|
| 4061 | "ORDER BY CAST (val AS inet) DESC LIMIT 1", undef, ($revid, $cidr) );
|
---|
[452] | 4062 | return $revpatt;
|
---|
| 4063 | } # end getRevPattern()
|
---|
| 4064 |
|
---|
| 4065 |
|
---|
[225] | 4066 | ## DNSDB::getTypelist()
|
---|
| 4067 | # Get a list of record types for various UI dropdowns
|
---|
| 4068 | # Takes database handle, forward/reverse/lookup flag, and optional "tag as selected" indicator (defaults to A)
|
---|
| 4069 | # Returns an arrayref to list of hashrefs perfect for HTML::Template
|
---|
| 4070 | sub getTypelist {
|
---|
| 4071 | my $dbh = shift;
|
---|
| 4072 | my $recgroup = shift;
|
---|
| 4073 | my $type = shift || $reverse_typemap{A};
|
---|
| 4074 |
|
---|
| 4075 | # also accepting $webvar{revrec}!
|
---|
| 4076 | $recgroup = 'f' if $recgroup eq 'n';
|
---|
| 4077 | $recgroup = 'r' if $recgroup eq 'y';
|
---|
| 4078 |
|
---|
| 4079 | my $sql = "SELECT val,name FROM rectypes WHERE ";
|
---|
| 4080 | if ($recgroup eq 'r') {
|
---|
| 4081 | # reverse zone types
|
---|
| 4082 | $sql .= "stdflag=2 OR stdflag=3";
|
---|
| 4083 | } elsif ($recgroup eq 'l') {
|
---|
| 4084 | # DNS lookup types. Note we avoid our custom types >= 65280, since those are entirely internal.
|
---|
| 4085 | $sql .= "(stdflag=1 OR stdflag=2 OR stdflag=3) AND val < 65280";
|
---|
| 4086 | } else {
|
---|
| 4087 | # default; forward zone types. technically $type eq 'f' but not worth the error message.
|
---|
| 4088 | $sql .= "stdflag=1 OR stdflag=2";
|
---|
| 4089 | }
|
---|
| 4090 | $sql .= " ORDER BY listorder";
|
---|
| 4091 |
|
---|
| 4092 | my $sth = $dbh->prepare($sql);
|
---|
| 4093 | $sth->execute;
|
---|
| 4094 | my @typelist;
|
---|
| 4095 | while (my ($rval,$rname) = $sth->fetchrow_array()) {
|
---|
| 4096 | my %row = ( recval => $rval, recname => $rname );
|
---|
| 4097 | $row{tselect} = 1 if $rval == $type;
|
---|
| 4098 | push @typelist, \%row;
|
---|
| 4099 | }
|
---|
| 4100 |
|
---|
| 4101 | # Add SOA on lookups since it's not listed in other dropdowns.
|
---|
| 4102 | if ($recgroup eq 'l') {
|
---|
| 4103 | my %row = ( recval => $reverse_typemap{SOA}, recname => 'SOA' );
|
---|
| 4104 | $row{tselect} = 1 if $reverse_typemap{SOA} == $type;
|
---|
| 4105 | push @typelist, \%row;
|
---|
| 4106 | }
|
---|
| 4107 |
|
---|
| 4108 | return \@typelist;
|
---|
| 4109 | } # end getTypelist()
|
---|
| 4110 |
|
---|
| 4111 |
|
---|
[254] | 4112 | ## DNSDB::parentID()
|
---|
| 4113 | # Get ID of entity that is nearest parent to requested id
|
---|
| 4114 | # Takes a database handle and a hash of entity ID, entity type, optional parent type flag
|
---|
| 4115 | # (domain/reverse zone or group), and optional default/live and forward/reverse flags
|
---|
| 4116 | # Returns the ID or undef on failure
|
---|
| 4117 | sub parentID {
|
---|
[116] | 4118 | my $dbh = shift;
|
---|
| 4119 |
|
---|
[254] | 4120 | my %args = @_;
|
---|
[116] | 4121 |
|
---|
[254] | 4122 | # clean up the parent-type. Set it to group if not set; coerce revzone to domain for simpler logic
|
---|
| 4123 | $args{partype} = 'group' if !$args{partype};
|
---|
| 4124 | $args{partype} = 'domain' if $args{partype} eq 'revzone';
|
---|
[116] | 4125 |
|
---|
[254] | 4126 | # clean up defrec and revrec. default to live record, forward zone
|
---|
| 4127 | $args{defrec} = 'n' if !$args{defrec};
|
---|
| 4128 | $args{revrec} = 'n' if !$args{revrec};
|
---|
[116] | 4129 |
|
---|
[254] | 4130 | if ($par_type{$args{partype}} eq 'domain') {
|
---|
| 4131 | # only live records can have a domain/zone parent
|
---|
| 4132 | return unless ($args{type} eq 'record' && $args{defrec} eq 'n');
|
---|
| 4133 | my $result = $dbh->selectrow_hashref("SELECT ".($args{revrec} eq 'n' ? 'domain_id' : 'rdns_id').
|
---|
| 4134 | " FROM records WHERE record_id = ?",
|
---|
| 4135 | undef, ($args{id}) ) or return;
|
---|
| 4136 | return $result;
|
---|
| 4137 | } else {
|
---|
| 4138 | # snag some arguments that will either fall through or be overwritten to save some code duplication
|
---|
| 4139 | my $tmpid = $args{id};
|
---|
| 4140 | my $type = $args{type};
|
---|
| 4141 | if ($type eq 'record' && $args{defrec} eq 'n') {
|
---|
| 4142 | # Live records go through the records table first.
|
---|
| 4143 | ($tmpid) = $dbh->selectrow_array("SELECT ".($args{revrec} eq 'n' ? 'domain_id' : 'rdns_id').
|
---|
| 4144 | " FROM records WHERE record_id = ?",
|
---|
| 4145 | undef, ($args{id}) ) or return;
|
---|
| 4146 | $type = ($args{revrec} eq 'n' ? 'domain' : 'revzone');
|
---|
| 4147 | }
|
---|
| 4148 | my ($result) = $dbh->selectrow_array("SELECT $par_col{$type} FROM $par_tbl{$type} WHERE $id_col{$type} = ?",
|
---|
| 4149 | undef, ($tmpid) );
|
---|
| 4150 | return $result;
|
---|
| 4151 | }
|
---|
| 4152 | # should be impossible to get here with even remotely sane arguments
|
---|
| 4153 | return;
|
---|
| 4154 | } # end parentID()
|
---|
[116] | 4155 |
|
---|
| 4156 |
|
---|
[117] | 4157 | ## DNSDB::isParent()
|
---|
| 4158 | # Returns true if $id1 is a parent of $id2, false otherwise
|
---|
| 4159 | sub isParent {
|
---|
| 4160 | my $dbh = shift;
|
---|
| 4161 | my $id1 = shift;
|
---|
| 4162 | my $type1 = shift;
|
---|
| 4163 | my $id2 = shift;
|
---|
| 4164 | my $type2 = shift;
|
---|
| 4165 | ##todo: immediate, secondary, full (default)
|
---|
| 4166 |
|
---|
[157] | 4167 | # Return false on invalid types
|
---|
[244] | 4168 | return 0 if !grep /^$type1$/, ('record','defrec','defrevrec','user','domain','revzone','group');
|
---|
| 4169 | return 0 if !grep /^$type2$/, ('record','defrec','defrevrec','user','domain','revzone','group');
|
---|
[157] | 4170 |
|
---|
[117] | 4171 | # Return false on impossible relations
|
---|
| 4172 | return 0 if $type1 eq 'record'; # nothing may be a child of a record
|
---|
| 4173 | return 0 if $type1 eq 'defrec'; # nothing may be a child of a record
|
---|
[244] | 4174 | return 0 if $type1 eq 'defrevrec'; # nothing may be a child of a record
|
---|
[117] | 4175 | return 0 if $type1 eq 'user'; # nothing may be child of a user
|
---|
| 4176 | return 0 if $type1 eq 'domain' && $type2 ne 'record'; # domain may not be a parent of anything other than a record
|
---|
[244] | 4177 | return 0 if $type1 eq 'revzone' && $type2 ne 'record';# reverse zone may not be a parent of anything other than a record
|
---|
[117] | 4178 |
|
---|
[186] | 4179 | # ennnhhhh.... if we're passed an id of 0, it will never be found. usual
|
---|
| 4180 | # case would be the UI creating a new <thing>, and so we don't have an ID for
|
---|
| 4181 | # <thing> to look up yet. in that case the UI should check the parent as well.
|
---|
| 4182 | return 0 if $id1 == 0; # nothing can have a parent id of 0
|
---|
| 4183 | return 1 if $id2 == 0; # anything could have a child id of 0 (or "unknown")
|
---|
| 4184 |
|
---|
[117] | 4185 | # group 1 is the ultimate root parent
|
---|
| 4186 | return 1 if $type1 eq 'group' && $id1 == 1;
|
---|
| 4187 |
|
---|
[155] | 4188 | # groups are always (a) parent of themselves
|
---|
| 4189 | return 1 if $type1 eq 'group' && $type2 eq 'group' && $id1 == $id2;
|
---|
| 4190 |
|
---|
[117] | 4191 | my $id = $id2;
|
---|
| 4192 | my $type = $type2;
|
---|
| 4193 | my $foundparent = 0;
|
---|
[155] | 4194 |
|
---|
[244] | 4195 | # Records are the only entity with two possible parents. We need to split the parent checks on
|
---|
| 4196 | # domain/rdns.
|
---|
| 4197 | if ($type eq 'record') {
|
---|
| 4198 | my ($dom,$rdns) = $dbh->selectrow_array("SELECT domain_id,rdns_id FROM records WHERE record_id=?",
|
---|
| 4199 | undef, ($id));
|
---|
| 4200 | # check immediate parent against request
|
---|
| 4201 | return 1 if $type1 eq 'domain' && $id1 == $dom;
|
---|
| 4202 | return 1 if $type1 eq 'revzone' && $id1 == $rdns;
|
---|
| 4203 | # if request is group, check *both* parents. Only check if the parent is nonzero though.
|
---|
| 4204 | return 1 if $dom && isParent($dbh, $id1, $type1, $dom, 'domain');
|
---|
| 4205 | return 1 if $rdns && isParent($dbh, $id1, $type1, $rdns, 'revzone');
|
---|
| 4206 | # exit here since we've executed the loop below by proxy in the above recursive calls.
|
---|
| 4207 | return 0;
|
---|
| 4208 | }
|
---|
| 4209 |
|
---|
| 4210 | # almost the same loop as getParents() above
|
---|
[186] | 4211 | my $limiter = 0;
|
---|
[117] | 4212 | while (1) {
|
---|
[155] | 4213 | my $sql = "SELECT $par_col{$type} FROM $par_tbl{$type} WHERE $id_col{$type} = ?";
|
---|
[117] | 4214 | my $result = $dbh->selectrow_hashref($sql,
|
---|
[157] | 4215 | undef, ($id) );
|
---|
[186] | 4216 | if (!$result) {
|
---|
| 4217 | $limiter++;
|
---|
[244] | 4218 | ##fixme: how often will this happen on a live site? fail at max limiter <n>?
|
---|
[186] | 4219 | warn "no results looking for $sql with id $id (depth $limiter)\n";
|
---|
| 4220 | last;
|
---|
| 4221 | }
|
---|
[157] | 4222 | if ($result && $result->{$par_col{$type}} == $id1) {
|
---|
[117] | 4223 | $foundparent = 1;
|
---|
| 4224 | last;
|
---|
[157] | 4225 | } else {
|
---|
| 4226 | ##fixme: do we care about trying to return a "no such record/domain/user/group" error?
|
---|
[244] | 4227 | # should be impossible to create an inconsistent DB just with API calls.
|
---|
[157] | 4228 | warn $dbh->errstr." $sql, $id" if $dbh->errstr;
|
---|
[117] | 4229 | }
|
---|
| 4230 | # group 1 is its own parent. need this here more to break strange loops than for detecting a parent
|
---|
| 4231 | last if $result->{$par_col{$type}} == 1;
|
---|
[152] | 4232 | $id = $result->{$par_col{$type}};
|
---|
[117] | 4233 | $type = $par_type{$type};
|
---|
| 4234 | }
|
---|
| 4235 |
|
---|
| 4236 | return $foundparent;
|
---|
| 4237 | } # end isParent()
|
---|
| 4238 |
|
---|
| 4239 |
|
---|
[275] | 4240 | ## DNSDB::zoneStatus()
|
---|
| 4241 | # Returns and optionally sets a zone's status
|
---|
| 4242 | # Takes a database handle, domain/revzone ID, forward/reverse flag, and optionally a status argument
|
---|
| 4243 | # Returns status, or undef on errors.
|
---|
| 4244 | sub zoneStatus {
|
---|
[3] | 4245 | my $dbh = shift;
|
---|
| 4246 | my $id = shift;
|
---|
[275] | 4247 | my $revrec = shift;
|
---|
| 4248 | my $newstatus = shift || 'mu';
|
---|
[3] | 4249 |
|
---|
| 4250 | return undef if $id !~ /^\d+$/;
|
---|
| 4251 |
|
---|
[283] | 4252 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 4253 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 4254 | local $dbh->{AutoCommit} = 0;
|
---|
| 4255 | local $dbh->{RaiseError} = 1;
|
---|
| 4256 |
|
---|
[275] | 4257 | if ($newstatus ne 'mu') {
|
---|
[283] | 4258 | # ooo, fun! let's see what we were passed for status
|
---|
| 4259 | eval {
|
---|
| 4260 | $newstatus = 0 if $newstatus eq 'domoff';
|
---|
| 4261 | $newstatus = 1 if $newstatus eq 'domon';
|
---|
| 4262 | $dbh->do("UPDATE ".($revrec eq 'n' ? 'domains' : 'revzones')." SET status=? WHERE ".
|
---|
[275] | 4263 | ($revrec eq 'n' ? 'domain_id' : 'rdns_id')."=?", undef, ($newstatus,$id) );
|
---|
[283] | 4264 |
|
---|
| 4265 | ##fixme switch to more consise "Enabled <domain"/"Disabled <domain>" as with users?
|
---|
| 4266 | $resultstr = "Changed ".($revrec eq 'n' ? domainName($dbh, $id) : revName($dbh, $id)).
|
---|
| 4267 | " state to ".($newstatus ? 'active' : 'inactive');
|
---|
| 4268 |
|
---|
| 4269 | my %loghash;
|
---|
| 4270 | $loghash{domain_id} = $id if $revrec eq 'n';
|
---|
| 4271 | $loghash{rdns_id} = $id if $revrec eq 'y';
|
---|
| 4272 | $loghash{group_id} = parentID($dbh,
|
---|
| 4273 | (id => $id, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec) );
|
---|
| 4274 | $loghash{entry} = $resultstr;
|
---|
| 4275 | _log($dbh, %loghash);
|
---|
| 4276 |
|
---|
| 4277 | $dbh->commit;
|
---|
| 4278 | };
|
---|
| 4279 | if ($@) {
|
---|
| 4280 | my $msg = $@;
|
---|
| 4281 | eval { $dbh->rollback; };
|
---|
| 4282 | $resultstr = '';
|
---|
| 4283 | $errstr = $msg;
|
---|
| 4284 | return;
|
---|
| 4285 | }
|
---|
[3] | 4286 | }
|
---|
| 4287 |
|
---|
[275] | 4288 | my ($status) = $dbh->selectrow_array("SELECT status FROM ".
|
---|
| 4289 | ($revrec eq 'n' ? "domains WHERE domain_id=?" : "revzones WHERE rdns_id=?"),
|
---|
| 4290 | undef, ($id) );
|
---|
[3] | 4291 | return $status;
|
---|
[275] | 4292 | } # end zoneStatus()
|
---|
[3] | 4293 |
|
---|
| 4294 |
|
---|
[452] | 4295 | ## DNSDB::getZonesByCIDR()
|
---|
| 4296 | # Get a list of zone names and IDs that records for a passed CIDR block are within.
|
---|
| 4297 | sub getZonesByCIDR {
|
---|
| 4298 | my $dbh = shift;
|
---|
| 4299 | my %args = @_;
|
---|
| 4300 |
|
---|
| 4301 | my $result = $dbh->selectall_arrayref("SELECT rdns_id,revnet FROM revzones WHERE revnet >>= ? OR revnet <<= ?",
|
---|
| 4302 | { Slice => {} }, ($args{cidr}, $args{cidr}) );
|
---|
| 4303 | return $result;
|
---|
| 4304 | } # end getZonesByCIDR()
|
---|
| 4305 |
|
---|
| 4306 |
|
---|
[33] | 4307 | ## DNSDB::importAXFR
|
---|
| 4308 | # Import a domain via AXFR
|
---|
[37] | 4309 | # Takes AXFR host, domain to transfer, group to put the domain in,
|
---|
| 4310 | # and optionally:
|
---|
| 4311 | # - active/inactive state flag (defaults to active)
|
---|
| 4312 | # - overwrite-SOA flag (defaults to off)
|
---|
| 4313 | # - overwrite-NS flag (defaults to off, doesn't affect subdomain NS records)
|
---|
| 4314 | # Returns a status code (OK, WARN, or FAIL) and message - message should be blank
|
---|
| 4315 | # if status is OK, but WARN includes conditions that are not fatal but should
|
---|
| 4316 | # really be reported.
|
---|
[33] | 4317 | sub importAXFR {
|
---|
| 4318 | my $dbh = shift;
|
---|
[35] | 4319 | my $ifrom_in = shift;
|
---|
[301] | 4320 | my $zone = shift;
|
---|
[33] | 4321 | my $group = shift;
|
---|
[436] | 4322 | my $status = shift;
|
---|
| 4323 | $status = (defined($status) ? $status : 0); # force sane semantics, and allow passing "null" (inactive) status
|
---|
[33] | 4324 | my $rwsoa = shift || 0;
|
---|
| 4325 | my $rwns = shift || 0;
|
---|
[436] | 4326 | my $newttl = shift;
|
---|
[301] | 4327 | my $merge = shift || 0; # do we attempt to merge A/AAAA and PTR records whenever possible?
|
---|
| 4328 | # do we overload this with the fixme below?
|
---|
[33] | 4329 | ##fixme: add mode to delete&replace, merge+overwrite, merge new?
|
---|
| 4330 |
|
---|
[37] | 4331 | my $nrecs = 0;
|
---|
| 4332 | my $soaflag = 0;
|
---|
| 4333 | my $nsflag = 0;
|
---|
| 4334 | my $warnmsg = '';
|
---|
| 4335 | my $ifrom;
|
---|
[33] | 4336 |
|
---|
[301] | 4337 | my $rev = 'n';
|
---|
[302] | 4338 | my $code = 'OK';
|
---|
| 4339 | my $msg = 'foobar?';
|
---|
[301] | 4340 |
|
---|
[35] | 4341 | # choke on possible bad setting in ifrom
|
---|
[37] | 4342 | # IPv4 and v6, and valid hostnames!
|
---|
[35] | 4343 | ($ifrom) = ($ifrom_in =~ /^([0-9a-f\:.]+|[0-9a-z_.-]+)$/i);
|
---|
| 4344 | return ('FAIL', "Bad AXFR source host $ifrom")
|
---|
| 4345 | unless ($ifrom) = ($ifrom_in =~ /^([0-9a-f\:.]+|[0-9a-z_.-]+)$/i);
|
---|
| 4346 |
|
---|
[301] | 4347 | my $errmsg;
|
---|
| 4348 |
|
---|
| 4349 | my $zone_id;
|
---|
| 4350 | my $domain_id = 0;
|
---|
| 4351 | my $rdns_id = 0;
|
---|
| 4352 | my $cidr;
|
---|
| 4353 |
|
---|
| 4354 | # magic happens! detect if we're importing a domain or a reverse zone
|
---|
| 4355 | # while we're at it, figure out what the CIDR netblock is (if we got a .arpa)
|
---|
| 4356 | # or what the formal .arpa zone is (if we got a CIDR netblock)
|
---|
| 4357 | # Handles sub-octet v4 zones in the format specified in the Cricket Book, 2nd Ed, p217-218
|
---|
| 4358 |
|
---|
| 4359 | if ($zone =~ m{(?:\.arpa\.?|/\d+)$}) {
|
---|
| 4360 | # we seem to have a reverse zone
|
---|
| 4361 | $rev = 'y';
|
---|
| 4362 |
|
---|
| 4363 | if ($zone =~ /\.arpa\.?$/) {
|
---|
| 4364 | # we have a formal reverse zone. call _zone2cidr and get the CIDR block.
|
---|
| 4365 | ($code,$msg) = _zone2cidr($zone);
|
---|
| 4366 | return ($code, $msg) if $code eq 'FAIL';
|
---|
| 4367 | $cidr = $msg;
|
---|
| 4368 | } elsif ($zone =~ m|^[\d.]+/\d+$|) {
|
---|
| 4369 | # v4 revzone, CIDR netblock
|
---|
| 4370 | $cidr = NetAddr::IP->new($zone) or return ('FAIL',"$zone is not a valid CIDR block");
|
---|
| 4371 | $zone = _ZONE($cidr, 'ZONE.in-addr.arpa', 'r', '.');
|
---|
| 4372 | } elsif ($zone =~ m|^[a-fA-F\d:]+/\d+$|) {
|
---|
| 4373 | # v6 revzone, CIDR netblock
|
---|
| 4374 | $cidr = NetAddr::IP->new($zone) or return ('FAIL',"$zone is not a valid CIDR block");
|
---|
| 4375 | return ('FAIL', "$zone is not a nibble-aligned block") if $cidr->masklen % 4 != 0;
|
---|
| 4376 | $zone = _ZONE($cidr, 'ZONE.ip6.arpa', 'r', '.');
|
---|
| 4377 | } else {
|
---|
| 4378 | # there is. no. else!
|
---|
| 4379 | return ('FAIL', "Unknown zone name format");
|
---|
| 4380 | }
|
---|
| 4381 |
|
---|
| 4382 | # quick check to start to see if we've already got one
|
---|
| 4383 |
|
---|
| 4384 | ($zone_id) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet=?",
|
---|
| 4385 | undef, ("$cidr"));
|
---|
| 4386 | $rdns_id = $zone_id;
|
---|
| 4387 | } else {
|
---|
| 4388 | # default to domain
|
---|
[349] | 4389 | ($zone_id) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)",
|
---|
[301] | 4390 | undef, ($zone));
|
---|
| 4391 | $domain_id = $zone_id;
|
---|
| 4392 | }
|
---|
| 4393 |
|
---|
| 4394 | return ('FAIL', ($rev eq 'n' ? 'Domain' : 'Reverse zone')." already exists") if $zone_id;
|
---|
| 4395 |
|
---|
[303] | 4396 | # little local utility sub to swap $val and $host for revzone records.
|
---|
| 4397 | sub _revswap {
|
---|
| 4398 | my $rechost = shift;
|
---|
| 4399 | my $recdata = shift;
|
---|
| 4400 |
|
---|
| 4401 | if ($rechost =~ /\.in-addr\.arpa\.?$/) {
|
---|
| 4402 | $rechost =~ s/\.in-addr\.arpa\.?$//;
|
---|
| 4403 | $rechost = join '.', reverse split /\./, $rechost;
|
---|
| 4404 | } else {
|
---|
| 4405 | $rechost =~ s/\.ip6\.arpa\.?$//;
|
---|
| 4406 | my @nibs = reverse split /\./, $rechost;
|
---|
| 4407 | $rechost = '';
|
---|
| 4408 | my $nc;
|
---|
| 4409 | foreach (@nibs) {
|
---|
| 4410 | $rechost.= $_;
|
---|
| 4411 | $rechost .= ":" if ++$nc % 4 == 0 && $nc < 32;
|
---|
| 4412 | }
|
---|
[307] | 4413 | $rechost .= ":" if $nc < 32 && $rechost !~ /\*$/; # close netblock records?
|
---|
| 4414 | ##fixme: there's a case that ends up with a partial entry here:
|
---|
| 4415 | # ip:add:re:ss::
|
---|
| 4416 | # can't reproduce after letting it sit overnight after discovery. :(
|
---|
| 4417 | #print "$rechost\n";
|
---|
[303] | 4418 | # canonicalize with NetAddr::IP
|
---|
| 4419 | $rechost = NetAddr::IP->new($rechost)->addr unless $rechost =~ /\*$/;
|
---|
| 4420 | }
|
---|
| 4421 | return ($recdata,$rechost)
|
---|
| 4422 | }
|
---|
| 4423 |
|
---|
| 4424 |
|
---|
[33] | 4425 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 4426 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 4427 | local $dbh->{AutoCommit} = 0;
|
---|
| 4428 | local $dbh->{RaiseError} = 1;
|
---|
| 4429 |
|
---|
[301] | 4430 | my $sth;
|
---|
| 4431 | eval {
|
---|
[34] | 4432 |
|
---|
[301] | 4433 | if ($rev eq 'n') {
|
---|
[33] | 4434 | ##fixme: serial
|
---|
[301] | 4435 | $dbh->do("INSERT INTO domains (domain,group_id,status) VALUES (?,?,?)", undef, ($zone,$group,$status) );
|
---|
| 4436 | # get domain id so we can do the records
|
---|
| 4437 | ($zone_id) = $dbh->selectrow_array("SELECT currval('domains_domain_id_seq')");
|
---|
| 4438 | $domain_id = $zone_id;
|
---|
| 4439 | _log($dbh, (group_id => $group, domain_id => $domain_id,
|
---|
| 4440 | entry => "[Added ".($status ? 'active' : 'inactive')." domain $zone via AXFR]") );
|
---|
| 4441 | } else {
|
---|
| 4442 | ##fixme: serial
|
---|
| 4443 | $dbh->do("INSERT INTO revzones (revnet,group_id,status) VALUES (?,?,?)", undef, ($cidr,$group,$status) );
|
---|
| 4444 | # get revzone id so we can do the records
|
---|
| 4445 | ($zone_id) = $dbh->selectrow_array("SELECT currval('revzones_rdns_id_seq')");
|
---|
| 4446 | $rdns_id = $zone_id;
|
---|
| 4447 | _log($dbh, (group_id => $group, rdns_id => $rdns_id,
|
---|
[303] | 4448 | entry => "[Added ".($status ? 'active' : 'inactive')." reverse zone $cidr via AXFR]") );
|
---|
[301] | 4449 | }
|
---|
[33] | 4450 |
|
---|
[35] | 4451 | ## bizarre DBI<->Net::DNS interaction bug:
|
---|
| 4452 | ## sometimes a zone will cause an immediate commit-and-exit (sort of) of the while()
|
---|
[37] | 4453 | ## fixed, apparently I was doing *something* odd, but not certain what it was that
|
---|
| 4454 | ## caused a commit instead of barfing
|
---|
[35] | 4455 |
|
---|
[34] | 4456 | my $res = Net::DNS::Resolver->new;
|
---|
[35] | 4457 | $res->nameservers($ifrom);
|
---|
[301] | 4458 | $res->axfr_start($zone)
|
---|
[35] | 4459 | or die "Couldn't begin AXFR\n";
|
---|
[34] | 4460 |
|
---|
[301] | 4461 | $sth = $dbh->prepare("INSERT INTO records (domain_id,rdns_id,host,type,val,distance,weight,port,ttl)".
|
---|
| 4462 | " VALUES (?,?,?,?,?,?,?,?,?)");
|
---|
| 4463 |
|
---|
[307] | 4464 | # Stash info about sub-octet v4 revzones here so we don't have
|
---|
| 4465 | # to store the CNAMEs used to delegate a suboctet zone
|
---|
| 4466 | # $suboct{zone}{ns}[] -> array of nameservers
|
---|
| 4467 | # $suboct{zone}{cname}[] -> array of extant CNAMEs (Just In Case someone did something bizarre)
|
---|
| 4468 | ## commented pending actual use of this data. for now, we'll just
|
---|
| 4469 | ## auto-(re)create the CNAMEs in revzones on export
|
---|
| 4470 | # my %suboct;
|
---|
| 4471 |
|
---|
[35] | 4472 | while (my $rr = $res->axfr_next()) {
|
---|
[301] | 4473 |
|
---|
| 4474 | my $val;
|
---|
| 4475 | my $distance = 0;
|
---|
| 4476 | my $weight = 0;
|
---|
| 4477 | my $port = 0;
|
---|
[303] | 4478 | my $logfrag = '';
|
---|
[301] | 4479 |
|
---|
[33] | 4480 | my $type = $rr->type;
|
---|
[301] | 4481 | my $host = $rr->name;
|
---|
[436] | 4482 | my $ttl = ($newttl ? $newttl : $rr->ttl); # allow force-override TTLs
|
---|
[35] | 4483 |
|
---|
[37] | 4484 | $soaflag = 1 if $type eq 'SOA';
|
---|
| 4485 | $nsflag = 1 if $type eq 'NS';
|
---|
[35] | 4486 |
|
---|
[34] | 4487 | # "Primary" types:
|
---|
| 4488 | # A, NS, CNAME, SOA, PTR(warn in forward), MX, TXT, AAAA, SRV, A6(ob), SPF
|
---|
| 4489 | # maybe KEY
|
---|
| 4490 |
|
---|
[302] | 4491 | # BIND supports:
|
---|
| 4492 | # [standard]
|
---|
| 4493 | # A AAAA CNAME MX NS PTR SOA TXT
|
---|
| 4494 | # [variously experimental, obsolete, or obscure]
|
---|
| 4495 | # 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
|
---|
| 4496 | # ... if one can ever find the right magic to format them correctly
|
---|
| 4497 |
|
---|
| 4498 | # Net::DNS supports:
|
---|
| 4499 | # RRSIG SIG NSAP NS NIMLOC NAPTR MX MR MINFO MG MB LOC ISDN IPSECKEY HINFO
|
---|
| 4500 | # EID DNAME CNAME CERT APL AFSDB AAAA A DS NXT NSEC3PARAM NSEC3 NSEC KEY
|
---|
| 4501 | # DNSKEY DLV X25 TXT TSIG TKEY SSHFP SRV SPF SOA RT RP PX PTR NULL APL::AplItem
|
---|
| 4502 |
|
---|
[35] | 4503 | # nasty big ugly case-like thing here, since we have to do *some* different
|
---|
| 4504 | # processing depending on the record. le sigh.
|
---|
| 4505 |
|
---|
[105] | 4506 | ##fixme: what record types other than TXT can/will have >255-byte payloads?
|
---|
| 4507 |
|
---|
[34] | 4508 | if ($type eq 'A') {
|
---|
[301] | 4509 | $val = $rr->address;
|
---|
[34] | 4510 | } elsif ($type eq 'NS') {
|
---|
[37] | 4511 | # hmm. should we warn here if subdomain NS'es are left alone?
|
---|
[301] | 4512 | next if ($rwns && ($rr->name eq $zone));
|
---|
[302] | 4513 | if ($rev eq 'y') {
|
---|
| 4514 | # revzones have records more or less reversed from forward zones.
|
---|
| 4515 | my ($tmpcode,$tmpmsg) = _zone2cidr($host);
|
---|
[401] | 4516 | die "Error converting NS record: $tmpmsg\n" if $tmpcode eq 'FAIL'; # hmm. may not make sense...
|
---|
[302] | 4517 | $val = "$tmpmsg";
|
---|
| 4518 | $host = $rr->nsdname;
|
---|
[303] | 4519 | $logfrag = "Added record '$val $type $host', TTL $ttl";
|
---|
[307] | 4520 | # Tag and preserve. For now this is commented for a no-op, but we have Ideas for
|
---|
| 4521 | # another custom storage type ("DELEGATE") that will use these subzone-delegation records
|
---|
| 4522 | #if ($val ne "$cidr") {
|
---|
| 4523 | # push @{$suboct{$val}{ns}}, $host;
|
---|
| 4524 | #}
|
---|
[302] | 4525 | } else {
|
---|
| 4526 | $val = $rr->nsdname;
|
---|
| 4527 | }
|
---|
[35] | 4528 | $nsflag = 1;
|
---|
[34] | 4529 | } elsif ($type eq 'CNAME') {
|
---|
[302] | 4530 | if ($rev eq 'y') {
|
---|
[303] | 4531 | # hmm. do we even want to bother with storing these at this level? Sub-octet delegation
|
---|
| 4532 | # by CNAME is essentially a record-publication hack, and we want to just represent the
|
---|
| 4533 | # "true" logical intentions as far down the stack as we can from the UI.
|
---|
| 4534 | ($host,$val) = _revswap($host,$rr->cname);
|
---|
| 4535 | $logfrag = "Added record '$val $type $host', TTL $ttl";
|
---|
[307] | 4536 | # Tag and preserve in case we want to commit them as-is later, but mostly we don't care.
|
---|
| 4537 | # Commented pending actually doing something with possibly new type DELEGATE
|
---|
| 4538 | #my $tmprev = $host;
|
---|
| 4539 | #$tmprev =~ s/^\d+\.//;
|
---|
| 4540 | #($code,$tmprev) = _zone2cidr($tmprev);
|
---|
| 4541 | #push @{$suboct{"$tmprev"}{cname}}, $val;
|
---|
| 4542 | # Silently skip CNAMEs in revzones.
|
---|
| 4543 | next;
|
---|
[302] | 4544 | } else {
|
---|
| 4545 | $val = $rr->cname;
|
---|
| 4546 | }
|
---|
[34] | 4547 | } elsif ($type eq 'SOA') {
|
---|
[37] | 4548 | next if $rwsoa;
|
---|
[307] | 4549 | $host = $rr->rname.":".$rr->mname;
|
---|
[301] | 4550 | $val = $rr->refresh.":".$rr->retry.":".$rr->expire.":".$rr->minimum;
|
---|
[35] | 4551 | $soaflag = 1;
|
---|
[34] | 4552 | } elsif ($type eq 'PTR') {
|
---|
[303] | 4553 | ($host,$val) = _revswap($host,$rr->ptrdname);
|
---|
| 4554 | $logfrag = "Added record '$val $type $host', TTL $ttl";
|
---|
[34] | 4555 | # hmm. PTR records should not be in forward zones.
|
---|
| 4556 | } elsif ($type eq 'MX') {
|
---|
[301] | 4557 | $val = $rr->exchange;
|
---|
| 4558 | $distance = $rr->preference;
|
---|
[34] | 4559 | } elsif ($type eq 'TXT') {
|
---|
| 4560 | ##fixme: Net::DNS docs say this should be deprecated for rdatastr() or char_str_list(),
|
---|
| 4561 | ## but don't really seem enthusiastic about it.
|
---|
[303] | 4562 | #print "should use rdatastr:\n\t".$rr->rdatastr."\n or char_str_list:\n\t".join(' ',$rr->char_str_list())."\n";
|
---|
| 4563 | # rdatastr returns a BIND-targetted logical string, including opening and closing quotes
|
---|
| 4564 | # char_str_list returns a list of the individual string fragments in the record
|
---|
[307] | 4565 | # txtdata returns the more useful all-in-one form (since we want to push such protocol
|
---|
| 4566 | # details as far down the stack as we can)
|
---|
[303] | 4567 | # NB: this may turn out to be more troublesome if we ever have need of >512-byte TXT records.
|
---|
| 4568 | if ($rev eq 'y') {
|
---|
| 4569 | ($host,$val) = _revswap($host,$rr->txtdata);
|
---|
| 4570 | $logfrag = "Added record '$val $type $host', TTL $ttl";
|
---|
| 4571 | } else {
|
---|
| 4572 | $val = $rr->txtdata;
|
---|
| 4573 | }
|
---|
[34] | 4574 | } elsif ($type eq 'SPF') {
|
---|
| 4575 | ##fixme: and the same caveat here, since it is apparently a clone of ::TXT
|
---|
[301] | 4576 | $val = $rr->txtdata;
|
---|
[34] | 4577 | } elsif ($type eq 'AAAA') {
|
---|
[301] | 4578 | $val = $rr->address;
|
---|
[34] | 4579 | } elsif ($type eq 'SRV') {
|
---|
[301] | 4580 | $val = $rr->target;
|
---|
| 4581 | $distance = $rr->priority;
|
---|
| 4582 | $weight = $rr->weight;
|
---|
| 4583 | $port = $rr->port;
|
---|
[34] | 4584 | } elsif ($type eq 'KEY') {
|
---|
[35] | 4585 | # we don't actually know what to do with these...
|
---|
[301] | 4586 | $val = $rr->flags.":".$rr->protocol.":".$rr->algorithm.":".$rr->key.":".$rr->keytag.":".$rr->privatekeyname;
|
---|
[35] | 4587 | } else {
|
---|
[301] | 4588 | $val = $rr->rdatastr;
|
---|
[35] | 4589 | # Finding a different record type is not fatal.... just problematic.
|
---|
[37] | 4590 | # We may not be able to export it correctly.
|
---|
[35] | 4591 | $warnmsg .= "Unusual record ".$rr->name." ($type) found\n";
|
---|
[33] | 4592 | }
|
---|
| 4593 |
|
---|
[303] | 4594 | my $logentry = "[AXFR ".($rev eq 'n' ? $zone : $cidr)."] ";
|
---|
[34] | 4595 |
|
---|
[307] | 4596 | if ($merge) {
|
---|
| 4597 | if ($rev eq 'n') {
|
---|
| 4598 | # importing a domain; we have A and AAAA records that could be merged with matching PTR records
|
---|
| 4599 | my $etype;
|
---|
| 4600 | my ($erdns,$erid,$ettl) = $dbh->selectrow_array("SELECT rdns_id,record_id,ttl FROM records ".
|
---|
| 4601 | "WHERE host=? AND val=? AND type=12",
|
---|
| 4602 | undef, ($host, $val) );
|
---|
| 4603 | if ($erid) {
|
---|
| 4604 | if ($type eq 'A') { # PTR -> A+PTR
|
---|
| 4605 | $etype = 65280;
|
---|
| 4606 | $logentry .= "Merged A record with existing PTR record '$host A+PTR $val', TTL $ettl";
|
---|
| 4607 | }
|
---|
| 4608 | if ($type eq 'AAAA') { # PTR -> AAAA+PTR
|
---|
| 4609 | $etype = 65281;
|
---|
| 4610 | $logentry .= "Merged AAAA record with existing PTR record '$host AAAA+PTR $val', TTL $ettl";
|
---|
| 4611 | }
|
---|
| 4612 | $ettl = ($ettl < $ttl ? $ettl : $ttl); # use lower TTL
|
---|
| 4613 | $dbh->do("UPDATE records SET domain_id=?,ttl=?,type=? WHERE record_id=?", undef,
|
---|
| 4614 | ($domain_id, $ettl, $etype, $erid));
|
---|
| 4615 | $nrecs++;
|
---|
| 4616 | _log($dbh, (group_id => $group, domain_id => $domain_id, rdns_id => $erdns, entry => $logentry) );
|
---|
| 4617 | next; # while axfr_next
|
---|
| 4618 | }
|
---|
| 4619 | } # $rev eq 'n'
|
---|
| 4620 | else {
|
---|
| 4621 | # importing a revzone, we have PTR records that could be merged with matching A/AAAA records
|
---|
| 4622 | my ($domid,$erid,$ettl,$etype) = $dbh->selectrow_array("SELECT domain_id,record_id,ttl,type FROM records ".
|
---|
| 4623 | "WHERE host=? AND val=? AND (type=1 OR type=28)",
|
---|
| 4624 | undef, ($host, $val) );
|
---|
| 4625 | if ($erid) {
|
---|
| 4626 | if ($etype == 1) { # A -> A+PTR
|
---|
| 4627 | $etype = 65280;
|
---|
| 4628 | $logentry .= "Merged PTR record with existing matching A record '$host A+PTR $val', TTL $ettl";
|
---|
| 4629 | }
|
---|
| 4630 | if ($etype == 28) { # AAAA -> AAAA+PTR
|
---|
| 4631 | $etype = 65281;
|
---|
| 4632 | $logentry .= "Merged PTR record with existing matching AAAA record '$host AAAA+PTR $val', TTL $ettl";
|
---|
| 4633 | }
|
---|
| 4634 | $ettl = ($ettl < $ttl ? $ettl : $ttl); # use lower TTL
|
---|
| 4635 | $dbh->do("UPDATE records SET rdns_id=?,ttl=?,type=? WHERE record_id=?", undef,
|
---|
| 4636 | ($rdns_id, $ettl, $etype, $erid));
|
---|
| 4637 | $nrecs++;
|
---|
| 4638 | _log($dbh, (group_id => $group, domain_id => $domid, rdns_id => $rdns_id, entry => $logentry) );
|
---|
| 4639 | next; # while axfr_next
|
---|
| 4640 | }
|
---|
| 4641 | } # $rev eq 'y'
|
---|
| 4642 | } # if $merge
|
---|
[34] | 4643 |
|
---|
[302] | 4644 | # Insert the new record
|
---|
[301] | 4645 | $sth->execute($domain_id, $rdns_id, $host, $reverse_typemap{$type}, $val,
|
---|
| 4646 | $distance, $weight, $port, $ttl);
|
---|
| 4647 |
|
---|
[37] | 4648 | $nrecs++;
|
---|
[34] | 4649 |
|
---|
[301] | 4650 | if ($type eq 'SOA') {
|
---|
| 4651 | # also !$rwsoa, but if that's set, it should be impossible to get here.
|
---|
| 4652 | my @tmp1 = split /:/, $host;
|
---|
| 4653 | my @tmp2 = split /:/, $val;
|
---|
| 4654 | $logentry .= "Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
|
---|
| 4655 | "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl";
|
---|
[303] | 4656 | } elsif ($logfrag) {
|
---|
| 4657 | # special case for log entries we need to meddle with a little.
|
---|
| 4658 | $logentry .= $logfrag;
|
---|
[301] | 4659 | } else {
|
---|
| 4660 | $logentry .= "Added record '$host $type";
|
---|
| 4661 | $logentry .= " [distance $distance]" if $type eq 'MX';
|
---|
| 4662 | $logentry .= " [priority $distance] [weight $weight] [port $port]" if $type eq 'SRV';
|
---|
| 4663 | $logentry .= " $val', TTL $ttl";
|
---|
| 4664 | }
|
---|
| 4665 | _log($dbh, (group_id => $group, domain_id => $domain_id, rdns_id => $rdns_id, entry => $logentry) );
|
---|
| 4666 |
|
---|
[37] | 4667 | } # while axfr_next
|
---|
| 4668 |
|
---|
[307] | 4669 | # Detect and handle delegated subzones
|
---|
| 4670 | # Placeholder for when we decide what to actually do with this, see previous comments in NS and CNAME handling.
|
---|
| 4671 | #foreach (keys %suboct) {
|
---|
| 4672 | # print "found ".($suboct{$_}{ns} ? @{$suboct{$_}{ns}} : '0')." NS records and ".
|
---|
| 4673 | # ($suboct{$_}{cname} ? @{$suboct{$_}{cname}} : '0')." CNAMEs for $_\n";
|
---|
| 4674 | #}
|
---|
| 4675 |
|
---|
[37] | 4676 | # Overwrite SOA record
|
---|
| 4677 | if ($rwsoa) {
|
---|
| 4678 | $soaflag = 1;
|
---|
| 4679 | my $sthgetsoa = $dbh->prepare("SELECT host,val,ttl FROM default_records WHERE group_id=? AND type=?");
|
---|
| 4680 | my $sthputsoa = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,ttl) VALUES (?,?,?,?,?)");
|
---|
| 4681 | $sthgetsoa->execute($group,$reverse_typemap{SOA});
|
---|
| 4682 | while (my ($host,$val,$ttl) = $sthgetsoa->fetchrow_array()) {
|
---|
[301] | 4683 | $host =~ s/DOMAIN/$zone/g;
|
---|
| 4684 | $val =~ s/DOMAIN/$zone/g;
|
---|
| 4685 | $sthputsoa->execute($zone_id,$host,$reverse_typemap{SOA},$val,$ttl);
|
---|
[34] | 4686 | }
|
---|
[37] | 4687 | }
|
---|
[34] | 4688 |
|
---|
[37] | 4689 | # Overwrite NS records
|
---|
| 4690 | if ($rwns) {
|
---|
| 4691 | $nsflag = 1;
|
---|
| 4692 | my $sthgetns = $dbh->prepare("SELECT host,val,ttl FROM default_records WHERE group_id=? AND type=?");
|
---|
| 4693 | my $sthputns = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,ttl) VALUES (?,?,?,?,?)");
|
---|
| 4694 | $sthgetns->execute($group,$reverse_typemap{NS});
|
---|
| 4695 | while (my ($host,$val,$ttl) = $sthgetns->fetchrow_array()) {
|
---|
[301] | 4696 | $host =~ s/DOMAIN/$zone/g;
|
---|
| 4697 | $val =~ s/DOMAIN/$zone/g;
|
---|
| 4698 | $sthputns->execute($zone_id,$host,$reverse_typemap{NS},$val,$ttl);
|
---|
[37] | 4699 | }
|
---|
| 4700 | }
|
---|
[34] | 4701 |
|
---|
[35] | 4702 | die "No records found; either $ifrom is not authoritative or doesn't allow transfers\n" if !$nrecs;
|
---|
| 4703 | die "Bad zone: No SOA record!\n" if !$soaflag;
|
---|
| 4704 | die "Bad zone: No NS records!\n" if !$nsflag;
|
---|
| 4705 |
|
---|
[37] | 4706 | $dbh->commit;
|
---|
[35] | 4707 |
|
---|
[33] | 4708 | };
|
---|
| 4709 |
|
---|
| 4710 | if ($@) {
|
---|
| 4711 | my $msg = $@;
|
---|
| 4712 | eval { $dbh->rollback; };
|
---|
[34] | 4713 | return ('FAIL',$msg." $warnmsg");
|
---|
[33] | 4714 | } else {
|
---|
[35] | 4715 | return ('WARN', $warnmsg) if $warnmsg;
|
---|
[91] | 4716 | return ('OK',"Imported OK");
|
---|
[33] | 4717 | }
|
---|
| 4718 |
|
---|
[37] | 4719 | # it should be impossible to get here.
|
---|
[34] | 4720 | return ('WARN',"OOOK!");
|
---|
[33] | 4721 | } # end importAXFR()
|
---|
| 4722 |
|
---|
| 4723 |
|
---|
[302] | 4724 | ## DNSDB::importBIND()
|
---|
| 4725 | sub importBIND {
|
---|
| 4726 | } # end importBIND()
|
---|
| 4727 |
|
---|
| 4728 |
|
---|
| 4729 | ## DNSDB::import_tinydns()
|
---|
| 4730 | sub import_tinydns {
|
---|
| 4731 | } # end import_tinydns()
|
---|
| 4732 |
|
---|
| 4733 |
|
---|
[103] | 4734 | ## DNSDB::export()
|
---|
| 4735 | # Export the DNS database, or a part of it
|
---|
| 4736 | # Takes database handle, export type, optional arguments depending on type
|
---|
| 4737 | # Writes zone data to targets as appropriate for type
|
---|
| 4738 | sub export {
|
---|
| 4739 | my $dbh = shift;
|
---|
| 4740 | my $target = shift;
|
---|
| 4741 |
|
---|
| 4742 | if ($target eq 'tiny') {
|
---|
| 4743 | __export_tiny($dbh,@_);
|
---|
| 4744 | }
|
---|
| 4745 | # elsif ($target eq 'foo') {
|
---|
| 4746 | # __export_foo($dbh,@_);
|
---|
| 4747 | #}
|
---|
| 4748 | # etc
|
---|
| 4749 |
|
---|
| 4750 | } # end export()
|
---|
| 4751 |
|
---|
| 4752 |
|
---|
| 4753 | ## DNSDB::__export_tiny
|
---|
| 4754 | # Internal sub to implement tinyDNS (compatible) export
|
---|
| 4755 | # Takes database handle, filehandle to write export to, optional argument(s)
|
---|
| 4756 | # to determine which data gets exported
|
---|
| 4757 | sub __export_tiny {
|
---|
| 4758 | my $dbh = shift;
|
---|
| 4759 | my $datafile = shift;
|
---|
| 4760 |
|
---|
| 4761 | ##fixme: slurp up further options to specify particular zone(s) to export
|
---|
| 4762 |
|
---|
| 4763 | ##fixme: fail if $datafile isn't an open, writable file
|
---|
| 4764 |
|
---|
| 4765 | # easy case - export all evarything
|
---|
| 4766 | # not-so-easy case - export item(s) specified
|
---|
| 4767 | # todo: figure out what kind of list we use to export items
|
---|
| 4768 |
|
---|
[329] | 4769 | # raw packet in unknown format: first byte indicates length
|
---|
| 4770 | # of remaining data, allows up to 255 raw bytes
|
---|
| 4771 |
|
---|
[372] | 4772 | # Locations/views - worth including in the caching setup?
|
---|
| 4773 | my $lochash = $dbh->selectall_hashref("SELECT location,iplist FROM locations", 'location');
|
---|
| 4774 | foreach my $location (keys %$lochash) {
|
---|
[375] | 4775 | foreach my $ipprefix (split /[,\s]+/, $lochash->{$location}{iplist}) {
|
---|
| 4776 | $ipprefix =~ s/\s+//g;
|
---|
[449] | 4777 | $ipprefix = new NetAddr::IP $ipprefix;
|
---|
| 4778 | ##fixme: how to handle IPv6?
|
---|
| 4779 | next if $ipprefix->{isv6};
|
---|
| 4780 | # have to account for /nn CIDR entries. tinydns only speaks octet-sliced prefix.
|
---|
| 4781 | if ($ipprefix->masklen <= 8) {
|
---|
| 4782 | foreach ($ipprefix->split(8)) {
|
---|
| 4783 | my $tmp = $_->addr;
|
---|
| 4784 | $tmp =~ s/\.\d+\.\d+\.\d+$//;
|
---|
| 4785 | print $datafile "%$location:$tmp\n";
|
---|
| 4786 | }
|
---|
| 4787 | } elsif ($ipprefix->masklen <= 16) {
|
---|
| 4788 | foreach ($ipprefix->split(16)) {
|
---|
| 4789 | my $tmp = $_->addr;
|
---|
| 4790 | $tmp =~ s/\.\d+\.\d+$//;
|
---|
| 4791 | print $datafile "%$location:$tmp\n";
|
---|
| 4792 | }
|
---|
| 4793 | } elsif ($ipprefix->masklen <= 24) {
|
---|
| 4794 | foreach ($ipprefix->split(24)) {
|
---|
| 4795 | my $tmp = $_->addr;
|
---|
| 4796 | $tmp =~ s/\.\d+$//;
|
---|
| 4797 | print $datafile "%$location:$tmp\n";
|
---|
| 4798 | }
|
---|
| 4799 | } else {
|
---|
| 4800 | foreach ($ipprefix->split(32)) {
|
---|
| 4801 | print $datafile "%$location:".$_->addr."\n";
|
---|
| 4802 | }
|
---|
| 4803 | }
|
---|
[372] | 4804 | }
|
---|
| 4805 | print $datafile "%$location\n" if !$lochash->{$location}{iplist};
|
---|
| 4806 | }
|
---|
| 4807 |
|
---|
[329] | 4808 | # tracking hash so we don't double-export A+PTR or AAAA+PTR records.
|
---|
| 4809 | my %recflags;
|
---|
| 4810 |
|
---|
[368] | 4811 | my $domsth = $dbh->prepare("SELECT domain_id,domain,status,changed FROM domains WHERE status=1");
|
---|
[372] | 4812 | my $recsth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location ".
|
---|
[368] | 4813 | "FROM records WHERE domain_id=? AND type < 65280"); # Just exclude all types relating to rDNS
|
---|
[372] | 4814 | my $zonesth = $dbh->prepare("UPDATE domains SET changed='n' WHERE domain_id=?");
|
---|
[103] | 4815 | $domsth->execute();
|
---|
[368] | 4816 | while (my ($domid,$dom,$domstat,$changed) = $domsth->fetchrow_array) {
|
---|
| 4817 | ##fixme: need to find a way to block opening symlinked files without introducing a race.
|
---|
| 4818 | # O_NOFOLLOW
|
---|
| 4819 | # If pathname is a symbolic link, then the open fails. This is a FreeBSD extension, which was
|
---|
| 4820 | # added to Linux in version 2.1.126. Symbolic links in earlier components of the pathname will
|
---|
| 4821 | # still be followed.
|
---|
| 4822 | # but that doesn't help other platforms. :/
|
---|
| 4823 | sysopen(ZONECACHE, "$config{exportcache}/$dom", O_RDWR|O_CREAT);
|
---|
| 4824 | flock(ZONECACHE, LOCK_EX);
|
---|
| 4825 | if ($changed || -s "$config{exportcache}/$dom" == 0) {
|
---|
| 4826 | $recsth->execute($domid);
|
---|
[372] | 4827 | while (my ($host,$type,$val,$dist,$weight,$port,$ttl,$recid,$loc) = $recsth->fetchrow_array) {
|
---|
[368] | 4828 | next if $recflags{$recid};
|
---|
[108] | 4829 |
|
---|
[372] | 4830 | $loc = '' if !$loc; # de-nullify - just in case
|
---|
| 4831 | ##fixme: handle case of record-with-location-that-doesn't-exist better.
|
---|
| 4832 | # note this currently fails safe (tested) - records with a location that
|
---|
| 4833 | # doesn't exist will not be sent to any client
|
---|
| 4834 | # $loc = '' if !$lochash->{$loc};
|
---|
| 4835 |
|
---|
[108] | 4836 | ##fixme: record validity timestamp. tinydns supports fiddling with timestamps.
|
---|
| 4837 | # note $ttl must be set to 0 if we want to use tinydns's auto-expiring timestamps.
|
---|
| 4838 | # timestamps are TAI64
|
---|
| 4839 | # ~~ 2^62 + time()
|
---|
[368] | 4840 | my $stamp = '';
|
---|
[108] | 4841 |
|
---|
[368] | 4842 | # support tinydns' auto-TTL
|
---|
| 4843 | $ttl = '' if $ttl == '0';
|
---|
[367] | 4844 |
|
---|
[417] | 4845 | # Spaces are evil.
|
---|
[441] | 4846 | $host =~ s/^\s+//;
|
---|
| 4847 | $host =~ s/\s+$//;
|
---|
| 4848 | if ($typemap{$type} ne 'TXT') {
|
---|
[417] | 4849 | # Leading or trailng spaces could be legit in TXT records.
|
---|
[441] | 4850 | $val =~ s/^\s+//;
|
---|
| 4851 | $val =~ s/\s+$//;
|
---|
[417] | 4852 | }
|
---|
| 4853 |
|
---|
[368] | 4854 | _printrec_tiny(*ZONECACHE, 'n', \%recflags,
|
---|
| 4855 | $dom, $host, $type, $val, $dist, $weight, $port, $ttl, $loc, $stamp)
|
---|
| 4856 | if *ZONECACHE;
|
---|
[450] | 4857 |
|
---|
[368] | 4858 | # in case the zone shrunk, get rid of garbage at the end of the file.
|
---|
| 4859 | truncate(ZONECACHE, tell(ZONECACHE));
|
---|
| 4860 |
|
---|
| 4861 | $recflags{$recid} = 1;
|
---|
| 4862 | } # while ($recsth)
|
---|
| 4863 | }
|
---|
[450] | 4864 | # stream from cache, whether freshly created or existing
|
---|
| 4865 | print $datafile $_ while <ZONECACHE>;
|
---|
[368] | 4866 | close ZONECACHE;
|
---|
| 4867 | # mark domain as unmodified
|
---|
| 4868 | $zonesth->execute($domid);
|
---|
[329] | 4869 | } # while ($domsth)
|
---|
| 4870 |
|
---|
[368] | 4871 | my $revsth = $dbh->prepare("SELECT rdns_id,revnet,status,changed FROM revzones WHERE status=1 ".
|
---|
[337] | 4872 | "ORDER BY masklen(revnet) DESC");
|
---|
[372] | 4873 |
|
---|
[344] | 4874 | # For reasons unknown, we can't sanely UNION these statements. Feh.
|
---|
| 4875 | # Supposedly it should work though (note last 3 lines):
|
---|
| 4876 | ## PG manual
|
---|
| 4877 | #UNION Clause
|
---|
| 4878 | #
|
---|
| 4879 | #The UNION clause has this general form:
|
---|
| 4880 | #
|
---|
| 4881 | # select_statement UNION [ ALL ] select_statement
|
---|
| 4882 | #
|
---|
| 4883 | #select_statement is any SELECT statement without an ORDER BY, LIMIT, FOR UPDATE, or FOR SHARE clause. (ORDER BY
|
---|
| 4884 | #and LIMIT can be attached to a subexpression if it is enclosed in parentheses. Without parentheses, these
|
---|
| 4885 | #clauses will be taken to apply to the result of the UNION, not to its right-hand input expression.)
|
---|
[372] | 4886 | my $soasth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location ".
|
---|
[344] | 4887 | "FROM records WHERE rdns_id=? AND type=6");
|
---|
[372] | 4888 | $recsth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location ".
|
---|
[337] | 4889 | "FROM records WHERE rdns_id=? AND not type=6 ".
|
---|
[344] | 4890 | "ORDER BY masklen(CAST(val AS inet)) DESC, CAST(val AS inet)");
|
---|
[372] | 4891 | $zonesth = $dbh->prepare("UPDATE revzones SET changed='n' WHERE rdns_id=?");
|
---|
[329] | 4892 | $revsth->execute();
|
---|
[368] | 4893 | while (my ($revid,$revzone,$revstat,$changed) = $revsth->fetchrow_array) {
|
---|
| 4894 | ##fixme: need to find a way to block opening symlinked files without introducing a race.
|
---|
| 4895 | # O_NOFOLLOW
|
---|
| 4896 | # If pathname is a symbolic link, then the open fails. This is a FreeBSD extension, which was
|
---|
| 4897 | # added to Linux in version 2.1.126. Symbolic links in earlier components of the pathname will
|
---|
| 4898 | # still be followed.
|
---|
| 4899 | # but that doesn't help other platforms. :/
|
---|
| 4900 | my $tmpzone = NetAddr::IP->new($revzone);
|
---|
| 4901 | sysopen(ZONECACHE, "$config{exportcache}/".$tmpzone->network->addr, O_RDWR|O_CREAT);
|
---|
| 4902 | flock(ZONECACHE, LOCK_EX);
|
---|
| 4903 | if ($changed || -s "$config{exportcache}/".$tmpzone->network->addr == 0) {
|
---|
| 4904 | # need to fetch this separately since the rest of the records all (should) have real IPs in val
|
---|
| 4905 | $soasth->execute($revid);
|
---|
| 4906 | my (@zsoa) = $soasth->fetchrow_array();
|
---|
[445] | 4907 | _printrec_tiny(*ZONECACHE,'y',\%recflags,$revzone,
|
---|
| 4908 | $zsoa[0],$zsoa[1],$zsoa[2],$zsoa[3],$zsoa[4],$zsoa[5],$zsoa[6],$zsoa[8],'');
|
---|
[344] | 4909 |
|
---|
[368] | 4910 | $recsth->execute($revid);
|
---|
[372] | 4911 | while (my ($host,$type,$val,$dist,$weight,$port,$ttl,$recid,$loc) = $recsth->fetchrow_array) {
|
---|
[368] | 4912 | next if $recflags{$recid};
|
---|
[329] | 4913 |
|
---|
[372] | 4914 | $loc = '' if !$loc; # de-nullify - just in case
|
---|
| 4915 | ##fixme: handle case of record-with-location-that-doesn't-exist better.
|
---|
| 4916 | # note this currently fails safe (tested) - records with a location that
|
---|
| 4917 | # doesn't exist will not be sent to any client
|
---|
| 4918 | # $loc = '' if !$lochash->{$loc};
|
---|
| 4919 |
|
---|
[329] | 4920 | ##fixme: record validity timestamp. tinydns supports fiddling with timestamps.
|
---|
| 4921 | # note $ttl must be set to 0 if we want to use tinydns's auto-expiring timestamps.
|
---|
| 4922 | # timestamps are TAI64
|
---|
| 4923 | # ~~ 2^62 + time()
|
---|
[368] | 4924 | my $stamp = '';
|
---|
[329] | 4925 |
|
---|
[368] | 4926 | # support tinydns' auto-TTL
|
---|
| 4927 | $ttl = '' if $ttl == '0';
|
---|
[367] | 4928 |
|
---|
[368] | 4929 | _printrec_tiny(*ZONECACHE, 'y', \%recflags, $revzone,
|
---|
| 4930 | $host, $type, $val, $dist, $weight, $port, $ttl, $loc, $stamp)
|
---|
| 4931 | if *ZONECACHE;
|
---|
[329] | 4932 |
|
---|
[450] | 4933 | # in case the zone shrunk, get rid of garbage at the end of the file.
|
---|
| 4934 | truncate(ZONECACHE, tell(ZONECACHE));
|
---|
| 4935 |
|
---|
[368] | 4936 | $recflags{$recid} = 1;
|
---|
| 4937 | } # while ($recsth)
|
---|
| 4938 | }
|
---|
[450] | 4939 | # stream from cache, whether freshly created or existing
|
---|
| 4940 | print $datafile $_ while <ZONECACHE>;
|
---|
[368] | 4941 | close ZONECACHE;
|
---|
[450] | 4942 | # mark zone as unmodified
|
---|
[368] | 4943 | $zonesth->execute($revid);
|
---|
[329] | 4944 | } # while ($domsth)
|
---|
| 4945 |
|
---|
| 4946 | } # end __export_tiny()
|
---|
| 4947 |
|
---|
| 4948 |
|
---|
| 4949 | # Utility sub for __export_tiny above
|
---|
| 4950 | sub _printrec_tiny {
|
---|
| 4951 | my ($datafile,$revrec,$recflags,$zone,$host,$type,$val,$dist,$weight,$port,$ttl,$loc,$stamp) = @_;
|
---|
| 4952 |
|
---|
| 4953 | ## Convert a bare number into an octal-coded pair of octets.
|
---|
| 4954 | # Take optional arg to indicate a decimal or hex input. Defaults to hex.
|
---|
| 4955 | sub octalize {
|
---|
| 4956 | my $tmp = shift;
|
---|
| 4957 | my $srctype = shift || 'h'; # default assumes hex string
|
---|
| 4958 | $tmp = sprintf "%0.4x", hex($tmp) if $srctype eq 'h'; # 0-pad hex to 4 digits
|
---|
| 4959 | $tmp = sprintf "%0.4x", $tmp if $srctype eq 'd'; # 0-pad decimal to 4 hex digits
|
---|
| 4960 | my @o = ($tmp =~ /^(..)(..)$/); # split into octets
|
---|
| 4961 | return sprintf "\\%0.3o\\%0.3o", hex($o[0]), hex($o[1]);;
|
---|
| 4962 | }
|
---|
| 4963 |
|
---|
[339] | 4964 | ## WARNING: This works to export even the whole Internet's worth of IP space...
|
---|
| 4965 | ## if you have the disk/RAM to handle the dataset, and you call this sub based on /16-sized chunks
|
---|
| 4966 | ## A /16 took ~3 seconds with a handful of separate records; adding a /8 pushed export time out to ~13m:40s
|
---|
| 4967 | ## 0/0 is estimated to take ~54 hours and ~256G of disk
|
---|
| 4968 | ## RAM usage depends on how many non-template entries you have in the set.
|
---|
| 4969 | ## This should probably be done on record addition rather than export; large blocks may need to be done in a
|
---|
| 4970 | ## forked process
|
---|
| 4971 | sub __publish_subnet {
|
---|
| 4972 | my $sub = shift;
|
---|
| 4973 | my $recflags = shift;
|
---|
| 4974 | my $hpat = shift;
|
---|
| 4975 | my $fh = shift;
|
---|
| 4976 | my $ttl = shift;
|
---|
| 4977 | my $stamp = shift;
|
---|
| 4978 | my $loc = shift;
|
---|
| 4979 | my $ptronly = shift || 0;
|
---|
| 4980 |
|
---|
| 4981 | my $iplist = $sub->splitref(32);
|
---|
| 4982 | foreach (@$iplist) {
|
---|
| 4983 | my $ip = $_->addr;
|
---|
| 4984 | # make as if we split the non-octet-aligned block into octet-aligned blocks as with SOA
|
---|
| 4985 | next if $ip =~ /\.(0|255)$/;
|
---|
| 4986 | next if $$recflags{$ip};
|
---|
| 4987 | $$recflags{$ip}++;
|
---|
[463] | 4988 | next if $hpat eq '%blank%'; # Allows blanking a subnet so no records are published.
|
---|
[339] | 4989 | my $rec = $hpat; # start fresh with the template for each IP
|
---|
| 4990 | _template4_expand(\$rec, $ip);
|
---|
| 4991 | print $fh ($ptronly ? "^"._ZONE($_, 'ZONE.in-addr.arpa', 'r', '.').":$rec" : "=$rec:$ip").
|
---|
| 4992 | ":$ttl:$stamp:$loc\n";
|
---|
| 4993 | }
|
---|
| 4994 | }
|
---|
| 4995 |
|
---|
[103] | 4996 | ##fixme? append . to all host/val hostnames
|
---|
| 4997 | if ($typemap{$type} eq 'SOA') {
|
---|
| 4998 |
|
---|
| 4999 | # host contains pri-ns:responsible
|
---|
| 5000 | # val is abused to contain refresh:retry:expire:minttl
|
---|
| 5001 | ##fixme: "manual" serial vs tinydns-autoserial
|
---|
[202] | 5002 | # let's be explicit about abusing $host and $val
|
---|
| 5003 | my ($email, $primary) = (split /:/, $host)[0,1];
|
---|
| 5004 | my ($refresh, $retry, $expire, $min_ttl) = (split /:/, $val)[0,1,2,3];
|
---|
[330] | 5005 | if ($revrec eq 'y') {
|
---|
[337] | 5006 | ##fixme: have to publish SOA records for each v4 /24 in sub-/16, and each /16 in sub-/8
|
---|
| 5007 | # what about v6?
|
---|
| 5008 | # -> only need SOA for local chunks offset from reverse delegation boundaries, so v6 is fine
|
---|
[330] | 5009 | $zone = NetAddr::IP->new($zone);
|
---|
[337] | 5010 | # handle split-n-multiply SOA for off-octet (8 < mask < 16) or (16 < mask < 24) v4 zones
|
---|
| 5011 | if (!$zone->{isv6} && ($zone->masklen < 24) && ($zone->masklen % 8 != 0)) {
|
---|
| 5012 | foreach my $szone ($zone->split($zone->masklen + (8 - $zone->masklen % 8))) {
|
---|
| 5013 | $szone = _ZONE($szone, 'ZONE.in-addr.arpa', 'r', '.');
|
---|
| 5014 | print $datafile "Z$szone:$primary:$email"."::$refresh:$retry:$expire:$min_ttl:$ttl:$stamp:$loc\n";
|
---|
| 5015 | }
|
---|
| 5016 | return; # skips "default" bits just below
|
---|
| 5017 | }
|
---|
[330] | 5018 | $zone = _ZONE($zone, 'ZONE', 'r', '.').($zone->{isv6} ? '.ip6.arpa' : '.in-addr.arpa');
|
---|
| 5019 | }
|
---|
[329] | 5020 | print $datafile "Z$zone:$primary:$email"."::$refresh:$retry:$expire:$min_ttl:$ttl:$stamp:$loc\n";
|
---|
[103] | 5021 |
|
---|
| 5022 | } elsif ($typemap{$type} eq 'A') {
|
---|
| 5023 |
|
---|
[108] | 5024 | print $datafile "+$host:$val:$ttl:$stamp:$loc\n";
|
---|
[103] | 5025 |
|
---|
| 5026 | } elsif ($typemap{$type} eq 'NS') {
|
---|
| 5027 |
|
---|
[330] | 5028 | if ($revrec eq 'y') {
|
---|
| 5029 | $val = NetAddr::IP->new($val);
|
---|
[345] | 5030 | # handle split-n-multiply SOA for off-octet (8 < mask < 16) or (16 < mask < 24) v4 zones
|
---|
| 5031 | if (!$val->{isv6} && ($val->masklen < 24) && ($val->masklen % 8 != 0)) {
|
---|
[346] | 5032 | foreach my $szone ($val->split($val->masklen + (8 - $val->masklen % 8))) {
|
---|
[345] | 5033 | my $szone2 = _ZONE($szone, 'ZONE.in-addr.arpa', 'r', '.');
|
---|
[346] | 5034 | next if $$recflags{$szone2} && $$recflags{$szone2} > $val->masklen;
|
---|
[345] | 5035 | print $datafile "\&$szone2"."::$host:$ttl:$stamp:$loc\n";
|
---|
[346] | 5036 | $$recflags{$szone2} = $val->masklen;
|
---|
[345] | 5037 | }
|
---|
[346] | 5038 | } elsif ($val->{isv6} && ($val->masklen < 64) && ($val->masklen % 4 !=0)) {
|
---|
| 5039 | foreach my $szone ($val->split($val->masklen + (4 - $val->masklen % 4))) {
|
---|
| 5040 | my $szone2 = _ZONE($szone, 'ZONE.ip6.arpa', 'r', '.');
|
---|
| 5041 | next if $$recflags{$szone2} && $$recflags{$szone2} > $val->masklen;
|
---|
| 5042 | print $datafile "\&$szone2"."::$host:$ttl:$stamp:$loc\n";
|
---|
| 5043 | $$recflags{$szone2} = $val->masklen;
|
---|
| 5044 | }
|
---|
| 5045 | } else {
|
---|
| 5046 | my $val2 = _ZONE($val, 'ZONE', 'r', '.').($val->{isv6} ? '.ip6.arpa' : '.in-addr.arpa');
|
---|
| 5047 | print $datafile "\&$val2"."::$host:$ttl:$stamp:$loc\n";
|
---|
| 5048 | $$recflags{$val2} = $val->masklen;
|
---|
[345] | 5049 | }
|
---|
[330] | 5050 | } else {
|
---|
| 5051 | print $datafile "\&$host"."::$val:$ttl:$stamp:$loc\n";
|
---|
| 5052 | }
|
---|
[103] | 5053 |
|
---|
| 5054 | } elsif ($typemap{$type} eq 'AAAA') {
|
---|
| 5055 |
|
---|
| 5056 | print $datafile ":$host:28:";
|
---|
| 5057 | my $altgrp = 0;
|
---|
| 5058 | my @altconv;
|
---|
[108] | 5059 | # Split in to up to 8 groups of hex digits (allows for IPv6 :: 0-collapsing)
|
---|
[103] | 5060 | foreach (split /:/, $val) {
|
---|
| 5061 | if (/^$/) {
|
---|
| 5062 | # flag blank entry; this is a series of 0's of (currently) unknown length
|
---|
| 5063 | $altconv[$altgrp++] = 's';
|
---|
| 5064 | } else {
|
---|
| 5065 | # call sub to convert 1-4 hex digits to 2 string-rep octal bytes
|
---|
| 5066 | $altconv[$altgrp++] = octalize($_)
|
---|
| 5067 | }
|
---|
| 5068 | }
|
---|
| 5069 | foreach my $octet (@altconv) {
|
---|
| 5070 | # if not 's', output
|
---|
| 5071 | print $datafile $octet unless $octet =~ /^s$/;
|
---|
| 5072 | # if 's', output (9-array length)x literal '\000\000'
|
---|
| 5073 | print $datafile '\000\000'x(9-$altgrp) if $octet =~ /^s$/;
|
---|
| 5074 | }
|
---|
[108] | 5075 | print $datafile ":$ttl:$stamp:$loc\n";
|
---|
[103] | 5076 |
|
---|
| 5077 | } elsif ($typemap{$type} eq 'MX') {
|
---|
| 5078 |
|
---|
[108] | 5079 | print $datafile "\@$host"."::$val:$dist:$ttl:$stamp:$loc\n";
|
---|
[103] | 5080 |
|
---|
| 5081 | } elsif ($typemap{$type} eq 'TXT') {
|
---|
| 5082 |
|
---|
| 5083 | ##fixme: split v-e-r-y long TXT strings? will need to do so for BIND export, at least
|
---|
[350] | 5084 | if ($revrec eq 'n') {
|
---|
| 5085 | $val =~ s/:/\\072/g; # may need to replace other symbols
|
---|
| 5086 | print $datafile "'$host:$val:$ttl:$stamp:$loc\n";
|
---|
| 5087 | } else {
|
---|
| 5088 | $host =~ s/:/\\072/g; # may need to replace other symbols
|
---|
| 5089 | my $val2 = NetAddr::IP->new($val);
|
---|
| 5090 | print $datafile "'"._ZONE($val2, 'ZONE', 'r', '.').($val2->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
|
---|
| 5091 | ":$host:$ttl:$stamp:$loc\n";
|
---|
| 5092 | }
|
---|
[103] | 5093 |
|
---|
| 5094 | # by-hand TXT
|
---|
| 5095 | #:deepnet.cx:16:2v\075spf1\040a\040a\072bacon.deepnet.cx\040a\072home.deepnet.cx\040-all:3600
|
---|
| 5096 | #@ IN TXT "v=spf1 a a:bacon.deepnet.cx a:home.deepnet.cx -all"
|
---|
| 5097 | #'deepnet.cx:v=spf1 a a\072bacon.deepnet.cx a\072home.deepnet.cx -all:3600
|
---|
| 5098 |
|
---|
| 5099 | #txttest IN TXT "v=foo bar:bob kn;ob' \" !@#$%^&*()-=_+[]{}<>?"
|
---|
| 5100 | #: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
|
---|
| 5101 |
|
---|
| 5102 | # very long TXT record as brought in by axfr-get
|
---|
| 5103 | # note tinydns does not support >512-byte RR data, need axfr-dns (for TCP support) for that
|
---|
| 5104 | # also note, tinydns does not seem to support <512, >256-byte RRdata from axfr-get either. :/
|
---|
| 5105 | #:longtxt.deepnet.cx:16:
|
---|
| 5106 | #\170this is a very long txt record. it is really long. long. very long. really very long. this is a very long txt record.
|
---|
| 5107 | #\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.
|
---|
| 5108 | #\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.
|
---|
| 5109 | #:3600
|
---|
| 5110 |
|
---|
| 5111 | } elsif ($typemap{$type} eq 'CNAME') {
|
---|
| 5112 |
|
---|
[372] | 5113 | if ($revrec eq 'n') {
|
---|
| 5114 | print $datafile "C$host:$val:$ttl:$stamp:$loc\n";
|
---|
| 5115 | } else {
|
---|
| 5116 | my $val2 = NetAddr::IP->new($val);
|
---|
| 5117 | print $datafile "C"._ZONE($val2, 'ZONE', 'r', '.').($val2->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
|
---|
| 5118 | ":$host:$ttl:$stamp:$loc\n";
|
---|
| 5119 | }
|
---|
[103] | 5120 |
|
---|
| 5121 | } elsif ($typemap{$type} eq 'SRV') {
|
---|
| 5122 |
|
---|
| 5123 | # data is two-byte values for priority, weight, port, in that order,
|
---|
| 5124 | # followed by length/string data
|
---|
| 5125 |
|
---|
| 5126 | print $datafile ":$host:33:".octalize($dist,'d').octalize($weight,'d').octalize($port,'d');
|
---|
| 5127 |
|
---|
| 5128 | $val .= '.' if $val !~ /\.$/;
|
---|
| 5129 | foreach (split /\./, $val) {
|
---|
| 5130 | printf $datafile "\\%0.3o%s", length($_), $_;
|
---|
| 5131 | }
|
---|
[108] | 5132 | print $datafile "\\000:$ttl:$stamp:$loc\n";
|
---|
[103] | 5133 |
|
---|
| 5134 | } elsif ($typemap{$type} eq 'RP') {
|
---|
| 5135 |
|
---|
| 5136 | # RP consists of two mostly free-form strings.
|
---|
| 5137 | # The first is supposed to be an email address with @ replaced by . (as with the SOA contact)
|
---|
| 5138 | # The second is the "hostname" of a TXT record with more info.
|
---|
| 5139 | print $datafile ":$host:17:";
|
---|
| 5140 | my ($who,$what) = split /\s/, $val;
|
---|
| 5141 | foreach (split /\./, $who) {
|
---|
| 5142 | printf $datafile "\\%0.3o%s", length($_), $_;
|
---|
| 5143 | }
|
---|
| 5144 | print $datafile '\000';
|
---|
| 5145 | foreach (split /\./, $what) {
|
---|
| 5146 | printf $datafile "\\%0.3o%s", length($_), $_;
|
---|
| 5147 | }
|
---|
[108] | 5148 | print $datafile "\\000:$ttl:$stamp:$loc\n";
|
---|
[103] | 5149 |
|
---|
| 5150 | } elsif ($typemap{$type} eq 'PTR') {
|
---|
| 5151 |
|
---|
[332] | 5152 | $zone = NetAddr::IP->new($zone);
|
---|
[337] | 5153 | $$recflags{$val}++;
|
---|
[332] | 5154 | if (!$zone->{isv6} && $zone->masklen > 24) {
|
---|
| 5155 | ($val) = ($val =~ /\.(\d+)$/);
|
---|
| 5156 | print $datafile "^$val."._ZONE($zone, 'ZONE', 'r', '.').'.in-addr.arpa'.
|
---|
| 5157 | ":$host:ttl:$stamp:$loc\n";
|
---|
| 5158 | } else {
|
---|
| 5159 | $val = NetAddr::IP->new($val);
|
---|
| 5160 | print $datafile "^".
|
---|
| 5161 | _ZONE($val, 'ZONE', 'r', '.').($val->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
|
---|
[334] | 5162 | ":$host:$ttl:$stamp:$loc\n";
|
---|
[332] | 5163 | }
|
---|
[103] | 5164 |
|
---|
[333] | 5165 | } elsif ($type == 65280) { # A+PTR
|
---|
[334] | 5166 |
|
---|
[337] | 5167 | $$recflags{$val}++;
|
---|
[334] | 5168 | print $datafile "=$host:$val:$ttl:$stamp:$loc\n";
|
---|
| 5169 |
|
---|
[333] | 5170 | } elsif ($type == 65281) { # AAAA+PTR
|
---|
| 5171 |
|
---|
[337] | 5172 | #$$recflags{$val}++;
|
---|
[333] | 5173 | # treat these as two separate records. since tinydns doesn't have
|
---|
| 5174 | # a native combined type, we have to create them separately anyway.
|
---|
| 5175 | if ($revrec eq 'n') {
|
---|
| 5176 | $type = 28;
|
---|
| 5177 | } else {
|
---|
| 5178 | $type = 12;
|
---|
| 5179 | }
|
---|
[334] | 5180 | _printrec_tiny($datafile,$revrec,$recflags,$zone,$host,$type,$val,$dist,$weight,$port,$ttl,$loc,$stamp);
|
---|
[335] | 5181 | ##fixme: add a config flag to indicate use of the patch from http://www.fefe.de/dns/
|
---|
| 5182 | # type 6 is for AAAA+PTR, type 3 is for AAAA
|
---|
[333] | 5183 |
|
---|
| 5184 | } elsif ($type == 65282) { # PTR template
|
---|
[335] | 5185 |
|
---|
| 5186 | # only useful for v4 with standard DNS software, since this expands all
|
---|
| 5187 | # IPs in $zone (or possibly $val?) with autogenerated records
|
---|
[337] | 5188 | $val = NetAddr::IP->new($val);
|
---|
| 5189 | return if $val->{isv6};
|
---|
[336] | 5190 |
|
---|
[339] | 5191 | if ($val->masklen <= 16) {
|
---|
| 5192 | foreach my $sub ($val->split(16)) {
|
---|
| 5193 | __publish_subnet($sub, $recflags, $host, $datafile, $ttl, $stamp, $loc, 1);
|
---|
| 5194 | }
|
---|
| 5195 | } else {
|
---|
| 5196 | __publish_subnet($val, $recflags, $host, $datafile, $ttl, $stamp, $loc, 1);
|
---|
[337] | 5197 | }
|
---|
[335] | 5198 |
|
---|
[333] | 5199 | } elsif ($type == 65283) { # A+PTR template
|
---|
[335] | 5200 |
|
---|
[337] | 5201 | $val = NetAddr::IP->new($val);
|
---|
| 5202 | # Just In Case. An A+PTR should be impossible to add to a v6 revzone via API.
|
---|
| 5203 | return if $val->{isv6};
|
---|
[339] | 5204 |
|
---|
| 5205 | if ($val->masklen <= 16) {
|
---|
| 5206 | foreach my $sub ($val->split(16)) {
|
---|
| 5207 | __publish_subnet($sub, $recflags, $host, $datafile, $ttl, $stamp, $loc, 0);
|
---|
| 5208 | }
|
---|
| 5209 | } else {
|
---|
| 5210 | __publish_subnet($val, $recflags, $host, $datafile, $ttl, $stamp, $loc, 0);
|
---|
[337] | 5211 | }
|
---|
[335] | 5212 |
|
---|
[333] | 5213 | } elsif ($type == 65284) { # AAAA+PTR template
|
---|
[335] | 5214 | # Stub for completeness. Could be exported to DNS software that supports
|
---|
| 5215 | # some degree of internal automagic in generic-record-creation
|
---|
| 5216 | # (eg http://search.cpan.org/dist/AllKnowingDNS/ )
|
---|
[333] | 5217 |
|
---|
[345] | 5218 | } elsif ($type == 65285) { # Delegation
|
---|
| 5219 | # This is intended for reverse zones, but may prove useful in forward zones.
|
---|
| 5220 |
|
---|
[346] | 5221 | # All delegations need to create one or more NS records. The NS record handler knows what to do.
|
---|
| 5222 | _printrec_tiny($datafile,$revrec,$recflags,$zone,$host,$reverse_typemap{'NS'},
|
---|
| 5223 | $val,$dist,$weight,$port,$ttl,$loc,$stamp);
|
---|
| 5224 | if ($revrec eq 'y') {
|
---|
| 5225 | # In the case of a sub-/24 v4 reverse delegation, we need to generate CNAMEs
|
---|
| 5226 | # to redirect all of the individual IP lookups as well.
|
---|
| 5227 | # Not sure how this would actually resolve if a /24 or larger was delegated
|
---|
| 5228 | # one way, and a sub-/24 in that >=/24 was delegated elsewhere...
|
---|
| 5229 | my $dblock = NetAddr::IP->new($val);
|
---|
| 5230 | if (!$dblock->{isv6} && $dblock->masklen > 24) {
|
---|
| 5231 | my @subs = $dblock->split;
|
---|
| 5232 | foreach (@subs) {
|
---|
| 5233 | next if $$recflags{"$_"};
|
---|
| 5234 | my ($oct) = ($_->addr =~ /(\d+)$/);
|
---|
| 5235 | print $datafile "C"._ZONE($_, 'ZONE.in-addr.arpa', 'r', '.').":$oct.".
|
---|
| 5236 | _ZONE($dblock, 'ZONE.in-addr.arpa', 'r', '.').":$ttl:$stamp:$loc\n";
|
---|
| 5237 | $$recflags{"$_"}++;
|
---|
| 5238 | }
|
---|
| 5239 | }
|
---|
| 5240 | }
|
---|
[345] | 5241 |
|
---|
[364] | 5242 | ##
|
---|
| 5243 | ## Uncommon types. These will need better UI support Any Day Sometime Maybe(TM).
|
---|
| 5244 | ##
|
---|
| 5245 |
|
---|
| 5246 | } elsif ($type == 44) { # SSHFP
|
---|
| 5247 | my ($algo,$fpt,$fp) = split /\s+/, $val;
|
---|
| 5248 |
|
---|
| 5249 | my $rec = sprintf ":$host:44:\\%0.3o\\%0.3o", $algo, $fpt;
|
---|
| 5250 | while (my ($byte) = ($fp =~ /^(..)/) ) {
|
---|
| 5251 | $rec .= sprintf "\\%0.3o", hex($byte);
|
---|
| 5252 | $fp =~ s/^..//;
|
---|
| 5253 | }
|
---|
| 5254 | print $datafile "$rec:$ttl:$stamp:$loc\n";
|
---|
| 5255 |
|
---|
[345] | 5256 | } else {
|
---|
[108] | 5257 | # raw record. we don't know what's in here, so we ASS-U-ME the user has
|
---|
| 5258 | # put it in correctly, since either the user is messing directly with the
|
---|
| 5259 | # database, or the record was imported via AXFR
|
---|
| 5260 | # <split by char>
|
---|
| 5261 | # convert anything not a-zA-Z0-9.- to octal coding
|
---|
| 5262 |
|
---|
| 5263 | ##fixme: add flag to export "unknown" record types - note we'll probably end up
|
---|
| 5264 | # mangling them since they were written to the DB from Net::DNS::RR::<type>->rdatastr.
|
---|
| 5265 | #print $datafile ":$host:$type:$val:$ttl:$stamp:$loc\n";
|
---|
| 5266 |
|
---|
[103] | 5267 | } # record type if-else
|
---|
| 5268 |
|
---|
[329] | 5269 | } # end _printrec_tiny()
|
---|
[103] | 5270 |
|
---|
| 5271 |
|
---|
[197] | 5272 | ## DNSDB::mailNotify()
|
---|
[283] | 5273 | # Sends notification mail to recipients regarding a DNSDB operation
|
---|
[197] | 5274 | sub mailNotify {
|
---|
| 5275 | my $dbh = shift;
|
---|
| 5276 | my ($subj,$message) = @_;
|
---|
| 5277 |
|
---|
| 5278 | return if $config{mailhost} eq 'smtp.example.com'; # do nothing if still using default SMTP host.
|
---|
| 5279 |
|
---|
| 5280 | my $mailer = Net::SMTP->new($config{mailhost}, Hello => "dnsadmin.$config{domain}");
|
---|
| 5281 |
|
---|
| 5282 | my $mailsender = ($config{mailsender} ? $config{mailsender} : $config{mailnotify});
|
---|
| 5283 |
|
---|
| 5284 | $mailer->mail($mailsender);
|
---|
| 5285 | $mailer->to($config{mailnotify});
|
---|
[198] | 5286 | $mailer->data("From: \"$config{mailname}\" <$mailsender>\n",
|
---|
| 5287 | "To: <$config{mailnotify}>\n",
|
---|
[197] | 5288 | "Date: ".strftime("%a, %d %b %Y %H:%M:%S %z",localtime)."\n",
|
---|
| 5289 | "Subject: $subj\n",
|
---|
| 5290 | "X-Mailer: DNSAdmin Notify v".sprintf("%.1d",$DNSDB::VERSION)."\n",
|
---|
| 5291 | "Organization: $config{orgname}\n",
|
---|
| 5292 | "\n$message\n");
|
---|
| 5293 | $mailer->quit;
|
---|
| 5294 | }
|
---|
| 5295 |
|
---|
[2] | 5296 | # shut Perl up
|
---|
| 5297 | 1;
|
---|