source: trunk/DNSDB.pm@ 384

Last change on this file since 384 was 384, checked in by Kris Deugau, 12 years ago

/trunk

Fix bugs in new SQL bits in getDomRecs(). See #10.

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