source: trunk/DNSDB.pm@ 559

Last change on this file since 559 was 559, checked in by Kris Deugau, 10 years ago

/trunk

Post-release nuisance rollup

  • Forgot to move "use Digest::MD5" to DNSDB.pm, where it's actually needed
  • Minor UI polish for TTLs intended to use "automatic" TTL setting; instead of displaying the underlying -1, show "(auto)"
  • Remember to accept negative TTLs (could probably check for things other than -1, if being picky) to allow use of "automatic" TTLs. Note that tinydns' automatic TTL is.... one day.
  • After all that work developing a caching system to speed up exports, add a knob to turn it off... because it's now slower than just writing everything straight to a collected master file after all the *rest* of the export speed optimizations. (Even with full sets of template records.)
  • Include the dns-rpc.fcgi symlink in the tarball
  • Make sure we have the right name for maxfcgi in all the places it's used. Also update the example dnsdb.conf with the couple of new options introduced recently.
  • Property svn:keywords set to Date Rev Author Id
File size: 200.5 KB
Line 
1# dns/trunk/DNSDB.pm
2# Abstraction functions for DNS administration
3##
4# $Id: DNSDB.pm 559 2013-12-17 21:33:13Z kdeugau $
5# Copyright 2008-2013 Kris Deugau <kdeugau@deepnet.cx>
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##
20
21package DNSDB;
22
23use strict;
24use warnings;
25use Exporter;
26use DBI;
27use Net::DNS;
28use Crypt::PasswdMD5;
29use Digest::MD5 qw(md5_hex);
30use Net::SMTP;
31use NetAddr::IP 4.027 qw(:lower);
32use POSIX;
33use Fcntl qw(:flock);
34use Time::TAI64 qw(:tai64);
35
36use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
37
38$VERSION = 1.1; ##VERSION##
39@ISA = qw(Exporter);
40@EXPORT_OK = qw(
41 &initGlobals &login &initActionLog
42 &getPermissions &changePermissions &comparePermissions
43 &changeGroup
44 &connectDB &finish
45 &addDomain &delZone &domainName &revName &domainID &revID &addRDNS
46 &getZoneCount &getZoneList &getZoneLocation
47 &addGroup &delGroup &getChildren &groupName
48 &getGroupCount &getGroupList
49 &addUser &updateUser &delUser &userFullName &userStatus &getUserData
50 &getUserCount &getUserList &getUserDropdown
51 &addLoc &updateLoc &delLoc &getLoc
52 &getLocCount &getLocList &getLocDropdown
53 &getSOA &updateSOA &getRecLine &getRecList &getRecCount
54 &addRec &updateRec &delRec
55 &getLogCount &getLogEntries
56 &getRevPattern
57 &getTypelist
58 &parentID
59 &isParent
60 &zoneStatus &getZonesByCIDR &importAXFR
61 &export
62 &mailNotify
63 %typemap %reverse_typemap
64 @permtypes $permlist %permchains
65 );
66
67@EXPORT = qw(%typemap %reverse_typemap @permtypes $permlist %permchains);
68%EXPORT_TAGS = ( ALL => [qw(
69 &initGlobals &login &initActionLog
70 &getPermissions &changePermissions &comparePermissions
71 &changeGroup
72 &connectDB &finish
73 &addDomain &delZone &domainName &revName &domainID &revID &addRDNS
74 &getZoneCount &getZoneList &getZoneLocation
75 &addGroup &delGroup &getChildren &groupName
76 &getGroupCount &getGroupList
77 &addUser &updateUser &delUser &userFullName &userStatus &getUserData
78 &getUserCount &getUserList &getUserDropdown
79 &addLoc &updateLoc &delLoc &getLoc
80 &getLocCount &getLocList &getLocDropdown
81 &getSOA &updateSOA &getRecLine &getRecList &getRecCount
82 &addRec &updateRec &delRec
83 &getLogCount &getLogEntries
84 &getRevPattern
85 &getTypelist
86 &parentID
87 &isParent
88 &zoneStatus &getZonesByCIDR &importAXFR
89 &export
90 &mailNotify
91 %typemap %reverse_typemap
92 @permtypes $permlist %permchains
93 )]
94 );
95
96our $errstr = '';
97our $resultstr = '';
98
99# Arguably defined wholly in the db, but little reason to change without supporting code changes
100# group_view, user_view permissions? separate rDNS permission(s)?
101our @permtypes = qw (
102 group_edit group_create group_delete
103 user_edit user_create user_delete
104 domain_edit domain_create domain_delete
105 record_edit record_create record_delete record_locchg
106 location_edit location_create location_delete location_view
107 self_edit admin
108);
109our $permlist = join(',',@permtypes);
110
111# Some permissions more or less require certain others.
112our %permchains = (
113 user_edit => 'self_edit',
114 location_edit => 'location_view',
115 location_create => 'location_view',
116 location_delete => 'location_view',
117 record_locchg => 'location_view',
118);
119
120# DNS record type map and reverse map.
121# loaded from the database, from http://www.iana.org/assignments/dns-parameters
122our %typemap;
123our %reverse_typemap;
124
125## (Semi)private variables
126
127# Hash of functions for validating record types. Filled in initGlobals() since
128# it relies on visibility flags from the rectypes table in the DB
129my %validators;
130
131# Entity-relationship reference hashes.
132my %par_tbl = (
133 group => 'groups',
134 user => 'users',
135 defrec => 'default_records',
136 defrevrec => 'default_rev_records',
137 domain => 'domains',
138 revzone => 'revzones',
139 record => 'records'
140 );
141my %id_col = (
142 group => 'group_id',
143 user => 'user_id',
144 defrec => 'record_id',
145 defrevrec => 'record_id',
146 domain => 'domain_id',
147 revzone => 'rdns_id',
148 record => 'record_id'
149 );
150my %par_col = (
151 group => 'parent_group_id',
152 user => 'group_id',
153 defrec => 'group_id',
154 defrevrec => 'group_id',
155 domain => 'group_id',
156 revzone => 'group_id',
157 record => 'domain_id'
158 );
159my %par_type = (
160 group => 'group',
161 user => 'group',
162 defrec => 'group',
163 defrevrec => 'group',
164 domain => 'group',
165 revzone => 'group',
166 record => 'domain'
167 );
168
169##
170## Constructor and destructor
171##
172
173sub new {
174 my $this = shift;
175 my $class = ref($this) || $this;
176 my %args = @_;
177
178 # Prepopulate a basic config. Note some of these *will* cause errors if left unset.
179 # note: add appropriate stanzas in __cfgload() to parse these
180 my %defconfig = (
181 # The only configuration options not loadable from a config file.
182 configfile => "/etc/dnsdb/dnsdb.conf", ##CFG_LEAF##
183
184 # Database connection info
185 dbname => 'dnsdb',
186 dbuser => 'dnsdb',
187 dbpass => 'secret',
188 dbhost => '',
189
190 # Email notice settings
191 mailhost => 'smtp.example.com',
192 mailnotify => 'dnsdb@example.com', # to
193 mailsender => 'dnsdb@example.com', # from
194 mailname => 'DNS Administration',
195 orgname => 'Example Corp',
196 domain => 'example.com',
197
198 # Template directory
199 templatedir => 'templates/',
200# fmeh. this is a real web path, not a logical internal one. hm..
201# cssdir => 'templates/',
202 sessiondir => 'session/',
203 exportcache => 'cache/',
204 usecache => 1, # do we bother using the cache above?
205
206 # Session params
207 timeout => '1h', # passed as-is to CGI::Session
208
209 # Other miscellanea
210 log_failures => 1, # log all evarthing by default
211 perpage => 15,
212 maxfcgi => 10, # reasonable default?
213 force_refresh => 1,
214 lowercase => 0, # mangle as little as possible by default
215 );
216
217 # Config file parse calls.
218 # If we are passed a blank argument for $args{configfile},
219 # we should NOT parse the default config file - we will
220 # rely on hardcoded defaults OR caller-specified values.
221 # If we are passed a non-blank argument, parse that file.
222 # If no config file is specified, parse the default one.
223 my %siteconfig;
224 if (defined($args{configfile})) {
225 if ($args{configfile}) {
226 return if !__cfgload($args{configfile}, \%siteconfig);
227 }
228 } else {
229 return if !__cfgload($defconfig{configfile}, \%siteconfig);
230 }
231
232 # Assemble the object. Apply configuration hashes in order of precedence.
233 my $self = {
234 # Hardcoded defaults
235 %defconfig,
236 # Default config file OR caller-specified one, loaded above
237 %siteconfig,
238 # Caller-specified arguments
239 %args
240 };
241 bless $self, $class;
242
243 # Several settings are booleans. Handle multiple possible ways of setting them.
244 for my $boolopt ('log_failures', 'force_refresh', 'lowercase') {
245 if ($self->{$boolopt} ne '1' && $self->{$boolopt} ne '0') {
246 # true/false, on/off, yes/no all valid.
247 if ($self->{$boolopt} =~ /^(?:true|false|t|f|on|off|yes|no)$/) {
248 if ($self->{$boolopt} =~ /(?:true|t|on|yes)/) {
249 $self->{$boolopt} = 1;
250 } else {
251 $self->{$boolopt} = 0;
252 }
253 } else {
254 warn "Bad $boolopt setting $self->{$boolopt}\n";
255 $self->{$boolopt} = 1;
256 }
257 }
258 }
259
260 # Try to connect to the DB, and initialize a number of handy globals.
261 $self->{dbh} = connectDB($self->{dbname}, $self->{dbuser}, $self->{dbpass}, $self->{dbhost}) or return;
262 $self->initGlobals();
263
264 return $self;
265}
266
267sub DESTROY {
268 my $self = shift;
269 $self->{dbh}->disconnect if $self->{dbh};
270}
271
272sub errstr { $DNSDB::errstr; }
273
274##
275## utility functions
276##
277
278## DNSDB::_rectable()
279# Takes default+rdns flags, returns appropriate table name
280sub _rectable {
281 my $def = shift;
282 my $rev = shift;
283
284 return 'records' if $def ne 'y';
285 return 'default_records' if $rev ne 'y';
286 return 'default_rev_records';
287} # end _rectable()
288
289## DNSDB::_recparent()
290# Takes default+rdns flags, returns appropriate parent-id column name
291sub _recparent {
292 my $def = shift;
293 my $rev = shift;
294
295 return 'group_id' if $def eq 'y';
296 return 'rdns_id' if $rev eq 'y';
297 return 'domain_id';
298} # end _recparent()
299
300## DNSDB::_ipparent()
301# Check an IP to be added in a reverse zone to see if it's really in the requested parent.
302# Takes default and reverse flags, IP (fragment) to check, parent zone ID,
303# and a reference to a NetAddr::IP object (also used to pass back a fully-reconstructed IP for
304# database insertion)
305sub _ipparent {
306 my $self = shift;
307 my $dbh = $self->{dbh};
308 my $defrec = shift;
309 my $revrec = shift;
310 my $val = shift;
311 my $id = shift;
312 my $addr = shift;
313
314 return if $revrec ne 'y'; # this sub not useful in forward zones
315
316 $$addr = NetAddr::IP->new($$val); #necessary?
317
318 # subsub to split, reverse, and overlay an IP fragment on a netblock
319 sub __rev_overlay {
320 my $splitme = shift; # ':' or '.', m'lud?
321 my $parnet = shift;
322 my $val = shift;
323 my $addr = shift;
324
325 my $joinme = $splitme;
326 $splitme = '\.' if $splitme eq '.';
327 my @working = reverse(split($splitme, $parnet->addr));
328 my @parts = reverse(split($splitme, $$val));
329 for (my $i = 0; $i <= $#parts; $i++) {
330 $working[$i] = $parts[$i];
331 }
332 my $checkme = NetAddr::IP->new(join($joinme, reverse(@working))) or return 0;
333 return 0 unless $checkme->within($parnet);
334 $$addr = $checkme; # force "correct" IP to be recorded.
335 return 1;
336 }
337
338 my ($parstr) = $dbh->selectrow_array("SELECT revnet FROM revzones WHERE rdns_id = ?", undef, ($id));
339 my $parnet = NetAddr::IP->new($parstr);
340
341 # Fail early on v6-in-v4 or v4-in-v6. We're not accepting these ATM.
342 return 0 if $parnet->addr =~ /\./ && $$val =~ /:/;
343 return 0 if $parnet->addr =~ /:/ && $$val =~ /\./;
344
345 if ($$addr && ($$val =~ /^[\da-fA-F][\da-fA-F:]+[\da-fA-F]$/ || $$val =~ m|/\d+$|)) {
346 # the only case where NetAddr::IP's acceptance of legitimate IPs is "correct" is for a proper IPv6 address,
347 # or a netblock (only expected on templates)
348 # the rest we have to restructure before fiddling. *sigh*
349 return 1 if $$addr->within($parnet);
350 } else {
351 # We don't have a complete IP in $$val (yet)... unless we have a netblock
352 if ($parnet->addr =~ /:/) {
353 $$val =~ s/^:+//; # gotta strip'em all...
354 return __rev_overlay(':', $parnet, $val, $addr);
355 }
356 if ($parnet->addr =~ /\./) {
357 $$val =~ s/^\.+//;
358 return __rev_overlay('.', $parnet, $val, $addr);
359 }
360 # should be impossible to get here...
361 }
362 # ... and here.
363 # can't do nuttin' in forward zones
364} # end _ipparent()
365
366## DNSDB::_hostparent()
367# A little different than _ipparent above; this tries to *find* the parent zone of a hostname
368# Takes a hostname.
369# Returns the domain ID of the parent domain if one was found.
370sub _hostparent {
371 my $self = shift;
372 my $dbh = $self->{dbh};
373 my $hname = shift;
374
375 $hname =~ s/^\*\.//; # this should be impossible to find in the domains table.
376 my @hostbits = split /\./, $hname;
377 my $sth = $dbh->prepare("SELECT count(*),domain_id FROM domains WHERE lower(domain) = lower(?) GROUP BY domain_id");
378 foreach (@hostbits) {
379 $sth->execute($hname);
380 my ($found, $parid) = $sth->fetchrow_array;
381 if ($found) {
382 return $parid;
383 }
384 $hname =~ s/^$_\.//;
385 }
386} # end _hostparent()
387
388## DNSDB::_log()
389# Log an action
390# Takes a log entry hash containing at least:
391# group_id, log entry
392# and optionally one or more of:
393# domain_id, rdns_id
394# The %userdata hash provides the user ID, username, and fullname
395sub _log {
396 my $self = shift;
397 my $dbh = $self->{dbh};
398
399 my %args = @_;
400
401 $args{rdns_id} = 0 if !$args{rdns_id};
402 $args{domain_id} = 0 if !$args{domain_id};
403
404##fixme: farm out the actual logging to different subs for file, syslog, internal, etc based on config
405# if ($self->{log_channel} eq 'sql') {
406 $dbh->do("INSERT INTO log (domain_id,rdns_id,group_id,entry,user_id,email,name) VALUES (?,?,?,?,?,?,?)",
407 undef,
408 ($args{domain_id}, $args{rdns_id}, $args{group_id}, $args{entry},
409 $self->{loguserid}, $self->{logusername}, $self->{logfullname}) );
410# } elsif ($self->{log_channel} eq 'file') {
411# } elsif ($self->{log_channel} eq 'syslog') {
412# }
413} # end _log
414
415
416##
417## Record validation subs.
418##
419
420## All of these subs take substantially the same arguments:
421# a hash containing at least the following keys:
422# - defrec (default/live flag)
423# - revrec (forward/reverse flag)
424# - id (parent entity ID)
425# - host (hostname)
426# - rectype
427# - val (IP, hostname [CNAME/MX/SRV] or text)
428# - addr (NetAddr::IP object from val. May be undef.)
429# MX and SRV record validation also expect distance, and SRV records expect weight and port as well.
430# host, rectype, and addr should be references as these may be modified in validation
431
432# A record
433sub _validate_1 {
434 my $self = shift;
435 my $dbh = $self->{dbh};
436
437 my %args = @_;
438
439 return ('FAIL', 'Reverse zones cannot contain A records') if $args{revrec} eq 'y';
440
441 # Coerce all hostnames to end in ".DOMAIN" for group/default records,
442 # or the intended parent domain for live records.
443 my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
444 ${$args{host}} =~ s/\.*$/\.$pname/ if (${$args{host}} ne '@' && ${$args{host}} !~ /$pname$/);
445
446 # Check IP is well-formed, and that it's a v4 address
447 # Fail on "compact" IPv4 variants, because they are not consistent and predictable.
448 return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv4 address")
449 unless ${$args{val}} =~ /^\d+\.\d+\.\d+\.\d+$/;
450 return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv4 address")
451 unless $args{addr} && !$args{addr}->{isv6};
452 # coerce IP/value to normalized form for storage
453 ${$args{val}} = $args{addr}->addr;
454
455 return ('OK','OK');
456} # done A record
457
458# NS record
459sub _validate_2 {
460 my $self = shift;
461 my $dbh = $self->{dbh};
462
463 my %args = @_;
464
465 # Check that the target of the record is within the parent.
466 # Yes, host<->val are mixed up here; can't see a way to avoid it. :(
467 if ($args{defrec} eq 'n') {
468 # Check if IP/address/zone/"subzone" is within the parent
469 if ($args{revrec} eq 'y') {
470 my $tmpip = NetAddr::IP->new(${$args{val}});
471 my $pname = $self->revName($args{id});
472 return ('FAIL',"${$args{val}} not within $pname")
473 unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$tmpip);
474 # Sub the returned thing for ZONE? This could get stupid if you have typos...
475 ${$args{val}} =~ s/ZONE/$tmpip->address/;
476 } else {
477 my $pname = $self->domainName($args{id});
478 ${$args{host}} = $pname if ${$args{host}} !~ /\.$pname$/;
479 }
480 } else {
481 # Default reverse NS records should always refer to the implied parent
482 ${$args{host}} = 'DOMAIN' if $args{revrec} eq 'n';
483 ${$args{val}} = 'ZONE' if $args{revrec} eq 'y';
484 }
485
486# Let this lie for now. Needs more magic.
487# # Check IP is well-formed, and that it's a v4 address
488# return ('FAIL',"A record must be a valid IPv4 address")
489# unless $addr && !$addr->{isv6};
490# # coerce IP/value to normalized form for storage
491# $$val = $addr->addr;
492
493 return ('OK','OK');
494} # done NS record
495
496# CNAME record
497sub _validate_5 {
498 my $self = shift;
499 my $dbh = $self->{dbh};
500
501 my %args = @_;
502
503# Not really true, but these are only useful for delegating smaller-than-/24 IP blocks.
504# This is fundamentally a messy operation and should really just be taken care of by the
505# export process, not manual maintenance of the necessary records.
506 return ('FAIL', 'Reverse zones cannot contain CNAME records') if $args{revrec} eq 'y';
507
508 # Coerce all hostnames to end in ".DOMAIN" for group/default records,
509 # or the intended parent domain for live records.
510 my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
511 ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
512
513 return ('OK','OK');
514} # done CNAME record
515
516# SOA record
517sub _validate_6 {
518 # Smart monkeys won't stick their fingers in here; we have
519 # separate dedicated routines to deal with SOA records.
520 return ('OK','OK');
521} # done SOA record
522
523# PTR record
524sub _validate_12 {
525 my $self = shift;
526 my $dbh = $self->{dbh};
527
528 my %args = @_;
529
530 if ($args{revrec} eq 'y') {
531 if ($args{defrec} eq 'n') {
532 return ('FAIL', "IP or IP fragment ${$args{val}} is not within ".$self->revName($args{id}))
533 unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$args{addr});
534 ${$args{val}} = $args{addr}->addr;
535 } else {
536 if (${$args{val}} =~ /\./) {
537 # looks like a v4 or fragment
538 if (${$args{val}} =~ /^\d+\.\d+\.\d+\.\d+$/) {
539 # woo! a complete IP! validate it and normalize, or fail.
540 $args{addr} = NetAddr::IP->new(${$args{val}})
541 or return ('FAIL', "IP/value looks like IPv4 but isn't valid");
542 ${$args{val}} = $args{addr}->addr;
543 } else {
544 ${$args{val}} =~ s/^\.*/ZONE./ unless ${$args{val}} =~ /^ZONE/;
545 }
546 } elsif (${$args{val}} =~ /[a-f:]/) {
547 # looks like a v6 or fragment
548 ${$args{val}} =~ s/^:*/ZONE::/ if !$args{addr} && ${$args{val}} !~ /^ZONE/;
549 if ($args{addr}) {
550 if ($args{addr}->addr =~ /^0/) {
551 ${$args{val}} =~ s/^:*/ZONE::/ unless ${$args{val}} =~ /^ZONE/;
552 } else {
553 ${$args{val}} = $args{addr}->addr;
554 }
555 }
556 } else {
557 # bare number (probably). These could be v4 or v6, so we'll
558 # expand on these on creation of a reverse zone.
559 ${$args{val}} = "ZONE,${$args{val}}" unless ${$args{val}} =~ /^ZONE/;
560 }
561 ${$args{host}} =~ s/\.*$/\.$self->{domain}/ if ${$args{host}} !~ /(?:$self->{domain}|ADMINDOMAIN)$/;
562 }
563
564# Multiple PTR records do NOT generally do what most people believe they do,
565# and tend to fail in the most awkward way possible. Check and warn.
566# We use $val instead of $addr->addr since we may be in a defrec, and may have eg "ZONE::42" or "ZONE.12"
567
568 my @checkvals = (${$args{val}});
569 if (${$args{val}} =~ /,/) {
570 # push . and :: variants into checkvals if val has ,
571 my $tmp;
572 ($tmp = ${$args{val}}) =~ s/,/./;
573 push @checkvals, $tmp;
574 ($tmp = ${$args{val}}) =~ s/,/::/;
575 push @checkvals, $tmp;
576 }
577 my $pcsth = $dbh->prepare("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec})." WHERE val = ?");
578 foreach my $checkme (@checkvals) {
579 if ($args{update}) {
580 # Record update. There should usually be an existing PTR (the record being updated)
581 my @ptrs = @{ $dbh->selectcol_arrayref("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
582 " WHERE val = ?", undef, ($checkme)) };
583 return ('WARN', "PTR record for $checkme already exists; adding another will probably not do what you want")
584 if @ptrs && (!grep /^$args{update}$/, @ptrs);
585 } else {
586 # New record. Always warn if a PTR exists
587 my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
588 " WHERE val = ?", undef, ($checkme));
589 return ('WARN', "PTR record for $checkme already exists; adding another will probably not do what you want")
590 if $ptrcount;
591 }
592 }
593
594 } else {
595 # Not absolutely true but only useful if you hack things up for sub-/24 v4 reverse delegations
596 # Simpler to just create the reverse zone and grant access for the customer to edit it, and create direct
597 # PTR records on export
598 return ('FAIL',"Forward zones cannot contain PTR records");
599 }
600
601 return ('OK','OK');
602} # done PTR record
603
604# MX record
605sub _validate_15 {
606 my $self = shift;
607 my $dbh = $self->{dbh};
608
609 my %args = @_;
610
611# Not absolutely true but WTF use is an MX record for a reverse zone?
612 return ('FAIL', 'Reverse zones cannot contain MX records') if $args{revrec} eq 'y';
613
614 return ('FAIL', "Distance is required for MX records") unless defined(${$args{dist}});
615 ${$args{dist}} =~ s/\s*//g;
616 return ('FAIL',"Distance is required, and must be numeric") unless ${$args{dist}} =~ /^\d+$/;
617
618 ${$args{fields}} = "distance,";
619 push @{$args{vallist}}, ${$args{dist}};
620
621 # Coerce all hostnames to end in ".DOMAIN" for group/default records,
622 # or the intended parent domain for live records.
623 my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
624 ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
625
626# hmm.. this might work. except possibly for something pointing to "deadbeef.ca". <g>
627# if ($type == $reverse_typemap{NS} || $type == $reverse_typemap{MX} || $type == $reverse_typemap{SRV}) {
628# if ($val =~ /^\s*[\da-f:.]+\s*$/) {
629# return ('FAIL',"$val is not a valid IP address") if !$addr;
630# }
631# }
632
633 return ('OK','OK');
634} # done MX record
635
636# TXT record
637sub _validate_16 {
638 # Could arguably put a WARN return here on very long (>512) records
639 return ('OK','OK');
640} # done TXT record
641
642# RP record
643sub _validate_17 {
644 # Probably have to validate these some day
645 return ('OK','OK');
646} # done RP record
647
648# AAAA record
649sub _validate_28 {
650 my $self = shift;
651 my $dbh = $self->{dbh};
652
653 my %args = @_;
654
655 return ('FAIL', 'Reverse zones cannot contain AAAA records') if $args{revrec} eq 'y';
656
657 # Coerce all hostnames to end in ".DOMAIN" for group/default records,
658 # or the intended parent domain for live records.
659 my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
660 ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
661
662 # Check IP is well-formed, and that it's a v6 address
663 return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv6 address")
664 unless $args{addr} && $args{addr}->{isv6};
665 # coerce IP/value to normalized form for storage
666 ${$args{val}} = $args{addr}->addr;
667
668 return ('OK','OK');
669} # done AAAA record
670
671# SRV record
672sub _validate_33 {
673 my $self = shift;
674 my $dbh = $self->{dbh};
675
676 my %args = @_;
677
678# Not absolutely true but WTF use is an SRV record for a reverse zone?
679 return ('FAIL', 'Reverse zones cannot contain SRV records') if $args{revrec} eq 'y';
680
681 return ('FAIL', "Distance is required for SRV records") unless defined(${$args{dist}});
682 ${$args{dist}} =~ s/\s*//g;
683 return ('FAIL',"Distance is required, and must be numeric") unless ${$args{dist}} =~ /^\d+$/;
684
685 return ('FAIL',"SRV records must begin with _service._protocol [${$args{host}}]")
686 unless ${$args{host}} =~ /^_[A-Za-z]+\._[A-Za-z]+\.[a-zA-Z0-9-]+/;
687 return ('FAIL',"Port and weight are required for SRV records")
688 unless defined(${$args{weight}}) && defined(${$args{port}});
689 ${$args{weight}} =~ s/\s*//g;
690 ${$args{port}} =~ s/\s*//g;
691
692 return ('FAIL',"Port and weight are required, and must be numeric")
693 unless ${$args{weight}} =~ /^\d+$/ && ${$args{port}} =~ /^\d+$/;
694
695 ${$args{fields}} = "distance,weight,port,";
696 push @{$args{vallist}}, (${$args{dist}}, ${$args{weight}}, ${$args{port}});
697
698 # Coerce all hostnames to end in ".DOMAIN" for group/default records,
699 # or the intended parent domain for live records.
700 my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : $self->domainName($args{id}));
701 ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
702
703 return ('OK','OK');
704} # done SRV record
705
706# Now the custom types
707
708# A+PTR record. With a very little bit of magic we can also use this sub to validate AAAA+PTR. Whee!
709sub _validate_65280 {
710 my $self = shift;
711 my $dbh = $self->{dbh};
712
713 my %args = @_;
714
715 my $code = 'OK';
716 my $msg = 'OK';
717
718 if ($args{defrec} eq 'n') {
719 # live record; revrec determines whether we validate the PTR or A component first.
720
721 if ($args{revrec} eq 'y') {
722 ($code,$msg) = $self->_validate_12(%args);
723 return ($code,$msg) if $code eq 'FAIL';
724
725 # check A+PTR is really v4
726 return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv4 address")
727 if ${$args{rectype}} == 65280 && $args{addr}->{isv6};
728 # check AAAA+PTR is really v6
729 return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv6 address")
730 if ${$args{rectype}} == 65281 && !$args{addr}->{isv6};
731
732 # Check if the reqested domain exists. If not, coerce the type down to PTR and warn.
733 if (!(${$args{domid}} = $self->_hostparent(${$args{host}}))) {
734 my $addmsg = "Record ".($args{update} ? 'updated' : 'added').
735 " as PTR instead of $typemap{${$args{rectype}}}; domain not found for ${$args{host}}";
736 $msg .= "\n$addmsg" if $code eq 'WARN';
737 $msg = $addmsg if $code eq 'OK';
738 ${$args{rectype}} = $reverse_typemap{PTR};
739 return ('WARN', $msg);
740 }
741
742 # Add domain ID to field list and values
743 ${$args{fields}} .= "domain_id,";
744 push @{$args{vallist}}, ${$args{domid}};
745
746 } else {
747 ($code,$msg) = $self->_validate_1(%args) if ${$args{rectype}} == 65280;
748 ($code,$msg) = $self->_validate_28(%args) if ${$args{rectype}} == 65281;
749 return ($code,$msg) if $code eq 'FAIL';
750
751 # Check if the requested reverse zone exists - note, an IP fragment won't
752 # work here since we don't *know* which parent to put it in.
753 # ${$args{val}} has been validated as a valid IP by now, in one of the above calls.
754 my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet >> ?".
755 " ORDER BY masklen(revnet) DESC", undef, (${$args{val}}));
756 if (!$revid) {
757 $msg = "Record ".($args{update} ? 'updated' : 'added')." as ".(${$args{rectype}} == 65280 ? 'A' : 'AAAA').
758 " instead of $typemap{${$args{rectype}}}; reverse zone not found for ${$args{val}}";
759 ${$args{rectype}} = (${$args{rectype}} == 65280 ? $reverse_typemap{A} : $reverse_typemap{AAAA});
760 return ('WARN', $msg);
761 }
762
763 # Check for duplicate PTRs. Note we don't have to play games with $code and $msg, because
764 # by definition there can't be duplicate PTRs if the reverse zone isn't managed here.
765 if ($args{update}) {
766 # Record update. There should usually be an existing PTR (the record being updated)
767 my @ptrs = @{ $dbh->selectcol_arrayref("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
768 " WHERE val = ?", undef, (${$args{val}})) };
769 if (@ptrs && (!grep /^$args{update}$/, @ptrs)) {
770 $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want";
771 $code = 'WARN';
772 }
773 } else {
774 # New record. Always warn if a PTR exists
775 my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
776 " WHERE val = ?", undef, (${$args{val}}));
777 $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want"
778 if $ptrcount;
779 $code = 'WARN' if $ptrcount;
780 }
781
782# my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
783# " WHERE val = ?", undef, ${$args{val}});
784# if ($ptrcount) {
785# my $curid = $dbh->selectrow_array("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
786# " WHERE val = ?
787# $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want";
788# $code = 'WARN';
789# }
790
791 ${$args{fields}} .= "rdns_id,";
792 push @{$args{vallist}}, $revid;
793 }
794
795 } else { # defrec eq 'y'
796 if ($args{revrec} eq 'y') {
797 ($code,$msg) = $self->_validate_12(%args);
798 return ($code,$msg) if $code eq 'FAIL';
799 if (${$args{rectype}} == 65280) {
800 return ('FAIL',"A+PTR record must be a valid IPv4 address or fragment")
801 if ${$args{val}} =~ /:/;
802 ${$args{val}} =~ s/^ZONE,/ZONE./; # Clean up after uncertain IP-fragment-type from _validate_12
803 } elsif (${$args{rectype}} == 65281) {
804 return ('FAIL',"AAAA+PTR record must be a valid IPv6 address or fragment")
805 if ${$args{val}} =~ /\./;
806 ${$args{val}} =~ s/^ZONE,/ZONE::/; # Clean up after uncertain IP-fragment-type from _validate_12
807 }
808 } else {
809 # This is easy. I also can't see a real use-case for A/AAAA+PTR in *all* forward
810 # domains, since you wouldn't be able to substitute both domain and reverse zone
811 # sanely, and you'd end up with guaranteed over-replicated PTR records that would
812 # confuse the hell out of pretty much anything that uses them.
813##fixme: make this a config flag?
814 return ('FAIL', "$typemap{${$args{rectype}}} records not allowed in default domains");
815 }
816 }
817
818 return ($code, $msg);
819} # done A+PTR record
820
821# AAAA+PTR record
822# A+PTR above has been magicked to handle AAAA+PTR as well.
823sub _validate_65281 {
824 return _validate_65280(@_);
825} # done AAAA+PTR record
826
827# PTR template record
828sub _validate_65282 {
829 my $self = shift;
830 my $dbh = $self->{dbh};
831
832 my %args = @_;
833
834 # we're *this* >.< close to being able to just call _validate_12... unfortunately we can't, quite.
835 if ($args{revrec} eq 'y') {
836 if ($args{defrec} eq 'n') {
837 return ('FAIL', "Template block ${$args{val}} is not within ".$self->revName($args{id}))
838 unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$args{addr});
839##fixme: warn if $args{val} is not /31 or larger block?
840 ${$args{val}} = "$args{addr}";
841 } else {
842 if (${$args{val}} =~ /\./) {
843 # looks like a v4 or fragment
844 if (${$args{val}} =~ m|^\d+\.\d+\.\d+\.\d+(?:/\d+)?$|) {
845 # woo! a complete IP! validate it and normalize, or fail.
846 $args{addr} = NetAddr::IP->new(${$args{val}})
847 or return ('FAIL', "IP/value looks like IPv4 but isn't valid");
848 ${$args{val}} = "$args{addr}";
849 } else {
850 ${$args{val}} =~ s/^\.*/ZONE./ unless ${$args{val}} =~ /^ZONE/;
851 }
852 } elsif (${$args{val}} =~ /[a-f:]/) {
853 # looks like a v6 or fragment
854 ${$args{val}} =~ s/^:*/ZONE::/ if !$args{addr} && ${$args{val}} !~ /^ZONE/;
855 if ($args{addr}) {
856 if ($args{addr}->addr =~ /^0/) {
857 ${$args{val}} =~ s/^:*/ZONE::/ unless ${$args{val}} =~ /^ZONE/;
858 } else {
859 ${$args{val}} = "$args{addr}";
860 }
861 }
862 } else {
863 # bare number (probably). These could be v4 or v6, so we'll
864 # expand on these on creation of a reverse zone.
865 ${$args{val}} = "ZONE,${$args{val}}" unless ${$args{val}} =~ /^ZONE/;
866 }
867 }
868##fixme: validate %-patterns?
869
870# Unlike single PTR records, there is absolutely no way to sanely support multiple
871# PTR templates for the same block, since they expect to expand to all the individual
872# IPs on export. Nested templates should be supported though.
873
874 my @checkvals = (${$args{val}});
875 if (${$args{val}} =~ /,/) {
876 # push . and :: variants into checkvals if val has ,
877 my $tmp;
878 ($tmp = ${$args{val}}) =~ s/,/./;
879 push @checkvals, $tmp;
880 ($tmp = ${$args{val}}) =~ s/,/::/;
881 push @checkvals, $tmp;
882 }
883##fixme: this feels wrong still - need to restrict template pseudorecords to One Of Each
884# Per Netblock such that they don't conflict on export
885 my $typeck;
886# type 65282 -> ptr template -> look for any of 65282, 65283, 65284
887 $typeck = 'type=65283 OR type=65284' if ${$args{rectype}} == 65282;
888# type 65283 -> a+ptr template -> v4 -> look for 65282 or 65283
889 $typeck = 'type=65283' if ${$args{rectype}} == 65282;
890# type 65284 -> aaaa+ptr template -> v6 -> look for 65282 or 65284
891 $typeck = 'type=65284' if ${$args{rectype}} == 65282;
892 my $pcsth = $dbh->prepare("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec})." WHERE val = ? ".
893 "AND (type=65282 OR $typeck)");
894 foreach my $checkme (@checkvals) {
895 $pcsth->execute($checkme);
896 my ($rc) = $pcsth->fetchrow_array;
897 return ('FAIL', "Only one template pseudorecord may exist for a given IP block") if $rc > 1;
898 }
899
900 } else {
901 return ('FAIL', "Forward zones cannot contain PTR records");
902 }
903
904 return ('OK','OK');
905} # done PTR template record
906
907# A+PTR template record
908sub _validate_65283 {
909 my $self = shift;
910 my $dbh = $self->{dbh};
911
912 my %args = @_;
913
914 my ($code,$msg) = ('OK','OK');
915
916##fixme: need to fiddle things since A+PTR templates are acceptable in live
917# forward zones but not default records
918 if ($args{defrec} eq 'n') {
919 if ($args{revrec} eq 'n') {
920 ($code,$msg) = $self->_validate_1(%args) if ${$args{rectype}} == 65280;
921 ($code,$msg) = $self->_validate_28(%args) if ${$args{rectype}} == 65281;
922 return ($code,$msg) if $code eq 'FAIL';
923
924 # Check if the requested reverse zone exists - note, an IP fragment won't
925 # work here since we don't *know* which parent to put it in.
926 # ${$args{val}} has been validated as a valid IP by now, in one of the above calls.
927 my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet >> ?".
928 " ORDER BY masklen(revnet) DESC", undef, (${$args{val}}));
929 # Fail if no match; we can't coerce a PTR-template type down to not include the PTR bit currently.
930 if (!$revid) {
931 $msg = "Can't ".($args{update} ? 'update' : 'add')." ${$args{host}}/${$args{val}} as ".
932 "$typemap{${$args{rectype}}}: reverse zone not found for ${$args{val}}";
933##fixme: add A template, AAAA template types?
934# ${$args{rectype}} = (${$args{rectype}} == 65280 ? $reverse_typemap{A} : $reverse_typemap{AAAA});
935 return ('FAIL', $msg);
936 }
937
938 # Add reverse zone ID to field list and values
939 ${$args{fields}} .= "rdns_id,";
940 push @{$args{vallist}}, $revid;
941
942 } else {
943 return ('FAIL', "IP or IP fragment ${$args{val}} is not within ".$self->revName($args{id}))
944 unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$args{addr});
945 ${$args{val}} = "$args{addr}";
946
947 if (!(${$args{domid}} = $self->_hostparent(${$args{host}}))) {
948 my $addmsg = "Record ".($args{update} ? 'updated' : 'added').
949 " as PTR template instead of $typemap{${$args{rectype}}}; domain not found for ${$args{host}}";
950 $msg .= "\n$addmsg" if $code eq 'WARN';
951 $msg = $addmsg if $code eq 'OK';
952 ${$args{rectype}} = 65282;
953 return ('WARN', $msg);
954 }
955
956 # Add domain ID to field list and values
957 ${$args{fields}} .= "domain_id,";
958 push @{$args{vallist}}, ${$args{domid}};
959 }
960
961 } else {
962 my ($code,$msg) = $self->_validate_65282(%args);
963 return ($code, $msg) if $code eq 'FAIL';
964 # get domain, check against ${$args{name}}
965 }
966
967 return ('OK','OK');
968} # done AAAA+PTR template record
969
970# AAAA+PTR template record
971sub _validate_65284 {
972 return ('OK','OK');
973} # done AAAA+PTR template record
974
975# Delegation record
976# This is essentially a specialized clone of the NS record, primarily useful
977# for delegating IPv4 sub-/24 reverse blocks
978sub _validate_65285 {
979 my $self = shift;
980 my $dbh = $self->{dbh};
981
982 my %args = @_;
983
984# Almost, but not quite, identical to NS record validation.
985
986 # Check that the target of the record is within the parent.
987 # Yes, host<->val are mixed up here; can't see a way to avoid it. :(
988 if ($args{defrec} eq 'n') {
989 # Check if IP/address/zone/"subzone" is within the parent
990 if ($args{revrec} eq 'y') {
991 my $tmpip = NetAddr::IP->new(${$args{val}});
992 my $pname = $self->revName($args{id});
993 return ('FAIL',"${$args{val}} not within $pname")
994 unless $self->_ipparent($args{defrec}, $args{revrec}, $args{val}, $args{id}, \$tmpip);
995 # Normalize
996 ${$args{val}} = "$tmpip";
997 } else {
998 my $pname = $self->domainName($args{id});
999 ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
1000 }
1001 } else {
1002 return ('FAIL',"Delegation records are not permitted in default record sets");
1003 }
1004 return ('OK','OK');
1005}
1006
1007
1008##
1009## Record data substitution subs
1010##
1011
1012# Replace ZONE in hostname, or create (most of) the actual proper zone name
1013sub _ZONE {
1014 my $zone = shift;
1015 my $string = shift;
1016 my $fr = shift || 'f'; # flag for forward/reverse order? nb: ignored for IP
1017 my $sep = shift || '-'; # Separator character - unlikely we'll ever need more than . or -
1018
1019 my $prefix;
1020
1021 $string =~ s/,/./ if !$zone->{isv6};
1022 $string =~ s/,/::/ if $zone->{isv6};
1023
1024 # Subbing ZONE in the host. We need to properly ID the netblock range
1025 # The subbed text should have "network IP with trailing zeros stripped" for
1026 # blocks lined up on octet (for v4) or hex-quad (for v6) boundaries
1027 # For blocks that do NOT line up on these boundaries, we take the most
1028 # significant octet or 16-bit chunk of the "broadcast" IP and append it
1029 # after a double-dash
1030 # ie:
1031 # 8.0.0.0/6 -> 8.0.0.0 -> 11.255.255.255; sub should be 8--11
1032 # 10.0.0.0/12 -> 10.0.0.0 -> 10.0.0.0 -> 10.15.255.255; sub should be 10-0--15
1033 # 192.168.4.0/22 -> 192.168.4.0 -> 192.168.7.255; sub should be 192-168-4--7
1034 # 192.168.0.8/29 -> 192.168.0.8 -> 192.168.0.15; sub should be 192-168-0-8--15
1035 # Similar for v6
1036
1037 if (!$zone->{isv6}) { # IPv4
1038
1039 $prefix = $zone->network->addr; # Just In Case someone managed to slip in
1040 # a funky subnet that had host bits set.
1041 my $bc = $zone->broadcast->addr;
1042
1043 if ($zone->masklen > 24) {
1044 $bc =~ s/^\d+\.\d+\.\d+\.//;
1045 } elsif ($zone->masklen > 16) {
1046 $prefix =~ s/\.0$//;
1047 $bc =~ s/^\d+\.\d+\.//;
1048 } elsif ($zone->masklen > 8) {
1049 $bc =~ s/^\d+\.//;
1050 $prefix =~ s/\.0\.0$//;
1051 } else {
1052 $prefix =~ s/\.0\.0\.0$//;
1053 }
1054 if ($zone->masklen % 8) {
1055 $bc =~ s/(\.255)+$//;
1056 $prefix .= "--$bc"; #"--".zone->masklen; # use range or mask length?
1057 }
1058 if ($fr eq 'f') {
1059 $prefix =~ s/\.+/$sep/g;
1060 } else {
1061 $prefix = join($sep, reverse(split(/\./, $prefix)));
1062 }
1063
1064 } else { # IPv6
1065
1066 if ($fr eq 'f') {
1067
1068 $prefix = $zone->network->addr; # Just In Case someone managed to slip in
1069 # a funky subnet that had host bits set.
1070 my $bc = $zone->broadcast->addr;
1071 if (($zone->masklen % 16) != 0) {
1072 # Strip trailing :0 off $prefix, and :ffff off the broadcast IP
1073 for (my $i=0; $i<(7-int($zone->masklen / 16)); $i++) {
1074 $prefix =~ s/:0$//;
1075 $bc =~ s/:ffff$//;
1076 }
1077 # Strip the leading 16-bit chunks off the front of the broadcast IP
1078 $bc =~ s/^([a-f0-9]+:)+//;
1079 # Append the remaining 16-bit chunk to the prefix after "--"
1080 $prefix .= "--$bc";
1081 } else {
1082 # Strip off :0 from the end until we reach the netblock length.
1083 for (my $i=0; $i<(8-$zone->masklen / 16); $i++) {
1084 $prefix =~ s/:0$//;
1085 }
1086 }
1087 # Actually deal with the separator
1088 $prefix =~ s/:/$sep/g;
1089
1090 } else { # $fr eq 'f'
1091
1092 $prefix = $zone->network->full; # Just In Case someone managed to slip in
1093 # a funky subnet that had host bits set.
1094 my $bc = $zone->broadcast->full;
1095 $prefix =~ s/://g; # clean these out since they're not spaced right for this case
1096 $bc =~ s/://g;
1097 # Strip trailing 0 off $prefix, and f off the broadcast IP, to match the mask length
1098 for (my $i=0; $i<(31-int($zone->masklen / 4)); $i++) {
1099 $prefix =~ s/0$//;
1100 $bc =~ s/f$//;
1101 }
1102 # Split and reverse the order of the nibbles in the network/broadcast IPs
1103 # trim another 0 for nibble-aligned blocks first, but only if we really have a block, not an IP
1104 $prefix =~ s/0$// if $zone->masklen % 4 == 0 && $zone->masklen != 128;
1105 my @nbits = reverse split //, $prefix;
1106 my @bbits = reverse split //, $bc;
1107 # Handle the sub-nibble case. Eww. I feel dirty supporting this...
1108 $nbits[0] = "$nbits[0]-$bbits[0]" if ($zone->masklen % 4) != 0;
1109 # Glue it back together
1110 $prefix = join($sep, @nbits);
1111
1112 } # $fr ne 'f'
1113
1114 } # $zone->{isv6}
1115
1116 # Do the substitution, finally
1117 $string =~ s/ZONE/$prefix/;
1118 $string =~ s/--/-/ if $sep ne '-'; # - as separator needs extra help for sub-octet v4 netblocks
1119 return $string;
1120} # done _ZONE()
1121
1122# Not quite a substitution sub, but placed here as it's basically the inverse of above;
1123# given the .arpa zone name, return the CIDR netblock the zone is for.
1124# Supports v4 non-octet/non-classful netblocks as per the method outlined in the Grasshopper Book (2nd Ed p217-218)
1125# Does NOT support non-quad v6 netblocks via the same scheme; it shouldn't ever be necessary.
1126# Takes a nominal .arpa zone name, returns a success code and NetAddr::IP, or a fail code and message
1127sub _zone2cidr {
1128 my $zone = shift;
1129
1130 my $cidr;
1131 my $tmpcidr;
1132 my $warnmsg = '';
1133
1134 if ($zone =~ /\.in-addr\.arpa\.?$/) {
1135 # v4 revzone, formal zone name type
1136 my $tmpzone = $zone;
1137 $tmpzone =~ s/\.in-addr\.arpa\.?//;
1138 return ('FAIL', "Non-numerics in apparent IPv4 reverse zone name") if $tmpzone !~ /^(?:\d+-)?[\d\.]+$/;
1139
1140 # Snag the octet pieces
1141 my @octs = split /\./, $tmpzone;
1142
1143 # Map result of a range manipulation to a mask length change. Cheaper than finding the 2-root of $octets[0]+1.
1144 # Note we will not support /31 blocks, mostly due to issues telling "24-31" -> .24/29 apart from
1145 # "24-31" -> .24/31", with a litte bit of "/31 is icky".
1146 my %maskmap = ( 3 => 2, 7 => 3, 15 => 4, 31 => 5, 63 => 6, 127 => 7,
1147 30 => 2, 29 => 3, 28 => 4, 27 => 5, 26 => 6, 25 => 7
1148 );
1149
1150 # Handle "range" blocks, eg, 80-83.168.192.in-addr.arpa (192.168.80.0/22)
1151 # Need to take the size of the range to offset the basic octet-based mask length,
1152 # and make sure the first number in the range gets used as the network address for the block
1153 # Alternate form: The second number is actually the real netmask, not the end of the range.
1154 my $masklen = 0;
1155 if ($octs[0] =~ /^((\d+)-(\d+))$/) { # take the range...
1156 if (24 < $3 && $3 < 31) {
1157 # we have a real netmask
1158 $masklen = -$maskmap{$3};
1159 } else {
1160 # we have a range. NB: only real CIDR ranges are supported
1161 $masklen -= $maskmap{-(eval $1)}; # find the mask base...
1162 }
1163 $octs[0] = $2; # set the base octet of the range...
1164 }
1165 @octs = reverse @octs; # We can reverse the octet pieces now that we've extracted and munged any ranges
1166
1167# arguably we should only allow sub-octet range/mask in-addr.arpa
1168# specifications in the least significant octet, but the code is
1169# simpler if we deal with sub-octet delegations at any level.
1170
1171 # Now we find the "true" mask with the aid of the "base" calculated above
1172 if ($#octs == 0) {
1173 $masklen += 8;
1174 $tmpcidr = "$octs[0].0.0.0/$masklen"; # really hope we don't see one of these very often.
1175 } elsif ($#octs == 1) {
1176 $masklen += 16;
1177 $tmpcidr = "$octs[0].$octs[1].0.0/$masklen";
1178 } elsif ($#octs == 2) {
1179 $masklen += 24;
1180 $tmpcidr = "$octs[0].$octs[1].$octs[2].0/$masklen";
1181 } else {
1182 $masklen += 32;
1183 $tmpcidr = "$octs[0].$octs[1].$octs[2].$octs[3]/$masklen";
1184 }
1185
1186 } elsif ($zone =~ /\.ip6\.arpa$/) {
1187 # v6 revzone, formal zone name type
1188 my $tmpzone = $zone;
1189 $tmpzone =~ s/\.ip6\.arpa\.?//;
1190##fixme: if-n-when we decide we can support sub-nibble v6 zone names, we'll need to change this segment
1191 return ('FAIL', "Non-hexadecimals in apparent IPv6 reverse zone name") if $tmpzone !~ /^[a-fA-F\d\.]+$/;
1192 my @quads = reverse(split(/\./, $tmpzone));
1193 $warnmsg .= "Apparent sub-/64 IPv6 reverse zone\n" if $#quads > 15;
1194 my $nc;
1195 foreach (@quads) {
1196 $tmpcidr .= $_;
1197 $tmpcidr .= ":" if ++$nc % 4 == 0;
1198 }
1199 my $nq = 1 if $nc % 4 != 0;
1200 my $mask = $nc * 4; # need to do this here because we probably increment it below
1201 while ($nc++ % 4 != 0) {
1202 $tmpcidr .= "0";
1203 }
1204 $tmpcidr .= ($nq ? '::' : ':')."/$mask";
1205 }
1206
1207 # Just to be sure, use NetAddr::IP to validate. Saves a lot of nasty regex watching for valid octet values.
1208 return ('FAIL', "Invalid zone $zone (apparent netblock $tmpcidr)")
1209 unless $cidr = NetAddr::IP->new($tmpcidr);
1210
1211 if ($warnmsg) {
1212 $errstr = $warnmsg;
1213 return ('WARN', $cidr);
1214 }
1215 return ('OK', $cidr);
1216} # done _zone2cidr()
1217
1218# Record template %-parameter expansion, IPv4. Note that IPv6 doesn't
1219# really have a sane way to handle this type of expansion at the moment
1220# due to the size of the address space.
1221# Takes a reference to a template string to be expanded, and an IP to use in the replacement.
1222sub _template4_expand {
1223 my $tmpl = shift;
1224 my $ip = shift;
1225
1226 my @ipparts = split /\./, $ip;
1227 my @iphex;
1228 my @ippad;
1229 for (@ipparts) {
1230 push @iphex, sprintf("%x", $_);
1231 push @ippad, sprintf("%0.3u", $_);
1232 }
1233
1234 # IP substitutions in template records:
1235 #major patterns:
1236 #dashed IP, forward and reverse
1237 #underscoreed IP, forward and reverse
1238 #dotted IP, forward and reverse (even if forward is... dumb)
1239 # -> %r for reverse, %i for forward, leading -, _, or . to indicate separator, defaults to -
1240 # %r or %-r => %4d-%3d-%2d-%1d
1241 # %_r => %4d_%3d_%2d_%1d
1242 # %.r => %4d.%3d.%2d.%1d
1243 # %i or %-i => %1d-%2d-%3d-%4d
1244 # %_i => %1d_%2d_%3d_%4d
1245 # %.i => %1d.%2d.%3d.%4d
1246 $$tmpl =~ s/\%r/\%4d-\%3d-\%2d-\%1d/g;
1247 $$tmpl =~ s/\%([-._])r/\%4d$1\%3d$1\%2d$1\%1d/g;
1248 $$tmpl =~ s/\%i/\%1d-\%2d-\%3d-\%4d/g;
1249 $$tmpl =~ s/\%([-._])i/\%1d$1\%2d$1\%3d$1\%4d/g;
1250
1251 #hex-coded IP
1252 # %h
1253 $$tmpl =~ s/\%h/$iphex[0]$iphex[1]$iphex[2]$iphex[3]/g;
1254
1255 #IP as decimal-coded 32-bit value
1256 # %d
1257 my $iptmp = $ipparts[0]*256*256*256 + $ipparts[1]*256*256 + $ipparts[2]*256 + $ipparts[3];
1258 $$tmpl =~ s/\%d/$iptmp/g;
1259
1260 #minor patterns (per-octet)
1261 # %[1234][dh0]
1262 #octet
1263 #hex-coded octet
1264 #0-padded octet
1265 $$tmpl =~ s/\%([1234])d/$ipparts[$1-1]/g;
1266 $$tmpl =~ s/\%([1234])h/$iphex[$1-1]/g;
1267 $$tmpl =~ s/\%([1234])0/$ippad[$1-1]/g;
1268} # _template4_expand()
1269
1270# Broad syntactic check on the hostname. Checks for valid characters, correctly-expandable template patterns.
1271# Takes the hostname, type, and live/default and forward/reverse flags
1272# Returns true/false, sets errstr on failures
1273sub _check_hostname_form {
1274 my ($hname,$rectype,$defrec,$revrec) = @_;
1275
1276 if ($hname =~ /\%/ && ($rectype == 65282 || $rectype == 65283) ) {
1277 my $tmphost = $hname;
1278 # we don't actually need to test with the real IP passed; that saves a bit of fiddling.
1279 _template4_expand(\$tmphost, '10.10.10.10');
1280 if ($tmphost =~ /\%/) {
1281 $errstr = "Invalid template $hname";
1282 return;
1283 }
1284 } elsif ($revrec eq 'y') {
1285 # Reverse zones don't support @ in hostnames
1286 # Also skip failure on revzone TXT records; the hostname contains the TXT content in that case.
1287 if ($rectype != $reverse_typemap{TXT} && lc($hname) !~ /^[0-9a-z_.-]+$/) {
1288 $errstr = "Hostnames may not contain anything other than (0-9 a-z . _)";
1289 return;
1290 }
1291 } else {
1292 if (lc($hname) !~ /^(?:[0-9a-z_.-]+|@)$/) {
1293 # Don't mention @, because it would be far too wordy to explain the nuance of @
1294 $errstr = "Hostnames may not contain anything other than (0-9 a-z . _)";
1295 return;
1296 }
1297 }
1298 return 1;
1299} # _check_hostname_form()
1300
1301
1302##
1303## Initialization and cleanup subs
1304##
1305
1306## DNSDB::__cfgload()
1307# Private sub to parse a config file and load it into %config
1308# Takes a filename and a hashref to put the parsed entries in
1309sub __cfgload {
1310 $errstr = '';
1311 my $cfgfile = shift;
1312 my $cfg = shift;
1313
1314 if (open CFG, "<$cfgfile") {
1315 while (<CFG>) {
1316 chomp;
1317 s/^\s*//;
1318 next if /^#/;
1319 next if /^$/;
1320# hmm. more complex bits in this file might require [heading] headers, maybe?
1321# $mode = $1 if /^\[(a-z)+]/;
1322 # DB connect info
1323 $cfg->{dbname} = $1 if /^dbname\s*=\s*([a-z0-9_.-]+)/i;
1324 $cfg->{dbuser} = $1 if /^dbuser\s*=\s*([a-z0-9_.-]+)/i;
1325 $cfg->{dbpass} = $1 if /^dbpass\s*=\s*([a-z0-9_.-]+)/i;
1326 $cfg->{dbhost} = $1 if /^dbhost\s*=\s*([a-z0-9_.-]+)/i;
1327 # Mail settings
1328 $cfg->{mailhost} = $1 if /^mailhost\s*=\s*([a-z0-9_.-]+)/i;
1329 $cfg->{mailnotify} = $1 if /^mailnotify\s*=\s*([a-z0-9_.\@-]+)/i;
1330 $cfg->{mailsender} = $1 if /^mailsender\s*=\s*([a-z0-9_.\@-]+)/i;
1331 $cfg->{mailname} = $1 if /^mailname\s*=\s*([a-z0-9\s_.-]+)/i;
1332 $cfg->{orgname} = $1 if /^orgname\s*=\s*([a-z0-9\s_.,'-]+)/i;
1333 $cfg->{domain} = $1 if /^domain\s*=\s*([a-z0-9_.-]+)/i;
1334 # session - note this is fed directly to CGI::Session
1335 $cfg->{timeout} = $1 if /^[tT][iI][mM][eE][oO][uU][tT]\s*=\s*(\d+[smhdwMy]?)/;
1336 $cfg->{sessiondir} = $1 if m{^sessiondir\s*=\s*([a-z0-9/_.-]+)}i;
1337 # misc
1338 $cfg->{log_failures} = $1 if /^log_failures\s*=\s*([a-z01]+)/i;
1339 $cfg->{perpage} = $1 if /^perpage\s*=\s*(\d+)/i;
1340 $cfg->{exportcache} = $1 if m{^exportcache\s*=\s*([a-z0-9/_.-]+)}i;
1341 $cfg->{usecache} = $1 if m{^usecache\s*=\s*([a-z01]+)}i;
1342 $cfg->{force_refresh} = $1 if /^force_refresh\s*=\s*([a-z01]+)/i;
1343 $cfg->{lowercase} = $1 if /^lowercase\s*=\s*([a-z01]+)/i;
1344# not supported in dns.cgi yet
1345# $cfg->{templatedir} = $1 if m{^templatedir\s*=\s*([a-z0-9/_.-]+)}i;
1346# $cfg->{templateoverride} = $1 if m{^templateoverride\s*=\s*([a-z0-9/_.-]+)}i;
1347 # RPC options
1348 $cfg->{rpcmode} = $1 if /^rpc_mode\s*=\s*(socket|HTTP|XMLRPC)\s*$/i;
1349 $cfg->{maxfcgi} = $1 if /^max_fcgi_requests\s*=\s*(\d+)\s*$/i;
1350 if (my ($tmp) = /^rpc_iplist\s*=\s*(.+)/i) {
1351 my @ips = split /[,\s]+/, $tmp;
1352 my $rpcsys = shift @ips;
1353 push @{$cfg->{rpcacl}{$rpcsys}}, @ips;
1354 }
1355 }
1356 close CFG;
1357 } else {
1358 $errstr = "Couldn't load configuration file $cfgfile: $!";
1359 return;
1360 }
1361 return 1;
1362} # end __cfgload()
1363
1364
1365## DNSDB::connectDB()
1366# Creates connection to DNS database.
1367# Requires the database name, username, and password.
1368# Returns a handle to the db or undef on failure.
1369# Set up for a PostgreSQL db; could be any transactional DBMS with the
1370# right changes.
1371# Called by new(); not intended to be called publicly.
1372sub connectDB {
1373 $errstr = '';
1374 my $dbname = shift;
1375 my $user = shift;
1376 my $pass = shift;
1377 my $dbh;
1378 my $DSN = "DBI:Pg:dbname=$dbname";
1379
1380 my $host = shift;
1381 $DSN .= ";host=$host" if $host;
1382
1383# Note that we want to autocommit by default, and we will turn it off locally as necessary.
1384# We may not want to print gobbledygook errors; YMMV. Have to ponder that further.
1385 $dbh = DBI->connect($DSN, $user, $pass, {
1386 AutoCommit => 1,
1387 PrintError => 0
1388 });
1389 if (!$dbh) {
1390 $errstr = $DBI::errstr;
1391 return;
1392 }
1393#) if(!$dbh);
1394
1395 local $dbh->{RaiseError} = 1;
1396
1397 eval {
1398##fixme: initialize the DB if we can't find the table (since, by definition, there's
1399# nothing there if we can't select from it...)
1400 my $tblsth = $dbh->prepare("SELECT count(*) FROM pg_catalog.pg_class WHERE relkind='r' AND relname=?");
1401 my ($tblcount) = $dbh->selectrow_array($tblsth, undef, ('misc'));
1402# return (undef,$DBI::errstr) if $dbh->err;
1403
1404#if ($tblcount == 0) {
1405# # create tables one at a time, checking for each.
1406# return (undef, "check table misc missing");
1407#}
1408
1409# Return here if we can't select.
1410# This should retrieve the dbversion key.
1411 my $sth = $dbh->prepare("SELECT key,value FROM misc WHERE misc_id=1");
1412 $sth->execute();
1413# return (undef,$DBI::errstr) if ($sth->err);
1414
1415##fixme: do stuff to the DB on version mismatch
1416# x.y series should upgrade on $DNSDB::VERSION > misc(key=>version)
1417# DB should be downward-compatible; column defaults should give sane (if possibly
1418# useless-and-needs-help) values in columns an older software stack doesn't know about.
1419
1420# See if the select returned anything (or null data). This should
1421# succeed if the select executed, but...
1422 $sth->fetchrow();
1423# return (undef,$DBI::errstr) if ($sth->err);
1424
1425 $sth->finish;
1426
1427 }; # wrapped DB checks
1428 if ($@) {
1429 $errstr = $@;
1430 return;
1431 }
1432
1433# If we get here, we should be OK.
1434 return $dbh;
1435} # end connectDB
1436
1437
1438## DNSDB::finish()
1439# Cleans up after database handles and so on.
1440# Requires a database handle
1441sub finish {
1442 my $self = shift;
1443 $self->{dbh}->disconnect;
1444} # end finish
1445
1446
1447## DNSDB::initGlobals()
1448# Initialize global variables
1449# NB: this does NOT include web-specific session variables!
1450sub initGlobals {
1451 my $self = shift;
1452 my $dbh = $self->{dbh};
1453
1454# load record types from database
1455 my $sth = $dbh->prepare("SELECT val,name,stdflag FROM rectypes");
1456 $sth->execute;
1457 while (my ($recval,$recname,$stdflag) = $sth->fetchrow_array()) {
1458 $typemap{$recval} = $recname;
1459 $reverse_typemap{$recname} = $recval;
1460 # now we fill the record validation function hash
1461 if ($stdflag < 5) {
1462 my $fn = "_validate_$recval";
1463 $validators{$recval} = \&$fn;
1464 } else {
1465 my $fn = "sub { return ('FAIL','Type $recval ($recname) not supported'); }";
1466 $validators{$recval} = eval $fn;
1467 }
1468 }
1469} # end initGlobals
1470
1471
1472## DNSDB::initRPC()
1473# Takes a remote username and remote fullname.
1474# Sets up the RPC logging-pseudouser if needed.
1475# Sets the %userdata hash for logging.
1476# Returns undef on failure
1477sub initRPC {
1478 my $self = shift;
1479 my $dbh = $self->{dbh};
1480 my %args = @_;
1481
1482 return if !$args{username};
1483 return if !$args{fullname};
1484
1485 $args{username} = "$args{username}/$args{rpcsys}";
1486
1487 my $tmpuser = $dbh->selectrow_hashref("SELECT username,user_id AS userid,group_id,firstname,lastname,status".
1488 " FROM users WHERE username=?", undef, ($args{username}) );
1489 if (!$tmpuser) {
1490 $dbh->do("INSERT INTO users (username,password,firstname,type) VALUES (?,'RPC',?,'R')", undef,
1491 ($args{username}, $args{fullname}) );
1492 $tmpuser = $dbh->selectrow_hashref("SELECT username,user_id AS userid,group_id,firstname,lastname,status".
1493 " FROM users WHERE username=?", undef, ($args{username}) );
1494 }
1495 $tmpuser->{lastname} = '' if !$tmpuser->{lastname};
1496 $self->{loguserid} = $tmpuser->{userid};
1497 $self->{logusername} = $tmpuser->{username};
1498 $self->{logfullname} = "$tmpuser->{firstname} $tmpuser->{lastname} ($args{rpcsys})";
1499 return 1 if $tmpuser;
1500} # end initRPC()
1501
1502
1503## DNSDB::login()
1504# Takes a database handle, username and password
1505# Returns a userdata hash (UID, GID, username, fullname parts) if username exists,
1506# password matches the one on file, and account is not disabled
1507# Returns undef otherwise
1508sub login {
1509 my $self = shift;
1510 my $dbh = $self->{dbh};
1511 my $user = shift;
1512 my $pass = shift;
1513
1514 my $userinfo = $dbh->selectrow_hashref("SELECT user_id,group_id,password,firstname,lastname,status".
1515 " FROM users WHERE username=?",
1516 undef, ($user) );
1517 return if !$userinfo;
1518 return if !$userinfo->{status};
1519
1520 if ($userinfo->{password} =~ m|^\$1\$([A-Za-z0-9/.]+)\$|) {
1521 # native passwords (crypt-md5)
1522 return if $userinfo->{password} ne unix_md5_crypt($pass,$1);
1523 } elsif ($userinfo->{password} =~ /^[0-9a-f]{32}$/) {
1524 # VegaDNS import (hex-coded MD5)
1525 return if $userinfo->{password} ne md5_hex($pass);
1526 } else {
1527 # plaintext (convenient now and then)
1528 return if $userinfo->{password} ne $pass;
1529 }
1530
1531 return $userinfo;
1532} # end login()
1533
1534
1535## DNSDB::initActionLog()
1536# Set up action logging. Takes a database handle and user ID
1537# Sets some internal globals and Does The Right Thing to set up a logging channel.
1538# This sets up _log() to spew out log entries to the defined channel without worrying
1539# about having to open a file or a syslog channel
1540##fixme Need to call _initActionLog_blah() for various logging channels, configured
1541# via dnsdb.conf, in $self->{log_channel} or something
1542# See https://secure.deepnet.cx/trac/dnsadmin/ticket/21
1543sub initActionLog {
1544 my $self = shift;
1545 my $dbh = $self->{dbh};
1546 my $uid = shift;
1547
1548 return if !$uid;
1549
1550 # snag user info for logging. there's got to be a way to not have to pass this back
1551 # and forth from a caller, but web usage means no persistence we can rely on from
1552 # the server side.
1553 my ($username,$fullname) = $dbh->selectrow_array("SELECT username, firstname || ' ' || lastname".
1554 " FROM users WHERE user_id=?", undef, ($uid));
1555##fixme: errors are unpossible!
1556
1557 $self->{logusername} = $username;
1558 $self->{loguserid} = $uid;
1559 $self->{logfullname} = $fullname;
1560
1561 # convert to real check once we have other logging channels
1562 # if ($self->{log_channel} eq 'sql') {
1563 # Open Log, Sez Me!
1564 # }
1565
1566} # end initActionLog
1567
1568
1569## DNSDB::getPermissions()
1570# Get permissions from DB
1571# Requires DB handle, group or user flag, ID, and hashref.
1572sub getPermissions {
1573 my $self = shift;
1574 my $dbh = $self->{dbh};
1575
1576 my $type = shift;
1577 my $id = shift;
1578 my $hash = shift;
1579
1580 my $sql = qq(
1581 SELECT
1582 p.admin,p.self_edit,
1583 p.group_create,p.group_edit,p.group_delete,
1584 p.user_create,p.user_edit,p.user_delete,
1585 p.domain_create,p.domain_edit,p.domain_delete,
1586 p.record_create,p.record_edit,p.record_delete,p.record_locchg,
1587 p.location_create,p.location_edit,p.location_delete,p.location_view
1588 FROM permissions p
1589 );
1590 if ($type eq 'group') {
1591 $sql .= qq(
1592 JOIN groups g ON g.permission_id=p.permission_id
1593 WHERE g.group_id=?
1594 );
1595 } else {
1596 $sql .= qq(
1597 JOIN users u ON u.permission_id=p.permission_id
1598 WHERE u.user_id=?
1599 );
1600 }
1601
1602 my $sth = $dbh->prepare($sql);
1603
1604##fixme? we don't trap other plain SELECT errors
1605 $sth->execute($id);
1606
1607# my $permref = $sth->fetchrow_hashref;
1608# return $permref;
1609# $hash = $permref;
1610# Eww. Need to learn how to forcibly drop a hashref onto an existing hash.
1611 ($hash->{admin},$hash->{self_edit},
1612 $hash->{group_create},$hash->{group_edit},$hash->{group_delete},
1613 $hash->{user_create},$hash->{user_edit},$hash->{user_delete},
1614 $hash->{domain_create},$hash->{domain_edit},$hash->{domain_delete},
1615 $hash->{record_create},$hash->{record_edit},$hash->{record_delete},$hash->{record_locchg},
1616 $hash->{location_create},$hash->{location_edit},$hash->{location_delete},$hash->{location_view}
1617 ) = $sth->fetchrow_array;
1618
1619} # end getPermissions()
1620
1621
1622## DNSDB::changePermissions()
1623# Update an ACL entry
1624# Takes a db handle, type, owner-id, and hashref for the changed permissions.
1625sub changePermissions {
1626 my $self = shift;
1627 my $dbh = $self->{dbh};
1628 my $type = shift;
1629 my $id = shift;
1630 my $newperms = shift;
1631 my $inherit = shift || 0;
1632
1633 my $resultmsg = '';
1634
1635 # see if we're switching from inherited to custom. for bonus points,
1636 # snag the permid and parent permid anyway, since we'll need the permid
1637 # to set/alter custom perms, and both if we're switching from custom to
1638 # inherited.
1639 my $sth = $dbh->prepare("SELECT (u.permission_id=g.permission_id) AS was_inherited,u.permission_id,g.permission_id,".
1640 ($type eq 'user' ? 'u.group_id,u.username' : 'u.parent_group_id,u.group_name').
1641 " FROM ".($type eq 'user' ? 'users' : 'groups')." u ".
1642 " JOIN groups g ON u.".($type eq 'user' ? '' : 'parent_')."group_id=g.group_id ".
1643 " WHERE u.".($type eq 'user' ? 'user' : 'group')."_id=?");
1644 $sth->execute($id);
1645
1646 my ($wasinherited,$permid,$parpermid,$parid,$name) = $sth->fetchrow_array;
1647
1648# hack phtoui
1649# group id 1 is "special" in that it's it's own parent (err... possibly.)
1650# may make its parent id 0 which doesn't exist, and as a bonus is Perl-false.
1651 $wasinherited = 0 if ($type eq 'group' && $id == 1);
1652
1653 local $dbh->{AutoCommit} = 0;
1654 local $dbh->{RaiseError} = 1;
1655
1656 # Wrap all the SQL in a transaction
1657 eval {
1658 if ($inherit) {
1659
1660 $dbh->do("UPDATE ".($type eq 'user' ? 'users' : 'groups')." SET inherit_perm='t',permission_id=? ".
1661 "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($parpermid, $id) );
1662 $dbh->do("DELETE FROM permissions WHERE permission_id=?", undef, ($permid) );
1663
1664 } else {
1665
1666 if ($wasinherited) { # munge new permission entry in if we're switching from inherited perms
1667##fixme: need to add semirecursive bit to properly munge inherited permission ID on subgroups and users
1668# ... if'n'when we have groups with fully inherited permissions.
1669 # SQL is coo
1670 $dbh->do("INSERT INTO permissions ($permlist,".($type eq 'user' ? 'user' : 'group')."_id) ".
1671 "SELECT $permlist,? FROM permissions WHERE permission_id=?", undef, ($id,$permid) );
1672 ($permid) = $dbh->selectrow_array("SELECT permission_id FROM permissions ".
1673 "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($id) );
1674 $dbh->do("UPDATE ".($type eq 'user' ? 'users' : 'groups')." SET inherit_perm='f',permission_id=? ".
1675 "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($permid, $id) );
1676 }
1677
1678 # and now set the permissions we were passed
1679 foreach (@permtypes) {
1680 if (defined ($newperms->{$_})) {
1681 $dbh->do("UPDATE permissions SET $_=? WHERE permission_id=?", undef, ($newperms->{$_},$permid) );
1682 }
1683 }
1684
1685 } # (inherited->)? custom
1686
1687 if ($type eq 'user') {
1688 $resultmsg = "Updated permissions for user $name";
1689 } else {
1690 $resultmsg = "Updated default permissions for group $name";
1691 }
1692 $self->_log(group_id => ($type eq 'user' ? $parid : $id), entry => $resultmsg);
1693 $dbh->commit;
1694 }; # end eval
1695 if ($@) {
1696 my $msg = $@;
1697 eval { $dbh->rollback; };
1698 return ('FAIL',"Error changing permissions: $msg");
1699 }
1700
1701 return ('OK',$resultmsg);
1702} # end changePermissions()
1703
1704
1705## DNSDB::comparePermissions()
1706# Compare two permission hashes
1707# Returns '>', '<', '=', '!'
1708sub comparePermissions {
1709 my $p1 = shift;
1710 my $p2 = shift;
1711
1712 my $retval = '='; # assume equality until proven otherwise
1713
1714 no warnings "uninitialized";
1715
1716 foreach (@permtypes) {
1717 next if $p1->{$_} == $p2->{$_}; # equal is good
1718 if ($p1->{$_} && !$p2->{$_}) {
1719 if ($retval eq '<') { # if we've already found an unequal pair where
1720 $retval = '!'; # $p2 has more access, and we now find a pair
1721 last; # where $p1 has more access, the overall access
1722 } # is neither greater or lesser, it's unequal.
1723 $retval = '>';
1724 }
1725 if (!$p1->{$_} && $p2->{$_}) {
1726 if ($retval eq '>') { # if we've already found an unequal pair where
1727 $retval = '!'; # $p1 has more access, and we now find a pair
1728 last; # where $p2 has more access, the overall access
1729 } # is neither greater or lesser, it's unequal.
1730 $retval = '<';
1731 }
1732 }
1733 return $retval;
1734} # end comparePermissions()
1735
1736
1737## DNSDB::changeGroup()
1738# Change group ID of an entity
1739# Takes a database handle, entity type, entity ID, and new group ID
1740sub changeGroup {
1741 my $self = shift;
1742 my $dbh = $self->{dbh};
1743 my $type = shift;
1744 my $id = shift;
1745 my $newgrp = shift;
1746
1747##fixme: fail on not enough args
1748 #return ('FAIL', "Missing
1749
1750 return ('FAIL', "Can't change the group of a $type")
1751 unless grep /^$type$/, ('domain','revzone','user','group'); # could be extended for defrecs?
1752
1753 # Collect some names for logging and messages
1754 my $entname;
1755 if ($type eq 'domain') {
1756 $entname = $self->domainName($id);
1757 } elsif ($type eq 'revzone') {
1758 $entname = $self->revName($id);
1759 } elsif ($type eq 'user') {
1760 $entname = $self->userFullName($id, '%u');
1761 } elsif ($type eq 'group') {
1762 $entname = $self->groupName($id);
1763 }
1764
1765 my ($oldgid) = $dbh->selectrow_array("SELECT group_id FROM $par_tbl{$type} WHERE $id_col{$type}=?",
1766 undef, ($id));
1767 my $oldgname = $self->groupName($oldgid);
1768 my $newgname = $self->groupName($newgrp);
1769
1770 return ('FAIL', "Can't move things into a group that doesn't exist") if !$newgname;
1771
1772 return ('WARN', "Nothing to do, new group is the same as the old group") if $oldgid == $newgrp;
1773
1774 # Allow transactions, and raise an exception on errors so we can catch it later.
1775 # Use local to make sure these get "reset" properly on exiting this block
1776 local $dbh->{AutoCommit} = 0;
1777 local $dbh->{RaiseError} = 1;
1778
1779 eval {
1780 $dbh->do("UPDATE $par_tbl{$type} SET group_id=? WHERE $id_col{$type}=?", undef, ($newgrp, $id));
1781 # Log the change in both the old and new groups
1782 $self->_log(group_id => $oldgid, entry => "Moved $type $entname from $oldgname to $newgname");
1783 $self->_log(group_id => $newgrp, entry => "Moved $type $entname from $oldgname to $newgname");
1784 $dbh->commit;
1785 };
1786 if ($@) {
1787 my $msg = $@;
1788 eval { $dbh->rollback; };
1789 if ($self->{log_failures}) {
1790 $self->_log(group_id => $oldgid, entry => "Error moving $type $entname to $newgname: $msg");
1791 $dbh->commit; # since we enabled transactions earlier
1792 }
1793 return ('FAIL',"Error moving $type $entname to $newgname: $msg");
1794 }
1795
1796 return ('OK',"Moved $type $entname from $oldgname to $newgname");
1797} # end changeGroup()
1798
1799
1800##
1801## Processing subs
1802##
1803
1804## DNSDB::addDomain()
1805# Add a domain
1806# Takes a database handle, domain name, numeric group, boolean(ish) state (active/inactive),
1807# and user info hash (for logging).
1808# Returns a status code and message
1809sub addDomain {
1810 $errstr = '';
1811 my $self = shift;
1812 my $dbh = $self->{dbh};
1813 my $domain = shift;
1814 return ('FAIL',"Domain must not be blank\n") if !$domain;
1815 my $group = shift;
1816 return ('FAIL',"Group must be specified\n") if !defined($group);
1817 my $state = shift;
1818 return ('FAIL',"Domain status must be specified\n") if !defined($state);
1819 my $defloc = shift || '';
1820
1821 $state = 1 if $state =~ /^active$/;
1822 $state = 1 if $state =~ /^on$/;
1823 $state = 0 if $state =~ /^inactive$/;
1824 $state = 0 if $state =~ /^off$/;
1825
1826 return ('FAIL',"Invalid domain status") if $state !~ /^\d+$/;
1827
1828 $domain = lc($domain) if $self->{lowercase};
1829
1830 return ('FAIL', "Invalid characters in domain") if $domain !~ /^[a-zA-Z0-9_.-]+$/;
1831
1832 my $sth = $dbh->prepare("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)");
1833 my $dom_id;
1834
1835# quick check to start to see if we've already got one
1836 $sth->execute($domain);
1837 ($dom_id) = $sth->fetchrow_array;
1838
1839 return ('FAIL', "Domain already exists") if $dom_id;
1840
1841 # Allow transactions, and raise an exception on errors so we can catch it later.
1842 # Use local to make sure these get "reset" properly on exiting this block
1843 local $dbh->{AutoCommit} = 0;
1844 local $dbh->{RaiseError} = 1;
1845
1846 # Wrap all the SQL in a transaction
1847 eval {
1848 # insert the domain...
1849 $dbh->do("INSERT INTO domains (domain,group_id,status,default_location) VALUES (?,?,?,?)", undef,
1850 ($domain, $group, $state, $defloc));
1851
1852 # get the ID...
1853 ($dom_id) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)",
1854 undef, ($domain));
1855
1856 $self->_log(domain_id => $dom_id, group_id => $group,
1857 entry => "Added ".($state ? 'active' : 'inactive')." domain $domain");
1858
1859 # ... and now we construct the standard records from the default set. NB: group should be variable.
1860 my $sth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl FROM default_records WHERE group_id=?");
1861 my $sth_in = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,distance,weight,port,ttl,location)".
1862 " VALUES ($dom_id,?,?,?,?,?,?,?,?)");
1863 $sth->execute($group);
1864 while (my ($host, $type, $val, $dist, $weight, $port, $ttl) = $sth->fetchrow_array()) {
1865 $host =~ s/DOMAIN/$domain/g;
1866 $val =~ s/DOMAIN/$domain/g;
1867 $sth_in->execute($host, $type, $val, $dist, $weight, $port, $ttl, $defloc);
1868 if ($typemap{$type} eq 'SOA') {
1869 my @tmp1 = split /:/, $host;
1870 my @tmp2 = split /:/, $val;
1871 $self->_log(domain_id => $dom_id, group_id => $group,
1872 entry => "[new $domain] Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
1873 "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl");
1874 } else {
1875 my $logentry = "[new $domain] Added record '$host $typemap{$type}";
1876 $logentry .= " [distance $dist]" if $typemap{$type} eq 'MX';
1877 $logentry .= " [priority $dist] [weight $weight] [port $port]" if $typemap{$type} eq 'SRV';
1878 $self->_log(domain_id => $dom_id, group_id => $group,
1879 entry => $logentry." $val', TTL $ttl");
1880 }
1881 }
1882
1883 # once we get here, we should have suceeded.
1884 $dbh->commit;
1885 }; # end eval
1886
1887 if ($@) {
1888 my $msg = $@;
1889 eval { $dbh->rollback; };
1890 $self->_log(group_id => $group, entry => "Failed adding domain $domain ($msg)")
1891 if $self->{log_failures};
1892 $dbh->commit; # since we enabled transactions earlier
1893 return ('FAIL',$msg);
1894 } else {
1895 return ('OK',$dom_id);
1896 }
1897} # end addDomain
1898
1899
1900## DNSDB::delZone()
1901# Delete a forward or reverse zone.
1902# Takes a database handle, zone ID, and forward/reverse flag.
1903# for now, just delete the records, then the domain.
1904# later we may want to archive it in some way instead (status code 2, for example?)
1905sub delZone {
1906 my $self = shift;
1907 my $dbh = $self->{dbh};
1908 my $zoneid = shift;
1909 my $revrec = shift;
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
1916 my $msg = '';
1917 my $failmsg = '';
1918 my $zone = ($revrec eq 'n' ? $self->domainName($zoneid) : $self->revName($zoneid));
1919
1920 return ('FAIL', ($revrec eq 'n' ? 'Domain' : 'Reverse zone')." ID $zoneid doesn't exist") if !$zone;
1921
1922 # Set this up here since we may use if if $self->{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} = $self->parentID(
1927 id => $zoneid, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec);
1928
1929 # Wrap all the SQL in a transaction
1930 eval {
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.
1950# $sth->execute(65286?, $zoneid, 65283);
1951# $sth->execute(65286?, $zoneid, 65284);
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 }
1957
1958 $msg = "Deleted ".($revrec eq 'n' ? 'domain' : 'reverse zone')." $zone";
1959 $loghash{entry} = $msg;
1960 $self->_log(%loghash);
1961
1962 # once we get here, we should have suceeded.
1963 $dbh->commit;
1964 }; # end eval
1965
1966 if ($@) {
1967 $msg = $@;
1968 eval { $dbh->rollback; };
1969 $loghash{entry} = "Error deleting $zone: $msg ($failmsg)";
1970 if ($self->{log_failures}) {
1971 $self->_log(%loghash);
1972 $dbh->commit; # since we enabled transactions earlier
1973 }
1974 return ('FAIL', $loghash{entry});
1975 } else {
1976 return ('OK', $msg);
1977 }
1978
1979} # end delZone()
1980
1981
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
1986sub domainName {
1987 $errstr = '';
1988 my $self = shift;
1989 my $dbh = $self->{dbh};
1990 my $domid = shift;
1991 my ($domname) = $dbh->selectrow_array("SELECT domain FROM domains WHERE domain_id=?", undef, ($domid) );
1992 $errstr = $DBI::errstr if !$domname;
1993 return $domname if $domname;
1994} # end domainName()
1995
1996
1997## DNSDB::revName()
1998# Return the reverse zone name based on an rDNS ID
1999# Takes a database handle and the rDNS ID
2000# Returns the reverse zone name or undef on failure
2001sub revName {
2002 $errstr = '';
2003 my $self = shift;
2004 my $dbh = $self->{dbh};
2005 my $revid = shift;
2006 my ($revname) = $dbh->selectrow_array("SELECT revnet FROM revzones WHERE rdns_id=?", undef, ($revid) );
2007 $errstr = $DBI::errstr if !$revname;
2008 return $revname if $revname;
2009} # end revName()
2010
2011
2012## DNSDB::domainID()
2013# Takes a database handle and domain name
2014# Returns the domain ID number
2015sub domainID {
2016 $errstr = '';
2017 my $self = shift;
2018 my $dbh = $self->{dbh};
2019 my $domain = shift;
2020 my ($domid) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)",
2021 undef, ($domain) );
2022 if (!$domid) {
2023 if ($dbh->err) {
2024 $errstr = $DBI::errstr;
2025 } else {
2026 $errstr = "Domain $domain not present";
2027 }
2028 }
2029 return $domid if $domid;
2030} # end domainID()
2031
2032
2033## DNSDB::revID()
2034# Takes a database handle and reverse zone name
2035# Returns the rDNS ID number
2036sub revID {
2037 $errstr = '';
2038 my $self = shift;
2039 my $dbh = $self->{dbh};
2040 my $revzone = shift;
2041 my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet=?", undef, ($revzone) );
2042 if (!$revid) {
2043 if ($dbh->err) {
2044 $errstr = $DBI::errstr;
2045 } else {
2046 $errstr = "Reverse zone $revzone not present";
2047 }
2048 }
2049 return $revid if $revid;
2050} # end revID()
2051
2052
2053## DNSDB::addRDNS
2054# Adds a reverse DNS zone
2055# Takes a database handle, CIDR block, reverse DNS pattern, numeric group,
2056# and boolean(ish) state (active/inactive)
2057# Returns a status code and message
2058sub addRDNS {
2059 my $self = shift;
2060 my $dbh = $self->{dbh};
2061 my $zone = NetAddr::IP->new(shift);
2062
2063 return ('FAIL',"Zone name must be a valid CIDR netblock") unless ($zone && $zone->addr !~ /^0/);
2064 my $revpatt = shift; # construct a custom (A/AAAA+)? PTR template record
2065 my $group = shift;
2066 my $state = shift;
2067 my $defloc = shift || '';
2068
2069 $state = 1 if $state =~ /^active$/;
2070 $state = 1 if $state =~ /^on$/;
2071 $state = 0 if $state =~ /^inactive$/;
2072 $state = 0 if $state =~ /^off$/;
2073
2074 return ('FAIL',"Invalid zone status") if $state !~ /^\d+$/;
2075
2076# quick check to start to see if we've already got one
2077 my ($rdns_id) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet=?", undef, ("$zone"));
2078
2079 return ('FAIL', "Zone already exists") if $rdns_id;
2080
2081 # Allow transactions, and raise an exception on errors so we can catch it later.
2082 # Use local to make sure these get "reset" properly on exiting this block
2083 local $dbh->{AutoCommit} = 0;
2084 local $dbh->{RaiseError} = 1;
2085
2086 my $warnstr = '';
2087 my $defttl = 3600; # 1 hour should be reasonable. And unless things have gone horribly
2088 # wrong, we should have a value to override this anyway.
2089
2090 # Wrap all the SQL in a transaction
2091 eval {
2092 # insert the zone...
2093 $dbh->do("INSERT INTO revzones (revnet,group_id,status,default_location) VALUES (?,?,?,?)", undef,
2094 ($zone, $group, $state, $defloc) );
2095
2096 # get the ID...
2097 ($rdns_id) = $dbh->selectrow_array("SELECT currval('revzones_rdns_id_seq')");
2098
2099 $self->_log(rdns_id => $rdns_id, group_id => $group,
2100 entry => "Added ".($state ? 'active' : 'inactive')." reverse zone $zone");
2101
2102 # ... and now we construct the standard records from the default set. NB: group should be variable.
2103 my $sth = $dbh->prepare("SELECT host,type,val,ttl FROM default_rev_records WHERE group_id=?");
2104 my $sth_in = $dbh->prepare("INSERT INTO records (rdns_id,domain_id,host,type,val,ttl,location)".
2105 " VALUES ($rdns_id,?,?,?,?,?,?)");
2106 $sth->execute($group);
2107 while (my ($host,$type,$val,$ttl) = $sth->fetchrow_array()) {
2108 # Silently skip v4/v6 mismatches. This is not an error, this is expected.
2109 if ($zone->{isv6}) {
2110 next if ($type == 65280 || $type == 65283);
2111 } else {
2112 next if ($type == 65281 || $type == 65284);
2113 }
2114
2115 $host =~ s/ADMINDOMAIN/$self->{domain}/g;
2116
2117 # Check to make sure the IP stubs will fit in the zone. Under most usage failures here should be rare.
2118 # On failure, tack a note on to a warning string and continue without adding this record.
2119 # While we're at it, we substitute $zone for ZONE in the value.
2120 if ($val eq 'ZONE') {
2121 # If we've got a pattern, we skip the default record version on (A+)PTR-template types
2122 next if $revpatt && ($type == 65282 || $type == 65283);
2123##fixme? do we care if we have multiple whole-zone templates?
2124 $val = $zone->network;
2125 } elsif ($val =~ /ZONE/) {
2126 my $tmpval = $val;
2127 $tmpval =~ s/ZONE//;
2128 # Bend the rules and allow single-trailing-number PTR or PTR template records to be inserted
2129 # as either v4 or v6. May make this an off-by-default config flag
2130 # Note that the origin records that may trigger this **SHOULD** already have ZONE,\d
2131 if ($type == 12 || $type == 65282) {
2132 $tmpval =~ s/[,.]/::/ if ($tmpval =~ /^[,.]\d+$/ && $zone->{isv6});
2133 $tmpval =~ s/[,:]+/./ if ($tmpval =~ /^(?:,|::)\d+$/ && !$zone->{isv6});
2134 }
2135 my $addr;
2136 if ($self->_ipparent('n', 'y', \$tmpval, $rdns_id, \$addr)) {
2137 $val = $addr->addr;
2138 } else {
2139 $warnstr .= "\nDefault record '$val $typemap{$type} $host' doesn't fit in $zone, skipping";
2140 next;
2141 }
2142 }
2143
2144 # Substitute $zone for ZONE in the hostname, but only for non-NS records.
2145 # NS records get this substitution on the value instead.
2146 $host = _ZONE($zone, $host) if $type != 2;
2147
2148 # Fill in the forward domain ID if we can find it, otherwise:
2149 # Coerce type down to PTR or PTR template if we can't
2150 my $domid = 0;
2151 if ($type >= 65280) {
2152 if (!($domid = $self->_hostparent($host))) {
2153 $warnstr .= "\nRecord added as PTR instead of $typemap{$type}; domain not found for $host";
2154 $type = $reverse_typemap{PTR};
2155 $domid = 0; # just to be explicit.
2156 }
2157 }
2158
2159 $sth_in->execute($domid,$host,$type,$val,$ttl,$defloc);
2160
2161 if ($typemap{$type} eq 'SOA') {
2162 my @tmp1 = split /:/, $host;
2163 my @tmp2 = split /:/, $val;
2164 $self->_log(rdns_id => $rdns_id, group_id => $group,
2165 entry => "[new $zone] Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
2166 "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl");
2167 $defttl = $tmp2[3];
2168 } else {
2169 my $logentry = "[new $zone] Added record '$host $typemap{$type} $val', TTL $ttl";
2170 $logentry .= ", default location ".$self->getLoc($defloc)->{description} if $defloc;
2171 $self->_log(rdns_id => $rdns_id, domain_id => $domid, group_id => $group, entry => $logentry);
2172 }
2173 }
2174
2175 # Generate record based on provided pattern.
2176 if ($revpatt) {
2177 my $host;
2178 my $type = ($zone->{isv6} ? 65284 : 65283);
2179 my $val = $zone->network;
2180
2181 # Substitute $zone for ZONE in the hostname.
2182 $host = _ZONE($zone, $revpatt);
2183
2184 my $domid = 0;
2185 if (!($domid = $self->_hostparent($host))) {
2186 $warnstr .= "\nDefault pattern added as PTR template instead of $typemap{$type}; domain not found for $host";
2187 $type = 65282;
2188 $domid = 0; # just to be explicit.
2189 }
2190
2191 $sth_in->execute($domid,$host,$type,$val,$defttl,$defloc);
2192 my $logentry = "[new $zone] Added record '$host $typemap{$type}";
2193 $self->_log(rdns_id => $rdns_id, domain_id => $domid, group_id => $group,
2194 entry => $logentry." $val', TTL $defttl from pattern");
2195 }
2196
2197 # If there are warnings (presumably about default records skipped for cause) log them
2198 $self->_log(rdns_id => $rdns_id, group_id => $group, entry => "Warning(s) adding $zone:$warnstr")
2199 if $warnstr;
2200
2201 # once we get here, we should have suceeded.
2202 $dbh->commit;
2203 }; # end eval
2204
2205 if ($@) {
2206 my $msg = $@;
2207 eval { $dbh->rollback; };
2208 $self->_log(group_id => $group, entry => "Failed adding reverse zone $zone ($msg)")
2209 if $self->{log_failures};
2210 $dbh->commit; # since we enabled transactions earlier
2211 return ('FAIL',$msg);
2212 } else {
2213 my $retcode = 'OK';
2214 if ($warnstr) {
2215 $resultstr = $warnstr;
2216 $retcode = 'WARN';
2217 }
2218 return ($retcode, $rdns_id);
2219 }
2220
2221} # end addRDNS()
2222
2223
2224## DNSDB::getZoneCount
2225# Get count of zones in group or groups
2226# Takes a database handle and hash containing:
2227# - the "current" group
2228# - an array of "acceptable" groups
2229# - a flag for forward/reverse zones
2230# - Optionally accept a "starts with" and/or "contains" filter argument
2231# Returns an integer count of the resulting zone list.
2232sub getZoneCount {
2233 my $self = shift;
2234 my $dbh = $self->{dbh};
2235
2236 my %args = @_;
2237
2238 # Fail on bad curgroup argument. There's no sane fallback on this one.
2239 if (!$args{curgroup} || $args{curgroup} !~ /^\d+$/) {
2240 $errstr = "Bad or missing curgroup argument";
2241 return;
2242 }
2243 # Fail on bad childlist argument. This could be sanely ignored if bad, maybe.
2244 if ($args{childlist} && $args{childlist} !~ /^[\d,]+$/) {
2245 $errstr = "Bad childlist argument";
2246 return;
2247 }
2248
2249 my @filterargs;
2250 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
2251 push @filterargs, "^$args{startwith}" if $args{startwith};
2252 $args{filter} =~ s/\./\[\.\]/g if $args{filter}; # only match literal dots, usually in reverse zones
2253 push @filterargs, $args{filter} if $args{filter};
2254
2255 my $sql;
2256 # Not as compact, and fix-me-twice if the common bits get wrong, but much easier to read
2257 if ($args{revrec} eq 'n') {
2258 $sql = "SELECT count(*) FROM domains".
2259 " WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2260 ($args{startwith} ? " AND domain ~* ?" : '').
2261 ($args{filter} ? " AND domain ~* ?" : '');
2262 } else {
2263 $sql = "SELECT count(*) FROM revzones".
2264 " WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2265 ($args{startwith} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '').
2266 ($args{filter} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '');
2267 }
2268 my ($count) = $dbh->selectrow_array($sql, undef, @filterargs);
2269 return $count;
2270} # end getZoneCount()
2271
2272
2273## DNSDB::getZoneList()
2274# Get a list of zones in the specified group(s)
2275# Takes the same arguments as getZoneCount() above
2276# Returns a reference to an array of hashrefs suitable for feeding to HTML::Template
2277sub getZoneList {
2278 my $self = shift;
2279 my $dbh = $self->{dbh};
2280
2281 my %args = @_;
2282
2283 my @zonelist;
2284
2285 $args{sortorder} = 'ASC' if !$args{sortorder} || !grep /^$args{sortorder}$/, ('ASC','DESC');
2286 $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
2287
2288 # Fail on bad curgroup argument. There's no sane fallback on this one.
2289 if (!$args{curgroup} || $args{curgroup} !~ /^\d+$/) {
2290 $errstr = "Bad or missing curgroup argument";
2291 return;
2292 }
2293 # Fail on bad childlist argument. This could be sanely ignored if bad, maybe.
2294 if ($args{childlist} && $args{childlist} !~ /^[\d,]+$/) {
2295 $errstr = "Bad childlist argument";
2296 return;
2297 }
2298
2299 my @filterargs;
2300 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
2301 push @filterargs, "^$args{startwith}" if $args{startwith};
2302 $args{filter} =~ s/\./\[\.\]/g if $args{filter}; # only match literal dots, usually in reverse zones
2303 push @filterargs, $args{filter} if $args{filter};
2304
2305 my $sql;
2306 # Not as compact, and fix-me-twice if the common bits get wrong, but much easier to read
2307 if ($args{revrec} eq 'n') {
2308 $args{sortby} = 'domain' if !$args{sortby} || !grep /^$args{sortby}$/, ('domain','group','status');
2309 $sql = "SELECT domain_id,domain,status,groups.group_name AS group FROM domains".
2310 " INNER JOIN groups ON domains.group_id=groups.group_id".
2311 " WHERE domains.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2312 ($args{startwith} ? " AND domain ~* ?" : '').
2313 ($args{filter} ? " AND domain ~* ?" : '');
2314 } else {
2315##fixme: arguably startwith here is irrelevant. depends on the UI though.
2316 $args{sortby} = 'revnet' if !$args{sortby} || !grep /^$args{sortby}$/, ('revnet','group','status');
2317 $sql = "SELECT rdns_id,revnet,status,groups.group_name AS group FROM revzones".
2318 " INNER JOIN groups ON revzones.group_id=groups.group_id".
2319 " WHERE revzones.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2320 ($args{startwith} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '').
2321 ($args{filter} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '');
2322 }
2323 # A common tail.
2324 $sql .= " ORDER BY ".($args{sortby} eq 'group' ? 'groups.group_name' : $args{sortby})." $args{sortorder} ".
2325 ($args{offset} eq 'all' ? '' : " LIMIT $self->{perpage}".
2326 " OFFSET ".$args{offset}*$self->{perpage});
2327 my $sth = $dbh->prepare($sql);
2328 $sth->execute(@filterargs);
2329 my $rownum = 0;
2330
2331 while (my @data = $sth->fetchrow_array) {
2332 my %row;
2333 $row{domain_id} = $data[0];
2334 $row{domain} = $data[1];
2335 $row{status} = $data[2];
2336 $row{group} = $data[3];
2337 push @zonelist, \%row;
2338 }
2339
2340 return \@zonelist;
2341} # end getZoneList()
2342
2343
2344## DNSDB::getZoneLocation()
2345# Retrieve the default location for a zone.
2346# Takes a database handle, forward/reverse flag, and zone ID
2347sub getZoneLocation {
2348 my $self = shift;
2349 my $dbh = $self->{dbh};
2350 my $revrec = shift;
2351 my $zoneid = shift;
2352
2353 my ($loc) = $dbh->selectrow_array("SELECT default_location FROM ".
2354 ($revrec eq 'n' ? 'domains WHERE domain_id = ?' : 'revzones WHERE rdns_id = ?'),
2355 undef, ($zoneid));
2356 return $loc;
2357} # end getZoneLocation()
2358
2359
2360## DNSDB::addGroup()
2361# Add a group
2362# Takes a database handle, group name, parent group, hashref for permissions,
2363# and optional template-vs-cloneme flag for the default records
2364# Returns a status code and message
2365sub addGroup {
2366 $errstr = '';
2367 my $self = shift;
2368 my $dbh = $self->{dbh};
2369 my $groupname = shift;
2370 my $pargroup = shift;
2371 my $permissions = shift;
2372
2373 # 0 indicates "custom", hardcoded.
2374 # Any other value clones that group's default records, if it exists.
2375 my $inherit = shift || 0;
2376##fixme: need a flag to indicate clone records or <?> ?
2377
2378 # Allow transactions, and raise an exception on errors so we can catch it later.
2379 # Use local to make sure these get "reset" properly on exiting this block
2380 local $dbh->{AutoCommit} = 0;
2381 local $dbh->{RaiseError} = 1;
2382
2383 my ($group_id) = $dbh->selectrow_array("SELECT group_id FROM groups WHERE group_name=?", undef, ($groupname));
2384
2385 return ('FAIL', "Group already exists") if $group_id;
2386
2387 # Wrap all the SQL in a transaction
2388 eval {
2389 $dbh->do("INSERT INTO groups (parent_group_id,group_name) VALUES (?,?)", undef, ($pargroup, $groupname) );
2390
2391 my ($groupid) = $dbh->selectrow_array("SELECT currval('groups_group_id_seq')");
2392
2393 # We work through the whole set of permissions instead of specifying them so
2394 # that when we add a new permission, we don't have to change the code anywhere
2395 # that doesn't explicitly deal with that specific permission.
2396 my @permvals;
2397 foreach (@permtypes) {
2398 if (!defined ($permissions->{$_})) {
2399 push @permvals, 0;
2400 } else {
2401 push @permvals, $permissions->{$_};
2402 }
2403 }
2404 $dbh->do("INSERT INTO permissions (group_id,$permlist) values (?".',?'x($#permtypes+1).")",
2405 undef, ($groupid, @permvals) );
2406 my ($permid) = $dbh->selectrow_array("SELECT currval('permissions_permission_id_seq')");
2407 $dbh->do("UPDATE groups SET permission_id=$permid WHERE group_id=$groupid");
2408
2409 # Default records
2410 my $sthf = $dbh->prepare("INSERT INTO default_records (group_id,host,type,val,distance,weight,port,ttl) ".
2411 "VALUES ($groupid,?,?,?,?,?,?,?)");
2412 my $sthr = $dbh->prepare("INSERT INTO default_rev_records (group_id,host,type,val,ttl) ".
2413 "VALUES ($groupid,?,?,?,?)");
2414 if ($inherit) {
2415 # Duplicate records from parent. Actually relying on inherited records feels
2416 # very fragile, and it would be problematic to roll over at a later time.
2417 my $sth2 = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl FROM default_records WHERE group_id=?");
2418 $sth2->execute($pargroup);
2419 while (my @clonedata = $sth2->fetchrow_array) {
2420 $sthf->execute(@clonedata);
2421 }
2422 # And now the reverse records
2423 $sth2 = $dbh->prepare("SELECT host,type,val,ttl FROM default_rev_records WHERE group_id=?");
2424 $sth2->execute($pargroup);
2425 while (my @clonedata = $sth2->fetchrow_array) {
2426 $sthr->execute(@clonedata);
2427 }
2428 } else {
2429##fixme: Hardcoding is Bad, mmmmkaaaay?
2430 # reasonable basic defaults for SOA, MX, NS, and minimal hosting
2431 # could load from a config file, but somewhere along the line we need hardcoded bits.
2432 $sthf->execute('ns1.example.com:hostmaster.example.com', 6, '10800:3600:604800:10800', 0, 0, 0, 86400);
2433 $sthf->execute('DOMAIN', 1, '192.168.4.2', 0, 0, 0, 7200);
2434 $sthf->execute('DOMAIN', 15, 'mx.example.com', 10, 0, 0, 7200);
2435 $sthf->execute('DOMAIN', 2, 'ns1.example.com', 0, 0, 0, 7200);
2436 $sthf->execute('DOMAIN', 2, 'ns2.example.com', 0, 0, 0, 7200);
2437 $sthf->execute('www.DOMAIN', 5, 'DOMAIN', 0, 0, 0, 7200);
2438 # reasonable basic defaults for generic reverse zone. Same as initial SQL tabledef.
2439 $sthr->execute('hostmaster.ADMINDOMAIN:ns1.ADMINDOMAIN', 6, '10800:3600:604800:10800', 86400);
2440 $sthr->execute('unused-%r.ADMINDOMAIN', 65283, 'ZONE', 3600);
2441 }
2442
2443 $self->_log(group_id => $pargroup, entry => "Added group $groupname");
2444
2445 # once we get here, we should have suceeded.
2446 $dbh->commit;
2447 }; # end eval
2448
2449 if ($@) {
2450 my $msg = $@;
2451 eval { $dbh->rollback; };
2452 if ($self->{log_failures}) {
2453 $self->_log(group_id => $pargroup, entry => "Failed to add group $groupname: $msg");
2454 $dbh->commit;
2455 }
2456 return ('FAIL',$msg);
2457 }
2458
2459 return ('OK','OK');
2460} # end addGroup()
2461
2462
2463## DNSDB::delGroup()
2464# Delete a group.
2465# Takes a group ID
2466# Returns a status code and message
2467sub delGroup {
2468 my $self = shift;
2469 my $dbh = $self->{dbh};
2470 my $groupid = shift;
2471
2472 # Allow transactions, and raise an exception on errors so we can catch it later.
2473 # Use local to make sure these get "reset" properly on exiting this block
2474 local $dbh->{AutoCommit} = 0;
2475 local $dbh->{RaiseError} = 1;
2476
2477##fixme: locate "knowable" error conditions and deal with them before the eval
2478# ... or inside, whatever.
2479# -> domains still exist in group
2480# -> ...
2481 my $failmsg = '';
2482 my $resultmsg = '';
2483
2484 # collect some pieces for logging and error messages
2485 my $groupname = $self->groupName($groupid);
2486 my $parid = $self->parentID(id => $groupid, type => 'group');
2487
2488 # Wrap all the SQL in a transaction
2489 eval {
2490 # Check for Things in the group
2491 $failmsg = "Can't remove group $groupname";
2492 my ($grpcnt) = $dbh->selectrow_array("SELECT count(*) FROM groups WHERE parent_group_id=?", undef, ($groupid));
2493 die "$grpcnt groups still in group\n" if $grpcnt;
2494 my ($domcnt) = $dbh->selectrow_array("SELECT count(*) FROM domains WHERE group_id=?", undef, ($groupid));
2495 die "$domcnt domains still in group\n" if $domcnt;
2496 my ($revcnt) = $dbh->selectrow_array("SELECT count(*) FROM revzones WHERE group_id=?", undef, ($groupid));
2497 die "$revcnt reverse zones still in group\n" if $revcnt;
2498 my ($usercnt) = $dbh->selectrow_array("SELECT count(*) FROM users WHERE group_id=?", undef, ($groupid));
2499 die "$usercnt users still in group\n" if $usercnt;
2500
2501 $failmsg = "Failed to delete default records for $groupname";
2502 $dbh->do("DELETE from default_records WHERE group_id=?", undef, ($groupid));
2503 $failmsg = "Failed to delete default reverse records for $groupname";
2504 $dbh->do("DELETE from default_rev_records WHERE group_id=?", undef, ($groupid));
2505 $failmsg = "Failed to remove group $groupname";
2506 $dbh->do("DELETE from groups WHERE group_id=?", undef, ($groupid));
2507
2508 $self->_log(group_id => $parid, entry => "Deleted group $groupname");
2509 $resultmsg = "Deleted group $groupname";
2510
2511 # once we get here, we should have suceeded.
2512 $dbh->commit;
2513 }; # end eval
2514
2515 if ($@) {
2516 my $msg = $@;
2517 eval { $dbh->rollback; };
2518 if ($self->{log_failures}) {
2519 $self->_log(group_id => $parid, entry => "$failmsg: $msg");
2520 $dbh->commit; # since we enabled transactions earlier
2521 }
2522 return ('FAIL',"$failmsg: $msg");
2523 }
2524
2525 return ('OK',$resultmsg);
2526} # end delGroup()
2527
2528
2529## DNSDB::getChildren()
2530# Get a list of all groups whose parent^n is group <n>
2531# Takes a database handle, group ID, reference to an array to put the group IDs in,
2532# and an optional flag to return only immediate children or all children-of-children
2533# default to returning all children
2534# Calls itself
2535sub getChildren {
2536 $errstr = '';
2537 my $self = shift;
2538 my $dbh = $self->{dbh};
2539 my $rootgroup = shift;
2540 my $groupdest = shift;
2541 my $immed = shift || 'all';
2542
2543 # special break for default group; otherwise we get stuck.
2544 if ($rootgroup == 1) {
2545 # by definition, group 1 is the Root Of All Groups
2546 my $sth = $dbh->prepare("SELECT group_id FROM groups WHERE NOT (group_id=1)".
2547 ($immed ne 'all' ? " AND parent_group_id=1" : '')." ORDER BY group_name");
2548 $sth->execute;
2549 while (my @this = $sth->fetchrow_array) {
2550 push @$groupdest, @this;
2551 }
2552 } else {
2553 my $sth = $dbh->prepare("SELECT group_id FROM groups WHERE parent_group_id=? ORDER BY group_name");
2554 $sth->execute($rootgroup);
2555 return if $sth->rows == 0;
2556 my @grouplist;
2557 while (my ($group) = $sth->fetchrow_array) {
2558 push @$groupdest, $group;
2559 $self->getChildren($group, $groupdest) if $immed eq 'all';
2560 }
2561 }
2562} # end getChildren()
2563
2564
2565## DNSDB::groupName()
2566# Return the group name based on a group ID
2567# Takes a database handle and the group ID
2568# Returns the group name or undef on failure
2569sub groupName {
2570 $errstr = '';
2571 my $self = shift;
2572 my $dbh = $self->{dbh};
2573 my $groupid = shift;
2574 my $sth = $dbh->prepare("SELECT group_name FROM groups WHERE group_id=?");
2575 $sth->execute($groupid);
2576 my ($groupname) = $sth->fetchrow_array();
2577 $errstr = $DBI::errstr if !$groupname;
2578 return $groupname if $groupname;
2579} # end groupName
2580
2581
2582## DNSDB::getGroupCount()
2583# Get count of subgroups in group or groups
2584# Takes a database handle and hash containing:
2585# - the "current" group
2586# - an array of "acceptable" groups
2587# - Optionally accept a "starts with" and/or "contains" filter argument
2588# Returns an integer count of the resulting group list.
2589sub getGroupCount {
2590 my $self = shift;
2591 my $dbh = $self->{dbh};
2592
2593 my %args = @_;
2594
2595 # Fail on bad curgroup argument. There's no sane fallback on this one.
2596 if (!$args{curgroup} || $args{curgroup} !~ /^\d+$/) {
2597 $errstr = "Bad or missing curgroup argument";
2598 return;
2599 }
2600 # Fail on bad childlist argument. This could be sanely ignored if bad, maybe.
2601 if ($args{childlist} && $args{childlist} !~ /^[\d,]+$/) {
2602 $errstr = "Bad childlist argument";
2603 return;
2604 }
2605
2606 my @filterargs;
2607 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
2608 push @filterargs, "^$args{startwith}" if $args{startwith};
2609 push @filterargs, $args{filter} if $args{filter};
2610
2611 my $sql = "SELECT count(*) FROM groups ".
2612 "WHERE parent_group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2613 ($args{startwith} ? " AND group_name ~* ?" : '').
2614 ($args{filter} ? " AND group_name ~* ?" : '');
2615 my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
2616 $errstr = $dbh->errstr if !$count;
2617 return $count;
2618} # end getGroupCount
2619
2620
2621## DNSDB::getGroupList()
2622# Get a list of sub^n-groups in the specified group(s)
2623# Takes the same arguments as getGroupCount() above
2624# Returns an arrayref containing hashrefs suitable for feeding straight to HTML::Template
2625sub getGroupList {
2626 my $self = shift;
2627 my $dbh = $self->{dbh};
2628
2629 my %args = @_;
2630
2631 # Fail on bad curgroup argument. There's no sane fallback on this one.
2632 if (!$args{curgroup} || $args{curgroup} !~ /^\d+$/) {
2633 $errstr = "Bad or missing curgroup argument";
2634 return;
2635 }
2636 # Fail on bad childlist argument. This could be sanely ignored if bad, maybe.
2637 if ($args{childlist} && $args{childlist} !~ /^[\d,]+$/) {
2638 $errstr = "Bad childlist argument";
2639 return;
2640 }
2641
2642 my @filterargs;
2643 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
2644 push @filterargs, "^$args{startwith}" if $args{startwith};
2645 push @filterargs, $args{filter} if $args{filter};
2646
2647 # protection against bad or missing arguments
2648 $args{sortorder} = 'ASC' if !$args{sortorder} || !grep /^$args{sortorder}$/, ('ASC','DESC');
2649 $args{sortby} = 'group' if !$args{sortby} || $args{sortby} !~ /^[\w_.]+$/;
2650 $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
2651
2652 # munge sortby for columns in database
2653 $args{sortby} = 'g.group_name' if $args{sortby} eq 'group';
2654 $args{sortby} = 'g2.group_name' if $args{sortby} eq 'parent';
2655
2656 my $sql = q(SELECT g.group_id AS groupid, g.group_name AS groupname, g2.group_name AS pgroup
2657 FROM groups g
2658 INNER JOIN groups g2 ON g2.group_id=g.parent_group_id
2659 ).
2660 " WHERE g.parent_group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2661 ($args{startwith} ? " AND g.group_name ~* ?" : '').
2662 ($args{filter} ? " AND g.group_name ~* ?" : '').
2663 " GROUP BY g.group_id, g.group_name, g2.group_name ".
2664 " ORDER BY $args{sortby} $args{sortorder} ".
2665 ($args{offset} eq 'all' ? '' : " LIMIT $self->{perpage} OFFSET ".$args{offset}*$self->{perpage});
2666 my $glist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
2667 $errstr = $dbh->errstr if !$glist;
2668
2669 # LEFT JOINs make the result set balloon beyond sanity just to include counts;
2670 # this means there's lots of crunching needed to trim the result set back down.
2671 # So instead we track the order of the groups, and push the counts into the
2672 # arrayref result separately.
2673##fixme: put this whole sub in a transaction? might be
2674# needed for accurate results on very busy systems.
2675##fixme: large group lists need prepared statements?
2676#my $ucsth = $dbh->prepare("SELECT count(*) FROM users WHERE group_id=?");
2677#my $dcsth = $dbh->prepare("SELECT count(*) FROM domains WHERE group_id=?");
2678#my $rcsth = $dbh->prepare("SELECT count(*) FROM revzones WHERE group_id=?");
2679 foreach (@{$glist}) {
2680 my ($ucnt) = $dbh->selectrow_array("SELECT count(*) FROM users WHERE group_id=?", undef, ($$_{groupid}));
2681 $$_{nusers} = $ucnt;
2682 my ($dcnt) = $dbh->selectrow_array("SELECT count(*) FROM domains WHERE group_id=?", undef, ($$_{groupid}));
2683 $$_{ndomains} = $dcnt;
2684 my ($rcnt) = $dbh->selectrow_array("SELECT count(*) FROM revzones WHERE group_id=?", undef, ($$_{groupid}));
2685 $$_{nrevzones} = $rcnt;
2686 }
2687
2688 return $glist;
2689} # end getGroupList
2690
2691
2692## DNSDB::groupID()
2693# Return the group ID based on the group name
2694# Takes a database handle and the group name
2695# Returns the group ID or undef on failure
2696sub groupID {
2697 $errstr = '';
2698 my $self = shift;
2699 my $dbh = $self->{dbh};
2700 my $group = shift;
2701 my ($grpid) = $dbh->selectrow_array("SELECT group_id FROM groups WHERE group_name=?", undef, ($group) );
2702 $errstr = $DBI::errstr if !$grpid;
2703 return $grpid if $grpid;
2704} # end groupID()
2705
2706
2707## DNSDB::addUser()
2708# Add a user.
2709# Takes a DB handle, username, group ID, password, state (active/inactive).
2710# Optionally accepts:
2711# user type (user/admin) - defaults to user
2712# permissions string - defaults to inherit from group
2713# three valid forms:
2714# i - Inherit permissions
2715# c:<user_id> - Clone permissions from <user_id>
2716# C:<permission list> - Set these specific permissions
2717# first name - defaults to username
2718# last name - defaults to blank
2719# phone - defaults to blank (could put other data within column def)
2720# Returns (OK,<uid>) on success, (FAIL,<message>) on failure
2721sub addUser {
2722 $errstr = '';
2723 my $self = shift;
2724 my $dbh = $self->{dbh};
2725 my $username = shift;
2726 my $group = shift;
2727 my $pass = shift;
2728 my $state = shift;
2729
2730 return ('FAIL', "Missing one or more required entries") if !defined($state);
2731 return ('FAIL', "Username must not be blank") if !$username;
2732
2733 # Munge in some alternate state values
2734 $state = 1 if $state =~ /^active$/;
2735 $state = 1 if $state =~ /^on$/;
2736 $state = 0 if $state =~ /^inactive$/;
2737 $state = 0 if $state =~ /^off$/;
2738
2739 my $type = shift || 'u'; # create limited users by default - fwiw, not sure yet how this will interact with ACLs
2740
2741 my $permstring = shift || 'i'; # default is to inhert permissions from group
2742
2743 my $fname = shift || $username;
2744 my $lname = shift || '';
2745 my $phone = shift || ''; # not going format-check
2746
2747 my $sth = $dbh->prepare("SELECT user_id FROM users WHERE username=?");
2748 my $user_id;
2749
2750# quick check to start to see if we've already got one
2751 $sth->execute($username);
2752 ($user_id) = $sth->fetchrow_array;
2753
2754 return ('FAIL', "User already exists") if $user_id;
2755
2756 # Allow transactions, and raise an exception on errors so we can catch it later.
2757 # Use local to make sure these get "reset" properly on exiting this block
2758 local $dbh->{AutoCommit} = 0;
2759 local $dbh->{RaiseError} = 1;
2760
2761 # Wrap all the SQL in a transaction
2762 eval {
2763 # insert the user... note we set inherited perms by default since
2764 # it's simple and cleans up some other bits of state
2765 my $sth = $dbh->prepare("INSERT INTO users ".
2766 "(group_id,username,password,firstname,lastname,phone,type,status,permission_id,inherit_perm) ".
2767 "VALUES (?,?,?,?,?,?,?,?,(SELECT permission_id FROM permissions WHERE group_id=?),'t')");
2768 $sth->execute($group,$username,unix_md5_crypt($pass),$fname,$lname,$phone,$type,$state,$group);
2769
2770 # get the ID...
2771 ($user_id) = $dbh->selectrow_array("SELECT currval('users_user_id_seq')");
2772
2773# Permissions! Gotta set'em all!
2774 die "Invalid permission string $permstring\n"
2775 if $permstring !~ /^(?:
2776 i # inherit
2777 |c:\d+ # clone
2778 # custom. no, the leading , is not a typo
2779 |C:(?:,(?:group|user|domain|record|location|self)_(?:edit|create|delete|locchg|view))*
2780 )$/x;
2781# bleh. I'd call another function to do my dirty work, but we're in the middle of a transaction already.
2782 if ($permstring ne 'i') {
2783 # for cloned or custom permissions, we have to create a new permissions entry.
2784 my $clonesrc = $group;
2785 if ($permstring =~ /^c:(\d+)/) { $clonesrc = $1; }
2786 $dbh->do("INSERT INTO permissions ($permlist,user_id) ".
2787 "SELECT $permlist,? FROM permissions WHERE permission_id=".
2788 "(SELECT permission_id FROM permissions WHERE ".($permstring =~ /^c:/ ? 'user' : 'group')."_id=?)",
2789 undef, ($user_id,$clonesrc) );
2790 $dbh->do("UPDATE users SET permission_id=".
2791 "(SELECT permission_id FROM permissions WHERE user_id=?) ".
2792 "WHERE user_id=?", undef, ($user_id, $user_id) );
2793 }
2794 if ($permstring =~ /^C:/) {
2795 # finally for custom permissions, we set the passed-in permissions (and unset
2796 # any that might have been brought in by the clone operation above)
2797 my ($permid) = $dbh->selectrow_array("SELECT permission_id FROM permissions WHERE user_id=?",
2798 undef, ($user_id) );
2799 foreach (@permtypes) {
2800 if ($permstring =~ /,$_/) {
2801 $dbh->do("UPDATE permissions SET $_='t' WHERE permission_id=?", undef, ($permid) );
2802 } else {
2803 $dbh->do("UPDATE permissions SET $_='f' WHERE permission_id=?", undef, ($permid) );
2804 }
2805 }
2806 }
2807
2808 $dbh->do("UPDATE users SET inherit_perm='n' WHERE user_id=?", undef, ($user_id) );
2809
2810##fixme: add another table to hold name/email for log table?
2811
2812 $self->_log(group_id => $group, entry => "Added user $username ($fname $lname)");
2813 # once we get here, we should have suceeded.
2814 $dbh->commit;
2815 }; # end eval
2816
2817 if ($@) {
2818 my $msg = $@;
2819 eval { $dbh->rollback; };
2820 if ($self->{log_failures}) {
2821 $self->_log(group_id => $group, entry => "Error adding user $username: $msg");
2822 $dbh->commit; # since we enabled transactions earlier
2823 }
2824 return ('FAIL',"Error adding user $username: $msg");
2825 }
2826
2827 return ('OK',"User $username ($fname $lname) added");
2828} # end addUser
2829
2830
2831## DNSDB::getUserCount()
2832# Get count of users in group
2833# Takes a database handle and hash containing at least the current group, and optionally:
2834# - a reference list of secondary groups
2835# - a filter string
2836# - a "Starts with" string
2837sub getUserCount {
2838 my $self = shift;
2839 my $dbh = $self->{dbh};
2840
2841 my %args = @_;
2842
2843 # Fail on bad curgroup argument. There's no sane fallback on this one.
2844 if (!$args{curgroup} || $args{curgroup} !~ /^\d+$/) {
2845 $errstr = "Bad or missing curgroup argument";
2846 return;
2847 }
2848 # Fail on bad childlist argument. This could be sanely ignored if bad, maybe.
2849 if ($args{childlist} && $args{childlist} !~ /^[\d,]+$/) {
2850 $errstr = "Bad childlist argument";
2851 return;
2852 }
2853
2854 my @filterargs;
2855 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
2856 push @filterargs, "^$args{startwith}" if $args{startwith};
2857 push @filterargs, $args{filter} if $args{filter};
2858
2859 my $sql = "SELECT count(*) FROM users ".
2860 "WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2861 ($args{startwith} ? " AND username ~* ?" : '').
2862 ($args{filter} ? " AND username ~* ?" : '');
2863 my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
2864 $errstr = $dbh->errstr if !$count;
2865 return $count;
2866} # end getUserCount()
2867
2868
2869## DNSDB::getUserList()
2870# Get list of users
2871# Takes the same arguments as getUserCount() above, plus optional:
2872# - sort field
2873# - sort order
2874# - offset/return-all-everything flag (defaults to $perpage records)
2875sub getUserList {
2876 my $self = shift;
2877 my $dbh = $self->{dbh};
2878
2879 my %args = @_;
2880
2881 # Fail on bad curgroup argument. There's no sane fallback on this one.
2882 if (!$args{curgroup} || $args{curgroup} !~ /^\d+$/) {
2883 $errstr = "Bad or missing curgroup argument";
2884 return;
2885 }
2886 # Fail on bad childlist argument. This could be sanely ignored if bad, maybe.
2887 if ($args{childlist} && $args{childlist} !~ /^[\d,]+$/) {
2888 $errstr = "Bad childlist argument";
2889 return;
2890 }
2891
2892 my @filterargs;
2893 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
2894 push @filterargs, "^$args{startwith}" if $args{startwith};
2895 push @filterargs, $args{filter} if $args{filter};
2896
2897 # better to request sorts on "simple" names, but it means we need to map it to real columns
2898 my %sortmap = (user => 'u.username', type => 'u.type', group => 'g.group_name', status => 'u.status',
2899 fname => 'fname');
2900 $args{sortby} = $sortmap{$args{sortby}};
2901
2902 # protection against bad or missing arguments
2903 $args{sortorder} = 'ASC' if !$args{sortorder} || !grep /^$args{sortorder}$/, ('ASC','DESC');
2904 $args{sortby} = 'u.username' if !$args{sortby} || $args{sortby} !~ /^[\w_.]+$/;
2905 $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
2906
2907 my $sql = "SELECT u.user_id, u.username, u.firstname || ' ' || u.lastname AS fname, u.type, g.group_name, u.status ".
2908 "FROM users u ".
2909 "INNER JOIN groups g ON u.group_id=g.group_id ".
2910 "WHERE u.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2911 ($args{startwith} ? " AND u.username ~* ?" : '').
2912 ($args{filter} ? " AND u.username ~* ?" : '').
2913 " AND NOT u.type = 'R' ".
2914 " ORDER BY $args{sortby} $args{sortorder} ".
2915 ($args{offset} eq 'all' ? '' : " LIMIT $self->{perpage} OFFSET ".$args{offset}*$self->{perpage});
2916 my $ulist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
2917 $errstr = $dbh->errstr if !$ulist;
2918 return $ulist;
2919} # end getUserList()
2920
2921
2922## DNSDB::getUserDropdown()
2923# Get a list of usernames for use in a dropdown menu.
2924# Takes a database handle, current group, and optional "tag this as selected" flag.
2925# Returns a reference to a list of hashrefs suitable to feeding to HTML::Template
2926sub getUserDropdown {
2927 my $self = shift;
2928 my $dbh = $self->{dbh};
2929 my $grp = shift;
2930 my $sel = shift || 0;
2931
2932 my $sth = $dbh->prepare("SELECT username,user_id FROM users WHERE group_id=?");
2933 $sth->execute($grp);
2934
2935 my @userlist;
2936 while (my ($username,$uid) = $sth->fetchrow_array) {
2937 my %row = (
2938 username => $username,
2939 uid => $uid,
2940 selected => ($sel == $uid ? 1 : 0)
2941 );
2942 push @userlist, \%row;
2943 }
2944 return \@userlist;
2945} # end getUserDropdown()
2946
2947
2948## DNSDB:: updateUser()
2949# Update general data about user
2950sub updateUser {
2951 my $self = shift;
2952 my $dbh = $self->{dbh};
2953
2954##fixme: tweak calling convention so that we can update any given bit of data
2955 my $uid = shift;
2956 my $username = shift;
2957 my $group = shift;
2958 my $pass = shift;
2959 my $state = shift;
2960 my $type = shift || 'u';
2961 my $fname = shift || $username;
2962 my $lname = shift || '';
2963 my $phone = shift || ''; # not going format-check
2964
2965 my $resultmsg = '';
2966
2967 # Munge in some alternate state values
2968 $state = 1 if $state =~ /^active$/;
2969 $state = 1 if $state =~ /^on$/;
2970 $state = 0 if $state =~ /^inactive$/;
2971 $state = 0 if $state =~ /^off$/;
2972
2973 # Allow transactions, and raise an exception on errors so we can catch it later.
2974 # Use local to make sure these get "reset" properly on exiting this block
2975 local $dbh->{AutoCommit} = 0;
2976 local $dbh->{RaiseError} = 1;
2977
2978 my $sth;
2979
2980 # Password can be left blank; if so we assume there's one on file.
2981 # Actual blank passwords are bad, mm'kay?
2982 if (!$pass) {
2983 ($pass) = $dbh->selectrow_array("SELECT password FROM users WHERE user_id=?", undef, ($uid));
2984 } else {
2985 $pass = unix_md5_crypt($pass);
2986 }
2987
2988 eval {
2989 $dbh->do("UPDATE users SET username=?, password=?, firstname=?, lastname=?, phone=?, type=?, status=?".
2990 " WHERE user_id=?", undef, ($username, $pass, $fname, $lname, $phone, $type, $state, $uid));
2991 $resultmsg = "Updated user info for $username ($fname $lname)";
2992 $self->_log(group_id => $group, entry => $resultmsg);
2993 $dbh->commit;
2994 };
2995 if ($@) {
2996 my $msg = $@;
2997 eval { $dbh->rollback; };
2998 if ($self->{log_failures}) {
2999 $self->_log(group_id => $group, entry => "Error updating user $username: $msg");
3000 $dbh->commit; # since we enabled transactions earlier
3001 }
3002 return ('FAIL',"Error updating user $username: $msg");
3003 }
3004
3005 return ('OK',$resultmsg);
3006} # end updateUser()
3007
3008
3009## DNSDB::delUser()
3010# Delete a user.
3011# Takes a database handle and user ID
3012# Returns a success/failure code and matching message
3013sub delUser {
3014 my $self = shift;
3015 my $dbh = $self->{dbh};
3016 my $userid = shift;
3017
3018 return ('FAIL',"Bad userid") if !defined($userid);
3019
3020 my $userdata = $self->getUserData($userid);
3021
3022 # Allow transactions, and raise an exception on errors so we can catch it later.
3023 # Use local to make sure these get "reset" properly on exiting this block
3024 local $dbh->{AutoCommit} = 0;
3025 local $dbh->{RaiseError} = 1;
3026
3027 eval {
3028 $dbh->do("DELETE FROM users WHERE user_id=?", undef, ($userid));
3029 $self->_log(group_id => $userdata->{group_id},
3030 entry => "Deleted user ID $userid/".$userdata->{username}.
3031 " (".$userdata->{firstname}." ".$userdata->{lastname}.")");
3032 $dbh->commit;
3033 };
3034 if ($@) {
3035 my $msg = $@;
3036 eval { $dbh->rollback; };
3037 if ($self->{log_failures}) {
3038 $self->_log(group_id => $userdata->{group_id}, entry => "Error deleting user ID ".
3039 "$userid/".$userdata->{username}.": $msg");
3040 $dbh->commit;
3041 }
3042 return ('FAIL',"Error deleting user $userid/".$userdata->{username}.": $msg");
3043 }
3044
3045 return ('OK',"Deleted user ".$userdata->{username}." (".$userdata->{firstname}." ".$userdata->{lastname}.")");
3046} # end delUser
3047
3048
3049## DNSDB::userFullName()
3050# Return a pretty string!
3051# Takes a user_id and optional printf-ish string to indicate which pieces where:
3052# %u for the username
3053# %f for the first name
3054# %l for the last name
3055# All other text in the passed string will be left as-is.
3056##fixme: need a "smart" option too, so that missing/null/blank first/last names don't give funky output
3057sub userFullName {
3058 $errstr = '';
3059 my $self = shift;
3060 my $dbh = $self->{dbh};
3061 my $userid = shift;
3062 my $fullformat = shift || '%f %l (%u)';
3063 my $sth = $dbh->prepare("select username,firstname,lastname from users where user_id=?");
3064 $sth->execute($userid);
3065 my ($uname,$fname,$lname) = $sth->fetchrow_array();
3066 $errstr = $DBI::errstr if !$uname;
3067
3068 $fullformat =~ s/\%u/$uname/g;
3069 $fullformat =~ s/\%f/$fname/g;
3070 $fullformat =~ s/\%l/$lname/g;
3071
3072 return $fullformat;
3073} # end userFullName
3074
3075
3076## DNSDB::userStatus()
3077# Sets and/or returns a user's status
3078# Takes a database handle, user ID and optionally a status argument
3079# Returns undef on errors.
3080sub userStatus {
3081 my $self = shift;
3082 my $dbh = $self->{dbh};
3083 my $id = shift;
3084 my $newstatus = shift || 'mu';
3085
3086 return undef if $id !~ /^\d+$/;
3087
3088 my $userdata = $self->getUserData($id);
3089
3090 # Allow transactions, and raise an exception on errors so we can catch it later.
3091 # Use local to make sure these get "reset" properly on exiting this block
3092 local $dbh->{AutoCommit} = 0;
3093 local $dbh->{RaiseError} = 1;
3094
3095 if ($newstatus ne 'mu') {
3096 # ooo, fun! let's see what we were passed for status
3097 eval {
3098 $newstatus = 0 if $newstatus eq 'useroff';
3099 $newstatus = 1 if $newstatus eq 'useron';
3100 $dbh->do("UPDATE users SET status=? WHERE user_id=?", undef, ($newstatus, $id));
3101
3102 $resultstr = ($newstatus ? 'Enabled' : 'Disabled')." user ".$userdata->{username}.
3103 " (".$userdata->{firstname}." ".$userdata->{lastname}.")";
3104
3105 my %loghash;
3106 $loghash{group_id} = $self->parentID(id => $id, type => 'user');
3107 $loghash{entry} = $resultstr;
3108 $self->_log(%loghash);
3109
3110 $dbh->commit;
3111 };
3112 if ($@) {
3113 my $msg = $@;
3114 eval { $dbh->rollback; };
3115 $resultstr = '';
3116 $errstr = $msg;
3117##fixme: failure logging?
3118 return;
3119 }
3120 }
3121
3122 my ($status) = $dbh->selectrow_array("SELECT status FROM users WHERE user_id=?", undef, ($id));
3123 return $status;
3124} # end userStatus()
3125
3126
3127## DNSDB::getUserData()
3128# Get misc user data for display
3129sub getUserData {
3130 my $self = shift;
3131 my $dbh = $self->{dbh};
3132 my $uid = shift;
3133
3134 my $sth = $dbh->prepare("SELECT group_id,username,firstname,lastname,phone,type,status,inherit_perm ".
3135 "FROM users WHERE user_id=?");
3136 $sth->execute($uid);
3137 return $sth->fetchrow_hashref();
3138} # end getUserData()
3139
3140
3141## DNSDB::addLoc()
3142# Add a new location.
3143# Takes a database handle, group ID, short and long description, and a comma-separated
3144# list of IP addresses.
3145# Returns ('OK',<location>) on success, ('FAIL',<failmsg>) on failure
3146sub addLoc {
3147 my $self = shift;
3148 my $dbh = $self->{dbh};
3149 my $grp = shift;
3150 my $shdesc = shift;
3151 my $comments = shift;
3152 my $iplist = shift;
3153
3154 # $shdesc gets set to the generated location ID if possible, but these can be de-undefined here.
3155 $comments = '' if !$comments;
3156 $iplist = '' if !$iplist;
3157
3158 my $loc;
3159
3160 # Generate a location ID. This is, by spec, a two-character widget. We'll use [a-z][a-z]
3161 # for now; 676 locations should satisfy all but the largest of the huge networks.
3162 # Not sure whether these are case-sensitive, or what other rules might apply - in any case
3163 # the absolute maximum is 16K (256*256) since it's parsed by tinydns as a two-character field.
3164
3165# add just after "my $origloc = $loc;":
3166# # These expand the possible space from 26^2 to 52^2 [* note in testing only 2052 were achieved],
3167# # and wrap it around.
3168# # Yes, they skip a couple of possibles. No, I don't care.
3169# $loc = 'aA' if $loc eq 'zz';
3170# $loc = 'Aa' if $loc eq 'zZ';
3171# $loc = 'ZA' if $loc eq 'Zz';
3172# $loc = 'aa' if $loc eq 'ZZ';
3173
3174 # Allow transactions, and raise an exception on errors so we can catch it later.
3175 # Use local to make sure these get "reset" properly on exiting this block
3176 local $dbh->{AutoCommit} = 0;
3177 local $dbh->{RaiseError} = 1;
3178
3179##fixme: There is probably a far better way to do this. Sequential increments
3180# are marginally less stupid that pure random generation though, and the existence
3181# check makes sure we don't stomp on an imported one.
3182
3183 eval {
3184 # Get the "last" location. Note this is the only use for loc_id, because selecting on location Does Funky Things
3185 ($loc) = $dbh->selectrow_array("SELECT location FROM locations ORDER BY loc_id DESC LIMIT 1");
3186 ($loc) = ($loc =~ /^(..)/) if $loc;
3187 my $origloc = $loc;
3188 $loc = 'aa' if !$loc;
3189 # Make a change...
3190 $loc++;
3191 # ... and keep changing if it exists
3192 while ($dbh->selectrow_array("SELECT count(*) FROM locations WHERE location LIKE ?", undef, ($loc.'%'))) {
3193 $loc++;
3194 ($loc) = ($loc =~ /^(..)/);
3195 die "too many locations in use, can't add another one\n" if $loc eq $origloc;
3196##fixme: really need to handle this case faster somehow
3197#if $loc eq $origloc die "<thwap> bad admin: all locations used, your network is too fragmented";
3198 }
3199 # And now we should have a unique location. tinydns fundamentally limits the
3200 # number of these but there's no doc on what characters are valid.
3201 $shdesc = $loc if !$shdesc;
3202 $dbh->do("INSERT INTO locations (location, group_id, iplist, description, comments) VALUES (?,?,?,?,?)",
3203 undef, ($loc, $grp, $iplist, $shdesc, $comments) );
3204 $self->_log(entry => "Added location ($shdesc, '$iplist')");
3205 $dbh->commit;
3206 };
3207 if ($@) {
3208 my $msg = $@;
3209 eval { $dbh->rollback; };
3210 if ($self->{log_failures}) {
3211 $shdesc = $loc if !$shdesc;
3212 $self->_log(entry => "Failed adding location ($shdesc, '$iplist'): $msg");
3213 $dbh->commit;
3214 }
3215 return ('FAIL',$msg);
3216 }
3217
3218 return ('OK',$loc);
3219} # end addLoc()
3220
3221
3222## DNSDB::updateLoc()
3223# Update details of a location.
3224# Takes a database handle, location ID, group ID, short description,
3225# long comments/notes, and comma/space-separated IP list
3226# Returns a result code and message
3227sub updateLoc {
3228 my $self = shift;
3229 my $dbh = $self->{dbh};
3230 my $loc = shift;
3231 my $grp = shift;
3232 my $shdesc = shift;
3233 my $comments = shift;
3234 my $iplist = shift;
3235
3236 $shdesc = '' if !$shdesc;
3237 $comments = '' if !$comments;
3238 $iplist = '' if !$iplist;
3239
3240 # Allow transactions, and raise an exception on errors so we can catch it later.
3241 # Use local to make sure these get "reset" properly on exiting this block
3242 local $dbh->{AutoCommit} = 0;
3243 local $dbh->{RaiseError} = 1;
3244
3245 my $oldloc = $self->getLoc($loc);
3246 my $okmsg = "Updated location (".$oldloc->{description}.", '".$oldloc->{iplist}."') to ($shdesc, '$iplist')";
3247
3248 eval {
3249 $dbh->do("UPDATE locations SET group_id=?,iplist=?,description=?,comments=? WHERE location=?",
3250 undef, ($grp, $iplist, $shdesc, $comments, $loc) );
3251 $self->_log(entry => $okmsg);
3252 $dbh->commit;
3253 };
3254 if ($@) {
3255 my $msg = $@;
3256 eval { $dbh->rollback; };
3257 if ($self->{log_failures}) {
3258 $shdesc = $loc if !$shdesc;
3259 $self->_log(entry => "Failed updating location ($shdesc, '$iplist'): $msg");
3260 $dbh->commit;
3261 }
3262 return ('FAIL',$msg);
3263 }
3264
3265 return ('OK',$okmsg);
3266} # end updateLoc()
3267
3268
3269## DNSDB::delLoc()
3270sub delLoc {
3271 my $self = shift;
3272 my $dbh = $self->{dbh};
3273 my $loc = shift;
3274
3275 # Allow transactions, and raise an exception on errors so we can catch it later.
3276 # Use local to make sure these get "reset" properly on exiting this block
3277 local $dbh->{AutoCommit} = 0;
3278 local $dbh->{RaiseError} = 1;
3279
3280 my $oldloc = $self->getLoc($loc);
3281 my $olddesc = ($oldloc->{description} ? $oldloc->{description} : $loc);
3282 my $okmsg = "Deleted location ($olddesc, '".$oldloc->{iplist}."')";
3283
3284 eval {
3285 # Check for records with this location first. Deleting a location without deleting records
3286 # tagged for that location will render them unpublished without other warning.
3287 my ($r) = $dbh->selectrow_array("SELECT record_id FROM records WHERE location=? LIMIT 1", undef, ($loc) );
3288 die "Records still exist in location $olddesc\n" if $r;
3289 $dbh->do("DELETE FROM locations WHERE location=?", undef, ($loc) );
3290 $self->_log(entry => $okmsg);
3291 $dbh->commit;
3292 };
3293 if ($@) {
3294 my $msg = $@;
3295 eval { $dbh->rollback; };
3296 if ($self->{log_failures}) {
3297 $self->_log(entry => "Failed to delete location ($olddesc, '$oldloc->{iplist}'): $msg");
3298 $dbh->commit;
3299 }
3300 return ('FAIL', "Failed to delete location ($olddesc, '$oldloc->{iplist}'): $msg");
3301 }
3302
3303 return ('OK',$okmsg);
3304} # end delLoc()
3305
3306
3307## DNSDB::getLoc()
3308# Get details about a location/view
3309# Takes a database handle and location ID.
3310# Returns a reference to a hash containing the group ID, IP list, description, and comments/notes
3311sub getLoc {
3312 my $self = shift;
3313 my $dbh = $self->{dbh};
3314 my $loc = shift;
3315
3316 my $sth = $dbh->prepare("SELECT group_id,iplist,description,comments FROM locations WHERE location=?");
3317 $sth->execute($loc);
3318 return $sth->fetchrow_hashref();
3319} # end getLoc()
3320
3321
3322## DNSDB::getLocCount()
3323# Get count of locations/views
3324# Takes a database handle and hash containing at least the current group, and optionally:
3325# - a reference list of secondary groups
3326# - a filter string
3327# - a "Starts with" string
3328sub getLocCount {
3329 my $self = shift;
3330 my $dbh = $self->{dbh};
3331
3332 my %args = @_;
3333
3334 # Fail on bad curgroup argument. There's no sane fallback on this one.
3335 if (!$args{curgroup} || $args{curgroup} !~ /^\d+$/) {
3336 $errstr = "Bad or missing curgroup argument";
3337 return;
3338 }
3339 # Fail on bad childlist argument. This could be sanely ignored if bad, maybe.
3340 if ($args{childlist} && $args{childlist} !~ /^[\d,]+$/) {
3341 $errstr = "Bad childlist argument";
3342 return;
3343 }
3344
3345 my @filterargs;
3346 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
3347 push @filterargs, "^$args{startwith}" if $args{startwith};
3348 push @filterargs, $args{filter} if $args{filter};
3349
3350 my $sql = "SELECT count(*) FROM locations ".
3351 "WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
3352 ($args{startwith} ? " AND description ~* ?" : '').
3353 ($args{filter} ? " AND description ~* ?" : '');
3354 my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
3355 $errstr = $dbh->errstr if !$count;
3356 return $count;
3357} # end getLocCount()
3358
3359
3360## DNSDB::getLocList()
3361sub getLocList {
3362 my $self = shift;
3363 my $dbh = $self->{dbh};
3364
3365 my %args = @_;
3366
3367 # Fail on bad curgroup argument. There's no sane fallback on this one.
3368 if (!$args{curgroup} || $args{curgroup} !~ /^\d+$/) {
3369 $errstr = "Bad or missing curgroup argument";
3370 return;
3371 }
3372 # Fail on bad childlist argument. This could be sanely ignored if bad, maybe.
3373 if ($args{childlist} && $args{childlist} !~ /^[\d,]+$/) {
3374 $errstr = "Bad childlist argument";
3375 return;
3376 }
3377
3378 my @filterargs;
3379 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
3380 push @filterargs, "^$args{startwith}" if $args{startwith};
3381 push @filterargs, $args{filter} if $args{filter};
3382
3383 # better to request sorts on "simple" names, but it means we need to map it to real columns
3384# my %sortmap = (user => 'u.username', type => 'u.type', group => 'g.group_name', status => 'u.status',
3385# fname => 'fname');
3386# $args{sortby} = $sortmap{$args{sortby}};
3387
3388 # protection against bad or missing arguments
3389 $args{sortorder} = 'ASC' if !$args{sortorder} || !grep /^$args{sortorder}$/, ('ASC','DESC');
3390 $args{sortby} = 'l.description' if !$args{sortby} || $args{sortby} !~ /^[\w_.]+$/;
3391 $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
3392
3393 my $sql = "SELECT l.location, l.description, l.iplist, g.group_name ".
3394 "FROM locations l ".
3395 "INNER JOIN groups g ON l.group_id=g.group_id ".
3396 "WHERE l.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
3397 ($args{startwith} ? " AND l.description ~* ?" : '').
3398 ($args{filter} ? " AND l.description ~* ?" : '').
3399 " ORDER BY $args{sortby} $args{sortorder} ".
3400 ($args{offset} eq 'all' ? '' : " LIMIT $self->{perpage} OFFSET ".$args{offset}*$self->{perpage});
3401 my $ulist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
3402 $errstr = $dbh->errstr if !$ulist;
3403 return $ulist;
3404} # end getLocList()
3405
3406
3407## DNSDB::getLocDropdown()
3408# Get a list of location names for use in a dropdown menu.
3409# Takes a database handle, current group, and optional "tag this as selected" flag.
3410# Returns a reference to a list of hashrefs suitable to feeding to HTML::Template
3411sub getLocDropdown {
3412 my $self = shift;
3413 my $dbh = $self->{dbh};
3414 my $grp = shift;
3415 my $sel = shift || '';
3416
3417 my $sth = $dbh->prepare(qq(
3418 SELECT description,location FROM locations
3419 WHERE group_id=?
3420 ORDER BY description
3421 ) );
3422 $sth->execute($grp);
3423
3424 my @loclist;
3425 push @loclist, { locname => "(Default/All)", loc => '', selected => ($sel ? 0 : ($sel eq '' ? 1 : 0)) };
3426 while (my ($locname, $loc) = $sth->fetchrow_array) {
3427 my %row = (
3428 locname => $locname,
3429 loc => $loc,
3430 selected => ($sel eq $loc ? 1 : 0)
3431 );
3432 push @loclist, \%row;
3433 }
3434 return \@loclist;
3435} # end getLocDropdown()
3436
3437
3438## DNSDB::getSOA()
3439# Return all suitable fields from an SOA record in separate elements of a hash
3440# Takes a database handle, default/live flag, domain/reverse flag, and parent ID
3441sub getSOA {
3442 $errstr = '';
3443 my $self = shift;
3444 my $dbh = $self->{dbh};
3445 my $def = shift;
3446 my $rev = shift;
3447 my $id = shift;
3448
3449 # (ab)use distance and weight columns to store SOA data? can't for default_rev_records...
3450 # - should really attach serial to the zone parent somewhere
3451
3452 my $sql = "SELECT record_id,host,val,ttl from "._rectable($def,$rev).
3453 " WHERE "._recparent($def,$rev)." = ? AND type=$reverse_typemap{SOA}";
3454 my $ret = $dbh->selectrow_hashref($sql, undef, ($id) );
3455 return if !$ret;
3456##fixme: stick a flag somewhere if the record doesn't exist. by the API, this is an impossible case, but...
3457
3458 ($ret->{contact},$ret->{prins}) = split /:/, $ret->{host};
3459 delete $ret->{host};
3460 ($ret->{refresh},$ret->{retry},$ret->{expire},$ret->{minttl}) = split /:/, $ret->{val};
3461 delete $ret->{val};
3462
3463 return $ret;
3464} # end getSOA()
3465
3466
3467## DNSDB::updateSOA()
3468# Update the specified SOA record
3469# Takes a database handle, default/live flag, forward/reverse flag, and SOA data hash
3470# Returns a two-element list with a result code and message
3471sub updateSOA {
3472 my $self = shift;
3473 my $dbh = $self->{dbh};
3474 my $defrec = shift;
3475 my $revrec = shift;
3476
3477 my %soa = @_;
3478
3479 my $oldsoa = $self->getSOA($defrec, $revrec, $soa{id});
3480
3481 my $msg;
3482 my %logdata;
3483 if ($defrec eq 'n') {
3484 $logdata{domain_id} = $soa{id} if $revrec eq 'n';
3485 $logdata{rdns_id} = $soa{id} if $revrec eq 'y';
3486 $logdata{group_id} = $self->parentID(id => $soa{id}, revrec => $revrec,
3487 type => ($revrec eq 'n' ? 'domain' : 'revzone') );
3488 } else {
3489 $logdata{group_id} = $soa{id};
3490 }
3491 my $parname = ($defrec eq 'y' ? $self->groupName($soa{id}) :
3492 ($revrec eq 'n' ? $self->domainName($soa{id}) : $self->revName($soa{id})) );
3493
3494 # Allow transactions, and raise an exception on errors so we can catch it later.
3495 # Use local to make sure these get "reset" properly on exiting this block
3496 local $dbh->{AutoCommit} = 0;
3497 local $dbh->{RaiseError} = 1;
3498
3499 eval {
3500 my $sql = "UPDATE "._rectable($defrec, $revrec)." SET host=?, val=?, ttl=? WHERE record_id=? AND type=6";
3501 $dbh->do($sql, undef, ("$soa{contact}:$soa{prins}", "$soa{refresh}:$soa{retry}:$soa{expire}:$soa{minttl}",
3502 $soa{ttl}, $oldsoa->{record_id}) );
3503 $msg = "Updated ".($defrec eq 'y' ? ($revrec eq 'y' ? 'default reverse ' : 'default ') : '').
3504 "SOA for $parname: ".
3505 "(ns $oldsoa->{prins}, contact $oldsoa->{contact}, refresh $oldsoa->{refresh},".
3506 " retry $oldsoa->{retry}, expire $oldsoa->{expire}, minTTL $oldsoa->{minttl}, TTL $oldsoa->{ttl}) to ".
3507 "(ns $soa{prins}, contact $soa{contact}, refresh $soa{refresh},".
3508 " retry $soa{retry}, expire $soa{expire}, minTTL $soa{minttl}, TTL $soa{ttl})";
3509
3510 $logdata{entry} = $msg;
3511 $self->_log(%logdata);
3512
3513 $dbh->commit;
3514 };
3515 if ($@) {
3516 $msg = $@;
3517 eval { $dbh->rollback; };
3518 $logdata{entry} = "Error updating ".($defrec eq 'y' ? ($revrec eq 'y' ? 'default reverse zone ' : 'default ') : '').
3519 "SOA record for $parname: $msg";
3520 if ($self->{log_failures}) {
3521 $self->_log(%logdata);
3522 $dbh->commit;
3523 }
3524 return ('FAIL', $logdata{entry});
3525 } else {
3526 return ('OK', $msg);
3527 }
3528} # end updateSOA()
3529
3530
3531## DNSDB::getRecLine()
3532# Return all data fields for a zone record in separate elements of a hash
3533# Takes a database handle, default/live flag, forward/reverse flag, and record ID
3534sub getRecLine {
3535 $errstr = '';
3536 my $self = shift;
3537 my $dbh = $self->{dbh};
3538 my $defrec = shift;
3539 my $revrec = shift;
3540 my $id = shift;
3541
3542##fixme: do we need a knob to twist to switch between unix epoch and postgres time string?
3543 my $sql = "SELECT record_id,host,type,val,ttl".
3544 ($defrec eq 'n' ? ',location' : '').
3545 ($revrec eq 'n' ? ',distance,weight,port' : '').
3546 (($defrec eq 'y') ? ',group_id FROM ' : ',domain_id,rdns_id,stamp,stamp < now() AS ispast,expires,stampactive FROM ').
3547 _rectable($defrec,$revrec)." WHERE record_id=?";
3548 my $ret = $dbh->selectrow_hashref($sql, undef, ($id) );
3549
3550 if ($dbh->err) {
3551 $errstr = $DBI::errstr;
3552 return undef;
3553 }
3554
3555 if (!$ret) {
3556 $errstr = "No such record";
3557 return undef;
3558 }
3559
3560 # explicitly set a parent id
3561 if ($defrec eq 'y') {
3562 $ret->{parid} = $ret->{group_id};
3563 } else {
3564 $ret->{parid} = (($revrec eq 'n') ? $ret->{domain_id} : $ret->{rdns_id});
3565 # and a secondary if we have a custom type that lives in both a forward and reverse zone
3566 $ret->{secid} = (($revrec eq 'y') ? $ret->{domain_id} : $ret->{rdns_id}) if $ret->{type} > 65279;
3567 }
3568 $ret->{address} = $ret->{val}; # because.
3569
3570 return $ret;
3571}
3572
3573
3574##fixme: should use above (getRecLine()) to get lines for below?
3575## DNSDB::getRecList()
3576# Return records for a group or zone
3577# Takes a default/live flag, group or zone ID, start,
3578# number of records, sort field, and sort order
3579# Returns a reference to an array of hashes
3580sub getRecList {
3581 $errstr = '';
3582 my $self = shift;
3583 my $dbh = $self->{dbh};
3584
3585 my %args = @_;
3586
3587 my @filterargs;
3588
3589 push @filterargs, $args{filter} if $args{filter};
3590
3591 # protection against bad or missing arguments
3592 $args{sortorder} = 'ASC' if !$args{sortorder} || !grep /^$args{sortorder}$/, ('ASC','DESC');
3593 my $defsort;
3594 $defsort = 'host' if $args{revrec} eq 'n'; # default sort by host on domain record list
3595 $defsort = 'val' if $args{revrec} eq 'y'; # default sort by IP on revzone record list
3596 $args{sortby} = '' if !$args{sortby};
3597 $args{sortby} = $defsort if !$args{revrec};
3598 $args{sortby} = $defsort if $args{sortby} !~ /^[\w_,.]+$/;
3599 $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
3600 my $perpage = ($args{nrecs} ? $args{nrecs} : $self->{perpage});
3601
3602 # sort reverse zones on IP, correctly
3603 # do other fiddling with $args{sortby} while we're at it.
3604 # whee! multisort means just passing comma-separated fields in sortby!
3605 my $newsort = '';
3606 foreach my $sf (split /,/, $args{sortby}) {
3607 $sf = "r.$sf";
3608 $sf =~ s/r\.val/CAST (r.val AS inet)/
3609 if $args{revrec} eq 'y' && $args{defrec} eq 'n';
3610 $sf =~ s/r\.type/t.alphaorder/;
3611 $newsort .= ",$sf";
3612 }
3613 $newsort =~ s/^,//;
3614
3615##fixme: do we need a knob to twist to switch from unix epoch to postgres time string?
3616 my $sql = "SELECT r.record_id,r.host,r.type,r.val,r.ttl";
3617 $sql .= ",l.description AS locname,stamp,r.stamp < now() AS ispast,r.expires,r.stampactive"
3618 if $args{defrec} eq 'n';
3619 $sql .= ",r.distance,r.weight,r.port" if $args{revrec} eq 'n';
3620 $sql .= " FROM "._rectable($args{defrec},$args{revrec})." r ";
3621 $sql .= "INNER JOIN rectypes t ON r.type=t.val "; # for sorting by type alphabetically
3622 $sql .= "LEFT JOIN locations l ON r.location=l.location " if $args{defrec} eq 'n';
3623 $sql .= "WHERE "._recparent($args{defrec},$args{revrec})." = ?";
3624 $sql .= " AND NOT r.type=$reverse_typemap{SOA}";
3625 $sql .= " AND (r.host ~* ? OR r.val ~* ?)" if $args{filter};
3626 $sql .= " ORDER BY $newsort $args{sortorder}";
3627 # ensure consistent ordering by sorting on record_id too
3628 $sql .= ", record_id $args{sortorder}";
3629 $sql .= ($args{offset} eq 'all' ? '' : " LIMIT $perpage OFFSET ".$args{offset}*$perpage);
3630
3631 my @bindvars = ($args{id});
3632 push @bindvars, ($args{filter},$args{filter}) if $args{filter};
3633
3634 my $ret = $dbh->selectall_arrayref($sql, { Slice => {} }, (@bindvars) );
3635 $errstr = "Error retrieving records: ".$dbh->errstr if !$ret;
3636
3637 return $ret;
3638} # end getRecList()
3639
3640
3641## DNSDB::getRecCount()
3642# Return count of non-SOA records in zone (or default records in a group)
3643# Takes a database handle, default/live flag, reverse/forward flag, group/domain ID,
3644# and optional filtering modifier
3645# Returns the count
3646sub getRecCount {
3647 my $self = shift;
3648 my $dbh = $self->{dbh};
3649 my $defrec = shift;
3650 my $revrec = shift;
3651 my $id = shift;
3652 my $filter = shift || '';
3653
3654 # keep the nasties down, since we can't ?-sub this bit. :/
3655 # note this is chars allowed in DNS hostnames
3656 $filter =~ s/[^a-zA-Z0-9_.:-]//g;
3657
3658 my @bindvars = ($id);
3659 push @bindvars, $filter if $filter;
3660 my $sql = "SELECT count(*) FROM ".
3661 _rectable($defrec,$revrec).
3662 " WHERE "._recparent($defrec,$revrec)."=? ".
3663 "AND NOT type=$reverse_typemap{SOA}".
3664 ($filter ? " AND host ~* ?" : '');
3665 my ($count) = $dbh->selectrow_array($sql, undef, (@bindvars) );
3666
3667 return $count;
3668
3669} # end getRecCount()
3670
3671
3672## DNSDB::addRec()
3673# Add a new record to a domain or a group's default records
3674# Takes a database handle, default/live flag, group/domain ID,
3675# host, type, value, and TTL
3676# Some types require additional detail: "distance" for MX and SRV,
3677# and weight/port for SRV
3678# Returns a status code and detail message in case of error
3679##fixme: pass a hash with the record data, not a series of separate values
3680sub addRec {
3681 $errstr = '';
3682 my $self = shift;
3683 my $dbh = $self->{dbh};
3684 my $defrec = shift;
3685 my $revrec = shift;
3686 my $id = shift; # parent (group_id for defrecs, rdns_id for reverse records,
3687 # domain_id for domain records)
3688
3689 my $host = shift;
3690 my $rectype = shift; # reference so we can coerce it if "+"-types can't find both zones
3691 my $val = shift;
3692 my $ttl = shift;
3693 my $location = shift;
3694 $location = '' if !$location;
3695
3696 my $expires = shift;
3697 $expires = 1 if $expires eq 'until'; # Turn some special values into the appropriate booleans.
3698 $expires = 0 if $expires eq 'after';
3699 my $stamp = shift;
3700 $stamp = '' if !$stamp; # Timestamp should be a string at this point.
3701
3702 # Spaces are evil.
3703 $$host =~ s/^\s+//;
3704 $$host =~ s/\s+$//;
3705 if ($typemap{$$rectype} ne 'TXT') {
3706 # Leading or trailng spaces could be legit in TXT records.
3707 $$val =~ s/^\s+//;
3708 $$val =~ s/\s+$//;
3709 }
3710
3711 if ($self->{lowercase}) {
3712 if ($typemap{$$rectype} ne 'TXT') {
3713 $$host = lc($$host);
3714 $$val = lc($$val);
3715 } else {
3716 # TXT records should preserve user entry in the string.
3717 if ($revrec eq 'n') {
3718 $$host = lc($$host);
3719 } else {
3720 $$val = lc($$val);
3721 }
3722 }
3723 }
3724
3725 # prep for validation
3726 my $addr = NetAddr::IP->new($$val);
3727 $$host =~ s/\.+$//; # FQDNs ending in . are an internal detail, and really shouldn't be exposed in the UI.
3728
3729 my $domid = 0;
3730 my $revid = 0;
3731
3732 my $retcode = 'OK'; # assume everything will go OK
3733 my $retmsg = '';
3734
3735 # do simple validation first
3736 return ('FAIL', "TTL must be numeric") unless $ttl =~ /^-?\d+$/;
3737
3738 # Quick check on hostname parts. There are enough variations to justify a sub now.
3739 return ('FAIL', $errstr) if ! _check_hostname_form($$host, $$rectype, $defrec, $revrec);
3740
3741 # Collect these even if we're only doing a simple A record so we can call *any* validation sub
3742 my $dist = shift;
3743 my $weight = shift;
3744 my $port = shift;
3745
3746 my $fields;
3747 my @vallist;
3748
3749 # Call the validation sub for the type requested.
3750 ($retcode,$retmsg) = $validators{$$rectype}($self, defrec => $defrec, revrec => $revrec, id => $id,
3751 host => $host, rectype => $rectype, val => $val, addr => $addr,
3752 dist => \$dist, port => \$port, weight => \$weight,
3753 fields => \$fields, vallist => \@vallist);
3754
3755 return ($retcode,$retmsg) if $retcode eq 'FAIL';
3756
3757 # Set up database fields and bind parameters
3758 $fields .= "host,type,val,ttl,"._recparent($defrec,$revrec);
3759 push @vallist, ($$host,$$rectype,$$val,$ttl,$id);
3760
3761 if ($defrec eq 'n') {
3762 # locations are not for default records, silly coder!
3763 $fields .= ",location";
3764 push @vallist, $location;
3765 # timestamps are rare.
3766 if ($stamp) {
3767 $fields .= ",stamp,expires,stampactive";
3768 push @vallist, $stamp, $expires, 'y';
3769 } else {
3770 $fields .= ",stampactive";
3771 push @vallist, 'n';
3772 }
3773 }
3774
3775 # a little magic to get the right number of ? placeholders based on how many values we're providing
3776 my $vallen = '?'.(',?'x$#vallist);
3777
3778 # Put together the success log entry. We have to use this horrible kludge
3779 # because domain_id and rdns_id may or may not be present, and if they are,
3780 # they're not at a guaranteed consistent index in the array. wheee!
3781 my %logdata;
3782 my @ftmp = split /,/, $fields;
3783 for (my $i=0; $i <= $#vallist; $i++) {
3784 $logdata{domain_id} = $vallist[$i] if $ftmp[$i] eq 'domain_id';
3785 $logdata{rdns_id} = $vallist[$i] if $ftmp[$i] eq 'rdns_id';
3786 }
3787 $logdata{group_id} = $id if $defrec eq 'y';
3788 $logdata{group_id} = $self->parentID(id => $id, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec)
3789 if $defrec eq 'n';
3790 $logdata{entry} = "Added ".($defrec eq 'y' ? 'default record' : 'record');
3791 # NS records for revzones get special treatment
3792 if ($revrec eq 'y' && $$rectype == 2) {
3793 $logdata{entry} .= " '$$val $typemap{$$rectype} $$host";
3794 } else {
3795 $logdata{entry} .= " '$$host $typemap{$$rectype} $$val";
3796 }
3797
3798 $logdata{entry} .= " [distance $dist]" if $typemap{$$rectype} eq 'MX';
3799 $logdata{entry} .= " [priority $dist] [weight $weight] [port $port]"
3800 if $typemap{$$rectype} eq 'SRV';
3801 $logdata{entry} .= "', TTL $ttl";
3802 $logdata{entry} .= ", location ".$self->getLoc($location)->{description} if $location;
3803 $logdata{entry} .= ($expires eq 'after' ? ', valid after ' : ', expires at ').$stamp if $stamp;
3804
3805 # Allow transactions, and raise an exception on errors so we can catch it later.
3806 # Use local to make sure these get "reset" properly on exiting this block
3807 local $dbh->{AutoCommit} = 0;
3808 local $dbh->{RaiseError} = 1;
3809
3810 eval {
3811 $dbh->do("INSERT INTO "._rectable($defrec, $revrec)." ($fields) VALUES ($vallen)",
3812 undef, @vallist);
3813 $self->_log(%logdata);
3814 $dbh->commit;
3815 };
3816 if ($@) {
3817 my $msg = $@;
3818 eval { $dbh->rollback; };
3819 if ($self->{log_failures}) {
3820 $logdata{entry} = "Failed adding ".($defrec eq 'y' ? 'default ' : '').
3821 "record '$$host $typemap{$$rectype} $$val', TTL $ttl ($msg)";
3822 $self->_log(%logdata);
3823 $dbh->commit;
3824 }
3825 return ('FAIL',$msg);
3826 }
3827
3828 $resultstr = $logdata{entry};
3829 return ($retcode, $retmsg);
3830
3831} # end addRec()
3832
3833
3834## DNSDB::updateRec()
3835# Update a record
3836# Takes a database handle, default and reverse flags, record ID, immediate parent ID, and new record data.
3837# Returns a status code and message
3838sub updateRec {
3839 $errstr = '';
3840
3841 my $self = shift;
3842 my $dbh = $self->{dbh};
3843 my $defrec = shift;
3844 my $revrec = shift;
3845 my $id = shift;
3846 my $parid = shift; # immediate parent entity that we're descending from to update the record
3847
3848 # all records have these
3849 my $host = shift;
3850 my $hostbk = $$host; # Keep a backup copy of the original, so we can WARN if the update mangles the domain
3851 my $rectype = shift;
3852 my $val = shift;
3853 my $ttl = shift;
3854 my $location = shift; # may be empty/null/undef depending on caller
3855 $location = '' if !$location;
3856
3857 my $expires = shift;
3858 $expires = 1 if $expires eq 'until'; # Turn some special values into the appropriate booleans.
3859 $expires = 0 if $expires eq 'after';
3860 my $stamp = shift;
3861 $stamp = '' if !$stamp; # Timestamp should be a string at this point.
3862
3863 # just set it to an empty string; failures will be caught later.
3864 $$host = '' if !$$host;
3865
3866 # Spaces are evil.
3867 $$host =~ s/^\s+//;
3868 $$host =~ s/\s+$//;
3869 if ($typemap{$$rectype} ne 'TXT') {
3870 # Leading or trailng spaces could be legit in TXT records.
3871 $$val =~ s/^\s+//;
3872 $$val =~ s/\s+$//;
3873 }
3874
3875 if ($self->{lowercase}) {
3876 if ($typemap{$$rectype} ne 'TXT') {
3877 $$host = lc($$host);
3878 $$val = lc($$val);
3879 } else {
3880 # TXT records should preserve user entry in the string.
3881 if ($revrec eq 'n') {
3882 $$host = lc($$host);
3883 } else {
3884 $$val = lc($$val);
3885 }
3886 }
3887 }
3888
3889 # prep for validation
3890 my $addr = NetAddr::IP->new($$val);
3891 $$host =~ s/\.+$//; # FQDNs ending in . are an internal detail, and really shouldn't be exposed in the UI.
3892
3893 my $domid = 0;
3894 my $revid = 0;
3895
3896 my $retcode = 'OK'; # assume everything will go OK
3897 my $retmsg = '';
3898
3899 # do simple validation first
3900 return ('FAIL', "TTL must be numeric") unless $ttl =~ /^-?\d+$/;
3901
3902 # Quick check on hostname parts. There are enough variations to justify a sub now.
3903 return ('FAIL', $errstr) if ! _check_hostname_form($$host, $$rectype, $defrec, $revrec);
3904
3905 # only MX and SRV will use these
3906 my $dist = shift || 0;
3907 my $weight = shift || 0;
3908 my $port = shift || 0;
3909
3910 my $fields;
3911 my @vallist;
3912
3913 # get old record data so we have the right parent ID
3914 # and for logging (eventually)
3915 my $oldrec = $self->getRecLine($defrec, $revrec, $id);
3916
3917 # Call the validation sub for the type requested.
3918 # Note the ID to pass here is the *parent*, not the record
3919 ($retcode,$retmsg) = $validators{$$rectype}($self, defrec => $defrec, revrec => $revrec,
3920 id => ($defrec eq 'y' ? $oldrec->{group_id} : ($revrec eq 'n' ? $oldrec->{domain_id} : $oldrec->{rdns_id})),
3921 host => $host, rectype => $rectype, val => $val, addr => $addr,
3922 dist => \$dist, port => \$port, weight => \$weight,
3923 fields => \$fields, vallist => \@vallist,
3924 update => $id);
3925
3926 return ($retcode,$retmsg) if $retcode eq 'FAIL';
3927
3928 # Set up database fields and bind parameters. Note only the optional fields
3929 # (distance, weight, port, secondary parent ID) are added in the validation call above
3930 $fields .= "host,type,val,ttl,"._recparent($defrec,$revrec);
3931 push @vallist, ($$host,$$rectype,$$val,$ttl,
3932 ($defrec eq 'y' ? $oldrec->{group_id} : ($revrec eq 'n' ? $oldrec->{domain_id} : $oldrec->{rdns_id})) );
3933
3934 if ($defrec eq 'n') {
3935 # locations are not for default records, silly coder!
3936 $fields .= ",location";
3937 push @vallist, $location;
3938 # timestamps are rare.
3939 if ($stamp) {
3940 $fields .= ",stamp,expires,stampactive";
3941 push @vallist, $stamp, $expires, 'y';
3942 } else {
3943 $fields .= ",stampactive";
3944 push @vallist, 'n';
3945 }
3946 }
3947
3948 # hack hack PTHUI
3949 # need to forcibly make sure we disassociate a record with a parent it's no longer related to.
3950 # eg, PTR records may not have a domain parent, or A/AAAA records may not have a revzone parent.
3951 # mainly needed for crossover types that got coerced down to "standard" types
3952 if ($defrec eq 'n') {
3953 if ($$rectype == $reverse_typemap{PTR}) {
3954 $fields .= ",domain_id";
3955 push @vallist, 0;
3956 }
3957 if ($$rectype == $reverse_typemap{A} || $$rectype == $reverse_typemap{AAAA}) {
3958 $fields .= ",rdns_id";
3959 push @vallist, 0;
3960 }
3961 }
3962 # fix fat-finger-originated record type changes
3963 if ($$rectype == 65285) {
3964 $fields .= ",rdns_id" if $revrec eq 'n';
3965 $fields .= ",domain_id" if $revrec eq 'y';
3966 push @vallist, 0;
3967 }
3968 if ($defrec eq 'n') {
3969 $domid = $parid if $revrec eq 'n';
3970 $revid = $parid if $revrec eq 'y';
3971 }
3972
3973 # Put together the success log entry. Horrible kludge from addRec() copied as-is since
3974 # we don't know whether the passed arguments or retrieved values for domain_id and rdns_id
3975 # will be maintained (due to "not-in-zone" validation changes)
3976 my %logdata;
3977 $logdata{domain_id} = $domid;
3978 $logdata{rdns_id} = $revid;
3979 my @ftmp = split /,/, $fields;
3980 for (my $i=0; $i <= $#vallist; $i++) {
3981 $logdata{domain_id} = $vallist[$i] if $ftmp[$i] eq 'domain_id';
3982 $logdata{rdns_id} = $vallist[$i] if $ftmp[$i] eq 'rdns_id';
3983 }
3984 $logdata{group_id} = $parid if $defrec eq 'y';
3985 $logdata{group_id} = $self->parentID(id => $parid, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec)
3986 if $defrec eq 'n';
3987 $logdata{entry} = "Updated ".($defrec eq 'y' ? 'default record' : 'record')." from\n";
3988 # NS records for revzones get special treatment
3989 if ($revrec eq 'y' && $$rectype == 2) {
3990 $logdata{entry} .= " '$oldrec->{val} $typemap{$oldrec->{type}} $oldrec->{host}";
3991 } else {
3992 $logdata{entry} .= " '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}";
3993 }
3994 $logdata{entry} .= " [distance $oldrec->{distance}]" if $typemap{$oldrec->{type}} eq 'MX';
3995 $logdata{entry} .= " [priority $oldrec->{distance}] [weight $oldrec->{weight}] [port $oldrec->{port}]"
3996 if $typemap{$oldrec->{type}} eq 'SRV';
3997 $logdata{entry} .= "', TTL $oldrec->{ttl}";
3998 $logdata{entry} .= ", location ".$self->getLoc($oldrec->{location})->{description} if $oldrec->{location};
3999 $logdata{entry} .= ($oldrec->{expires} ? ', expires at ' : ', valid after ').$oldrec->{stamp}
4000 if $oldrec->{stampactive};
4001 $logdata{entry} .= "\nto\n";
4002 # More NS special
4003 if ($revrec eq 'y' && $$rectype == 2) {
4004 $logdata{entry} .= "'$$val $typemap{$$rectype} $$host";
4005 } else {
4006 $logdata{entry} .= "'$$host $typemap{$$rectype} $$val";
4007 }
4008 $logdata{entry} .= " [distance $dist]" if $typemap{$$rectype} eq 'MX';
4009 $logdata{entry} .= " [priority $dist] [weight $weight] [port $port]" if $typemap{$$rectype} eq 'SRV';
4010 $logdata{entry} .= "', TTL $ttl";
4011 $logdata{entry} .= ", location ".$self->getLoc($location)->{description} if $location;
4012 $logdata{entry} .= ($expires eq 'after' ? ', valid after ' : ', expires at ').$stamp if $stamp;
4013
4014 local $dbh->{AutoCommit} = 0;
4015 local $dbh->{RaiseError} = 1;
4016
4017 # Fiddle the field list into something suitable for updates
4018 $fields =~ s/,/=?,/g;
4019 $fields .= "=?";
4020
4021 eval {
4022 $dbh->do("UPDATE "._rectable($defrec,$revrec)." SET $fields WHERE record_id=?", undef, (@vallist, $id) );
4023 $self->_log(%logdata);
4024 $dbh->commit;
4025 };
4026 if ($@) {
4027 my $msg = $@;
4028 eval { $dbh->rollback; };
4029 if ($self->{log_failures}) {
4030 $logdata{entry} = "Failed updating ".($defrec eq 'y' ? 'default ' : '').
4031 "record '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}', TTL $oldrec->{ttl} ($msg)";
4032 $self->_log(%logdata);
4033 $dbh->commit;
4034 }
4035 return ('FAIL', $msg);
4036 }
4037
4038 $resultstr = $logdata{entry};
4039 return ($retcode, $retmsg);
4040} # end updateRec()
4041
4042
4043## DNSDB::downconvert()
4044# A mostly internal (not exported) semiutilty sub to downconvert from pseudotype <x>
4045# to a compatible component type. Only a handful of operations are valid, anything
4046# else is a null-op.
4047# Takes the record ID and the new type. Returns boolean.
4048sub downconvert {
4049 my $self = shift;
4050 my $dbh = $self->{dbh};
4051 my $recid = shift;
4052 my $newtype = shift;
4053
4054 # also, only work on live records; little to no value trying to do this on default records.
4055 my $rec = $self->getRecLine('n', 'y', $recid);
4056
4057 # hm?
4058 #return 1 if !$rec;
4059
4060 return 1 if $rec->{type} < 65000; # Only the reverse-record pseudotypes can be downconverted
4061 return 1 if $rec->{type} == 65282; # Nowhere to go
4062
4063 my $delpar;
4064 my @sqlargs;
4065 if ($rec->{type} == 65280) {
4066 return 1 if $newtype != 1 && $newtype != 12;
4067 $delpar = ($newtype == 1 ? 'rdns_id' : 'domain_id');
4068 push @sqlargs, 0, $newtype, $recid;
4069 } elsif ($rec->{type} == 65281) {
4070 return 1 if $newtype != 28 && $newtype != 12;
4071 $delpar = ($newtype == 28 ? 'rdns_id' : 'domain_id');
4072 push @sqlargs, 0, $newtype, $recid;
4073 } elsif ($rec->{type} == 65283) {
4074 return 1 if $newtype != 65282;
4075 $delpar = 'rdns_id';
4076 } elsif ($rec->{type} == 65284) {
4077 return 1 if $newtype != 65282;
4078 $delpar = 'rdns_id';
4079 } else {
4080 # Your llama is on fire.
4081 }
4082
4083 local $dbh->{AutoCommit} = 0;
4084 local $dbh->{RaiseError} = 1;
4085
4086 eval {
4087 $dbh->do("UPDATE records SET $delpar = ?, type = ? WHERE record_id = ?", undef, @sqlargs);
4088 $dbh->commit;
4089 };
4090 if ($@) {
4091 $errstr = $@;
4092 eval { $dbh->rollback; };
4093 return 0;
4094 }
4095 return 1;
4096} # end downconvert()
4097
4098
4099## DNSDB::delRec()
4100# Delete a record.
4101sub delRec {
4102 $errstr = '';
4103 my $self = shift;
4104 my $dbh = $self->{dbh};
4105 my $defrec = shift;
4106 my $revrec = shift;
4107 my $id = shift;
4108
4109 my $oldrec = $self->getRecLine($defrec, $revrec, $id);
4110
4111 # Allow transactions, and raise an exception on errors so we can catch it later.
4112 # Use local to make sure these get "reset" properly on exiting this block
4113 local $dbh->{AutoCommit} = 0;
4114 local $dbh->{RaiseError} = 1;
4115
4116 # Put together the log entry
4117 my %logdata;
4118 $logdata{domain_id} = $oldrec->{domain_id};
4119 $logdata{rdns_id} = $oldrec->{rdns_id};
4120 $logdata{group_id} = $oldrec->{group_id} if $defrec eq 'y';
4121 $logdata{group_id} = $self->parentID(id => $oldrec->{domain_id}, type => ($revrec eq 'n' ? 'domain' : 'revzone'),
4122 revrec => $revrec)
4123 if $defrec eq 'n';
4124 $logdata{entry} = "Deleted ".($defrec eq 'y' ? 'default record ' : 'record ').
4125 "'$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}";
4126 $logdata{entry} .= " [distance $oldrec->{distance}]" if $typemap{$oldrec->{type}} eq 'MX';
4127 $logdata{entry} .= " [priority $oldrec->{distance}] [weight $oldrec->{weight}] [port $oldrec->{port}]"
4128 if $typemap{$oldrec->{type}} eq 'SRV';
4129 $logdata{entry} .= "', TTL $oldrec->{ttl}";
4130 $logdata{entry} .= ", location ".$self->getLoc($oldrec->{location})->{description} if $oldrec->{location};
4131
4132 eval {
4133 my $sth = $dbh->do("DELETE FROM "._rectable($defrec,$revrec)." WHERE record_id=?", undef, ($id));
4134 $self->_log(%logdata);
4135 $dbh->commit;
4136 };
4137 if ($@) {
4138 my $msg = $@;
4139 eval { $dbh->rollback; };
4140 if ($self->{log_failures}) {
4141 $logdata{entry} = "Error deleting ".($defrec eq 'y' ? 'default record' : 'record').
4142 " '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}', TTL $oldrec->{ttl} ($msg)";
4143 $self->_log(%logdata);
4144 $dbh->commit;
4145 }
4146 return ('FAIL', $msg);
4147 }
4148
4149 return ('OK',$logdata{entry});
4150} # end delRec()
4151
4152
4153## DNSDB::getLogCount()
4154# Get a count of log entries
4155# Takes a database handle and a hash containing at least:
4156# - Entity ID and entity type as the primary log "slice"
4157sub getLogCount {
4158 my $self = shift;
4159 my $dbh = $self->{dbh};
4160
4161 my %args = @_;
4162
4163 my @filterargs;
4164##fixme: which fields do we want to filter on?
4165# push @filterargs,
4166
4167 $errstr = 'Missing primary parent ID and/or type';
4168 # fail early if we don't have a "prime" ID to look for log entries for
4169 return if !$args{id};
4170
4171 # or if the prime id type is missing or invalid
4172 return if !$args{logtype};
4173 $args{logtype} = 'revzone' if $args{logtype} eq 'rdns'; # hack pthui
4174 $args{logtype} = 'domain' if $args{logtype} eq 'dom'; # hack pthui
4175 return if !grep /^$args{logtype}$/, ('group', 'domain', 'revzone', 'user');
4176
4177 my $sql = "SELECT count(*) FROM log ".
4178 "WHERE $id_col{$args{logtype}}=?".
4179 ($args{filter} ? " AND entry ~* ?" : '');
4180 my ($count) = $dbh->selectrow_array($sql, undef, ($args{id}, @filterargs) );
4181 $errstr = $dbh->errstr if !$count;
4182 return $count;
4183} # end getLogCount()
4184
4185
4186## DNSDB::getLogEntries()
4187# Get a list of log entries
4188# Takes arguments as with getLogCount() above, plus optional:
4189# - sort field
4190# - sort order
4191# - offset for pagination
4192sub getLogEntries {
4193 my $self = shift;
4194 my $dbh = $self->{dbh};
4195
4196 my %args = @_;
4197
4198 my @filterargs;
4199
4200 # fail early if we don't have a "prime" ID to look for log entries for
4201 return if !$args{id};
4202
4203 # or if the prime id type is missing or invalid
4204 return if !$args{logtype};
4205 $args{logtype} = 'revzone' if $args{logtype} eq 'rdns'; # hack pthui
4206 $args{logtype} = 'domain' if $args{logtype} eq 'dom'; # hack pthui
4207 return if !grep /^$args{logtype}$/, ('group', 'domain', 'revzone', 'user');
4208
4209 # Sorting defaults
4210 $args{sortorder} = 'DESC' if !$args{sortorder} || !grep /^$args{sortorder}$/, ('ASC','DESC');
4211 $args{sortby} = 'stamp' if !$args{sortby} || $args{sortby} !~ /^[\w_.]+$/;
4212 $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
4213
4214 my %sortmap = (fname => 'name', username => 'email', entry => 'entry', stamp => 'stamp');
4215 $args{sortby} = $sortmap{$args{sortby}};
4216
4217 my $sql = "SELECT user_id AS userid, email AS useremail, name AS userfname, entry AS logentry, ".
4218 "date_trunc('second',stamp) AS logtime ".
4219 "FROM log ".
4220 "WHERE $id_col{$args{logtype}}=?".
4221 ($args{filter} ? " AND entry ~* ?" : '').
4222 " ORDER BY $args{sortby} $args{sortorder}, log_id $args{sortorder}".
4223 ($args{offset} eq 'all' ? '' : " LIMIT $self->{perpage} OFFSET ".$args{offset}*$self->{perpage});
4224 my $loglist = $dbh->selectall_arrayref($sql, { Slice => {} }, ($args{id}, @filterargs) );
4225 $errstr = $dbh->errstr if !$loglist;
4226 return $loglist;
4227} # end getLogEntries()
4228
4229
4230## IPDB::getRevPattern()
4231# Get the narrowest template pattern applicable to a passed CIDR address (may be a netblock or an IP)
4232sub getRevPattern {
4233 my $self = shift;
4234 my $dbh = $self->{dbh};
4235 my $cidr = shift;
4236 my $group = shift || 1; # just in case
4237
4238 # for speed! Casting and comparing even ~7K records takes ~2.5s, so narrow it down to one revzone first.
4239 my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet >>= ? AND group_id = ?",
4240 undef, ($cidr, $group) );
4241
4242##fixme? may need to narrow things down more by octet-chopping and doing text comparisons before casting.
4243 my ($revpatt) = $dbh->selectrow_array("SELECT host FROM records ".
4244 "WHERE (type in (12,65280,65281,65282,65283,65284)) AND rdns_id = ? AND CAST (val AS inet) >>= ? ".
4245 "ORDER BY CAST (val AS inet) DESC LIMIT 1", undef, ($revid, $cidr) );
4246 return $revpatt;
4247} # end getRevPattern()
4248
4249
4250## DNSDB::getTypelist()
4251# Get a list of record types for various UI dropdowns
4252# Takes database handle, forward/reverse/lookup flag, and optional "tag as selected" indicator (defaults to A)
4253# Returns an arrayref to list of hashrefs perfect for HTML::Template
4254sub getTypelist {
4255 my $self = shift;
4256 my $dbh = $self->{dbh};
4257 my $recgroup = shift;
4258 my $type = shift || $reverse_typemap{A};
4259
4260 # also accepting $webvar{revrec}!
4261 $recgroup = 'f' if $recgroup eq 'n';
4262 $recgroup = 'r' if $recgroup eq 'y';
4263
4264 my $sql = "SELECT val,name FROM rectypes WHERE ";
4265 if ($recgroup eq 'r') {
4266 # reverse zone types
4267 $sql .= "stdflag=2 OR stdflag=3";
4268 } elsif ($recgroup eq 'l') {
4269 # DNS lookup types. Note we avoid our custom types >= 65280, since those are entirely internal.
4270 $sql .= "(stdflag=1 OR stdflag=2 OR stdflag=3) AND val < 65280";
4271 } else {
4272 # default; forward zone types. technically $type eq 'f' but not worth the error message.
4273 $sql .= "stdflag=1 OR stdflag=2";
4274 $sql .= " AND val < 65280" if $recgroup eq 'fo'; # An extra flag to trim off the pseudotypes as well.
4275 }
4276 $sql .= " ORDER BY listorder";
4277
4278 my $sth = $dbh->prepare($sql);
4279 $sth->execute;
4280 my @typelist;
4281 while (my ($rval,$rname) = $sth->fetchrow_array()) {
4282 my %row = ( recval => $rval, recname => $rname );
4283 $row{tselect} = 1 if $rval == $type;
4284 push @typelist, \%row;
4285 }
4286
4287 # Add SOA on lookups since it's not listed in other dropdowns.
4288 if ($recgroup eq 'l') {
4289 my %row = ( recval => $reverse_typemap{SOA}, recname => 'SOA' );
4290 $row{tselect} = 1 if $reverse_typemap{SOA} == $type;
4291 push @typelist, \%row;
4292 }
4293
4294 return \@typelist;
4295} # end getTypelist()
4296
4297
4298## DNSDB::parentID()
4299# Get ID of entity that is nearest parent to requested id
4300# Takes a database handle and a hash of entity ID, entity type, optional parent type flag
4301# (domain/reverse zone or group), and optional default/live and forward/reverse flags
4302# Returns the ID or undef on failure
4303sub parentID {
4304 my $self = shift;
4305 my $dbh = $self->{dbh};
4306
4307 my %args = @_;
4308
4309 # clean up the parent-type. Set it to group if not set; coerce revzone to domain for simpler logic
4310 $args{partype} = 'group' if !$args{partype};
4311 $args{partype} = 'domain' if $args{partype} eq 'revzone';
4312
4313 # clean up defrec and revrec. default to live record, forward zone
4314 $args{defrec} = 'n' if !$args{defrec};
4315 $args{revrec} = 'n' if !$args{revrec};
4316
4317 if ($par_type{$args{partype}} eq 'domain') {
4318 # only live records can have a domain/zone parent
4319 return unless ($args{type} eq 'record' && $args{defrec} eq 'n');
4320 my $result = $dbh->selectrow_hashref("SELECT ".($args{revrec} eq 'n' ? 'domain_id' : 'rdns_id').
4321 " FROM records WHERE record_id = ?",
4322 undef, ($args{id}) ) or return;
4323 return $result;
4324 } else {
4325 # snag some arguments that will either fall through or be overwritten to save some code duplication
4326 my $tmpid = $args{id};
4327 my $type = $args{type};
4328 if ($type eq 'record' && $args{defrec} eq 'n') {
4329 # Live records go through the records table first.
4330 ($tmpid) = $dbh->selectrow_array("SELECT ".($args{revrec} eq 'n' ? 'domain_id' : 'rdns_id').
4331 " FROM records WHERE record_id = ?",
4332 undef, ($args{id}) ) or return;
4333 $type = ($args{revrec} eq 'n' ? 'domain' : 'revzone');
4334 }
4335 my ($result) = $dbh->selectrow_array("SELECT $par_col{$type} FROM $par_tbl{$type} WHERE $id_col{$type} = ?",
4336 undef, ($tmpid) );
4337 return $result;
4338 }
4339# should be impossible to get here with even remotely sane arguments
4340 return;
4341} # end parentID()
4342
4343
4344## DNSDB::isParent()
4345# Returns true if $id1 is a parent of $id2, false otherwise
4346sub isParent {
4347 my $self = shift;
4348 my $dbh = $self->{dbh};
4349 my $id1 = shift;
4350 my $type1 = shift;
4351 my $id2 = shift;
4352 my $type2 = shift;
4353##todo: immediate, secondary, full (default)
4354
4355 # Return false on invalid types
4356 return 0 if !grep /^$type1$/, ('record','defrec','defrevrec','user','domain','revzone','group');
4357 return 0 if !grep /^$type2$/, ('record','defrec','defrevrec','user','domain','revzone','group');
4358
4359 # Return false on impossible relations
4360 return 0 if $type1 eq 'record'; # nothing may be a child of a record
4361 return 0 if $type1 eq 'defrec'; # nothing may be a child of a record
4362 return 0 if $type1 eq 'defrevrec'; # nothing may be a child of a record
4363 return 0 if $type1 eq 'user'; # nothing may be child of a user
4364 return 0 if $type1 eq 'domain' && $type2 ne 'record'; # domain may not be a parent of anything other than a record
4365 return 0 if $type1 eq 'revzone' && $type2 ne 'record';# reverse zone may not be a parent of anything other than a record
4366
4367 # ennnhhhh.... if we're passed an id of 0, it will never be found. usual
4368 # case would be the UI creating a new <thing>, and so we don't have an ID for
4369 # <thing> to look up yet. in that case the UI should check the parent as well.
4370 return 0 if $id1 == 0; # nothing can have a parent id of 0
4371 return 1 if $id2 == 0; # anything could have a child id of 0 (or "unknown")
4372
4373 # group 1 is the ultimate root parent
4374 return 1 if $type1 eq 'group' && $id1 == 1;
4375
4376 # groups are always (a) parent of themselves
4377 return 1 if $type1 eq 'group' && $type2 eq 'group' && $id1 == $id2;
4378
4379 my $id = $id2;
4380 my $type = $type2;
4381 my $foundparent = 0;
4382
4383 # Records are the only entity with two possible parents. We need to split the parent checks on
4384 # domain/rdns.
4385 if ($type eq 'record') {
4386 my ($dom,$rdns) = $dbh->selectrow_array("SELECT domain_id,rdns_id FROM records WHERE record_id=?",
4387 undef, ($id));
4388 # check immediate parent against request
4389 return 1 if $type1 eq 'domain' && $id1 == $dom;
4390 return 1 if $type1 eq 'revzone' && $id1 == $rdns;
4391 # if request is group, check *both* parents. Only check if the parent is nonzero though.
4392 return 1 if $dom && $self->isParent($id1, $type1, $dom, 'domain');
4393 return 1 if $rdns && $self->isParent($id1, $type1, $rdns, 'revzone');
4394 # exit here since we've executed the loop below by proxy in the above recursive calls.
4395 return 0;
4396 }
4397
4398# almost the same loop as getParents() above
4399 my $limiter = 0;
4400 while (1) {
4401 my $sql = "SELECT $par_col{$type} FROM $par_tbl{$type} WHERE $id_col{$type} = ?";
4402 my $result = $dbh->selectrow_hashref($sql,
4403 undef, ($id) );
4404 if (!$result) {
4405 $limiter++;
4406##fixme: how often will this happen on a live site? fail at max limiter <n>?
4407# 2013/10/22 only seems to happen when you request an entity that doesn't exist.
4408 warn "no results looking for $sql with id $id (depth $limiter)\n";
4409 last;
4410 }
4411 if ($result && $result->{$par_col{$type}} == $id1) {
4412 $foundparent = 1;
4413 last;
4414 } else {
4415##fixme: do we care about trying to return a "no such record/domain/user/group" error?
4416# should be impossible to create an inconsistent DB just with API calls.
4417 warn $dbh->errstr." $sql, $id" if $dbh->errstr;
4418 }
4419 # group 1 is its own parent. need this here more to break strange loops than for detecting a parent
4420 last if $result->{$par_col{$type}} == 1;
4421 $id = $result->{$par_col{$type}};
4422 $type = $par_type{$type};
4423 }
4424
4425 return $foundparent;
4426} # end isParent()
4427
4428
4429## DNSDB::zoneStatus()
4430# Returns and optionally sets a zone's status
4431# Takes a database handle, domain/revzone ID, forward/reverse flag, and optionally a status argument
4432# Returns status, or undef on errors.
4433sub zoneStatus {
4434 my $self = shift;
4435 my $dbh = $self->{dbh};
4436 my $id = shift;
4437 my $revrec = shift;
4438 my $newstatus = shift || 'mu';
4439
4440 return undef if $id !~ /^\d+$/;
4441
4442 # Allow transactions, and raise an exception on errors so we can catch it later.
4443 # Use local to make sure these get "reset" properly on exiting this block
4444 local $dbh->{AutoCommit} = 0;
4445 local $dbh->{RaiseError} = 1;
4446
4447 if ($newstatus ne 'mu') {
4448 # ooo, fun! let's see what we were passed for status
4449 eval {
4450 $newstatus = 0 if $newstatus eq 'domoff';
4451 $newstatus = 1 if $newstatus eq 'domon';
4452 $dbh->do("UPDATE ".($revrec eq 'n' ? 'domains' : 'revzones')." SET status=? WHERE ".
4453 ($revrec eq 'n' ? 'domain_id' : 'rdns_id')."=?", undef, ($newstatus,$id) );
4454
4455##fixme switch to more consise "Enabled <domain"/"Disabled <domain>" as with users?
4456 $resultstr = "Changed ".($revrec eq 'n' ? $self->domainName($id) : $self->revName($id)).
4457 " state to ".($newstatus ? 'active' : 'inactive');
4458
4459 my %loghash;
4460 $loghash{domain_id} = $id if $revrec eq 'n';
4461 $loghash{rdns_id} = $id if $revrec eq 'y';
4462 $loghash{group_id} = $self->parentID(id => $id, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec);
4463 $loghash{entry} = $resultstr;
4464 $self->_log(%loghash);
4465
4466 $dbh->commit;
4467 };
4468 if ($@) {
4469 my $msg = $@;
4470 eval { $dbh->rollback; };
4471 $resultstr = '';
4472 $errstr = $msg;
4473 return;
4474 }
4475 }
4476
4477 my ($status) = $dbh->selectrow_array("SELECT status FROM ".
4478 ($revrec eq 'n' ? "domains WHERE domain_id=?" : "revzones WHERE rdns_id=?"),
4479 undef, ($id) );
4480 return $status;
4481} # end zoneStatus()
4482
4483
4484## DNSDB::getZonesByCIDR()
4485# Get a list of zone names and IDs that records for a passed CIDR block are within.
4486sub getZonesByCIDR {
4487 my $self = shift;
4488 my $dbh = $self->{dbh};
4489 my %args = @_;
4490
4491 my $result = $dbh->selectall_arrayref("SELECT rdns_id,revnet FROM revzones WHERE revnet >>= ? OR revnet <<= ?",
4492 { Slice => {} }, ($args{cidr}, $args{cidr}) );
4493 return $result;
4494} # end getZonesByCIDR()
4495
4496
4497## DNSDB::importAXFR
4498# Import a domain via AXFR
4499# Takes AXFR host, domain to transfer, group to put the domain in,
4500# and an optional hash containing:
4501# status - active/inactive state flag (defaults to active)
4502# rwsoa - overwrite-SOA flag (defaults to off)
4503# rwns - overwrite-NS flag (defaults to off, doesn't affect subdomain NS records)
4504# merge - flag to automerge A or AAAA records with matching PTR records
4505# Returns a status code (OK, WARN, or FAIL) and message - message should be blank
4506# if status is OK, but WARN includes conditions that are not fatal but should
4507# really be reported.
4508sub importAXFR {
4509 my $self = shift;
4510 my $dbh = $self->{dbh};
4511 my $ifrom_in = shift;
4512 my $zone = shift;
4513 my $group = shift;
4514
4515 my %args = @_;
4516
4517##fixme: add mode to delete&replace, merge+overwrite, merge new?
4518
4519 $args{status} = (defined($args{status}) ? $args{status} : 0);
4520 $args{status} = 1 if $args{status} eq 'on';
4521
4522 my $nrecs = 0;
4523 my $soaflag = 0;
4524 my $nsflag = 0;
4525 my $warnmsg = '';
4526 my $ifrom;
4527
4528 my $rev = 'n';
4529 my $code = 'OK';
4530 my $msg = 'foobar?';
4531
4532 # choke on possible bad setting in ifrom
4533 # IPv4 and v6, and valid hostnames!
4534 ($ifrom) = ($ifrom_in =~ /^([0-9a-f\:.]+|[0-9a-z_.-]+)$/i);
4535 return ('FAIL', "Bad AXFR source host $ifrom")
4536 unless ($ifrom) = ($ifrom_in =~ /^([0-9a-f\:.]+|[0-9a-z_.-]+)$/i);
4537
4538 my $errmsg;
4539
4540 my $zone_id;
4541 my $domain_id = 0;
4542 my $rdns_id = 0;
4543 my $cidr;
4544
4545# magic happens! detect if we're importing a domain or a reverse zone
4546# while we're at it, figure out what the CIDR netblock is (if we got a .arpa)
4547# or what the formal .arpa zone is (if we got a CIDR netblock)
4548# Handles sub-octet v4 zones in the format specified in the Cricket Book, 2nd Ed, p217-218
4549
4550 if ($zone =~ m{(?:\.arpa\.?|/\d+)$}) {
4551 # we seem to have a reverse zone
4552 $rev = 'y';
4553
4554 if ($zone =~ /\.arpa\.?$/) {
4555 # we have a formal reverse zone. call _zone2cidr and get the CIDR block.
4556 ($code,$msg) = _zone2cidr($zone);
4557 return ($code, $msg) if $code eq 'FAIL';
4558 $cidr = $msg;
4559 } elsif ($zone =~ m|^[\d.]+/\d+$|) {
4560 # v4 revzone, CIDR netblock
4561 $cidr = NetAddr::IP->new($zone) or return ('FAIL',"$zone is not a valid CIDR block");
4562 $zone = _ZONE($cidr, 'ZONE.in-addr.arpa', 'r', '.');
4563 } elsif ($zone =~ m|^[a-fA-F\d:]+/\d+$|) {
4564 # v6 revzone, CIDR netblock
4565 $cidr = NetAddr::IP->new($zone) or return ('FAIL',"$zone is not a valid CIDR block");
4566 return ('FAIL', "$zone is not a nibble-aligned block") if $cidr->masklen % 4 != 0;
4567 $zone = _ZONE($cidr, 'ZONE.ip6.arpa', 'r', '.');
4568 } else {
4569 # there is. no. else!
4570 return ('FAIL', "Unknown zone name format");
4571 }
4572
4573 # quick check to start to see if we've already got one
4574
4575 ($zone_id) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet=?",
4576 undef, ("$cidr"));
4577 $rdns_id = $zone_id;
4578 } else {
4579 # default to domain
4580 ($zone_id) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)",
4581 undef, ($zone));
4582 $domain_id = $zone_id;
4583 }
4584
4585 return ('FAIL', ($rev eq 'n' ? 'Domain' : 'Reverse zone')." already exists") if $zone_id;
4586
4587 # little local utility sub to swap $val and $host for revzone records.
4588 sub _revswap {
4589 my $rechost = shift;
4590 my $recdata = shift;
4591
4592 if ($rechost =~ /\.in-addr\.arpa\.?$/) {
4593 $rechost =~ s/\.in-addr\.arpa\.?$//;
4594 $rechost = join '.', reverse split /\./, $rechost;
4595 } else {
4596 $rechost =~ s/\.ip6\.arpa\.?$//;
4597 my @nibs = reverse split /\./, $rechost;
4598 $rechost = '';
4599 my $nc;
4600 foreach (@nibs) {
4601 $rechost.= $_;
4602 $rechost .= ":" if ++$nc % 4 == 0 && $nc < 32;
4603 }
4604 $rechost .= ":" if $nc < 32 && $rechost !~ /\*$/; # close netblock records?
4605##fixme: there's a case that ends up with a partial entry here:
4606# ip:add:re:ss::
4607# can't reproduce after letting it sit overnight after discovery. :(
4608#print "$rechost\n";
4609 # canonicalize with NetAddr::IP
4610 $rechost = NetAddr::IP->new($rechost)->addr unless $rechost =~ /\*$/;
4611 }
4612 return ($recdata,$rechost)
4613 }
4614
4615
4616 # Allow transactions, and raise an exception on errors so we can catch it later.
4617 # Use local to make sure these get "reset" properly on exiting this block
4618 local $dbh->{AutoCommit} = 0;
4619 local $dbh->{RaiseError} = 1;
4620
4621 my $sth;
4622 eval {
4623
4624 if ($rev eq 'n') {
4625##fixme: serial
4626 $dbh->do("INSERT INTO domains (domain,group_id,status) VALUES (?,?,?)", undef,
4627 ($zone, $group, $args{status}) );
4628 # get domain id so we can do the records
4629 ($zone_id) = $dbh->selectrow_array("SELECT currval('domains_domain_id_seq')");
4630 $domain_id = $zone_id;
4631 $self->_log(group_id => $group, domain_id => $domain_id,
4632 entry => "[Added ".($args{status} ? 'active' : 'inactive')." domain $zone via AXFR]");
4633 } else {
4634##fixme: serial
4635 $dbh->do("INSERT INTO revzones (revnet,group_id,status) VALUES (?,?,?)", undef,
4636 ($cidr,$group,$args{status}) );
4637 # get revzone id so we can do the records
4638 ($zone_id) = $dbh->selectrow_array("SELECT currval('revzones_rdns_id_seq')");
4639 $rdns_id = $zone_id;
4640 $self->_log(group_id => $group, rdns_id => $rdns_id,
4641 entry => "[Added ".($args{status} ? 'active' : 'inactive')." reverse zone $cidr via AXFR]");
4642 }
4643
4644## bizarre DBI<->Net::DNS interaction bug:
4645## sometimes a zone will cause an immediate commit-and-exit (sort of) of the while()
4646## fixed, apparently I was doing *something* odd, but not certain what it was that
4647## caused a commit instead of barfing
4648
4649 my $res = Net::DNS::Resolver->new;
4650 $res->nameservers($ifrom);
4651 $res->axfr_start($zone)
4652 or die "Couldn't begin AXFR\n";
4653
4654 $sth = $dbh->prepare("INSERT INTO records (domain_id,rdns_id,host,type,val,distance,weight,port,ttl)".
4655 " VALUES (?,?,?,?,?,?,?,?,?)");
4656
4657 # Stash info about sub-octet v4 revzones here so we don't have
4658 # to store the CNAMEs used to delegate a suboctet zone
4659 # $suboct{zone}{ns}[] -> array of nameservers
4660 # $suboct{zone}{cname}[] -> array of extant CNAMEs (Just In Case someone did something bizarre)
4661## commented pending actual use of this data. for now, we'll just
4662## auto-(re)create the CNAMEs in revzones on export
4663# my %suboct;
4664
4665 while (my $rr = $res->axfr_next()) {
4666
4667 my $val;
4668 my $distance = 0;
4669 my $weight = 0;
4670 my $port = 0;
4671 my $logfrag = '';
4672
4673 my $type = $rr->type;
4674 my $host = $rr->name;
4675 my $ttl = ($args{newttl} ? $args{newttl} : $rr->ttl); # allow force-override TTLs
4676
4677 $soaflag = 1 if $type eq 'SOA';
4678 $nsflag = 1 if $type eq 'NS';
4679
4680# "Primary" types:
4681# A, NS, CNAME, SOA, PTR(warn in forward), MX, TXT, AAAA, SRV, A6(ob), SPF
4682# maybe KEY
4683
4684# BIND supports:
4685# [standard]
4686# A AAAA CNAME MX NS PTR SOA TXT
4687# [variously experimental, obsolete, or obscure]
4688# 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
4689# ... if one can ever find the right magic to format them correctly
4690
4691# Net::DNS supports:
4692# RRSIG SIG NSAP NS NIMLOC NAPTR MX MR MINFO MG MB LOC ISDN IPSECKEY HINFO
4693# EID DNAME CNAME CERT APL AFSDB AAAA A DS NXT NSEC3PARAM NSEC3 NSEC KEY
4694# DNSKEY DLV X25 TXT TSIG TKEY SSHFP SRV SPF SOA RT RP PX PTR NULL APL::AplItem
4695
4696# nasty big ugly case-like thing here, since we have to do *some* different
4697# processing depending on the record. le sigh.
4698
4699##fixme: what record types other than TXT can/will have >255-byte payloads?
4700
4701 if ($type eq 'A') {
4702 $val = $rr->address;
4703 } elsif ($type eq 'NS') {
4704# hmm. should we warn here if subdomain NS'es are left alone?
4705 next if ($args{rwns} && ($rr->name eq $zone));
4706 if ($rev eq 'y') {
4707 # revzones have records more or less reversed from forward zones.
4708 my ($tmpcode,$tmpmsg) = _zone2cidr($host);
4709 die "Error converting NS record: $tmpmsg\n" if $tmpcode eq 'FAIL'; # hmm. may not make sense...
4710 $val = "$tmpmsg";
4711 $host = $rr->nsdname;
4712 $logfrag = "Added record '$val $type $host', TTL $ttl";
4713# Tag and preserve. For now this is commented for a no-op, but we have Ideas for
4714# another custom storage type ("DELEGATE") that will use these subzone-delegation records
4715#if ($val ne "$cidr") {
4716# push @{$suboct{$val}{ns}}, $host;
4717#}
4718 } else {
4719 $val = $rr->nsdname;
4720 }
4721 $nsflag = 1;
4722 } elsif ($type eq 'CNAME') {
4723 if ($rev eq 'y') {
4724 # hmm. do we even want to bother with storing these at this level? Sub-octet delegation
4725 # by CNAME is essentially a record-publication hack, and we want to just represent the
4726 # "true" logical intentions as far down the stack as we can from the UI.
4727 ($host,$val) = _revswap($host,$rr->cname);
4728 $logfrag = "Added record '$val $type $host', TTL $ttl";
4729# Tag and preserve in case we want to commit them as-is later, but mostly we don't care.
4730# Commented pending actually doing something with possibly new type DELEGATE
4731#my $tmprev = $host;
4732#$tmprev =~ s/^\d+\.//;
4733#($code,$tmprev) = _zone2cidr($tmprev);
4734#push @{$suboct{"$tmprev"}{cname}}, $val;
4735 # Silently skip CNAMEs in revzones.
4736 next;
4737 } else {
4738 $val = $rr->cname;
4739 }
4740 } elsif ($type eq 'SOA') {
4741 next if $args{rwsoa};
4742 $host = $rr->rname.":".$rr->mname;
4743 $val = $rr->refresh.":".$rr->retry.":".$rr->expire.":".$rr->minimum;
4744 $soaflag = 1;
4745 } elsif ($type eq 'PTR') {
4746 ($host,$val) = _revswap($host,$rr->ptrdname);
4747 $logfrag = "Added record '$val $type $host', TTL $ttl";
4748 # hmm. PTR records should not be in forward zones.
4749 } elsif ($type eq 'MX') {
4750 $val = $rr->exchange;
4751 $distance = $rr->preference;
4752 } elsif ($type eq 'TXT') {
4753##fixme: Net::DNS docs say this should be deprecated for rdatastr() or char_str_list(),
4754## but don't really seem enthusiastic about it.
4755#print "should use rdatastr:\n\t".$rr->rdatastr."\n or char_str_list:\n\t".join(' ',$rr->char_str_list())."\n";
4756# rdatastr returns a BIND-targetted logical string, including opening and closing quotes
4757# char_str_list returns a list of the individual string fragments in the record
4758# txtdata returns the more useful all-in-one form (since we want to push such protocol
4759# details as far down the stack as we can)
4760# NB: this may turn out to be more troublesome if we ever have need of >512-byte TXT records.
4761 if ($rev eq 'y') {
4762 ($host,$val) = _revswap($host,$rr->txtdata);
4763 $logfrag = "Added record '$val $type $host', TTL $ttl";
4764 } else {
4765 $val = $rr->txtdata;
4766 }
4767 } elsif ($type eq 'SPF') {
4768##fixme: and the same caveat here, since it is apparently a clone of ::TXT
4769 $val = $rr->txtdata;
4770 } elsif ($type eq 'AAAA') {
4771 $val = $rr->address;
4772 } elsif ($type eq 'SRV') {
4773 $val = $rr->target;
4774 $distance = $rr->priority;
4775 $weight = $rr->weight;
4776 $port = $rr->port;
4777 } elsif ($type eq 'KEY') {
4778 # we don't actually know what to do with these...
4779 $val = $rr->flags.":".$rr->protocol.":".$rr->algorithm.":".$rr->key.":".$rr->keytag.":".$rr->privatekeyname;
4780 } else {
4781 $val = $rr->rdatastr;
4782 # Finding a different record type is not fatal.... just problematic.
4783 # We may not be able to export it correctly.
4784 $warnmsg .= "Unusual record ".$rr->name." ($type) found\n";
4785 }
4786
4787 my $logentry = "[AXFR ".($rev eq 'n' ? $zone : $cidr)."] ";
4788
4789 if ($args{merge}) {
4790 if ($rev eq 'n') {
4791 # importing a domain; we have A and AAAA records that could be merged with matching PTR records
4792 my $etype;
4793 my ($erdns,$erid,$ettl) = $dbh->selectrow_array("SELECT rdns_id,record_id,ttl FROM records ".
4794 "WHERE host=? AND val=? AND type=12",
4795 undef, ($host, $val) );
4796 if ($erid) {
4797 if ($type eq 'A') { # PTR -> A+PTR
4798 $etype = 65280;
4799 $logentry .= "Merged A record with existing PTR record '$host A+PTR $val', TTL $ettl";
4800 }
4801 if ($type eq 'AAAA') { # PTR -> AAAA+PTR
4802 $etype = 65281;
4803 $logentry .= "Merged AAAA record with existing PTR record '$host AAAA+PTR $val', TTL $ettl";
4804 }
4805 $ettl = ($ettl < $ttl ? $ettl : $ttl); # use lower TTL
4806 $dbh->do("UPDATE records SET domain_id=?,ttl=?,type=? WHERE record_id=?", undef,
4807 ($domain_id, $ettl, $etype, $erid));
4808 $nrecs++;
4809 $self->_log(group_id => $group, domain_id => $domain_id, rdns_id => $erdns, entry => $logentry);
4810 next; # while axfr_next
4811 }
4812 } # $rev eq 'n'
4813 else {
4814 # importing a revzone, we have PTR records that could be merged with matching A/AAAA records
4815 my ($domid,$erid,$ettl,$etype) = $dbh->selectrow_array("SELECT domain_id,record_id,ttl,type FROM records ".
4816 "WHERE host=? AND val=? AND (type=1 OR type=28)",
4817 undef, ($host, $val) );
4818 if ($erid) {
4819 if ($etype == 1) { # A -> A+PTR
4820 $etype = 65280;
4821 $logentry .= "Merged PTR record with existing matching A record '$host A+PTR $val', TTL $ettl";
4822 }
4823 if ($etype == 28) { # AAAA -> AAAA+PTR
4824 $etype = 65281;
4825 $logentry .= "Merged PTR record with existing matching AAAA record '$host AAAA+PTR $val', TTL $ettl";
4826 }
4827 $ettl = ($ettl < $ttl ? $ettl : $ttl); # use lower TTL
4828 $dbh->do("UPDATE records SET rdns_id=?,ttl=?,type=? WHERE record_id=?", undef,
4829 ($rdns_id, $ettl, $etype, $erid));
4830 $nrecs++;
4831 $self->_log(group_id => $group, domain_id => $domid, rdns_id => $rdns_id, entry => $logentry);
4832 next; # while axfr_next
4833 }
4834 } # $rev eq 'y'
4835 } # if $args{merge}
4836
4837 # Insert the new record
4838 $sth->execute($domain_id, $rdns_id, $host, $reverse_typemap{$type}, $val,
4839 $distance, $weight, $port, $ttl);
4840
4841 $nrecs++;
4842
4843 if ($type eq 'SOA') {
4844 # also !$args{rwsoa}, but if that's set, it should be impossible to get here.
4845 my @tmp1 = split /:/, $host;
4846 my @tmp2 = split /:/, $val;
4847 $logentry .= "Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
4848 "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl";
4849 } elsif ($logfrag) {
4850 # special case for log entries we need to meddle with a little.
4851 $logentry .= $logfrag;
4852 } else {
4853 $logentry .= "Added record '$host $type";
4854 $logentry .= " [distance $distance]" if $type eq 'MX';
4855 $logentry .= " [priority $distance] [weight $weight] [port $port]" if $type eq 'SRV';
4856 $logentry .= " $val', TTL $ttl";
4857 }
4858 $self->_log(group_id => $group, domain_id => $domain_id, rdns_id => $rdns_id, entry => $logentry);
4859
4860 } # while axfr_next
4861
4862# Detect and handle delegated subzones
4863# Placeholder for when we decide what to actually do with this, see previous comments in NS and CNAME handling.
4864#foreach (keys %suboct) {
4865# print "found ".($suboct{$_}{ns} ? @{$suboct{$_}{ns}} : '0')." NS records and ".
4866# ($suboct{$_}{cname} ? @{$suboct{$_}{cname}} : '0')." CNAMEs for $_\n";
4867#}
4868
4869 # Overwrite SOA record
4870 if ($args{rwsoa}) {
4871 $soaflag = 1;
4872 my $sthgetsoa = $dbh->prepare("SELECT host,val,ttl FROM default_records WHERE group_id=? AND type=?");
4873 my $sthputsoa = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,ttl) VALUES (?,?,?,?,?)");
4874 $sthgetsoa->execute($group,$reverse_typemap{SOA});
4875 while (my ($host,$val,$ttl) = $sthgetsoa->fetchrow_array()) {
4876 $host =~ s/DOMAIN/$zone/g;
4877 $val =~ s/DOMAIN/$zone/g;
4878 $sthputsoa->execute($zone_id,$host,$reverse_typemap{SOA},$val,$ttl);
4879 }
4880 }
4881
4882 # Overwrite NS records
4883 if ($args{rwns}) {
4884 $nsflag = 1;
4885 my $sthgetns = $dbh->prepare("SELECT host,val,ttl FROM default_records WHERE group_id=? AND type=?");
4886 my $sthputns = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,ttl) VALUES (?,?,?,?,?)");
4887 $sthgetns->execute($group,$reverse_typemap{NS});
4888 while (my ($host,$val,$ttl) = $sthgetns->fetchrow_array()) {
4889 $host =~ s/DOMAIN/$zone/g;
4890 $val =~ s/DOMAIN/$zone/g;
4891 $sthputns->execute($zone_id,$host,$reverse_typemap{NS},$val,$ttl);
4892 }
4893 }
4894
4895 die "No records found; either $ifrom is not authoritative or doesn't allow transfers\n" if !$nrecs;
4896 die "Bad zone: No SOA record!\n" if !$soaflag;
4897 die "Bad zone: No NS records!\n" if !$nsflag;
4898
4899 $dbh->commit;
4900
4901 };
4902
4903 if ($@) {
4904 my $msg = $@;
4905 eval { $dbh->rollback; };
4906 return ('FAIL',$msg." $warnmsg");
4907 } else {
4908 return ('WARN', $warnmsg) if $warnmsg;
4909 return ('OK',"Imported OK");
4910 }
4911
4912 # it should be impossible to get here.
4913 return ('WARN',"OOOK!");
4914} # end importAXFR()
4915
4916
4917## DNSDB::importBIND()
4918sub importBIND {
4919} # end importBIND()
4920
4921
4922## DNSDB::import_tinydns()
4923sub import_tinydns {
4924} # end import_tinydns()
4925
4926
4927## DNSDB::export()
4928# Export the DNS database, or a part of it
4929# Takes a string indicating the export type, plus optional arguments depending on type
4930# Writes zone data to targets as appropriate for type
4931sub export {
4932 my $self = shift;
4933 my $target = shift;
4934
4935 if ($target eq 'tiny') {
4936 $self->__export_tiny(@_);
4937 }
4938# elsif ($target eq 'foo') {
4939# __export_foo(@_);
4940#}
4941# etc
4942
4943} # end export()
4944
4945
4946## DNSDB::__export_tiny
4947# Internal sub to implement tinyDNS (compatible) export
4948# Takes filehandle to write export to, optional argument(s)
4949# to determine which data gets exported
4950sub __export_tiny {
4951 my $self = shift;
4952 my $dbh = $self->{dbh};
4953 my $datafile = shift;
4954 my $zonefilehandle = $datafile; # makes cache/no-cache a little simpler
4955
4956##fixme: slurp up further options to specify particular zone(s) to export
4957
4958##fixme: fail if $datafile isn't an open, writable file
4959
4960 # easy case - export all evarything
4961 # not-so-easy case - export item(s) specified
4962 # todo: figure out what kind of list we use to export items
4963
4964# raw packet in unknown format: first byte indicates length
4965# of remaining data, allows up to 255 raw bytes
4966
4967 # Locations/views - worth including in the caching setup?
4968 my $lochash = $dbh->selectall_hashref("SELECT location,iplist FROM locations", 'location');
4969 foreach my $location (keys %$lochash) {
4970 foreach my $ipprefix (split /[,\s]+/, $lochash->{$location}{iplist}) {
4971 $ipprefix =~ s/\s+//g;
4972 $ipprefix = new NetAddr::IP $ipprefix;
4973##fixme: how to handle IPv6?
4974next if $ipprefix->{isv6};
4975 # have to account for /nn CIDR entries. tinydns only speaks octet-sliced prefix.
4976 if ($ipprefix->masklen <= 8) {
4977 foreach ($ipprefix->split(8)) {
4978 my $tmp = $_->addr;
4979 $tmp =~ s/\.\d+\.\d+\.\d+$//;
4980 print $datafile "%$location:$tmp\n";
4981 }
4982 } elsif ($ipprefix->masklen <= 16) {
4983 foreach ($ipprefix->split(16)) {
4984 my $tmp = $_->addr;
4985 $tmp =~ s/\.\d+\.\d+$//;
4986 print $datafile "%$location:$tmp\n";
4987 }
4988 } elsif ($ipprefix->masklen <= 24) {
4989 foreach ($ipprefix->split(24)) {
4990 my $tmp = $_->addr;
4991 $tmp =~ s/\.\d+$//;
4992 print $datafile "%$location:$tmp\n";
4993 }
4994 } else {
4995 foreach ($ipprefix->split(32)) {
4996 print $datafile "%$location:".$_->addr."\n";
4997 }
4998 }
4999 }
5000 print $datafile "%$location\n" if !$lochash->{$location}{iplist};
5001 }
5002
5003 # tracking hash so we don't double-export A+PTR or AAAA+PTR records.
5004 my %recflags;
5005
5006# For reasons unknown, we can't sanely UNION these statements. Feh.
5007# Supposedly it should work though (note last 3 lines):
5008## PG manual
5009#UNION Clause
5010#
5011#The UNION clause has this general form:
5012#
5013# select_statement UNION [ ALL ] select_statement
5014#
5015#select_statement is any SELECT statement without an ORDER BY, LIMIT, FOR UPDATE, or FOR SHARE clause. (ORDER BY
5016#and LIMIT can be attached to a subexpression if it is enclosed in parentheses. Without parentheses, these
5017#clauses will be taken to apply to the result of the UNION, not to its right-hand input expression.)
5018 my $soasth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location ".
5019 "FROM records WHERE rdns_id=? AND type=6");
5020 my $recsth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location,extract(epoch from stamp),expires,stampactive ".
5021 "FROM records WHERE rdns_id=? AND not type=6 ".
5022 "ORDER BY masklen(CAST(val AS inet)) DESC, CAST(val AS inet)");
5023 my $revsth = $dbh->prepare("SELECT rdns_id,revnet,status,changed FROM revzones WHERE status=1 ".
5024 "ORDER BY masklen(revnet) DESC");
5025 my $zonesth = $dbh->prepare("UPDATE revzones SET changed='n' WHERE rdns_id=?");
5026 $revsth->execute();
5027 while (my ($revid,$revzone,$revstat,$changed) = $revsth->fetchrow_array) {
5028##fixme: need to find a way to block opening symlinked files without introducing a race.
5029# O_NOFOLLOW
5030# If pathname is a symbolic link, then the open fails. This is a FreeBSD extension, which was
5031# added to Linux in version 2.1.126. Symbolic links in earlier components of the pathname will
5032# still be followed.
5033# but that doesn't help other platforms. :/
5034 my $tmpzone = NetAddr::IP->new($revzone);
5035##fixme: locations/views? subnet mask? need to avoid possible collisions with zone/superzone
5036## (eg /20 vs /24, starting on .0.0)
5037 my $cz = $tmpzone->network->addr."-".$tmpzone->masklen;
5038 my $cachefile = "$self->{exportcache}/$cz";
5039 my $tmpcache = "$self->{exportcache}/tmp.$cz.$$";
5040 eval {
5041
5042 # write fresh records if:
5043 # - we are not using the cache
5044 # - force_refresh is set
5045 # - the zone has changed
5046 # - the cache file does not exist
5047 # - the cache file is empty
5048 if (!$self->{usecache} || $self->{force_refresh} || $changed || !-e $cachefile || -z $cachefile) {
5049 if ($self->{usecache}) {
5050 open ZONECACHE, ">$tmpcache" or die "Error creating temporary file $tmpcache: $!\n";
5051 $zonefilehandle = *ZONECACHE;
5052 }
5053
5054 # need to fetch this separately since the rest of the records all (should) have real IPs in val
5055 $soasth->execute($revid);
5056 my (@zsoa) = $soasth->fetchrow_array();
5057 _printrec_tiny($zonefilehandle,'y',\%recflags,$revzone,
5058 $zsoa[0],$zsoa[1],$zsoa[2],$zsoa[3],$zsoa[4],$zsoa[5],$zsoa[6],$zsoa[8],'');
5059
5060 $recsth->execute($revid);
5061 while (my ($host,$type,$val,$dist,$weight,$port,$ttl,$recid,$loc,$stamp,$expires,$stampactive) = $recsth->fetchrow_array) {
5062 next if $recflags{$recid};
5063
5064# not sure this is necessary for revzones.
5065# # Spaces are evil.
5066# $val =~ s/^\s+//;
5067# $val =~ s/\s+$//;
5068# if ($typemap{$type} ne 'TXT') {
5069# # Leading or trailng spaces could be legit in TXT records.
5070# $host =~ s/^\s+//;
5071# $host =~ s/\s+$//;
5072# }
5073
5074 _printrec_tiny($zonefilehandle, 'y', \%recflags, $revzone,
5075 $host, $type, $val, $dist, $weight, $port, $ttl, $loc, $stamp, $expires, $stampactive);
5076
5077 $recflags{$recid} = 1;
5078
5079 } # while ($recsth)
5080
5081 if ($self->{usecache}) {
5082 close ZONECACHE; # force the file to be written
5083 # catch obvious write errors that leave an empty temp file
5084 if (-s $tmpcache) {
5085 rename $tmpcache, $cachefile
5086 or die "Error overwriting cache file $cachefile with temporary file: $!\n";
5087 }
5088 }
5089
5090 } # if $changed or cache filesize is 0
5091
5092 };
5093 if ($@) {
5094 print "error writing new data for $revzone: $@\n";
5095 # error! something borked, and we should be able to fall back on the old cache file
5096 # report the error, somehow.
5097 } else {
5098 # mark zone as unmodified. Only do this if no errors, that way
5099 # export failures should recover a little more automatically.
5100 $zonesth->execute($revid);
5101 }
5102
5103 if ($self->{usecache}) {
5104 # We've already made as sure as we can that a cached zone file is "good",
5105 # although possibly stale/obsolete due to errors creating a new one.
5106 open CACHE, "<$cachefile";
5107 print $datafile $_ while <CACHE>;
5108 close CACHE;
5109 }
5110
5111 } # while ($revsth)
5112
5113 my $domsth = $dbh->prepare("SELECT domain_id,domain,status,changed FROM domains WHERE status=1");
5114 $recsth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location,extract(epoch from stamp),expires,stampactive ".
5115 "FROM records WHERE domain_id=?"); # Just exclude all types relating to rDNS
5116# "FROM records WHERE domain_id=? AND type < 65280"); # Just exclude all types relating to rDNS
5117 $zonesth = $dbh->prepare("UPDATE domains SET changed='n' WHERE domain_id=?");
5118 $domsth->execute();
5119 while (my ($domid,$dom,$domstat,$changed) = $domsth->fetchrow_array) {
5120##fixme: need to find a way to block opening symlinked files without introducing a race.
5121# O_NOFOLLOW
5122# If pathname is a symbolic link, then the open fails. This is a FreeBSD extension, which was
5123# added to Linux in version 2.1.126. Symbolic links in earlier components of the pathname will
5124# still be followed.
5125# but that doesn't help other platforms. :/
5126 my $cachefile = "$self->{exportcache}/$dom";
5127 my $tmpcache = "$self->{exportcache}/tmp.$dom.$$";
5128 eval {
5129
5130 # write fresh records if:
5131 # - we are not using the cache
5132 # - force_refresh is set
5133 # - the zone has changed
5134 # - the cache file does not exist
5135 # - the cache file is empty
5136 if (!$self->{usecache} || $self->{force_refresh} || $changed || !-e $cachefile || -z $cachefile) {
5137 if ($self->{usecache}) {
5138 open ZONECACHE, ">$tmpcache" or die "Error creating temporary file $tmpcache: $!\n";
5139 $zonefilehandle = *ZONECACHE;
5140 }
5141
5142 $recsth->execute($domid);
5143 while (my ($host,$type,$val,$dist,$weight,$port,$ttl,$recid,$loc,$stamp,$expires,$stampactive) = $recsth->fetchrow_array) {
5144 next if $recflags{$recid};
5145
5146 # Spaces are evil.
5147 $host =~ s/^\s+//;
5148 $host =~ s/\s+$//;
5149 if ($typemap{$type} ne 'TXT') {
5150 # Leading or trailng spaces could be legit in TXT records.
5151 $val =~ s/^\s+//;
5152 $val =~ s/\s+$//;
5153 }
5154
5155 _printrec_tiny($zonefilehandle, 'n', \%recflags,
5156 $dom, $host, $type, $val, $dist, $weight, $port, $ttl, $loc, $stamp, $expires, $stampactive);
5157
5158 $recflags{$recid} = 1;
5159
5160 } # while ($recsth)
5161
5162
5163 if ($self->{usecache}) {
5164 close ZONECACHE; # force the file to be written
5165 # catch obvious write errors that leave an empty temp file
5166 if (-s $tmpcache) {
5167 rename $tmpcache, $cachefile
5168 or die "Error overwriting cache file $cachefile with temporary file: $!\n";
5169 }
5170 }
5171
5172 } # if $changed or cache filesize is 0
5173
5174 };
5175 if ($@) {
5176 print "error writing new data for $dom: $@\n";
5177 # error! something borked, and we should be able to fall back on the old cache file
5178 # report the error, somehow.
5179 } else {
5180 # mark domain as unmodified. Only do this if no errors, that way
5181 # export failures should recover a little more automatically.
5182 $zonesth->execute($domid);
5183 }
5184
5185 if ($self->{usecache}) {
5186 # We've already made as sure as we can that a cached zone file is "good",
5187 # although possibly stale/obsolete due to errors creating a new one.
5188 open CACHE, "<$cachefile";
5189 print $datafile $_ while <CACHE>;
5190 close CACHE;
5191 }
5192
5193 } # while ($domsth)
5194
5195} # end __export_tiny()
5196
5197
5198# Utility sub for __export_tiny above
5199sub _printrec_tiny {
5200 my ($datafile,$revrec,$recflags,$zone,$host,$type,$val,$dist,$weight,$port,$ttl,$loc,$stamp,$expires,$stampactive) = @_;
5201
5202 $loc = '' if !$loc; # de-nullify - just in case
5203##fixme: handle case of record-with-location-that-doesn't-exist better.
5204# note this currently fails safe (tested) - records with a location that
5205# doesn't exist will not be sent to any client
5206# $loc = '' if !$lochash->{$loc};
5207
5208
5209## Records that are valid only before or after a set time
5210
5211# record due to expire sometime is the complex case. we don't want to just
5212# rely on tinydns' auto-adjusting TTLs, because the default TTL in that case
5213# is one day instead of the SOA minttl as BIND might do.
5214
5215# consider the case where a record is set to expire a week ahead, but the next
5216# day later you want to change it NOW (or as NOWish as you get with your DNS
5217# management practice). but now you're stuck, because someone, somewhere,
5218# has just done a lookup before your latest change was published, and they'll
5219# be caching that old, broken record for 1 day instead of your zone default
5220# TTL.
5221
5222# $stamp-$ttl is the *latest* we can publish the record with the defined TTL
5223# to still have the expiry happen as scheduled, but we need to find some
5224# *earlier* point. We can maybe guess, and 2x TTL is probably reasonable,
5225# but we need info on the export frequency.
5226
5227# export the normal, non-expiring record up until $stamp-<guesstimate>, then
5228# switch to exporting a record with the TAI64 stamp and a 0 TTL so tinydns
5229# takes over TTL management.
5230
5231 if ($stampactive) {
5232 if ($expires) {
5233 # record expires at $stamp; decide if we need to keep the TTL and ignore
5234 # the stamp for a time or if we need to change the TTL to 0 and convert
5235 # $stamp to TAI64 so tinydns can use $stamp to autoadjust the TTL on the fly.
5236# extra hack, optimally needs more knowledge of data export frequency
5237# smack the idiot customer who insists on 0 TTLs; they can suck up and
5238# deal with a 10-minute TTL. especially on scheduled changes. note this
5239# should be (export freq * 2), but we don't know the actual export frequency.
5240$ttl = 300 if $ttl == 0; #hack phtui
5241 my $ahead = (86400 < $ttl*2 ? 86400 : $ttl*2);
5242 if ((time() + $ahead) < $stamp) {
5243 # more than 2x TTL OR more than one day (whichever is less) from expiry time; publish normal record
5244 $stamp = '';
5245 } else {
5246 # less than 2x TTL from expiry time, let tinydns take over TTL management and publish the TAI64 stamp.
5247 $ttl = 0;
5248 $stamp = unixtai64($stamp);
5249 $stamp =~ s/\@//;
5250 }
5251 } else {
5252 # record is "active after"; convert epoch from database to TAI64, publish, and collect $200.
5253 $stamp = unixtai64($stamp);
5254 $stamp =~ s/\@//;
5255 }
5256 } else {
5257 # flag for active timestamp is false; don't actually put a timestamp in the output
5258 $stamp = '';
5259 }
5260
5261 # support tinydns' auto-TTL
5262 $ttl = '' if $ttl == -1;
5263# these are WAY FREAKING HIGH - higher even than most TLD registry TTLs!
5264# NS 259200 => 3d
5265# all others 86400 => 1d
5266
5267 if ($revrec eq 'y') {
5268 $val = $zone if $val eq '@';
5269 } else {
5270 $host = $zone if $host eq '@';
5271 }
5272
5273 ## Convert a bare number into an octal-coded pair of octets.
5274 # Take optional arg to indicate a decimal or hex input. Defaults to hex.
5275 sub octalize {
5276 my $tmp = shift;
5277 my $srctype = shift || 'h'; # default assumes hex string
5278 $tmp = sprintf "%0.4x", hex($tmp) if $srctype eq 'h'; # 0-pad hex to 4 digits
5279 $tmp = sprintf "%0.4x", $tmp if $srctype eq 'd'; # 0-pad decimal to 4 hex digits
5280 my @o = ($tmp =~ /^(..)(..)$/); # split into octets
5281 return sprintf "\\%0.3o\\%0.3o", hex($o[0]), hex($o[1]);;
5282 }
5283
5284## WARNING: This works to export even the whole Internet's worth of IP space...
5285## if you have the disk/RAM to handle the dataset, and you call this sub based on /16-sized chunks
5286## A /16 took ~3 seconds with a handful of separate records; adding a /8 pushed export time out to ~13m:40s
5287## 0/0 is estimated to take ~54 hours and ~256G of disk
5288## RAM usage depends on how many non-template entries you have in the set.
5289## This should probably be done on record addition rather than export; large blocks may need to be done in a
5290## forked process
5291 sub __publish_subnet {
5292 my $sub = shift;
5293 my $recflags = shift;
5294 my $hpat = shift;
5295 my $fh = shift;
5296 my $ttl = shift;
5297 my $stamp = shift;
5298 my $loc = shift;
5299 my $ptronly = shift || 0;
5300
5301 my $iplist = $sub->splitref(32);
5302 foreach (@$iplist) {
5303 my $ip = $_->addr;
5304 # make as if we split the non-octet-aligned block into octet-aligned blocks as with SOA
5305 next if $ip =~ /\.(0|255)$/;
5306 next if $$recflags{$ip};
5307 $$recflags{$ip}++;
5308 next if $hpat eq '%blank%'; # Allows blanking a subnet so no records are published.
5309 my $rec = $hpat; # start fresh with the template for each IP
5310 _template4_expand(\$rec, $ip);
5311 print $fh ($ptronly ? "^"._ZONE($_, 'ZONE.in-addr.arpa', 'r', '.').":$rec" : "=$rec:$ip").
5312 ":$ttl:$stamp:$loc\n";
5313 }
5314 }
5315
5316##fixme? append . to all host/val hostnames
5317 if ($typemap{$type} eq 'SOA') {
5318
5319 # host contains pri-ns:responsible
5320 # val is abused to contain refresh:retry:expire:minttl
5321##fixme: "manual" serial vs tinydns-autoserial
5322 # let's be explicit about abusing $host and $val
5323 my ($email, $primary) = (split /:/, $host)[0,1];
5324 my ($refresh, $retry, $expire, $min_ttl) = (split /:/, $val)[0,1,2,3];
5325 if ($revrec eq 'y') {
5326##fixme: have to publish SOA records for each v4 /24 in sub-/16, and each /16 in sub-/8
5327# what about v6?
5328# -> only need SOA for local chunks offset from reverse delegation boundaries, so v6 is fine
5329 $zone = NetAddr::IP->new($zone);
5330 # handle split-n-multiply SOA for off-octet (8 < mask < 16) or (16 < mask < 24) v4 zones
5331 if (!$zone->{isv6} && ($zone->masklen < 24) && ($zone->masklen % 8 != 0)) {
5332 foreach my $szone ($zone->split($zone->masklen + (8 - $zone->masklen % 8))) {
5333 $szone = _ZONE($szone, 'ZONE.in-addr.arpa', 'r', '.');
5334 print $datafile "Z$szone:$primary:$email"."::$refresh:$retry:$expire:$min_ttl:$ttl:$stamp:$loc\n";
5335 }
5336 return; # skips "default" bits just below
5337 }
5338 $zone = _ZONE($zone, 'ZONE', 'r', '.').($zone->{isv6} ? '.ip6.arpa' : '.in-addr.arpa');
5339 }
5340 print $datafile "Z$zone:$primary:$email"."::$refresh:$retry:$expire:$min_ttl:$ttl:$stamp:$loc\n";
5341
5342 } elsif ($typemap{$type} eq 'A') {
5343
5344 print $datafile "+$host:$val:$ttl:$stamp:$loc\n";
5345
5346 } elsif ($typemap{$type} eq 'NS') {
5347
5348 if ($revrec eq 'y') {
5349 $val = NetAddr::IP->new($val);
5350 # handle split-n-multiply SOA for off-octet (8 < mask < 16) or (16 < mask < 24) v4 zones
5351 if (!$val->{isv6} && ($val->masklen < 24) && ($val->masklen % 8 != 0)) {
5352 foreach my $szone ($val->split($val->masklen + (8 - $val->masklen % 8))) {
5353 my $szone2 = _ZONE($szone, 'ZONE.in-addr.arpa', 'r', '.');
5354 next if $$recflags{$szone2} && $$recflags{$szone2} > $val->masklen;
5355 print $datafile "\&$szone2"."::$host:$ttl:$stamp:$loc\n";
5356 $$recflags{$szone2} = $val->masklen;
5357 }
5358 } elsif ($val->{isv6} && ($val->masklen < 64) && ($val->masklen % 4 !=0)) {
5359 foreach my $szone ($val->split($val->masklen + (4 - $val->masklen % 4))) {
5360 my $szone2 = _ZONE($szone, 'ZONE.ip6.arpa', 'r', '.');
5361 next if $$recflags{$szone2} && $$recflags{$szone2} > $val->masklen;
5362 print $datafile "\&$szone2"."::$host:$ttl:$stamp:$loc\n";
5363 $$recflags{$szone2} = $val->masklen;
5364 }
5365 } else {
5366 my $val2 = _ZONE($val, 'ZONE', 'r', '.').($val->{isv6} ? '.ip6.arpa' : '.in-addr.arpa');
5367 print $datafile "\&$val2"."::$host:$ttl:$stamp:$loc\n";
5368 $$recflags{$val2} = $val->masklen;
5369 }
5370 } else {
5371 print $datafile "\&$host"."::$val:$ttl:$stamp:$loc\n";
5372 }
5373
5374 } elsif ($typemap{$type} eq 'AAAA') {
5375
5376 print $datafile ":$host:28:";
5377 my $altgrp = 0;
5378 my @altconv;
5379 # Split in to up to 8 groups of hex digits (allows for IPv6 :: 0-collapsing)
5380 foreach (split /:/, $val) {
5381 if (/^$/) {
5382 # flag blank entry; this is a series of 0's of (currently) unknown length
5383 $altconv[$altgrp++] = 's';
5384 } else {
5385 # call sub to convert 1-4 hex digits to 2 string-rep octal bytes
5386 $altconv[$altgrp++] = octalize($_)
5387 }
5388 }
5389 foreach my $octet (@altconv) {
5390 # if not 's', output
5391 print $datafile $octet unless $octet =~ /^s$/;
5392 # if 's', output (9-array length)x literal '\000\000'
5393 print $datafile '\000\000'x(9-$altgrp) if $octet =~ /^s$/;
5394 }
5395 print $datafile ":$ttl:$stamp:$loc\n";
5396
5397 } elsif ($typemap{$type} eq 'MX') {
5398
5399 print $datafile "\@$host"."::$val:$dist:$ttl:$stamp:$loc\n";
5400
5401 } elsif ($typemap{$type} eq 'TXT') {
5402
5403##fixme: split v-e-r-y long TXT strings? will need to do so for BIND export, at least
5404 if ($revrec eq 'n') {
5405 $val =~ s/:/\\072/g; # may need to replace other symbols
5406 print $datafile "'$host:$val:$ttl:$stamp:$loc\n";
5407 } else {
5408 $host =~ s/:/\\072/g; # may need to replace other symbols
5409 my $val2 = NetAddr::IP->new($val);
5410 print $datafile "'"._ZONE($val2, 'ZONE', 'r', '.').($val2->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
5411 ":$host:$ttl:$stamp:$loc\n";
5412 }
5413
5414# by-hand TXT
5415#:deepnet.cx:16:2v\075spf1\040a\040a\072bacon.deepnet.cx\040a\072home.deepnet.cx\040-all:3600
5416#@ IN TXT "v=spf1 a a:bacon.deepnet.cx a:home.deepnet.cx -all"
5417#'deepnet.cx:v=spf1 a a\072bacon.deepnet.cx a\072home.deepnet.cx -all:3600
5418
5419#txttest IN TXT "v=foo bar:bob kn;ob' \" !@#$%^&*()-=_+[]{}<>?"
5420#: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
5421
5422# very long TXT record as brought in by axfr-get
5423# note tinydns does not support >512-byte RR data, need axfr-dns (for TCP support) for that
5424# also note, tinydns does not seem to support <512, >256-byte RRdata from axfr-get either. :/
5425#:longtxt.deepnet.cx:16:
5426#\170this is a very long txt record. it is really long. long. very long. really very long. this is a very long txt record.
5427#\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.
5428#\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.
5429#:3600
5430
5431 } elsif ($typemap{$type} eq 'CNAME') {
5432
5433 if ($revrec eq 'n') {
5434 print $datafile "C$host:$val:$ttl:$stamp:$loc\n";
5435 } else {
5436 my $val2 = NetAddr::IP->new($val);
5437 print $datafile "C"._ZONE($val2, 'ZONE', 'r', '.').($val2->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
5438 ":$host:$ttl:$stamp:$loc\n";
5439 }
5440
5441 } elsif ($typemap{$type} eq 'SRV') {
5442
5443 # data is two-byte values for priority, weight, port, in that order,
5444 # followed by length/string data
5445
5446 print $datafile ":$host:33:".octalize($dist,'d').octalize($weight,'d').octalize($port,'d');
5447
5448 $val .= '.' if $val !~ /\.$/;
5449 foreach (split /\./, $val) {
5450 printf $datafile "\\%0.3o%s", length($_), $_;
5451 }
5452 print $datafile "\\000:$ttl:$stamp:$loc\n";
5453
5454 } elsif ($typemap{$type} eq 'RP') {
5455
5456 # RP consists of two mostly free-form strings.
5457 # The first is supposed to be an email address with @ replaced by . (as with the SOA contact)
5458 # The second is the "hostname" of a TXT record with more info.
5459 print $datafile ":$host:17:";
5460 my ($who,$what) = split /\s/, $val;
5461 foreach (split /\./, $who) {
5462 printf $datafile "\\%0.3o%s", length($_), $_;
5463 }
5464 print $datafile '\000';
5465 foreach (split /\./, $what) {
5466 printf $datafile "\\%0.3o%s", length($_), $_;
5467 }
5468 print $datafile "\\000:$ttl:$stamp:$loc\n";
5469
5470 } elsif ($typemap{$type} eq 'PTR') {
5471
5472 $zone = NetAddr::IP->new($zone);
5473 $$recflags{$val}++;
5474 if (!$zone->{isv6} && $zone->masklen > 24) {
5475 ($val) = ($val =~ /\.(\d+)$/);
5476 print $datafile "^$val."._ZONE($zone, 'ZONE', 'r', '.').'.in-addr.arpa'.
5477 ":$host:ttl:$stamp:$loc\n";
5478 } else {
5479 $val = NetAddr::IP->new($val);
5480 print $datafile "^".
5481 _ZONE($val, 'ZONE', 'r', '.').($val->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
5482 ":$host:$ttl:$stamp:$loc\n";
5483 }
5484
5485 } elsif ($type == 65280) { # A+PTR
5486
5487 $$recflags{$val}++;
5488 print $datafile "=$host:$val:$ttl:$stamp:$loc\n";
5489
5490 } elsif ($type == 65281) { # AAAA+PTR
5491
5492 $$recflags{$val}++;
5493 # treat these as two separate records. since tinydns doesn't have
5494 # a native combined type, we have to create them separately anyway.
5495 # print both; a dangling record is harmless, and impossible via web
5496 # UI anyway
5497 _printrec_tiny($datafile,$revrec,$recflags,$zone,$host,28,$val,$dist,$weight,$port,$ttl,$loc,$stamp);
5498 _printrec_tiny($datafile,$revrec,$recflags,$zone,$host,12,$val,$dist,$weight,$port,$ttl,$loc,$stamp);
5499##fixme: add a config flag to indicate use of the patch from http://www.fefe.de/dns/
5500# type 6 is for AAAA+PTR, type 3 is for AAAA
5501
5502 } elsif ($type == 65282) { # PTR template
5503
5504 # only useful for v4 with standard DNS software, since this expands all
5505 # IPs in $zone (or possibly $val?) with autogenerated records
5506 $val = NetAddr::IP->new($val);
5507 return if $val->{isv6};
5508
5509 if ($val->masklen <= 16) {
5510 foreach my $sub ($val->split(16)) {
5511 __publish_subnet($sub, $recflags, $host, $datafile, $ttl, $stamp, $loc, 1);
5512 }
5513 } else {
5514 __publish_subnet($val, $recflags, $host, $datafile, $ttl, $stamp, $loc, 1);
5515 }
5516
5517 } elsif ($type == 65283) { # A+PTR template
5518
5519 $val = NetAddr::IP->new($val);
5520 # Just In Case. An A+PTR should be impossible to add to a v6 revzone via API.
5521 return if $val->{isv6};
5522
5523 if ($val->masklen <= 16) {
5524 foreach my $sub ($val->split(16)) {
5525 __publish_subnet($sub, $recflags, $host, $datafile, $ttl, $stamp, $loc, 0);
5526 }
5527 } else {
5528 __publish_subnet($val, $recflags, $host, $datafile, $ttl, $stamp, $loc, 0);
5529 }
5530
5531 } elsif ($type == 65284) { # AAAA+PTR template
5532 # Stub for completeness. Could be exported to DNS software that supports
5533 # some degree of internal automagic in generic-record-creation
5534 # (eg http://search.cpan.org/dist/AllKnowingDNS/ )
5535
5536 } elsif ($type == 65285) { # Delegation
5537 # This is intended for reverse zones, but may prove useful in forward zones.
5538
5539 # All delegations need to create one or more NS records. The NS record handler knows what to do.
5540 _printrec_tiny($datafile,$revrec,$recflags,$zone,$host,$reverse_typemap{'NS'},
5541 $val,$dist,$weight,$port,$ttl,$loc,$stamp);
5542 if ($revrec eq 'y') {
5543 # In the case of a sub-/24 v4 reverse delegation, we need to generate CNAMEs
5544 # to redirect all of the individual IP lookups as well.
5545 # Not sure how this would actually resolve if a /24 or larger was delegated
5546 # one way, and a sub-/24 in that >=/24 was delegated elsewhere...
5547 my $dblock = NetAddr::IP->new($val);
5548 if (!$dblock->{isv6} && $dblock->masklen > 24) {
5549 my @subs = $dblock->split;
5550 foreach (@subs) {
5551 next if $$recflags{"$_"};
5552 my ($oct) = ($_->addr =~ /(\d+)$/);
5553 print $datafile "C"._ZONE($_, 'ZONE.in-addr.arpa', 'r', '.').":$oct.".
5554 _ZONE($dblock, 'ZONE.in-addr.arpa', 'r', '.').":$ttl:$stamp:$loc\n";
5555 $$recflags{"$_"}++;
5556 }
5557 }
5558 }
5559
5560##
5561## Uncommon types. These will need better UI support Any Day Sometime Maybe(TM).
5562##
5563
5564 } elsif ($type == 44) { # SSHFP
5565 my ($algo,$fpt,$fp) = split /\s+/, $val;
5566
5567 my $rec = sprintf ":$host:44:\\%0.3o\\%0.3o", $algo, $fpt;
5568 while (my ($byte) = ($fp =~ /^(..)/) ) {
5569 $rec .= sprintf "\\%0.3o", hex($byte);
5570 $fp =~ s/^..//;
5571 }
5572 print $datafile "$rec:$ttl:$stamp:$loc\n";
5573
5574 } else {
5575 # raw record. we don't know what's in here, so we ASS-U-ME the user has
5576 # put it in correctly, since either the user is messing directly with the
5577 # database, or the record was imported via AXFR
5578 # <split by char>
5579 # convert anything not a-zA-Z0-9.- to octal coding
5580
5581##fixme: add flag to export "unknown" record types - note we'll probably end up
5582# mangling them since they were written to the DB from Net::DNS::RR::<type>->rdatastr.
5583 #print $datafile ":$host:$type:$val:$ttl:$stamp:$loc\n";
5584
5585 } # record type if-else
5586
5587} # end _printrec_tiny()
5588
5589
5590## DNSDB::mailNotify()
5591# Sends notification mail to recipients regarding a DNSDB operation
5592sub mailNotify {
5593 my $self = shift;
5594 my $dbh = $self->{dbh};
5595 my ($subj,$message) = @_;
5596
5597 return if $self->{mailhost} eq 'smtp.example.com'; # do nothing if still using default SMTP host.
5598
5599 my $mailer = Net::SMTP->new($self->{mailhost}, Hello => "dnsadmin.$self->{domain}");
5600
5601 my $mailsender = ($self->{mailsender} ? $self->{mailsender} : $self->{mailnotify});
5602
5603 $mailer->mail($mailsender);
5604 $mailer->to($self->{mailnotify});
5605 $mailer->data("From: \"$self->{mailname}\" <$mailsender>\n",
5606 "To: <$self->{mailnotify}>\n",
5607 "Date: ".strftime("%a, %d %b %Y %H:%M:%S %z",localtime)."\n",
5608 "Subject: $subj\n",
5609 "X-Mailer: DNSAdmin v".$DNSDB::VERSION." Notify\n",
5610 "Organization: $self->{orgname}\n",
5611 "\n$message\n");
5612 $mailer->quit;
5613}
5614
5615# shut Perl up
56161;
Note: See TracBrowser for help on using the repository browser.