source: trunk/DNSDB.pm@ 382

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

/trunk

Update permission loading with the new fields for locations. See #10.

  • Property svn:keywords set to Date Rev Author Id
File size: 174.2 KB
Line 
1# dns/trunk/DNSDB.pm
2# Abstraction functions for DNS administration
3##
4# $Id: DNSDB.pm 382 2012-08-13 21:20:13Z 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
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
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::addGroup()
2185# Add a group
2186# Takes a database handle, group name, parent group, hashref for permissions,
2187# and optional template-vs-cloneme flag for the default records
2188# Returns a status code and message
2189sub addGroup {
2190 $errstr = '';
2191 my $dbh = shift;
2192 my $groupname = shift;
2193 my $pargroup = shift;
2194 my $permissions = shift;
2195
2196 # 0 indicates "custom", hardcoded.
2197 # Any other value clones that group's default records, if it exists.
2198 my $inherit = shift || 0;
2199##fixme: need a flag to indicate clone records or <?> ?
2200
2201 # Allow transactions, and raise an exception on errors so we can catch it later.
2202 # Use local to make sure these get "reset" properly on exiting this block
2203 local $dbh->{AutoCommit} = 0;
2204 local $dbh->{RaiseError} = 1;
2205
2206 my ($group_id) = $dbh->selectrow_array("SELECT group_id FROM groups WHERE group_name=?", undef, ($groupname));
2207
2208 return ('FAIL', "Group already exists") if $group_id;
2209
2210 # Wrap all the SQL in a transaction
2211 eval {
2212 $dbh->do("INSERT INTO groups (parent_group_id,group_name) VALUES (?,?)", undef, ($pargroup, $groupname) );
2213
2214 my ($groupid) = $dbh->selectrow_array("SELECT currval('groups_group_id_seq')");
2215
2216 # We work through the whole set of permissions instead of specifying them so
2217 # that when we add a new permission, we don't have to change the code anywhere
2218 # that doesn't explicitly deal with that specific permission.
2219 my @permvals;
2220 foreach (@permtypes) {
2221 if (!defined ($permissions->{$_})) {
2222 push @permvals, 0;
2223 } else {
2224 push @permvals, $permissions->{$_};
2225 }
2226 }
2227 $dbh->do("INSERT INTO permissions (group_id,$permlist) values (?".',?'x($#permtypes+1).")",
2228 undef, ($groupid, @permvals) );
2229 my ($permid) = $dbh->selectrow_array("SELECT currval('permissions_permission_id_seq')");
2230 $dbh->do("UPDATE groups SET permission_id=$permid WHERE group_id=$groupid");
2231
2232 # Default records
2233 my $sthf = $dbh->prepare("INSERT INTO default_records (group_id,host,type,val,distance,weight,port,ttl) ".
2234 "VALUES ($groupid,?,?,?,?,?,?,?)");
2235 my $sthr = $dbh->prepare("INSERT INTO default_rev_records (group_id,host,type,val,ttl) ".
2236 "VALUES ($groupid,?,?,?,?)");
2237 if ($inherit) {
2238 # Duplicate records from parent. Actually relying on inherited records feels
2239 # very fragile, and it would be problematic to roll over at a later time.
2240 my $sth2 = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl FROM default_records WHERE group_id=?");
2241 $sth2->execute($pargroup);
2242 while (my @clonedata = $sth2->fetchrow_array) {
2243 $sthf->execute(@clonedata);
2244 }
2245 # And now the reverse records
2246 $sth2 = $dbh->prepare("SELECT host,type,val,ttl FROM default_rev_records WHERE group_id=?");
2247 $sth2->execute($pargroup);
2248 while (my @clonedata = $sth2->fetchrow_array) {
2249 $sthr->execute(@clonedata);
2250 }
2251 } else {
2252##fixme: Hardcoding is Bad, mmmmkaaaay?
2253 # reasonable basic defaults for SOA, MX, NS, and minimal hosting
2254 # could load from a config file, but somewhere along the line we need hardcoded bits.
2255 $sthf->execute('ns1.example.com:hostmaster.example.com', 6, '10800:3600:604800:10800', 0, 0, 0, 86400);
2256 $sthf->execute('DOMAIN', 1, '192.168.4.2', 0, 0, 0, 7200);
2257 $sthf->execute('DOMAIN', 15, 'mx.example.com', 10, 0, 0, 7200);
2258 $sthf->execute('DOMAIN', 2, 'ns1.example.com', 0, 0, 0, 7200);
2259 $sthf->execute('DOMAIN', 2, 'ns2.example.com', 0, 0, 0, 7200);
2260 $sthf->execute('www.DOMAIN', 5, 'DOMAIN', 0, 0, 0, 7200);
2261 # reasonable basic defaults for generic reverse zone. Same as initial SQL tabledef.
2262 $sthr->execute('hostmaster.ADMINDOMAIN:ns1.ADMINDOMAIN', 6, '10800:3600:604800:10800', 86400);
2263 $sthr->execute('unused-%r.ADMINDOMAIN', 65283, 'ZONE', 3600);
2264 }
2265
2266 _log($dbh, (group_id => $pargroup, entry => "Added group $groupname") );
2267
2268 # once we get here, we should have suceeded.
2269 $dbh->commit;
2270 }; # end eval
2271
2272 if ($@) {
2273 my $msg = $@;
2274 eval { $dbh->rollback; };
2275 if ($config{log_failures}) {
2276 _log($dbh, (group_id => $pargroup, entry => "Failed to add group $groupname: $msg") );
2277 $dbh->commit;
2278 }
2279 return ('FAIL',$msg);
2280 }
2281
2282 return ('OK','OK');
2283} # end addGroup()
2284
2285
2286## DNSDB::delGroup()
2287# Delete a group.
2288# Takes a group ID
2289# Returns a status code and message
2290sub delGroup {
2291 my $dbh = shift;
2292 my $groupid = shift;
2293
2294 # Allow transactions, and raise an exception on errors so we can catch it later.
2295 # Use local to make sure these get "reset" properly on exiting this block
2296 local $dbh->{AutoCommit} = 0;
2297 local $dbh->{RaiseError} = 1;
2298
2299##fixme: locate "knowable" error conditions and deal with them before the eval
2300# ... or inside, whatever.
2301# -> domains still exist in group
2302# -> ...
2303 my $failmsg = '';
2304 my $resultmsg = '';
2305
2306 # collect some pieces for logging and error messages
2307 my $groupname = groupName($dbh,$groupid);
2308 my $parid = parentID($dbh, (id => $groupid, type => 'group'));
2309
2310 # Wrap all the SQL in a transaction
2311 eval {
2312 # Check for Things in the group
2313 $failmsg = "Can't remove group $groupname";
2314 my ($grpcnt) = $dbh->selectrow_array("SELECT count(*) FROM groups WHERE parent_group_id=?", undef, ($groupid));
2315 die "$grpcnt groups still in group\n" if $grpcnt;
2316 my ($domcnt) = $dbh->selectrow_array("SELECT count(*) FROM domains WHERE group_id=?", undef, ($groupid));
2317 die "$domcnt domains still in group\n" if $domcnt;
2318 my ($usercnt) = $dbh->selectrow_array("SELECT count(*) FROM users WHERE group_id=?", undef, ($groupid));
2319 die "$usercnt users still in group\n" if $usercnt;
2320
2321 $failmsg = "Failed to delete default records for $groupname";
2322 $dbh->do("DELETE from default_records WHERE group_id=?", undef, ($groupid));
2323 $failmsg = "Failed to delete default reverse records for $groupname";
2324 $dbh->do("DELETE from default_rev_records WHERE group_id=?", undef, ($groupid));
2325 $failmsg = "Failed to remove group $groupname";
2326 $dbh->do("DELETE from groups WHERE group_id=?", undef, ($groupid));
2327
2328 _log($dbh, (group_id => $parid, entry => "Deleted group $groupname"));
2329 $resultmsg = "Deleted group $groupname";
2330
2331 # once we get here, we should have suceeded.
2332 $dbh->commit;
2333 }; # end eval
2334
2335 if ($@) {
2336 my $msg = $@;
2337 eval { $dbh->rollback; };
2338 if ($config{log_failures}) {
2339 _log($dbh, (group_id => $parid, entry => "$failmsg: $msg"));
2340 $dbh->commit; # since we enabled transactions earlier
2341 }
2342 return ('FAIL',"$failmsg: $msg");
2343 }
2344
2345 return ('OK',$resultmsg);
2346} # end delGroup()
2347
2348
2349## DNSDB::getChildren()
2350# Get a list of all groups whose parent^n is group <n>
2351# Takes a database handle, group ID, reference to an array to put the group IDs in,
2352# and an optional flag to return only immediate children or all children-of-children
2353# default to returning all children
2354# Calls itself
2355sub getChildren {
2356 $errstr = '';
2357 my $dbh = shift;
2358 my $rootgroup = shift;
2359 my $groupdest = shift;
2360 my $immed = shift || 'all';
2361
2362 # special break for default group; otherwise we get stuck.
2363 if ($rootgroup == 1) {
2364 # by definition, group 1 is the Root Of All Groups
2365 my $sth = $dbh->prepare("SELECT group_id FROM groups WHERE NOT (group_id=1)".
2366 ($immed ne 'all' ? " AND parent_group_id=1" : '')." ORDER BY group_name");
2367 $sth->execute;
2368 while (my @this = $sth->fetchrow_array) {
2369 push @$groupdest, @this;
2370 }
2371 } else {
2372 my $sth = $dbh->prepare("SELECT group_id FROM groups WHERE parent_group_id=? ORDER BY group_name");
2373 $sth->execute($rootgroup);
2374 return if $sth->rows == 0;
2375 my @grouplist;
2376 while (my ($group) = $sth->fetchrow_array) {
2377 push @$groupdest, $group;
2378 getChildren($dbh,$group,$groupdest) if $immed eq 'all';
2379 }
2380 }
2381} # end getChildren()
2382
2383
2384## DNSDB::groupName()
2385# Return the group name based on a group ID
2386# Takes a database handle and the group ID
2387# Returns the group name or undef on failure
2388sub groupName {
2389 $errstr = '';
2390 my $dbh = shift;
2391 my $groupid = shift;
2392 my $sth = $dbh->prepare("SELECT group_name FROM groups WHERE group_id=?");
2393 $sth->execute($groupid);
2394 my ($groupname) = $sth->fetchrow_array();
2395 $errstr = $DBI::errstr if !$groupname;
2396 return $groupname if $groupname;
2397} # end groupName
2398
2399
2400## DNSDB::getGroupCount()
2401# Get count of subgroups in group or groups
2402# Takes a database handle and hash containing:
2403# - the "current" group
2404# - an array of "acceptable" groups
2405# - Optionally accept a "starts with" and/or "contains" filter argument
2406# Returns an integer count of the resulting group list.
2407sub getGroupCount {
2408 my $dbh = shift;
2409
2410 my %args = @_;
2411
2412 my @filterargs;
2413
2414 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
2415 push @filterargs, "^$args{startwith}" if $args{startwith};
2416 push @filterargs, $args{filter} if $args{filter};
2417
2418 my $sql = "SELECT count(*) FROM groups ".
2419 "WHERE parent_group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2420 ($args{startwith} ? " AND group_name ~* ?" : '').
2421 ($args{filter} ? " AND group_name ~* ?" : '');
2422 my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
2423 $errstr = $dbh->errstr if !$count;
2424 return $count;
2425} # end getGroupCount
2426
2427
2428## DNSDB::getGroupList()
2429# Get a list of sub^n-groups in the specified group(s)
2430# Takes the same arguments as getGroupCount() above
2431# Returns an arrayref containing hashrefs suitable for feeding straight to HTML::Template
2432sub getGroupList {
2433 my $dbh = shift;
2434
2435 my %args = @_;
2436
2437 my @filterargs;
2438
2439 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
2440 push @filterargs, "^$args{startwith}" if $args{startwith};
2441 push @filterargs, $args{filter} if $args{filter};
2442
2443 # protection against bad or missing arguments
2444 $args{sortorder} = 'ASC' if !$args{sortorder};
2445 $args{offset} = 0 if !$args{offset};
2446
2447 # munge sortby for columns in database
2448 $args{sortby} = 'g.group_name' if $args{sortby} eq 'group';
2449 $args{sortby} = 'g2.group_name' if $args{sortby} eq 'parent';
2450
2451 my $sql = q(SELECT g.group_id AS groupid, g.group_name AS groupname, g2.group_name AS pgroup,
2452 count(distinct(u.username)) AS nusers, count(distinct(d.domain)) AS ndomains,
2453 count(distinct(r.revnet)) AS nrevzones
2454 FROM groups g
2455 INNER JOIN groups g2 ON g2.group_id=g.parent_group_id
2456 LEFT OUTER JOIN users u ON u.group_id=g.group_id
2457 LEFT OUTER JOIN domains d ON d.group_id=g.group_id
2458 LEFT OUTER JOIN revzones r ON r.group_id=g.group_id
2459 ).
2460 "WHERE g.parent_group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2461 ($args{startwith} ? " AND g.group_name ~* ?" : '').
2462 ($args{filter} ? " AND g.group_name ~* ?" : '').
2463 " GROUP BY g.group_id, g.group_name, g2.group_name ".
2464 " ORDER BY $args{sortby} $args{sortorder} ".
2465 ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
2466 my $glist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
2467 $errstr = $dbh->errstr if !$glist;
2468 return $glist;
2469} # end getGroupList
2470
2471
2472## DNSDB::groupID()
2473# Return the group ID based on the group name
2474# Takes a database handle and the group name
2475# Returns the group ID or undef on failure
2476sub groupID {
2477 $errstr = '';
2478 my $dbh = shift;
2479 my $group = shift;
2480 my ($grpid) = $dbh->selectrow_array("SELECT group_id FROM groups WHERE group=?", undef, ($group) );
2481 $errstr = $DBI::errstr if !$grpid;
2482 return $grpid if $grpid;
2483} # end groupID()
2484
2485
2486## DNSDB::addUser()
2487# Add a user.
2488# Takes a DB handle, username, group ID, password, state (active/inactive).
2489# Optionally accepts:
2490# user type (user/admin) - defaults to user
2491# permissions string - defaults to inherit from group
2492# three valid forms:
2493# i - Inherit permissions
2494# c:<user_id> - Clone permissions from <user_id>
2495# C:<permission list> - Set these specific permissions
2496# first name - defaults to username
2497# last name - defaults to blank
2498# phone - defaults to blank (could put other data within column def)
2499# Returns (OK,<uid>) on success, (FAIL,<message>) on failure
2500sub addUser {
2501 $errstr = '';
2502 my $dbh = shift;
2503 my $username = shift;
2504 my $group = shift;
2505 my $pass = shift;
2506 my $state = shift;
2507
2508 return ('FAIL', "Missing one or more required entries") if !defined($state);
2509 return ('FAIL', "Username must not be blank") if !$username;
2510
2511 my $type = shift || 'u'; # create limited users by default - fwiw, not sure yet how this will interact with ACLs
2512
2513 my $permstring = shift || 'i'; # default is to inhert permissions from group
2514
2515 my $fname = shift || $username;
2516 my $lname = shift || '';
2517 my $phone = shift || ''; # not going format-check
2518
2519 my $sth = $dbh->prepare("SELECT user_id FROM users WHERE username=?");
2520 my $user_id;
2521
2522# quick check to start to see if we've already got one
2523 $sth->execute($username);
2524 ($user_id) = $sth->fetchrow_array;
2525
2526 return ('FAIL', "User already exists") if $user_id;
2527
2528 # Allow transactions, and raise an exception on errors so we can catch it later.
2529 # Use local to make sure these get "reset" properly on exiting this block
2530 local $dbh->{AutoCommit} = 0;
2531 local $dbh->{RaiseError} = 1;
2532
2533 # Wrap all the SQL in a transaction
2534 eval {
2535 # insert the user... note we set inherited perms by default since
2536 # it's simple and cleans up some other bits of state
2537 my $sth = $dbh->prepare("INSERT INTO users ".
2538 "(group_id,username,password,firstname,lastname,phone,type,status,permission_id,inherit_perm) ".
2539 "VALUES (?,?,?,?,?,?,?,?,(SELECT permission_id FROM permissions WHERE group_id=?),'t')");
2540 $sth->execute($group,$username,unix_md5_crypt($pass),$fname,$lname,$phone,$type,$state,$group);
2541
2542 # get the ID...
2543 ($user_id) = $dbh->selectrow_array("SELECT currval('users_user_id_seq')");
2544
2545# Permissions! Gotta set'em all!
2546 die "Invalid permission string $permstring"
2547 if $permstring !~ /^(?:
2548 i # inherit
2549 |c:\d+ # clone
2550 # custom. no, the leading , is not a typo
2551 |C:(?:,(?:group|user|domain|record|self)_(?:edit|create|delete))*
2552 )$/x;
2553# bleh. I'd call another function to do my dirty work, but we're in the middle of a transaction already.
2554 if ($permstring ne 'i') {
2555 # for cloned or custom permissions, we have to create a new permissions entry.
2556 my $clonesrc = $group;
2557 if ($permstring =~ /^c:(\d+)/) { $clonesrc = $1; }
2558 $dbh->do("INSERT INTO permissions ($permlist,user_id) ".
2559 "SELECT $permlist,? FROM permissions WHERE permission_id=".
2560 "(SELECT permission_id FROM permissions WHERE ".($permstring =~ /^c:/ ? 'user' : 'group')."_id=?)",
2561 undef, ($user_id,$clonesrc) );
2562 $dbh->do("UPDATE users SET permission_id=".
2563 "(SELECT permission_id FROM permissions WHERE user_id=?) ".
2564 "WHERE user_id=?", undef, ($user_id, $user_id) );
2565 }
2566 if ($permstring =~ /^C:/) {
2567 # finally for custom permissions, we set the passed-in permissions (and unset
2568 # any that might have been brought in by the clone operation above)
2569 my ($permid) = $dbh->selectrow_array("SELECT permission_id FROM permissions WHERE user_id=?",
2570 undef, ($user_id) );
2571 foreach (@permtypes) {
2572 if ($permstring =~ /,$_/) {
2573 $dbh->do("UPDATE permissions SET $_='t' WHERE permission_id=?", undef, ($permid) );
2574 } else {
2575 $dbh->do("UPDATE permissions SET $_='f' WHERE permission_id=?", undef, ($permid) );
2576 }
2577 }
2578 }
2579
2580 $dbh->do("UPDATE users SET inherit_perm='n' WHERE user_id=?", undef, ($user_id) );
2581
2582##fixme: add another table to hold name/email for log table?
2583
2584 _log($dbh, (group_id => $group, entry => "Added user $username ($fname $lname)"));
2585 # once we get here, we should have suceeded.
2586 $dbh->commit;
2587 }; # end eval
2588
2589 if ($@) {
2590 my $msg = $@;
2591 eval { $dbh->rollback; };
2592 if ($config{log_failures}) {
2593 _log($dbh, (group_id => $group, entry => "Error adding user $username: $msg"));
2594 $dbh->commit; # since we enabled transactions earlier
2595 }
2596 return ('FAIL',"Error adding user $username: $msg");
2597 }
2598
2599 return ('OK',"User $username ($fname $lname) added");
2600} # end addUser
2601
2602
2603## DNSDB::getUserCount()
2604# Get count of users in group
2605# Takes a database handle and hash containing at least the current group, and optionally:
2606# - a reference list of secondary groups
2607# - a filter string
2608# - a "Starts with" string
2609sub getUserCount {
2610 my $dbh = shift;
2611
2612 my %args = @_;
2613
2614 my @filterargs;
2615
2616 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
2617 push @filterargs, "^$args{startwith}" if $args{startwith};
2618 push @filterargs, $args{filter} if $args{filter};
2619
2620
2621 my $sql = "SELECT count(*) FROM users ".
2622 "WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2623 ($args{startwith} ? " AND username ~* ?" : '').
2624 ($args{filter} ? " AND username ~* ?" : '');
2625 my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
2626 $errstr = $dbh->errstr if !$count;
2627 return $count;
2628} # end getUserCount()
2629
2630
2631## DNSDB::getUserList()
2632# Get list of users
2633# Takes the same arguments as getUserCount() above, plus optional:
2634# - sort field
2635# - sort order
2636# - offset/return-all-everything flag (defaults to $perpage records)
2637sub getUserList {
2638 my $dbh = shift;
2639
2640 my %args = @_;
2641
2642 my @filterargs;
2643
2644 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
2645 push @filterargs, "^$args{startwith}" if $args{startwith};
2646 push @filterargs, $args{filter} if $args{filter};
2647
2648 # better to request sorts on "simple" names, but it means we need to map it to real columns
2649 my %sortmap = (user => 'u.username', type => 'u.type', group => 'g.group_name', status => 'u.status',
2650 fname => 'fname');
2651 $args{sortby} = $sortmap{$args{sortby}};
2652
2653 # protection against bad or missing arguments
2654 $args{sortorder} = 'ASC' if !$args{sortorder};
2655 $args{sortby} = 'u.username' if !$args{sortby};
2656 $args{offset} = 0 if !$args{offset};
2657
2658 my $sql = "SELECT u.user_id, u.username, u.firstname || ' ' || u.lastname AS fname, u.type, g.group_name, u.status ".
2659 "FROM users u ".
2660 "INNER JOIN groups g ON u.group_id=g.group_id ".
2661 "WHERE u.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
2662 ($args{startwith} ? " AND u.username ~* ?" : '').
2663 ($args{filter} ? " AND u.username ~* ?" : '').
2664 " ORDER BY $args{sortby} $args{sortorder} ".
2665 ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
2666 my $ulist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
2667 $errstr = $dbh->errstr if !$ulist;
2668 return $ulist;
2669} # end getUserList()
2670
2671
2672## DNSDB::getUserDropdown()
2673# Get a list of usernames for use in a dropdown menu.
2674# Takes a database handle, current group, and optional "tag this as selected" flag.
2675# Returns a reference to a list of hashrefs suitable to feeding to HTML::Template
2676sub getUserDropdown {
2677 my $dbh = shift;
2678 my $grp = shift;
2679 my $sel = shift || 0;
2680
2681 my $sth = $dbh->prepare("SELECT username,user_id FROM users WHERE group_id=?");
2682 $sth->execute($grp);
2683
2684 my @userlist;
2685 while (my ($username,$uid) = $sth->fetchrow_array) {
2686 my %row = (
2687 username => $username,
2688 uid => $uid,
2689 selected => ($sel == $uid ? 1 : 0)
2690 );
2691 push @userlist, \%row;
2692 }
2693 return \@userlist;
2694} # end getUserDropdown()
2695
2696
2697## DNSDB::checkUser()
2698# Check user/pass combo on login
2699sub checkUser {
2700 my $dbh = shift;
2701 my $user = shift;
2702 my $inpass = shift;
2703
2704 my $sth = $dbh->prepare("SELECT user_id,group_id,password,firstname,lastname FROM users WHERE username=?");
2705 $sth->execute($user);
2706 my ($uid,$gid,$pass,$fname,$lname) = $sth->fetchrow_array;
2707 my $loginfailed = 1 if !defined($uid);
2708
2709 if ($pass =~ m|^\$1\$([A-Za-z0-9/.]+)\$|) {
2710 $loginfailed = 1 if $pass ne unix_md5_crypt($inpass,$1);
2711 } else {
2712 $loginfailed = 1 if $pass ne $inpass;
2713 }
2714
2715 # nnnngggg
2716 return ($uid, $gid);
2717} # end checkUser
2718
2719
2720## DNSDB:: updateUser()
2721# Update general data about user
2722sub updateUser {
2723 my $dbh = shift;
2724
2725##fixme: tweak calling convention so that we can update any given bit of data
2726 my $uid = shift;
2727 my $username = shift;
2728 my $group = shift;
2729 my $pass = shift;
2730 my $state = shift;
2731 my $type = shift || 'u';
2732 my $fname = shift || $username;
2733 my $lname = shift || '';
2734 my $phone = shift || ''; # not going format-check
2735
2736 my $resultmsg = '';
2737
2738 # Allow transactions, and raise an exception on errors so we can catch it later.
2739 # Use local to make sure these get "reset" properly on exiting this block
2740 local $dbh->{AutoCommit} = 0;
2741 local $dbh->{RaiseError} = 1;
2742
2743 my $sth;
2744
2745 # Password can be left blank; if so we assume there's one on file.
2746 # Actual blank passwords are bad, mm'kay?
2747 if (!$pass) {
2748 ($pass) = $dbh->selectrow_array("SELECT password FROM users WHERE user_id=?", undef, ($uid));
2749 } else {
2750 $pass = unix_md5_crypt($pass);
2751 }
2752
2753 eval {
2754 $dbh->do("UPDATE users SET username=?, password=?, firstname=?, lastname=?, phone=?, type=?, status=?".
2755 " WHERE user_id=?", undef, ($username, $pass, $fname, $lname, $phone, $type, $state, $uid));
2756 $resultmsg = "Updated user info for $username ($fname $lname)";
2757 _log($dbh, group_id => $group, entry => $resultmsg);
2758 $dbh->commit;
2759 };
2760 if ($@) {
2761 my $msg = $@;
2762 eval { $dbh->rollback; };
2763 if ($config{log_failures}) {
2764 _log($dbh, (group_id => $group, entry => "Error updating user $username: $msg"));
2765 $dbh->commit; # since we enabled transactions earlier
2766 }
2767 return ('FAIL',"Error updating user $username: $msg");
2768 }
2769
2770 return ('OK',$resultmsg);
2771} # end updateUser()
2772
2773
2774## DNSDB::delUser()
2775# Delete a user.
2776# Takes a database handle and user ID
2777# Returns a success/failure code and matching message
2778sub delUser {
2779 my $dbh = shift;
2780 my $userid = shift;
2781
2782 return ('FAIL',"Bad userid") if !defined($userid);
2783
2784 my $userdata = getUserData($dbh, $userid);
2785
2786 # Allow transactions, and raise an exception on errors so we can catch it later.
2787 # Use local to make sure these get "reset" properly on exiting this block
2788 local $dbh->{AutoCommit} = 0;
2789 local $dbh->{RaiseError} = 1;
2790
2791 eval {
2792 $dbh->do("DELETE FROM users WHERE user_id=?", undef, ($userid));
2793 _log($dbh, (group_id => $userdata->{group_id},
2794 entry => "Deleted user ID $userid/".$userdata->{username}.
2795 " (".$userdata->{firstname}." ".$userdata->{lastname}.")") );
2796 $dbh->commit;
2797 };
2798 if ($@) {
2799 my $msg = $@;
2800 eval { $dbh->rollback; };
2801 if ($config{log_failures}) {
2802 _log($dbh, (group_id => $userdata->{group_id}, entry => "Error deleting user ID ".
2803 "$userid/".$userdata->{username}.": $msg") );
2804 $dbh->commit;
2805 }
2806 return ('FAIL',"Error deleting user $userid/".$userdata->{username}.": $msg");
2807 }
2808
2809 return ('OK',"Deleted user ".$userdata->{username}." (".$userdata->{firstname}." ".$userdata->{lastname}.")");
2810} # end delUser
2811
2812
2813## DNSDB::userFullName()
2814# Return a pretty string!
2815# Takes a user_id and optional printf-ish string to indicate which pieces where:
2816# %u for the username
2817# %f for the first name
2818# %l for the last name
2819# All other text in the passed string will be left as-is.
2820##fixme: need a "smart" option too, so that missing/null/blank first/last names don't give funky output
2821sub userFullName {
2822 $errstr = '';
2823 my $dbh = shift;
2824 my $userid = shift;
2825 my $fullformat = shift || '%f %l (%u)';
2826 my $sth = $dbh->prepare("select username,firstname,lastname from users where user_id=?");
2827 $sth->execute($userid);
2828 my ($uname,$fname,$lname) = $sth->fetchrow_array();
2829 $errstr = $DBI::errstr if !$uname;
2830
2831 $fullformat =~ s/\%u/$uname/g;
2832 $fullformat =~ s/\%f/$fname/g;
2833 $fullformat =~ s/\%l/$lname/g;
2834
2835 return $fullformat;
2836} # end userFullName
2837
2838
2839## DNSDB::userStatus()
2840# Sets and/or returns a user's status
2841# Takes a database handle, user ID and optionally a status argument
2842# Returns undef on errors.
2843sub userStatus {
2844 my $dbh = shift;
2845 my $id = shift;
2846 my $newstatus = shift || 'mu';
2847
2848 return undef if $id !~ /^\d+$/;
2849
2850 my $userdata = getUserData($dbh, $id);
2851
2852 # Allow transactions, and raise an exception on errors so we can catch it later.
2853 # Use local to make sure these get "reset" properly on exiting this block
2854 local $dbh->{AutoCommit} = 0;
2855 local $dbh->{RaiseError} = 1;
2856
2857 if ($newstatus ne 'mu') {
2858 # ooo, fun! let's see what we were passed for status
2859 eval {
2860 $newstatus = 0 if $newstatus eq 'useroff';
2861 $newstatus = 1 if $newstatus eq 'useron';
2862 $dbh->do("UPDATE users SET status=? WHERE user_id=?", undef, ($newstatus, $id));
2863
2864 $resultstr = ($newstatus ? 'Enabled' : 'Disabled')." user ".$userdata->{username}.
2865 " (".$userdata->{firstname}." ".$userdata->{lastname}.")";
2866
2867 my %loghash;
2868 $loghash{group_id} = parentID($dbh, (id => $id, type => 'user'));
2869 $loghash{entry} = $resultstr;
2870 _log($dbh, %loghash);
2871
2872 $dbh->commit;
2873 };
2874 if ($@) {
2875 my $msg = $@;
2876 eval { $dbh->rollback; };
2877 $resultstr = '';
2878 $errstr = $msg;
2879##fixme: failure logging?
2880 return;
2881 }
2882 }
2883
2884 my ($status) = $dbh->selectrow_array("SELECT status FROM users WHERE user_id=?", undef, ($id));
2885 return $status;
2886} # end userStatus()
2887
2888
2889## DNSDB::getUserData()
2890# Get misc user data for display
2891sub getUserData {
2892 my $dbh = shift;
2893 my $uid = shift;
2894
2895 my $sth = $dbh->prepare("SELECT group_id,username,firstname,lastname,phone,type,status,inherit_perm ".
2896 "FROM users WHERE user_id=?");
2897 $sth->execute($uid);
2898 return $sth->fetchrow_hashref();
2899} # end getUserData()
2900
2901
2902## DNSDB::addLoc()
2903# Add a new location.
2904# Takes a database handle, group ID, short and long description, and a comma-separated
2905# list of IP addresses.
2906# Returns ('OK',<location>) on success, ('FAIL',<failmsg>) on failure
2907sub addLoc {
2908 my $dbh = shift;
2909 my $grp = shift;
2910 my $shdesc = shift;
2911 my $comments = shift;
2912 my $iplist = shift;
2913
2914 # $shdesc gets set to the generated location ID if possible, but these can be de-undefined here.
2915 $comments = '' if !$comments;
2916 $iplist = '' if !$iplist;
2917
2918 my $loc;
2919
2920 # Generate a location ID. This is, by spec, a two-character widget. We'll use [a-z][a-z]
2921 # for now; 676 locations should satisfy all but the largest of the huge networks.
2922 # Not sure whether these are case-sensitive, or what other rules might apply - in any case
2923 # the absolute maximum is 16K (256*256) since it's parsed by tinydns as a two-character field.
2924
2925# add just after "my $origloc = $loc;":
2926# # These expand the possible space from 26^2 to 52^2 [* note in testing only 2052 were achieved],
2927# # and wrap it around.
2928# # Yes, they skip a couple of possibles. No, I don't care.
2929# $loc = 'aA' if $loc eq 'zz';
2930# $loc = 'Aa' if $loc eq 'zZ';
2931# $loc = 'ZA' if $loc eq 'Zz';
2932# $loc = 'aa' if $loc eq 'ZZ';
2933
2934 # Allow transactions, and raise an exception on errors so we can catch it later.
2935 # Use local to make sure these get "reset" properly on exiting this block
2936 local $dbh->{AutoCommit} = 0;
2937 local $dbh->{RaiseError} = 1;
2938
2939##fixme: There is probably a far better way to do this. Sequential increments
2940# are marginally less stupid that pure random generation though, and the existence
2941# check makes sure we don't stomp on an imported one.
2942
2943 eval {
2944 # Get the "last" location. Note this is the only use for loc_id, because selecting on location Does Funky Things
2945 ($loc) = $dbh->selectrow_array("SELECT location FROM locations ORDER BY loc_id DESC LIMIT 1");
2946 ($loc) = ($loc =~ /^(..)/);
2947 my $origloc = $loc;
2948 # Make a change...
2949 $loc++;
2950 # ... and keep changing if it exists
2951 while ($dbh->selectrow_array("SELECT count(*) FROM locations WHERE location LIKE ?", undef, ($loc.'%'))) {
2952 $loc++;
2953 ($loc) = ($loc =~ /^(..)/);
2954 die "too many locations in use, can't add another one\n" if $loc eq $origloc;
2955##fixme: really need to handle this case faster somehow
2956#if $loc eq $origloc die "<thwap> bad admin: all locations used, your network is too fragmented";
2957 }
2958 # And now we should have a unique location. tinydns fundamentally limits the
2959 # number of these but there's no doc on what characters are valid.
2960 $shdesc = $loc if !$shdesc;
2961 $dbh->do("INSERT INTO locations (location, group_id, iplist, description, comments) VALUES (?,?,?,?,?)",
2962 undef, ($loc, $grp, $iplist, $shdesc, $comments) );
2963 _log($dbh, entry => "Added location ($shdesc, '$iplist')");
2964 $dbh->commit;
2965 };
2966 if ($@) {
2967 my $msg = $@;
2968 eval { $dbh->rollback; };
2969 if ($config{log_failures}) {
2970 $shdesc = $loc if !$shdesc;
2971 _log($dbh, (entry => "Failed adding location ($shdesc, '$iplist'): $msg"));
2972 $dbh->commit;
2973 }
2974 return ('FAIL',$msg);
2975 }
2976
2977 return ('OK',$loc);
2978} # end addLoc()
2979
2980
2981## DNSDB::updateLoc()
2982sub updateLoc {
2983 my $dbh = shift;
2984 my $loc = shift;
2985 my $grp = shift;
2986 my $shdesc = shift;
2987 my $comments = shift;
2988 my $iplist = shift;
2989
2990 $shdesc = '' if !$shdesc;
2991 $comments = '' if !$comments;
2992 $iplist = '' if !$iplist;
2993
2994 # Allow transactions, and raise an exception on errors so we can catch it later.
2995 # Use local to make sure these get "reset" properly on exiting this block
2996 local $dbh->{AutoCommit} = 0;
2997 local $dbh->{RaiseError} = 1;
2998
2999 my $oldloc = getLoc($dbh, $loc);
3000 my $okmsg = "Updated location (".$oldloc->{description}.", '".$oldloc->{iplist}."') to ($shdesc, '$iplist')";
3001
3002 eval {
3003 $dbh->do("UPDATE locations SET group_id=?,iplist=?,description=?,comments=? WHERE location=?",
3004 undef, ($grp, $iplist, $shdesc, $comments, $loc) );
3005 _log($dbh, entry => $okmsg);
3006 $dbh->commit;
3007 };
3008 if ($@) {
3009 my $msg = $@;
3010 eval { $dbh->rollback; };
3011 if ($config{log_failures}) {
3012 $shdesc = $loc if !$shdesc;
3013 _log($dbh, (entry => "Failed updating location ($shdesc, '$iplist'): $msg"));
3014 $dbh->commit;
3015 }
3016 return ('FAIL',$msg);
3017 }
3018
3019 return ('OK',$okmsg);
3020} # end updateLoc()
3021
3022
3023## DNSDB::delLoc()
3024sub delLoc {}
3025
3026
3027## DNSDB::getLoc()
3028sub getLoc {
3029 my $dbh = shift;
3030 my $loc = shift;
3031
3032 my $sth = $dbh->prepare("SELECT group_id,iplist,description,comments FROM locations WHERE location=?");
3033 $sth->execute($loc);
3034 return $sth->fetchrow_hashref();
3035} # end getLoc()
3036
3037
3038## DNSDB::getLocCount()
3039# Get count of locations/views
3040# Takes a database handle and hash containing at least the current group, and optionally:
3041# - a reference list of secondary groups
3042# - a filter string
3043# - a "Starts with" string
3044sub getLocCount {
3045 my $dbh = shift;
3046
3047 my %args = @_;
3048
3049 my @filterargs;
3050
3051 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
3052 push @filterargs, "^$args{startwith}" if $args{startwith};
3053 push @filterargs, $args{filter} if $args{filter};
3054
3055
3056 my $sql = "SELECT count(*) FROM locations ".
3057 "WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
3058 ($args{startwith} ? " AND description ~* ?" : '').
3059 ($args{filter} ? " AND description ~* ?" : '');
3060 my ($count) = $dbh->selectrow_array($sql, undef, (@filterargs) );
3061 $errstr = $dbh->errstr if !$count;
3062 return $count;
3063} # end getLocCount()
3064
3065
3066## DNSDB::getLocList()
3067sub getLocList {
3068 my $dbh = shift;
3069
3070 my %args = @_;
3071
3072 my @filterargs;
3073
3074 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
3075 push @filterargs, "^$args{startwith}" if $args{startwith};
3076 push @filterargs, $args{filter} if $args{filter};
3077
3078 # better to request sorts on "simple" names, but it means we need to map it to real columns
3079# my %sortmap = (user => 'u.username', type => 'u.type', group => 'g.group_name', status => 'u.status',
3080# fname => 'fname');
3081# $args{sortby} = $sortmap{$args{sortby}};
3082
3083 # protection against bad or missing arguments
3084 $args{sortorder} = 'ASC' if !$args{sortorder};
3085 $args{sortby} = 'l.description' if !$args{sortby};
3086 $args{offset} = 0 if !$args{offset};
3087
3088 my $sql = "SELECT l.location, l.description, l.iplist, g.group_name ".
3089 "FROM locations l ".
3090 "INNER JOIN groups g ON l.group_id=g.group_id ".
3091 "WHERE l.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
3092 ($args{startwith} ? " AND l.description ~* ?" : '').
3093 ($args{filter} ? " AND l.description ~* ?" : '').
3094 " ORDER BY $args{sortby} $args{sortorder} ".
3095 ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
3096 my $ulist = $dbh->selectall_arrayref($sql, { Slice => {} }, (@filterargs) );
3097 $errstr = $dbh->errstr if !$ulist;
3098 return $ulist;
3099} # end getLocList()
3100
3101
3102## DNSDB::getLocDropdown()
3103
3104
3105## DNSDB::getSOA()
3106# Return all suitable fields from an SOA record in separate elements of a hash
3107# Takes a database handle, default/live flag, domain/reverse flag, and parent ID
3108sub getSOA {
3109 $errstr = '';
3110 my $dbh = shift;
3111 my $def = shift;
3112 my $rev = shift;
3113 my $id = shift;
3114
3115 # (ab)use distance and weight columns to store SOA data? can't for default_rev_records...
3116 # - should really attach serial to the zone parent somewhere
3117
3118 my $sql = "SELECT record_id,host,val,ttl from "._rectable($def,$rev).
3119 " WHERE "._recparent($def,$rev)." = ? AND type=$reverse_typemap{SOA}";
3120 my $ret = $dbh->selectrow_hashref($sql, undef, ($id) );
3121 return if !$ret;
3122##fixme: stick a flag somewhere if the record doesn't exist. by the API, this is an impossible case, but...
3123
3124 ($ret->{contact},$ret->{prins}) = split /:/, $ret->{host};
3125 delete $ret->{host};
3126 ($ret->{refresh},$ret->{retry},$ret->{expire},$ret->{minttl}) = split /:/, $ret->{val};
3127 delete $ret->{val};
3128
3129 return $ret;
3130} # end getSOA()
3131
3132
3133## DNSDB::updateSOA()
3134# Update the specified SOA record
3135# Takes a database handle, default/live flag, forward/reverse flag, and SOA data hash
3136# Returns a two-element list with a result code and message
3137sub updateSOA {
3138 my $dbh = shift;
3139 my $defrec = shift;
3140 my $revrec = shift;
3141
3142 my %soa = @_;
3143
3144 my $oldsoa = getSOA($dbh, $defrec, $revrec, $soa{id});
3145
3146 my $msg;
3147 my %logdata;
3148 if ($defrec eq 'n') {
3149 $logdata{domain_id} = $soa{id} if $revrec eq 'n';
3150 $logdata{rdns_id} = $soa{id} if $revrec eq 'y';
3151 $logdata{group_id} = parentID($dbh, (id => $soa{id}, revrec => $revrec,
3152 type => ($revrec eq 'n' ? 'domain' : 'revzone') ) );
3153 } else {
3154 $logdata{group_id} = $soa{id};
3155 }
3156 my $parname = ($defrec eq 'y' ? groupName($dbh, $soa{id}) :
3157 ($revrec eq 'n' ? domainName($dbh, $soa{id}) : revName($dbh, $soa{id})) );
3158
3159 # Allow transactions, and raise an exception on errors so we can catch it later.
3160 # Use local to make sure these get "reset" properly on exiting this block
3161 local $dbh->{AutoCommit} = 0;
3162 local $dbh->{RaiseError} = 1;
3163
3164 eval {
3165 my $sql = "UPDATE "._rectable($defrec, $revrec)." SET host=?, val=?, ttl=? WHERE record_id=? AND type=6";
3166 $dbh->do($sql, undef, ("$soa{contact}:$soa{prins}", "$soa{refresh}:$soa{retry}:$soa{expire}:$soa{minttl}",
3167 $soa{ttl}, $oldsoa->{record_id}) );
3168 $msg = "Updated ".($defrec eq 'y' ? ($revrec eq 'y' ? 'default reverse ' : 'default ') : '').
3169 "SOA for $parname: ".
3170 "(ns $oldsoa->{prins}, contact $oldsoa->{contact}, refresh $oldsoa->{refresh},".
3171 " retry $oldsoa->{retry}, expire $oldsoa->{expire}, minTTL $oldsoa->{minttl}, TTL $oldsoa->{ttl}) to ".
3172 "(ns $soa{prins}, contact $soa{contact}, refresh $soa{refresh},".
3173 " retry $soa{retry}, expire $soa{expire}, minTTL $soa{minttl}, TTL $soa{ttl})";
3174
3175 $logdata{entry} = $msg;
3176 _log($dbh, %logdata);
3177
3178 $dbh->commit;
3179 };
3180 if ($@) {
3181 $msg = $@;
3182 eval { $dbh->rollback; };
3183 $logdata{entry} = "Error updating ".($defrec eq 'y' ? ($revrec eq 'y' ? 'default reverse zone ' : 'default ') : '').
3184 "SOA record for $parname: $msg";
3185 if ($config{log_failures}) {
3186 _log($dbh, %logdata);
3187 $dbh->commit;
3188 }
3189 return ('FAIL', $logdata{entry});
3190 } else {
3191 return ('OK', $msg);
3192 }
3193} # end updateSOA()
3194
3195
3196## DNSDB::getRecLine()
3197# Return all data fields for a zone record in separate elements of a hash
3198# Takes a database handle, default/live flag, forward/reverse flag, and record ID
3199sub getRecLine {
3200 $errstr = '';
3201 my $dbh = shift;
3202 my $defrec = shift;
3203 my $revrec = shift;
3204 my $id = shift;
3205
3206 my $sql = "SELECT record_id,host,type,val,ttl".($revrec eq 'n' ? ',distance,weight,port' : '').
3207 (($defrec eq 'y') ? ',group_id FROM ' : ',domain_id,rdns_id FROM ').
3208 _rectable($defrec,$revrec)." WHERE record_id=?";
3209 my $ret = $dbh->selectrow_hashref($sql, undef, ($id) );
3210
3211 if ($dbh->err) {
3212 $errstr = $DBI::errstr;
3213 return undef;
3214 }
3215
3216 if (!$ret) {
3217 $errstr = "No such record";
3218 return undef;
3219 }
3220
3221 # explicitly set a parent id
3222 if ($defrec eq 'y') {
3223 $ret->{parid} = $ret->{group_id};
3224 } else {
3225 $ret->{parid} = (($revrec eq 'n') ? $ret->{domain_id} : $ret->{rdns_id});
3226 # and a secondary if we have a custom type that lives in both a forward and reverse zone
3227 $ret->{secid} = (($revrec eq 'y') ? $ret->{domain_id} : $ret->{rdns_id}) if $ret->{type} > 65279;
3228 }
3229
3230 return $ret;
3231}
3232
3233
3234##fixme: should use above (getRecLine()) to get lines for below?
3235## DNSDB::getDomRecs()
3236# Return records for a domain
3237# Takes a database handle, default/live flag, group/domain ID, start,
3238# number of records, sort field, and sort order
3239# Returns a reference to an array of hashes
3240sub getDomRecs {
3241 $errstr = '';
3242 my $dbh = shift;
3243 my $def = shift;
3244 my $rev = shift;
3245 my $id = shift;
3246 my $nrecs = shift || 'all';
3247 my $nstart = shift || 0;
3248
3249## for order, need to map input to column names
3250 my $order = shift || 'host';
3251 my $direction = shift || 'ASC';
3252
3253 my $filter = shift || '';
3254
3255 # sort reverse zones on IP, correctly
3256 # do other fiddling with $order while we're at it.
3257 $order = "r.$order";
3258 $order = 'CAST (r.val AS inet)' if $rev eq 'y' && $order eq 'r.val';
3259 $order = 't.alphaorder' if $order eq 'r.type';
3260
3261 my $sql = "SELECT r.record_id,r.host,r.type,r.val,r.ttl";
3262 $sql .= ",r.distance,r.weight,r.port" if $rev eq 'n';
3263 $sql .= " FROM "._rectable($def,$rev)." r ";
3264 $sql .= "INNER JOIN rectypes t ON r.type=t.val "; # for sorting by type alphabetically
3265 $sql .= "WHERE "._recparent($def,$rev)." = ?";
3266 $sql .= " AND NOT r.type=$reverse_typemap{SOA}";
3267 $sql .= " AND host ~* ?" if $filter;
3268 # use alphaorder column for "correct" ordering of sort-by-type instead of DNS RR type number
3269 $sql .= " ORDER BY $order $direction";
3270 # ensure consistent ordering by sorting on record_id too
3271 $sql .= ", record_id $direction";
3272
3273 my @bindvars = ($id);
3274 push @bindvars, $filter if $filter;
3275
3276 # just to be ultraparanoid about SQL injection vectors
3277 if ($nstart ne 'all') {
3278 $sql .= " LIMIT ? OFFSET ?";
3279 push @bindvars, $nrecs;
3280 push @bindvars, ($nstart*$nrecs);
3281 }
3282 my $sth = $dbh->prepare($sql) or warn $dbh->errstr;
3283 $sth->execute(@bindvars) or warn "$sql: ".$sth->errstr;
3284
3285 my @retbase;
3286 while (my $ref = $sth->fetchrow_hashref()) {
3287 push @retbase, $ref;
3288 }
3289
3290 my $ret = \@retbase;
3291 return $ret;
3292} # end getDomRecs()
3293
3294
3295## DNSDB::getRecCount()
3296# Return count of non-SOA records in zone (or default records in a group)
3297# Takes a database handle, default/live flag, reverse/forward flag, group/domain ID,
3298# and optional filtering modifier
3299# Returns the count
3300sub getRecCount {
3301 my $dbh = shift;
3302 my $defrec = shift;
3303 my $revrec = shift;
3304 my $id = shift;
3305 my $filter = shift || '';
3306
3307 # keep the nasties down, since we can't ?-sub this bit. :/
3308 # note this is chars allowed in DNS hostnames
3309 $filter =~ s/[^a-zA-Z0-9_.:-]//g;
3310
3311 my @bindvars = ($id);
3312 push @bindvars, $filter if $filter;
3313 my $sql = "SELECT count(*) FROM ".
3314 _rectable($defrec,$revrec).
3315 " WHERE "._recparent($defrec,$revrec)."=? ".
3316 "AND NOT type=$reverse_typemap{SOA}".
3317 ($filter ? " AND host ~* ?" : '');
3318 my ($count) = $dbh->selectrow_array($sql, undef, (@bindvars) );
3319
3320 return $count;
3321
3322} # end getRecCount()
3323
3324
3325## DNSDB::addRec()
3326# Add a new record to a domain or a group's default records
3327# Takes a database handle, default/live flag, group/domain ID,
3328# host, type, value, and TTL
3329# Some types require additional detail: "distance" for MX and SRV,
3330# and weight/port for SRV
3331# Returns a status code and detail message in case of error
3332##fixme: pass a hash with the record data, not a series of separate values
3333sub addRec {
3334 $errstr = '';
3335 my $dbh = shift;
3336 my $defrec = shift;
3337 my $revrec = shift;
3338 my $id = shift; # parent (group_id for defrecs, rdns_id for reverse records,
3339 # domain_id for domain records)
3340
3341 my $host = shift;
3342 my $rectype = shift; # reference so we can coerce it if "+"-types can't find both zones
3343 my $val = shift;
3344 my $ttl = shift;
3345
3346 # prep for validation
3347 my $addr = NetAddr::IP->new($$val);
3348 $$host =~ s/\.+$//; # FQDNs ending in . are an internal detail, and really shouldn't be exposed in the UI.
3349
3350 my $domid = 0;
3351 my $revid = 0;
3352
3353 my $retcode = 'OK'; # assume everything will go OK
3354 my $retmsg = '';
3355
3356 # do simple validation first
3357 return ('FAIL', "TTL must be numeric") unless $ttl =~ /^\d+$/;
3358
3359 # Quick check on hostname parts. Note the regex is more forgiving than the error message;
3360 # domain names technically are case-insensitive, and we use printf-like % codes for a couple
3361 # of types. Other things may also be added to validate default records of several flavours.
3362 return ('FAIL', "Hostnames may not contain anything other than (0-9 a-z . _)")
3363 if $defrec eq 'n' && ($revrec eq 'y' ? $$rectype != $reverse_typemap{TXT} : 1) &&
3364 $$host !~ /^[0-9a-z_%.-]+$/i;
3365
3366 # Collect these even if we're only doing a simple A record so we can call *any* validation sub
3367 my $dist = shift;
3368 my $weight = shift;
3369 my $port = shift;
3370
3371 my $fields;
3372 my @vallist;
3373
3374 # Call the validation sub for the type requested.
3375 ($retcode,$retmsg) = $validators{$$rectype}($dbh, (defrec => $defrec, revrec => $revrec, id => $id,
3376 host => $host, rectype => $rectype, val => $val, addr => $addr,
3377 dist => \$dist, port => \$port, weight => \$weight,
3378 fields => \$fields, vallist => \@vallist) );
3379
3380 return ($retcode,$retmsg) if $retcode eq 'FAIL';
3381
3382 # Set up database fields and bind parameters
3383 $fields .= "host,type,val,ttl,"._recparent($defrec,$revrec);
3384 push @vallist, ($$host,$$rectype,$$val,$ttl,$id);
3385 my $vallen = '?'.(',?'x$#vallist);
3386
3387 # Put together the success log entry. We have to use this horrible kludge
3388 # because domain_id and rdns_id may or may not be present, and if they are,
3389 # they're not at a guaranteed consistent index in the array. wheee!
3390 my %logdata;
3391 my @ftmp = split /,/, $fields;
3392 for (my $i=0; $i <= $#vallist; $i++) {
3393 $logdata{domain_id} = $vallist[$i] if $ftmp[$i] eq 'domain_id';
3394 $logdata{rdns_id} = $vallist[$i] if $ftmp[$i] eq 'rdns_id';
3395 }
3396 $logdata{group_id} = $id if $defrec eq 'y';
3397 $logdata{group_id} = parentID($dbh,
3398 (id => $id, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec) )
3399 if $defrec eq 'n';
3400 $logdata{entry} = "Added ".($defrec eq 'y' ? 'default record' : 'record');
3401 # NS records for revzones get special treatment
3402 if ($revrec eq 'y' && $$rectype == 2) {
3403 $logdata{entry} .= " '$$val $typemap{$$rectype} $$host";
3404 } else {
3405 $logdata{entry} .= " '$$host $typemap{$$rectype} $$val";
3406 }
3407
3408 $logdata{entry} .= " [distance $dist]" if $typemap{$$rectype} eq 'MX';
3409 $logdata{entry} .= " [priority $dist] [weight $weight] [port $port]"
3410 if $typemap{$$rectype} eq 'SRV';
3411 $logdata{entry} .= "', TTL $ttl";
3412
3413 # Allow transactions, and raise an exception on errors so we can catch it later.
3414 # Use local to make sure these get "reset" properly on exiting this block
3415 local $dbh->{AutoCommit} = 0;
3416 local $dbh->{RaiseError} = 1;
3417
3418 eval {
3419 $dbh->do("INSERT INTO "._rectable($defrec, $revrec)." ($fields) VALUES ($vallen)",
3420 undef, @vallist);
3421 _log($dbh, %logdata);
3422 $dbh->commit;
3423 };
3424 if ($@) {
3425 my $msg = $@;
3426 eval { $dbh->rollback; };
3427 if ($config{log_failures}) {
3428 $logdata{entry} = "Failed adding ".($defrec eq 'y' ? 'default ' : '').
3429 "record '$$host $typemap{$$rectype} $$val', TTL $ttl ($msg)";
3430 _log($dbh, %logdata);
3431 $dbh->commit;
3432 }
3433 return ('FAIL',$msg);
3434 }
3435
3436 $resultstr = $logdata{entry};
3437 return ($retcode, $retmsg);
3438
3439} # end addRec()
3440
3441
3442## DNSDB::updateRec()
3443# Update a record
3444# Takes a database handle, default and reverse flags, record ID, immediate parent ID, and new record data.
3445# Returns a status code and message
3446sub updateRec {
3447 $errstr = '';
3448
3449 my $dbh = shift;
3450 my $defrec = shift;
3451 my $revrec = shift;
3452 my $id = shift;
3453 my $parid = shift; # immediate parent entity that we're descending from to update the record
3454
3455 # all records have these
3456 my $host = shift;
3457 my $hostbk = $$host; # Keep a backup copy of the original, so we can WARN if the update mangles the domain
3458 my $rectype = shift;
3459 my $val = shift;
3460 my $ttl = shift;
3461
3462 # prep for validation
3463 my $addr = NetAddr::IP->new($$val);
3464 $$host =~ s/\.+$//; # FQDNs ending in . are an internal detail, and really shouldn't be exposed in the UI.
3465
3466 my $domid = 0;
3467 my $revid = 0;
3468
3469 my $retcode = 'OK'; # assume everything will go OK
3470 my $retmsg = '';
3471
3472 # do simple validation first
3473 return ('FAIL', "TTL must be numeric") unless $ttl =~ /^\d+$/;
3474
3475 # Quick check on hostname parts. Note the regex is more forgiving than the error message;
3476 # domain names technically are case-insensitive, and we use printf-like % codes for a couple
3477 # of types. Other things may also be added to validate default records of several flavours.
3478 return ('FAIL', "Hostnames may not contain anything other than (0-9 a-z - . _)")
3479 if $defrec eq 'n' && ($revrec eq 'y' ? $$rectype != $reverse_typemap{TXT} : 1) &&
3480 $$host !~ /^[0-9a-z_%.-]+$/i;
3481
3482 # only MX and SRV will use these
3483 my $dist = shift || 0;
3484 my $weight = shift || 0;
3485 my $port = shift || 0;
3486
3487 my $fields;
3488 my @vallist;
3489
3490 # get old record data so we have the right parent ID
3491 # and for logging (eventually)
3492 my $oldrec = getRecLine($dbh, $defrec, $revrec, $id);
3493
3494 # Call the validation sub for the type requested.
3495 # Note the ID to pass here is the *parent*, not the record
3496 ($retcode,$retmsg) = $validators{$$rectype}($dbh, (defrec => $defrec, revrec => $revrec,
3497 id => ($defrec eq 'y' ? $oldrec->{group_id} : ($revrec eq 'n' ? $oldrec->{domain_id} : $oldrec->{rdns_id})),
3498 host => $host, rectype => $rectype, val => $val, addr => $addr,
3499 dist => \$dist, port => \$port, weight => \$weight,
3500 fields => \$fields, vallist => \@vallist,
3501 update => $id) );
3502
3503 return ($retcode,$retmsg) if $retcode eq 'FAIL';
3504
3505 # Set up database fields and bind parameters. Note only the optional fields
3506 # (distance, weight, port, secondary parent ID) are added in the validation call above
3507 $fields .= "host,type,val,ttl,"._recparent($defrec,$revrec);
3508 push @vallist, ($$host,$$rectype,$$val,$ttl,
3509 ($defrec eq 'y' ? $oldrec->{group_id} : ($revrec eq 'n' ? $oldrec->{domain_id} : $oldrec->{rdns_id})) );
3510
3511 # hack hack PTHUI
3512 # need to forcibly make sure we disassociate a record with a parent it's no longer related to.
3513 # eg, PTR records may not have a domain parent, or A/AAAA records may not have a revzone parent.
3514 # mainly needed for crossover types that got coerced down to "standard" types
3515 if ($defrec eq 'n') {
3516 if ($$rectype == $reverse_typemap{PTR}) {
3517 $fields .= ",domain_id";
3518 push @vallist, 0;
3519 }
3520 if ($$rectype == $reverse_typemap{A} || $$rectype == $reverse_typemap{AAAA}) {
3521 $fields .= ",rdns_id";
3522 push @vallist, 0;
3523 }
3524 }
3525 # fix fat-finger-originated record type changes
3526 if ($$rectype == 65285) {
3527 $fields .= ",rdns_id" if $revrec eq 'n';
3528 $fields .= ",domain_id" if $revrec eq 'y';
3529 push @vallist, 0;
3530 }
3531 if ($defrec eq 'n') {
3532 $domid = $parid if $revrec eq 'n';
3533 $revid = $parid if $revrec eq 'y';
3534 }
3535
3536 # Put together the success log entry. Horrible kludge from addRec() copied as-is since
3537 # we don't know whether the passed arguments or retrieved values for domain_id and rdns_id
3538 # will be maintained (due to "not-in-zone" validation changes)
3539 my %logdata;
3540 $logdata{domain_id} = $domid;
3541 $logdata{rdns_id} = $revid;
3542 my @ftmp = split /,/, $fields;
3543 for (my $i=0; $i <= $#vallist; $i++) {
3544 $logdata{domain_id} = $vallist[$i] if $ftmp[$i] eq 'domain_id';
3545 $logdata{rdns_id} = $vallist[$i] if $ftmp[$i] eq 'rdns_id';
3546 }
3547 $logdata{group_id} = $parid if $defrec eq 'y';
3548 $logdata{group_id} = parentID($dbh,
3549 (id => $parid, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec) )
3550 if $defrec eq 'n';
3551 $logdata{entry} = "Updated ".($defrec eq 'y' ? 'default record' : 'record')." from\n";
3552 # NS records for revzones get special treatment
3553 if ($revrec eq 'y' && $$rectype == 2) {
3554 $logdata{entry} .= " '$oldrec->{val} $typemap{$oldrec->{type}} $oldrec->{host}";
3555 } else {
3556 $logdata{entry} .= " '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}";
3557 }
3558 $logdata{entry} .= " [distance $oldrec->{distance}]" if $typemap{$oldrec->{type}} eq 'MX';
3559 $logdata{entry} .= " [priority $oldrec->{distance}] [weight $oldrec->{weight}] [port $oldrec->{port}]"
3560 if $typemap{$oldrec->{type}} eq 'SRV';
3561 $logdata{entry} .= "', TTL $oldrec->{ttl}\nto\n";
3562 # More NS special
3563 if ($revrec eq 'y' && $$rectype == 2) {
3564 $logdata{entry} .= "'$$val $typemap{$$rectype} $$host";
3565 } else {
3566 $logdata{entry} .= "'$$host $typemap{$$rectype} $$val";
3567 }
3568 $logdata{entry} .= " [distance $dist]" if $typemap{$$rectype} eq 'MX';
3569 $logdata{entry} .= " [priority $dist] [weight $weight] [port $port]" if $typemap{$$rectype} eq 'SRV';
3570 $logdata{entry} .= "', TTL $ttl";
3571
3572 local $dbh->{AutoCommit} = 0;
3573 local $dbh->{RaiseError} = 1;
3574
3575 # Fiddle the field list into something suitable for updates
3576 $fields =~ s/,/=?,/g;
3577 $fields .= "=?";
3578
3579 eval {
3580 $dbh->do("UPDATE "._rectable($defrec,$revrec)." SET $fields WHERE record_id=?", undef, (@vallist, $id) );
3581 _log($dbh, %logdata);
3582 $dbh->commit;
3583 };
3584 if ($@) {
3585 my $msg = $@;
3586 eval { $dbh->rollback; };
3587 if ($config{log_failures}) {
3588 $logdata{entry} = "Failed updating ".($defrec eq 'y' ? 'default ' : '').
3589 "record '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}', TTL $oldrec->{ttl} ($msg)";
3590 _log($dbh, %logdata);
3591 $dbh->commit;
3592 }
3593 return ('FAIL', $msg);
3594 }
3595
3596 $resultstr = $logdata{entry};
3597 return ($retcode, $retmsg);
3598} # end updateRec()
3599
3600
3601## DNSDB::delRec()
3602# Delete a record.
3603sub delRec {
3604 $errstr = '';
3605 my $dbh = shift;
3606 my $defrec = shift;
3607 my $revrec = shift;
3608 my $id = shift;
3609
3610 my $oldrec = getRecLine($dbh, $defrec, $revrec, $id);
3611
3612 # Allow transactions, and raise an exception on errors so we can catch it later.
3613 # Use local to make sure these get "reset" properly on exiting this block
3614 local $dbh->{AutoCommit} = 0;
3615 local $dbh->{RaiseError} = 1;
3616
3617 # Put together the log entry
3618 my %logdata;
3619 $logdata{domain_id} = $oldrec->{domain_id};
3620 $logdata{rdns_id} = $oldrec->{rdns_id};
3621 $logdata{group_id} = $oldrec->{group_id} if $defrec eq 'y';
3622 $logdata{group_id} = parentID($dbh,
3623 (id => $oldrec->{domain_id}, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec) )
3624 if $defrec eq 'n';
3625 $logdata{entry} = "Deleted ".($defrec eq 'y' ? 'default record ' : 'record ').
3626 "'$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}";
3627 $logdata{entry} .= " [distance $oldrec->{distance}]" if $typemap{$oldrec->{type}} eq 'MX';
3628 $logdata{entry} .= " [priority $oldrec->{distance}] [weight $oldrec->{weight}] [port $oldrec->{port}]"
3629 if $typemap{$oldrec->{type}} eq 'SRV';
3630 $logdata{entry} .= "', TTL $oldrec->{ttl}\n";
3631
3632 eval {
3633 my $sth = $dbh->do("DELETE FROM "._rectable($defrec,$revrec)." WHERE record_id=?", undef, ($id));
3634 _log($dbh, %logdata);
3635 $dbh->commit;
3636 };
3637 if ($@) {
3638 my $msg = $@;
3639 eval { $dbh->rollback; };
3640 if ($config{log_failures}) {
3641 $logdata{entry} = "Error deleting ".($defrec eq 'y' ? 'default record' : 'record').
3642 " '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}', TTL $oldrec->{ttl} ($msg)";
3643 _log($dbh, %logdata);
3644 $dbh->commit;
3645 }
3646 return ('FAIL', $msg);
3647 }
3648
3649 return ('OK',$logdata{entry});
3650} # end delRec()
3651
3652
3653## DNSDB::getLogCount()
3654# Get a count of log entries
3655# Takes a database handle and a hash containing at least:
3656# - Entity ID and entity type as the primary log "slice"
3657sub getLogCount {
3658 my $dbh = shift;
3659
3660 my %args = @_;
3661
3662 my @filterargs;
3663##fixme: which fields do we want to filter on?
3664# push @filterargs,
3665
3666 $errstr = 'Missing primary parent ID and/or type';
3667 # fail early if we don't have a "prime" ID to look for log entries for
3668 return if !$args{id};
3669
3670 # or if the prime id type is missing or invalid
3671 return if !$args{logtype};
3672 $args{logtype} = 'revzone' if $args{logtype} eq 'rdns'; # hack pthui
3673 $args{logtype} = 'domain' if $args{logtype} eq 'dom'; # hack pthui
3674 return if !grep /^$args{logtype}$/, ('group', 'domain', 'revzone', 'user');
3675
3676 $args{logtype} = 'revzone' if $args{logtype} eq 'rdns'; # hack pthui
3677
3678 my $sql = "SELECT count(*) FROM log ".
3679 "WHERE $id_col{$args{logtype}}=?".
3680 ($args{filter} ? " AND entry ~* ?" : '');
3681 my ($count) = $dbh->selectrow_array($sql, undef, ($args{id}, @filterargs) );
3682 $errstr = $dbh->errstr if !$count;
3683 return $count;
3684} # end getLogCount()
3685
3686
3687## DNSDB::getLogEntries()
3688# Get a list of log entries
3689# Takes arguments as with getLogCount() above, plus optional:
3690# - sort field
3691# - sort order
3692# - offset for pagination
3693sub getLogEntries {
3694 my $dbh = shift;
3695
3696 my %args = @_;
3697
3698 my @filterargs;
3699
3700 # fail early if we don't have a "prime" ID to look for log entries for
3701 return if !$args{id};
3702
3703 # or if the prime id type is missing or invalid
3704 return if !$args{logtype};
3705 $args{logtype} = 'revzone' if $args{logtype} eq 'rdns'; # hack pthui
3706 $args{logtype} = 'domain' if $args{logtype} eq 'dom'; # hack pthui
3707 return if !grep /^$args{logtype}$/, ('group', 'domain', 'revzone', 'user');
3708
3709 # Sorting defaults
3710 $args{sortby} = 'stamp' if !$args{sortby};
3711 $args{sortorder} = 'DESC' if !$args{sortorder};
3712 $args{offset} = 0 if !$args{offset};
3713
3714 my %sortmap = (fname => 'name', username => 'email', entry => 'entry', stamp => 'stamp');
3715 $args{sortby} = $sortmap{$args{sortby}};
3716
3717 my $sql = "SELECT user_id AS userid, email AS useremail, name AS userfname, entry AS logentry, ".
3718 "date_trunc('second',stamp) AS logtime ".
3719 "FROM log ".
3720 "WHERE $id_col{$args{logtype}}=?".
3721 ($args{filter} ? " AND entry ~* ?" : '').
3722 " ORDER BY $args{sortby} $args{sortorder}, log_id $args{sortorder}".
3723 ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage} OFFSET ".$args{offset}*$config{perpage});
3724 my $loglist = $dbh->selectall_arrayref($sql, { Slice => {} }, ($args{id}, @filterargs) );
3725 $errstr = $dbh->errstr if !$loglist;
3726 return $loglist;
3727} # end getLogEntries()
3728
3729
3730## DNSDB::getTypelist()
3731# Get a list of record types for various UI dropdowns
3732# Takes database handle, forward/reverse/lookup flag, and optional "tag as selected" indicator (defaults to A)
3733# Returns an arrayref to list of hashrefs perfect for HTML::Template
3734sub getTypelist {
3735 my $dbh = shift;
3736 my $recgroup = shift;
3737 my $type = shift || $reverse_typemap{A};
3738
3739 # also accepting $webvar{revrec}!
3740 $recgroup = 'f' if $recgroup eq 'n';
3741 $recgroup = 'r' if $recgroup eq 'y';
3742
3743 my $sql = "SELECT val,name FROM rectypes WHERE ";
3744 if ($recgroup eq 'r') {
3745 # reverse zone types
3746 $sql .= "stdflag=2 OR stdflag=3";
3747 } elsif ($recgroup eq 'l') {
3748 # DNS lookup types. Note we avoid our custom types >= 65280, since those are entirely internal.
3749 $sql .= "(stdflag=1 OR stdflag=2 OR stdflag=3) AND val < 65280";
3750 } else {
3751 # default; forward zone types. technically $type eq 'f' but not worth the error message.
3752 $sql .= "stdflag=1 OR stdflag=2";
3753 }
3754 $sql .= " ORDER BY listorder";
3755
3756 my $sth = $dbh->prepare($sql);
3757 $sth->execute;
3758 my @typelist;
3759 while (my ($rval,$rname) = $sth->fetchrow_array()) {
3760 my %row = ( recval => $rval, recname => $rname );
3761 $row{tselect} = 1 if $rval == $type;
3762 push @typelist, \%row;
3763 }
3764
3765 # Add SOA on lookups since it's not listed in other dropdowns.
3766 if ($recgroup eq 'l') {
3767 my %row = ( recval => $reverse_typemap{SOA}, recname => 'SOA' );
3768 $row{tselect} = 1 if $reverse_typemap{SOA} == $type;
3769 push @typelist, \%row;
3770 }
3771
3772 return \@typelist;
3773} # end getTypelist()
3774
3775
3776## DNSDB::parentID()
3777# Get ID of entity that is nearest parent to requested id
3778# Takes a database handle and a hash of entity ID, entity type, optional parent type flag
3779# (domain/reverse zone or group), and optional default/live and forward/reverse flags
3780# Returns the ID or undef on failure
3781sub parentID {
3782 my $dbh = shift;
3783
3784 my %args = @_;
3785
3786 # clean up the parent-type. Set it to group if not set; coerce revzone to domain for simpler logic
3787 $args{partype} = 'group' if !$args{partype};
3788 $args{partype} = 'domain' if $args{partype} eq 'revzone';
3789
3790 # clean up defrec and revrec. default to live record, forward zone
3791 $args{defrec} = 'n' if !$args{defrec};
3792 $args{revrec} = 'n' if !$args{revrec};
3793
3794 if ($par_type{$args{partype}} eq 'domain') {
3795 # only live records can have a domain/zone parent
3796 return unless ($args{type} eq 'record' && $args{defrec} eq 'n');
3797 my $result = $dbh->selectrow_hashref("SELECT ".($args{revrec} eq 'n' ? 'domain_id' : 'rdns_id').
3798 " FROM records WHERE record_id = ?",
3799 undef, ($args{id}) ) or return;
3800 return $result;
3801 } else {
3802 # snag some arguments that will either fall through or be overwritten to save some code duplication
3803 my $tmpid = $args{id};
3804 my $type = $args{type};
3805 if ($type eq 'record' && $args{defrec} eq 'n') {
3806 # Live records go through the records table first.
3807 ($tmpid) = $dbh->selectrow_array("SELECT ".($args{revrec} eq 'n' ? 'domain_id' : 'rdns_id').
3808 " FROM records WHERE record_id = ?",
3809 undef, ($args{id}) ) or return;
3810 $type = ($args{revrec} eq 'n' ? 'domain' : 'revzone');
3811 }
3812 my ($result) = $dbh->selectrow_array("SELECT $par_col{$type} FROM $par_tbl{$type} WHERE $id_col{$type} = ?",
3813 undef, ($tmpid) );
3814 return $result;
3815 }
3816# should be impossible to get here with even remotely sane arguments
3817 return;
3818} # end parentID()
3819
3820
3821## DNSDB::isParent()
3822# Returns true if $id1 is a parent of $id2, false otherwise
3823sub isParent {
3824 my $dbh = shift;
3825 my $id1 = shift;
3826 my $type1 = shift;
3827 my $id2 = shift;
3828 my $type2 = shift;
3829##todo: immediate, secondary, full (default)
3830
3831 # Return false on invalid types
3832 return 0 if !grep /^$type1$/, ('record','defrec','defrevrec','user','domain','revzone','group');
3833 return 0 if !grep /^$type2$/, ('record','defrec','defrevrec','user','domain','revzone','group');
3834
3835 # Return false on impossible relations
3836 return 0 if $type1 eq 'record'; # nothing may be a child of a record
3837 return 0 if $type1 eq 'defrec'; # nothing may be a child of a record
3838 return 0 if $type1 eq 'defrevrec'; # nothing may be a child of a record
3839 return 0 if $type1 eq 'user'; # nothing may be child of a user
3840 return 0 if $type1 eq 'domain' && $type2 ne 'record'; # domain may not be a parent of anything other than a record
3841 return 0 if $type1 eq 'revzone' && $type2 ne 'record';# reverse zone may not be a parent of anything other than a record
3842
3843 # ennnhhhh.... if we're passed an id of 0, it will never be found. usual
3844 # case would be the UI creating a new <thing>, and so we don't have an ID for
3845 # <thing> to look up yet. in that case the UI should check the parent as well.
3846 return 0 if $id1 == 0; # nothing can have a parent id of 0
3847 return 1 if $id2 == 0; # anything could have a child id of 0 (or "unknown")
3848
3849 # group 1 is the ultimate root parent
3850 return 1 if $type1 eq 'group' && $id1 == 1;
3851
3852 # groups are always (a) parent of themselves
3853 return 1 if $type1 eq 'group' && $type2 eq 'group' && $id1 == $id2;
3854
3855 my $id = $id2;
3856 my $type = $type2;
3857 my $foundparent = 0;
3858
3859 # Records are the only entity with two possible parents. We need to split the parent checks on
3860 # domain/rdns.
3861 if ($type eq 'record') {
3862 my ($dom,$rdns) = $dbh->selectrow_array("SELECT domain_id,rdns_id FROM records WHERE record_id=?",
3863 undef, ($id));
3864 # check immediate parent against request
3865 return 1 if $type1 eq 'domain' && $id1 == $dom;
3866 return 1 if $type1 eq 'revzone' && $id1 == $rdns;
3867 # if request is group, check *both* parents. Only check if the parent is nonzero though.
3868 return 1 if $dom && isParent($dbh, $id1, $type1, $dom, 'domain');
3869 return 1 if $rdns && isParent($dbh, $id1, $type1, $rdns, 'revzone');
3870 # exit here since we've executed the loop below by proxy in the above recursive calls.
3871 return 0;
3872 }
3873
3874# almost the same loop as getParents() above
3875 my $limiter = 0;
3876 while (1) {
3877 my $sql = "SELECT $par_col{$type} FROM $par_tbl{$type} WHERE $id_col{$type} = ?";
3878 my $result = $dbh->selectrow_hashref($sql,
3879 undef, ($id) );
3880 if (!$result) {
3881 $limiter++;
3882##fixme: how often will this happen on a live site? fail at max limiter <n>?
3883 warn "no results looking for $sql with id $id (depth $limiter)\n";
3884 last;
3885 }
3886 if ($result && $result->{$par_col{$type}} == $id1) {
3887 $foundparent = 1;
3888 last;
3889 } else {
3890##fixme: do we care about trying to return a "no such record/domain/user/group" error?
3891# should be impossible to create an inconsistent DB just with API calls.
3892 warn $dbh->errstr." $sql, $id" if $dbh->errstr;
3893 }
3894 # group 1 is its own parent. need this here more to break strange loops than for detecting a parent
3895 last if $result->{$par_col{$type}} == 1;
3896 $id = $result->{$par_col{$type}};
3897 $type = $par_type{$type};
3898 }
3899
3900 return $foundparent;
3901} # end isParent()
3902
3903
3904## DNSDB::zoneStatus()
3905# Returns and optionally sets a zone's status
3906# Takes a database handle, domain/revzone ID, forward/reverse flag, and optionally a status argument
3907# Returns status, or undef on errors.
3908sub zoneStatus {
3909 my $dbh = shift;
3910 my $id = shift;
3911 my $revrec = shift;
3912 my $newstatus = shift || 'mu';
3913
3914 return undef if $id !~ /^\d+$/;
3915
3916 # Allow transactions, and raise an exception on errors so we can catch it later.
3917 # Use local to make sure these get "reset" properly on exiting this block
3918 local $dbh->{AutoCommit} = 0;
3919 local $dbh->{RaiseError} = 1;
3920
3921 if ($newstatus ne 'mu') {
3922 # ooo, fun! let's see what we were passed for status
3923 eval {
3924 $newstatus = 0 if $newstatus eq 'domoff';
3925 $newstatus = 1 if $newstatus eq 'domon';
3926 $dbh->do("UPDATE ".($revrec eq 'n' ? 'domains' : 'revzones')." SET status=? WHERE ".
3927 ($revrec eq 'n' ? 'domain_id' : 'rdns_id')."=?", undef, ($newstatus,$id) );
3928
3929##fixme switch to more consise "Enabled <domain"/"Disabled <domain>" as with users?
3930 $resultstr = "Changed ".($revrec eq 'n' ? domainName($dbh, $id) : revName($dbh, $id)).
3931 " state to ".($newstatus ? 'active' : 'inactive');
3932
3933 my %loghash;
3934 $loghash{domain_id} = $id if $revrec eq 'n';
3935 $loghash{rdns_id} = $id if $revrec eq 'y';
3936 $loghash{group_id} = parentID($dbh,
3937 (id => $id, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec) );
3938 $loghash{entry} = $resultstr;
3939 _log($dbh, %loghash);
3940
3941 $dbh->commit;
3942 };
3943 if ($@) {
3944 my $msg = $@;
3945 eval { $dbh->rollback; };
3946 $resultstr = '';
3947 $errstr = $msg;
3948 return;
3949 }
3950 }
3951
3952 my ($status) = $dbh->selectrow_array("SELECT status FROM ".
3953 ($revrec eq 'n' ? "domains WHERE domain_id=?" : "revzones WHERE rdns_id=?"),
3954 undef, ($id) );
3955 return $status;
3956} # end zoneStatus()
3957
3958
3959## DNSDB::importAXFR
3960# Import a domain via AXFR
3961# Takes AXFR host, domain to transfer, group to put the domain in,
3962# and optionally:
3963# - active/inactive state flag (defaults to active)
3964# - overwrite-SOA flag (defaults to off)
3965# - overwrite-NS flag (defaults to off, doesn't affect subdomain NS records)
3966# Returns a status code (OK, WARN, or FAIL) and message - message should be blank
3967# if status is OK, but WARN includes conditions that are not fatal but should
3968# really be reported.
3969sub importAXFR {
3970 my $dbh = shift;
3971 my $ifrom_in = shift;
3972 my $zone = shift;
3973 my $group = shift;
3974 my $status = shift || 1;
3975 my $rwsoa = shift || 0;
3976 my $rwns = shift || 0;
3977 my $merge = shift || 0; # do we attempt to merge A/AAAA and PTR records whenever possible?
3978 # do we overload this with the fixme below?
3979##fixme: add mode to delete&replace, merge+overwrite, merge new?
3980
3981 my $nrecs = 0;
3982 my $soaflag = 0;
3983 my $nsflag = 0;
3984 my $warnmsg = '';
3985 my $ifrom;
3986
3987 my $rev = 'n';
3988 my $code = 'OK';
3989 my $msg = 'foobar?';
3990
3991 # choke on possible bad setting in ifrom
3992 # IPv4 and v6, and valid hostnames!
3993 ($ifrom) = ($ifrom_in =~ /^([0-9a-f\:.]+|[0-9a-z_.-]+)$/i);
3994 return ('FAIL', "Bad AXFR source host $ifrom")
3995 unless ($ifrom) = ($ifrom_in =~ /^([0-9a-f\:.]+|[0-9a-z_.-]+)$/i);
3996
3997 my $errmsg;
3998
3999 my $zone_id;
4000 my $domain_id = 0;
4001 my $rdns_id = 0;
4002 my $cidr;
4003
4004# magic happens! detect if we're importing a domain or a reverse zone
4005# while we're at it, figure out what the CIDR netblock is (if we got a .arpa)
4006# or what the formal .arpa zone is (if we got a CIDR netblock)
4007# Handles sub-octet v4 zones in the format specified in the Cricket Book, 2nd Ed, p217-218
4008
4009 if ($zone =~ m{(?:\.arpa\.?|/\d+)$}) {
4010 # we seem to have a reverse zone
4011 $rev = 'y';
4012
4013 if ($zone =~ /\.arpa\.?$/) {
4014 # we have a formal reverse zone. call _zone2cidr and get the CIDR block.
4015 ($code,$msg) = _zone2cidr($zone);
4016 return ($code, $msg) if $code eq 'FAIL';
4017 $cidr = $msg;
4018 } elsif ($zone =~ m|^[\d.]+/\d+$|) {
4019 # v4 revzone, CIDR netblock
4020 $cidr = NetAddr::IP->new($zone) or return ('FAIL',"$zone is not a valid CIDR block");
4021 $zone = _ZONE($cidr, 'ZONE.in-addr.arpa', 'r', '.');
4022 } elsif ($zone =~ m|^[a-fA-F\d:]+/\d+$|) {
4023 # v6 revzone, CIDR netblock
4024 $cidr = NetAddr::IP->new($zone) or return ('FAIL',"$zone is not a valid CIDR block");
4025 return ('FAIL', "$zone is not a nibble-aligned block") if $cidr->masklen % 4 != 0;
4026 $zone = _ZONE($cidr, 'ZONE.ip6.arpa', 'r', '.');
4027 } else {
4028 # there is. no. else!
4029 return ('FAIL', "Unknown zone name format");
4030 }
4031
4032 # quick check to start to see if we've already got one
4033
4034 ($zone_id) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet=?",
4035 undef, ("$cidr"));
4036 $rdns_id = $zone_id;
4037 } else {
4038 # default to domain
4039 ($zone_id) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE lower(domain) = lower(?)",
4040 undef, ($zone));
4041 $domain_id = $zone_id;
4042 }
4043
4044 return ('FAIL', ($rev eq 'n' ? 'Domain' : 'Reverse zone')." already exists") if $zone_id;
4045
4046 # little local utility sub to swap $val and $host for revzone records.
4047 sub _revswap {
4048 my $rechost = shift;
4049 my $recdata = shift;
4050
4051 if ($rechost =~ /\.in-addr\.arpa\.?$/) {
4052 $rechost =~ s/\.in-addr\.arpa\.?$//;
4053 $rechost = join '.', reverse split /\./, $rechost;
4054 } else {
4055 $rechost =~ s/\.ip6\.arpa\.?$//;
4056 my @nibs = reverse split /\./, $rechost;
4057 $rechost = '';
4058 my $nc;
4059 foreach (@nibs) {
4060 $rechost.= $_;
4061 $rechost .= ":" if ++$nc % 4 == 0 && $nc < 32;
4062 }
4063 $rechost .= ":" if $nc < 32 && $rechost !~ /\*$/; # close netblock records?
4064##fixme: there's a case that ends up with a partial entry here:
4065# ip:add:re:ss::
4066# can't reproduce after letting it sit overnight after discovery. :(
4067#print "$rechost\n";
4068 # canonicalize with NetAddr::IP
4069 $rechost = NetAddr::IP->new($rechost)->addr unless $rechost =~ /\*$/;
4070 }
4071 return ($recdata,$rechost)
4072 }
4073
4074
4075 # Allow transactions, and raise an exception on errors so we can catch it later.
4076 # Use local to make sure these get "reset" properly on exiting this block
4077 local $dbh->{AutoCommit} = 0;
4078 local $dbh->{RaiseError} = 1;
4079
4080 my $sth;
4081 eval {
4082
4083 if ($rev eq 'n') {
4084##fixme: serial
4085 $dbh->do("INSERT INTO domains (domain,group_id,status) VALUES (?,?,?)", undef, ($zone,$group,$status) );
4086 # get domain id so we can do the records
4087 ($zone_id) = $dbh->selectrow_array("SELECT currval('domains_domain_id_seq')");
4088 $domain_id = $zone_id;
4089 _log($dbh, (group_id => $group, domain_id => $domain_id,
4090 entry => "[Added ".($status ? 'active' : 'inactive')." domain $zone via AXFR]") );
4091 } else {
4092##fixme: serial
4093 $dbh->do("INSERT INTO revzones (revnet,group_id,status) VALUES (?,?,?)", undef, ($cidr,$group,$status) );
4094 # get revzone id so we can do the records
4095 ($zone_id) = $dbh->selectrow_array("SELECT currval('revzones_rdns_id_seq')");
4096 $rdns_id = $zone_id;
4097 _log($dbh, (group_id => $group, rdns_id => $rdns_id,
4098 entry => "[Added ".($status ? 'active' : 'inactive')." reverse zone $cidr via AXFR]") );
4099 }
4100
4101## bizarre DBI<->Net::DNS interaction bug:
4102## sometimes a zone will cause an immediate commit-and-exit (sort of) of the while()
4103## fixed, apparently I was doing *something* odd, but not certain what it was that
4104## caused a commit instead of barfing
4105
4106 my $res = Net::DNS::Resolver->new;
4107 $res->nameservers($ifrom);
4108 $res->axfr_start($zone)
4109 or die "Couldn't begin AXFR\n";
4110
4111 $sth = $dbh->prepare("INSERT INTO records (domain_id,rdns_id,host,type,val,distance,weight,port,ttl)".
4112 " VALUES (?,?,?,?,?,?,?,?,?)");
4113
4114 # Stash info about sub-octet v4 revzones here so we don't have
4115 # to store the CNAMEs used to delegate a suboctet zone
4116 # $suboct{zone}{ns}[] -> array of nameservers
4117 # $suboct{zone}{cname}[] -> array of extant CNAMEs (Just In Case someone did something bizarre)
4118## commented pending actual use of this data. for now, we'll just
4119## auto-(re)create the CNAMEs in revzones on export
4120# my %suboct;
4121
4122 while (my $rr = $res->axfr_next()) {
4123
4124 my $val;
4125 my $distance = 0;
4126 my $weight = 0;
4127 my $port = 0;
4128 my $logfrag = '';
4129
4130 my $type = $rr->type;
4131 my $host = $rr->name;
4132 my $ttl = $rr->ttl;
4133
4134 $soaflag = 1 if $type eq 'SOA';
4135 $nsflag = 1 if $type eq 'NS';
4136
4137# "Primary" types:
4138# A, NS, CNAME, SOA, PTR(warn in forward), MX, TXT, AAAA, SRV, A6(ob), SPF
4139# maybe KEY
4140
4141# BIND supports:
4142# [standard]
4143# A AAAA CNAME MX NS PTR SOA TXT
4144# [variously experimental, obsolete, or obscure]
4145# 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
4146# ... if one can ever find the right magic to format them correctly
4147
4148# Net::DNS supports:
4149# RRSIG SIG NSAP NS NIMLOC NAPTR MX MR MINFO MG MB LOC ISDN IPSECKEY HINFO
4150# EID DNAME CNAME CERT APL AFSDB AAAA A DS NXT NSEC3PARAM NSEC3 NSEC KEY
4151# DNSKEY DLV X25 TXT TSIG TKEY SSHFP SRV SPF SOA RT RP PX PTR NULL APL::AplItem
4152
4153# nasty big ugly case-like thing here, since we have to do *some* different
4154# processing depending on the record. le sigh.
4155
4156##fixme: what record types other than TXT can/will have >255-byte payloads?
4157
4158 if ($type eq 'A') {
4159 $val = $rr->address;
4160 } elsif ($type eq 'NS') {
4161# hmm. should we warn here if subdomain NS'es are left alone?
4162 next if ($rwns && ($rr->name eq $zone));
4163 if ($rev eq 'y') {
4164 # revzones have records more or less reversed from forward zones.
4165 my ($tmpcode,$tmpmsg) = _zone2cidr($host);
4166 die "Error converting NS record: $tmpmsg" if $tmpcode eq 'FAIL'; # hmm. may not make sense...
4167 $val = "$tmpmsg";
4168 $host = $rr->nsdname;
4169 $logfrag = "Added record '$val $type $host', TTL $ttl";
4170# Tag and preserve. For now this is commented for a no-op, but we have Ideas for
4171# another custom storage type ("DELEGATE") that will use these subzone-delegation records
4172#if ($val ne "$cidr") {
4173# push @{$suboct{$val}{ns}}, $host;
4174#}
4175 } else {
4176 $val = $rr->nsdname;
4177 }
4178 $nsflag = 1;
4179 } elsif ($type eq 'CNAME') {
4180 if ($rev eq 'y') {
4181 # hmm. do we even want to bother with storing these at this level? Sub-octet delegation
4182 # by CNAME is essentially a record-publication hack, and we want to just represent the
4183 # "true" logical intentions as far down the stack as we can from the UI.
4184 ($host,$val) = _revswap($host,$rr->cname);
4185 $logfrag = "Added record '$val $type $host', TTL $ttl";
4186# Tag and preserve in case we want to commit them as-is later, but mostly we don't care.
4187# Commented pending actually doing something with possibly new type DELEGATE
4188#my $tmprev = $host;
4189#$tmprev =~ s/^\d+\.//;
4190#($code,$tmprev) = _zone2cidr($tmprev);
4191#push @{$suboct{"$tmprev"}{cname}}, $val;
4192 # Silently skip CNAMEs in revzones.
4193 next;
4194 } else {
4195 $val = $rr->cname;
4196 }
4197 } elsif ($type eq 'SOA') {
4198 next if $rwsoa;
4199 $host = $rr->rname.":".$rr->mname;
4200 $val = $rr->refresh.":".$rr->retry.":".$rr->expire.":".$rr->minimum;
4201 $soaflag = 1;
4202 } elsif ($type eq 'PTR') {
4203 ($host,$val) = _revswap($host,$rr->ptrdname);
4204 $logfrag = "Added record '$val $type $host', TTL $ttl";
4205 # hmm. PTR records should not be in forward zones.
4206 } elsif ($type eq 'MX') {
4207 $val = $rr->exchange;
4208 $distance = $rr->preference;
4209 } elsif ($type eq 'TXT') {
4210##fixme: Net::DNS docs say this should be deprecated for rdatastr() or char_str_list(),
4211## but don't really seem enthusiastic about it.
4212#print "should use rdatastr:\n\t".$rr->rdatastr."\n or char_str_list:\n\t".join(' ',$rr->char_str_list())."\n";
4213# rdatastr returns a BIND-targetted logical string, including opening and closing quotes
4214# char_str_list returns a list of the individual string fragments in the record
4215# txtdata returns the more useful all-in-one form (since we want to push such protocol
4216# details as far down the stack as we can)
4217# NB: this may turn out to be more troublesome if we ever have need of >512-byte TXT records.
4218 if ($rev eq 'y') {
4219 ($host,$val) = _revswap($host,$rr->txtdata);
4220 $logfrag = "Added record '$val $type $host', TTL $ttl";
4221 } else {
4222 $val = $rr->txtdata;
4223 }
4224 } elsif ($type eq 'SPF') {
4225##fixme: and the same caveat here, since it is apparently a clone of ::TXT
4226 $val = $rr->txtdata;
4227 } elsif ($type eq 'AAAA') {
4228 $val = $rr->address;
4229 } elsif ($type eq 'SRV') {
4230 $val = $rr->target;
4231 $distance = $rr->priority;
4232 $weight = $rr->weight;
4233 $port = $rr->port;
4234 } elsif ($type eq 'KEY') {
4235 # we don't actually know what to do with these...
4236 $val = $rr->flags.":".$rr->protocol.":".$rr->algorithm.":".$rr->key.":".$rr->keytag.":".$rr->privatekeyname;
4237 } else {
4238 $val = $rr->rdatastr;
4239 # Finding a different record type is not fatal.... just problematic.
4240 # We may not be able to export it correctly.
4241 $warnmsg .= "Unusual record ".$rr->name." ($type) found\n";
4242 }
4243
4244 my $logentry = "[AXFR ".($rev eq 'n' ? $zone : $cidr)."] ";
4245
4246 if ($merge) {
4247 if ($rev eq 'n') {
4248 # importing a domain; we have A and AAAA records that could be merged with matching PTR records
4249 my $etype;
4250 my ($erdns,$erid,$ettl) = $dbh->selectrow_array("SELECT rdns_id,record_id,ttl FROM records ".
4251 "WHERE host=? AND val=? AND type=12",
4252 undef, ($host, $val) );
4253 if ($erid) {
4254 if ($type eq 'A') { # PTR -> A+PTR
4255 $etype = 65280;
4256 $logentry .= "Merged A record with existing PTR record '$host A+PTR $val', TTL $ettl";
4257 }
4258 if ($type eq 'AAAA') { # PTR -> AAAA+PTR
4259 $etype = 65281;
4260 $logentry .= "Merged AAAA record with existing PTR record '$host AAAA+PTR $val', TTL $ettl";
4261 }
4262 $ettl = ($ettl < $ttl ? $ettl : $ttl); # use lower TTL
4263 $dbh->do("UPDATE records SET domain_id=?,ttl=?,type=? WHERE record_id=?", undef,
4264 ($domain_id, $ettl, $etype, $erid));
4265 $nrecs++;
4266 _log($dbh, (group_id => $group, domain_id => $domain_id, rdns_id => $erdns, entry => $logentry) );
4267 next; # while axfr_next
4268 }
4269 } # $rev eq 'n'
4270 else {
4271 # importing a revzone, we have PTR records that could be merged with matching A/AAAA records
4272 my ($domid,$erid,$ettl,$etype) = $dbh->selectrow_array("SELECT domain_id,record_id,ttl,type FROM records ".
4273 "WHERE host=? AND val=? AND (type=1 OR type=28)",
4274 undef, ($host, $val) );
4275 if ($erid) {
4276 if ($etype == 1) { # A -> A+PTR
4277 $etype = 65280;
4278 $logentry .= "Merged PTR record with existing matching A record '$host A+PTR $val', TTL $ettl";
4279 }
4280 if ($etype == 28) { # AAAA -> AAAA+PTR
4281 $etype = 65281;
4282 $logentry .= "Merged PTR record with existing matching AAAA record '$host AAAA+PTR $val', TTL $ettl";
4283 }
4284 $ettl = ($ettl < $ttl ? $ettl : $ttl); # use lower TTL
4285 $dbh->do("UPDATE records SET rdns_id=?,ttl=?,type=? WHERE record_id=?", undef,
4286 ($rdns_id, $ettl, $etype, $erid));
4287 $nrecs++;
4288 _log($dbh, (group_id => $group, domain_id => $domid, rdns_id => $rdns_id, entry => $logentry) );
4289 next; # while axfr_next
4290 }
4291 } # $rev eq 'y'
4292 } # if $merge
4293
4294 # Insert the new record
4295 $sth->execute($domain_id, $rdns_id, $host, $reverse_typemap{$type}, $val,
4296 $distance, $weight, $port, $ttl);
4297
4298 $nrecs++;
4299
4300 if ($type eq 'SOA') {
4301 # also !$rwsoa, but if that's set, it should be impossible to get here.
4302 my @tmp1 = split /:/, $host;
4303 my @tmp2 = split /:/, $val;
4304 $logentry .= "Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
4305 "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl";
4306 } elsif ($logfrag) {
4307 # special case for log entries we need to meddle with a little.
4308 $logentry .= $logfrag;
4309 } else {
4310 $logentry .= "Added record '$host $type";
4311 $logentry .= " [distance $distance]" if $type eq 'MX';
4312 $logentry .= " [priority $distance] [weight $weight] [port $port]" if $type eq 'SRV';
4313 $logentry .= " $val', TTL $ttl";
4314 }
4315 _log($dbh, (group_id => $group, domain_id => $domain_id, rdns_id => $rdns_id, entry => $logentry) );
4316
4317 } # while axfr_next
4318
4319# Detect and handle delegated subzones
4320# Placeholder for when we decide what to actually do with this, see previous comments in NS and CNAME handling.
4321#foreach (keys %suboct) {
4322# print "found ".($suboct{$_}{ns} ? @{$suboct{$_}{ns}} : '0')." NS records and ".
4323# ($suboct{$_}{cname} ? @{$suboct{$_}{cname}} : '0')." CNAMEs for $_\n";
4324#}
4325
4326 # Overwrite SOA record
4327 if ($rwsoa) {
4328 $soaflag = 1;
4329 my $sthgetsoa = $dbh->prepare("SELECT host,val,ttl FROM default_records WHERE group_id=? AND type=?");
4330 my $sthputsoa = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,ttl) VALUES (?,?,?,?,?)");
4331 $sthgetsoa->execute($group,$reverse_typemap{SOA});
4332 while (my ($host,$val,$ttl) = $sthgetsoa->fetchrow_array()) {
4333 $host =~ s/DOMAIN/$zone/g;
4334 $val =~ s/DOMAIN/$zone/g;
4335 $sthputsoa->execute($zone_id,$host,$reverse_typemap{SOA},$val,$ttl);
4336 }
4337 }
4338
4339 # Overwrite NS records
4340 if ($rwns) {
4341 $nsflag = 1;
4342 my $sthgetns = $dbh->prepare("SELECT host,val,ttl FROM default_records WHERE group_id=? AND type=?");
4343 my $sthputns = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,ttl) VALUES (?,?,?,?,?)");
4344 $sthgetns->execute($group,$reverse_typemap{NS});
4345 while (my ($host,$val,$ttl) = $sthgetns->fetchrow_array()) {
4346 $host =~ s/DOMAIN/$zone/g;
4347 $val =~ s/DOMAIN/$zone/g;
4348 $sthputns->execute($zone_id,$host,$reverse_typemap{NS},$val,$ttl);
4349 }
4350 }
4351
4352 die "No records found; either $ifrom is not authoritative or doesn't allow transfers\n" if !$nrecs;
4353 die "Bad zone: No SOA record!\n" if !$soaflag;
4354 die "Bad zone: No NS records!\n" if !$nsflag;
4355
4356 $dbh->commit;
4357
4358 };
4359
4360 if ($@) {
4361 my $msg = $@;
4362 eval { $dbh->rollback; };
4363 return ('FAIL',$msg." $warnmsg");
4364 } else {
4365 return ('WARN', $warnmsg) if $warnmsg;
4366 return ('OK',"Imported OK");
4367 }
4368
4369 # it should be impossible to get here.
4370 return ('WARN',"OOOK!");
4371} # end importAXFR()
4372
4373
4374## DNSDB::importBIND()
4375sub importBIND {
4376} # end importBIND()
4377
4378
4379## DNSDB::import_tinydns()
4380sub import_tinydns {
4381} # end import_tinydns()
4382
4383
4384## DNSDB::export()
4385# Export the DNS database, or a part of it
4386# Takes database handle, export type, optional arguments depending on type
4387# Writes zone data to targets as appropriate for type
4388sub export {
4389 my $dbh = shift;
4390 my $target = shift;
4391
4392 if ($target eq 'tiny') {
4393 __export_tiny($dbh,@_);
4394 }
4395# elsif ($target eq 'foo') {
4396# __export_foo($dbh,@_);
4397#}
4398# etc
4399
4400} # end export()
4401
4402
4403## DNSDB::__export_tiny
4404# Internal sub to implement tinyDNS (compatible) export
4405# Takes database handle, filehandle to write export to, optional argument(s)
4406# to determine which data gets exported
4407sub __export_tiny {
4408 my $dbh = shift;
4409 my $datafile = shift;
4410
4411##fixme: slurp up further options to specify particular zone(s) to export
4412
4413##fixme: fail if $datafile isn't an open, writable file
4414
4415 # easy case - export all evarything
4416 # not-so-easy case - export item(s) specified
4417 # todo: figure out what kind of list we use to export items
4418
4419# raw packet in unknown format: first byte indicates length
4420# of remaining data, allows up to 255 raw bytes
4421
4422 # Locations/views - worth including in the caching setup?
4423 my $lochash = $dbh->selectall_hashref("SELECT location,iplist FROM locations", 'location');
4424 foreach my $location (keys %$lochash) {
4425 foreach my $ipprefix (split /[,\s]+/, $lochash->{$location}{iplist}) {
4426 $ipprefix =~ s/\s+//g;
4427 print $datafile "%$location:$ipprefix\n";
4428 }
4429 print $datafile "%$location\n" if !$lochash->{$location}{iplist};
4430 }
4431
4432 # tracking hash so we don't double-export A+PTR or AAAA+PTR records.
4433 my %recflags;
4434
4435 my $domsth = $dbh->prepare("SELECT domain_id,domain,status,changed FROM domains WHERE status=1");
4436 my $recsth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location ".
4437 "FROM records WHERE domain_id=? AND type < 65280"); # Just exclude all types relating to rDNS
4438 my $zonesth = $dbh->prepare("UPDATE domains SET changed='n' WHERE domain_id=?");
4439 $domsth->execute();
4440 while (my ($domid,$dom,$domstat,$changed) = $domsth->fetchrow_array) {
4441##fixme: need to find a way to block opening symlinked files without introducing a race.
4442# O_NOFOLLOW
4443# If pathname is a symbolic link, then the open fails. This is a FreeBSD extension, which was
4444# added to Linux in version 2.1.126. Symbolic links in earlier components of the pathname will
4445# still be followed.
4446# but that doesn't help other platforms. :/
4447 sysopen(ZONECACHE, "$config{exportcache}/$dom", O_RDWR|O_CREAT);
4448 flock(ZONECACHE, LOCK_EX);
4449 if ($changed || -s "$config{exportcache}/$dom" == 0) {
4450 $recsth->execute($domid);
4451 while (my ($host,$type,$val,$dist,$weight,$port,$ttl,$recid,$loc) = $recsth->fetchrow_array) {
4452 next if $recflags{$recid};
4453
4454 $loc = '' if !$loc; # de-nullify - just in case
4455##fixme: handle case of record-with-location-that-doesn't-exist better.
4456# note this currently fails safe (tested) - records with a location that
4457# doesn't exist will not be sent to any client
4458# $loc = '' if !$lochash->{$loc};
4459
4460##fixme: record validity timestamp. tinydns supports fiddling with timestamps.
4461# note $ttl must be set to 0 if we want to use tinydns's auto-expiring timestamps.
4462# timestamps are TAI64
4463# ~~ 2^62 + time()
4464 my $stamp = '';
4465
4466 # support tinydns' auto-TTL
4467 $ttl = '' if $ttl == '0';
4468
4469 _printrec_tiny($datafile, 'n', \%recflags,
4470 $dom, $host, $type, $val, $dist, $weight, $port, $ttl, $loc, $stamp);
4471
4472 _printrec_tiny(*ZONECACHE, 'n', \%recflags,
4473 $dom, $host, $type, $val, $dist, $weight, $port, $ttl, $loc, $stamp)
4474 if *ZONECACHE;
4475 # in case the zone shrunk, get rid of garbage at the end of the file.
4476 truncate(ZONECACHE, tell(ZONECACHE));
4477
4478 $recflags{$recid} = 1;
4479 } # while ($recsth)
4480 } else {
4481 # domain not changed, stream from cache
4482 print $datafile $_ while <ZONECACHE>;
4483 }
4484 close ZONECACHE;
4485 # mark domain as unmodified
4486 $zonesth->execute($domid);
4487 } # while ($domsth)
4488
4489 my $revsth = $dbh->prepare("SELECT rdns_id,revnet,status,changed FROM revzones WHERE status=1 ".
4490 "ORDER BY masklen(revnet) DESC");
4491
4492# For reasons unknown, we can't sanely UNION these statements. Feh.
4493# Supposedly it should work though (note last 3 lines):
4494## PG manual
4495#UNION Clause
4496#
4497#The UNION clause has this general form:
4498#
4499# select_statement UNION [ ALL ] select_statement
4500#
4501#select_statement is any SELECT statement without an ORDER BY, LIMIT, FOR UPDATE, or FOR SHARE clause. (ORDER BY
4502#and LIMIT can be attached to a subexpression if it is enclosed in parentheses. Without parentheses, these
4503#clauses will be taken to apply to the result of the UNION, not to its right-hand input expression.)
4504 my $soasth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location ".
4505 "FROM records WHERE rdns_id=? AND type=6");
4506 $recsth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl,record_id,location ".
4507 "FROM records WHERE rdns_id=? AND not type=6 ".
4508 "ORDER BY masklen(CAST(val AS inet)) DESC, CAST(val AS inet)");
4509 $zonesth = $dbh->prepare("UPDATE revzones SET changed='n' WHERE rdns_id=?");
4510 $revsth->execute();
4511 while (my ($revid,$revzone,$revstat,$changed) = $revsth->fetchrow_array) {
4512##fixme: need to find a way to block opening symlinked files without introducing a race.
4513# O_NOFOLLOW
4514# If pathname is a symbolic link, then the open fails. This is a FreeBSD extension, which was
4515# added to Linux in version 2.1.126. Symbolic links in earlier components of the pathname will
4516# still be followed.
4517# but that doesn't help other platforms. :/
4518 my $tmpzone = NetAddr::IP->new($revzone);
4519 sysopen(ZONECACHE, "$config{exportcache}/".$tmpzone->network->addr, O_RDWR|O_CREAT);
4520 flock(ZONECACHE, LOCK_EX);
4521 if ($changed || -s "$config{exportcache}/".$tmpzone->network->addr == 0) {
4522 # need to fetch this separately since the rest of the records all (should) have real IPs in val
4523 $soasth->execute($revid);
4524 my (@zsoa) = $soasth->fetchrow_array();
4525 _printrec_tiny($datafile,'y',\%recflags,$revzone,
4526 $zsoa[0],$zsoa[1],$zsoa[2],$zsoa[3],$zsoa[4],$zsoa[5],$zsoa[6],$zsoa[8],'');
4527
4528 $recsth->execute($revid);
4529 while (my ($host,$type,$val,$dist,$weight,$port,$ttl,$recid,$loc) = $recsth->fetchrow_array) {
4530 next if $recflags{$recid};
4531
4532 $loc = '' if !$loc; # de-nullify - just in case
4533##fixme: handle case of record-with-location-that-doesn't-exist better.
4534# note this currently fails safe (tested) - records with a location that
4535# doesn't exist will not be sent to any client
4536# $loc = '' if !$lochash->{$loc};
4537
4538##fixme: record validity timestamp. tinydns supports fiddling with timestamps.
4539# note $ttl must be set to 0 if we want to use tinydns's auto-expiring timestamps.
4540# timestamps are TAI64
4541# ~~ 2^62 + time()
4542 my $stamp = '';
4543
4544 # support tinydns' auto-TTL
4545 $ttl = '' if $ttl == '0';
4546
4547 _printrec_tiny($datafile, 'y', \%recflags, $revzone,
4548 $host, $type, $val, $dist, $weight, $port, $ttl, $loc, $stamp);
4549 _printrec_tiny(*ZONECACHE, 'y', \%recflags, $revzone,
4550 $host, $type, $val, $dist, $weight, $port, $ttl, $loc, $stamp)
4551 if *ZONECACHE;
4552 # in case the zone shrunk, get rid of garbage at the end of the file.
4553 truncate(ZONECACHE, tell(ZONECACHE));
4554
4555 $recflags{$recid} = 1;
4556 } # while ($recsth)
4557 } else {
4558 # zone not changed, stream from cache
4559 print $datafile $_ while <ZONECACHE>;
4560 }
4561 close ZONECACHE;
4562 # mark domain as unmodified
4563 $zonesth->execute($revid);
4564 } # while ($domsth)
4565
4566} # end __export_tiny()
4567
4568
4569# Utility sub for __export_tiny above
4570sub _printrec_tiny {
4571 my ($datafile,$revrec,$recflags,$zone,$host,$type,$val,$dist,$weight,$port,$ttl,$loc,$stamp) = @_;
4572
4573 ## Convert a bare number into an octal-coded pair of octets.
4574 # Take optional arg to indicate a decimal or hex input. Defaults to hex.
4575 sub octalize {
4576 my $tmp = shift;
4577 my $srctype = shift || 'h'; # default assumes hex string
4578 $tmp = sprintf "%0.4x", hex($tmp) if $srctype eq 'h'; # 0-pad hex to 4 digits
4579 $tmp = sprintf "%0.4x", $tmp if $srctype eq 'd'; # 0-pad decimal to 4 hex digits
4580 my @o = ($tmp =~ /^(..)(..)$/); # split into octets
4581 return sprintf "\\%0.3o\\%0.3o", hex($o[0]), hex($o[1]);;
4582 }
4583
4584## WARNING: This works to export even the whole Internet's worth of IP space...
4585## if you have the disk/RAM to handle the dataset, and you call this sub based on /16-sized chunks
4586## A /16 took ~3 seconds with a handful of separate records; adding a /8 pushed export time out to ~13m:40s
4587## 0/0 is estimated to take ~54 hours and ~256G of disk
4588## RAM usage depends on how many non-template entries you have in the set.
4589## This should probably be done on record addition rather than export; large blocks may need to be done in a
4590## forked process
4591 sub __publish_subnet {
4592 my $sub = shift;
4593 my $recflags = shift;
4594 my $hpat = shift;
4595 my $fh = shift;
4596 my $ttl = shift;
4597 my $stamp = shift;
4598 my $loc = shift;
4599 my $ptronly = shift || 0;
4600
4601 my $iplist = $sub->splitref(32);
4602 foreach (@$iplist) {
4603 my $ip = $_->addr;
4604 # make as if we split the non-octet-aligned block into octet-aligned blocks as with SOA
4605 next if $ip =~ /\.(0|255)$/;
4606 next if $$recflags{$ip};
4607 $$recflags{$ip}++;
4608 my $rec = $hpat; # start fresh with the template for each IP
4609 _template4_expand(\$rec, $ip);
4610 print $fh ($ptronly ? "^"._ZONE($_, 'ZONE.in-addr.arpa', 'r', '.').":$rec" : "=$rec:$ip").
4611 ":$ttl:$stamp:$loc\n";
4612 }
4613 }
4614
4615##fixme? append . to all host/val hostnames
4616 if ($typemap{$type} eq 'SOA') {
4617
4618 # host contains pri-ns:responsible
4619 # val is abused to contain refresh:retry:expire:minttl
4620##fixme: "manual" serial vs tinydns-autoserial
4621 # let's be explicit about abusing $host and $val
4622 my ($email, $primary) = (split /:/, $host)[0,1];
4623 my ($refresh, $retry, $expire, $min_ttl) = (split /:/, $val)[0,1,2,3];
4624 if ($revrec eq 'y') {
4625##fixme: have to publish SOA records for each v4 /24 in sub-/16, and each /16 in sub-/8
4626# what about v6?
4627# -> only need SOA for local chunks offset from reverse delegation boundaries, so v6 is fine
4628 $zone = NetAddr::IP->new($zone);
4629 # handle split-n-multiply SOA for off-octet (8 < mask < 16) or (16 < mask < 24) v4 zones
4630 if (!$zone->{isv6} && ($zone->masklen < 24) && ($zone->masklen % 8 != 0)) {
4631 foreach my $szone ($zone->split($zone->masklen + (8 - $zone->masklen % 8))) {
4632 $szone = _ZONE($szone, 'ZONE.in-addr.arpa', 'r', '.');
4633 print $datafile "Z$szone:$primary:$email"."::$refresh:$retry:$expire:$min_ttl:$ttl:$stamp:$loc\n";
4634 }
4635 return; # skips "default" bits just below
4636 }
4637 $zone = _ZONE($zone, 'ZONE', 'r', '.').($zone->{isv6} ? '.ip6.arpa' : '.in-addr.arpa');
4638 }
4639 print $datafile "Z$zone:$primary:$email"."::$refresh:$retry:$expire:$min_ttl:$ttl:$stamp:$loc\n";
4640
4641 } elsif ($typemap{$type} eq 'A') {
4642
4643 print $datafile "+$host:$val:$ttl:$stamp:$loc\n";
4644
4645 } elsif ($typemap{$type} eq 'NS') {
4646
4647 if ($revrec eq 'y') {
4648 $val = NetAddr::IP->new($val);
4649 # handle split-n-multiply SOA for off-octet (8 < mask < 16) or (16 < mask < 24) v4 zones
4650 if (!$val->{isv6} && ($val->masklen < 24) && ($val->masklen % 8 != 0)) {
4651 foreach my $szone ($val->split($val->masklen + (8 - $val->masklen % 8))) {
4652 my $szone2 = _ZONE($szone, 'ZONE.in-addr.arpa', 'r', '.');
4653 next if $$recflags{$szone2} && $$recflags{$szone2} > $val->masklen;
4654 print $datafile "\&$szone2"."::$host:$ttl:$stamp:$loc\n";
4655 $$recflags{$szone2} = $val->masklen;
4656 }
4657 } elsif ($val->{isv6} && ($val->masklen < 64) && ($val->masklen % 4 !=0)) {
4658 foreach my $szone ($val->split($val->masklen + (4 - $val->masklen % 4))) {
4659 my $szone2 = _ZONE($szone, 'ZONE.ip6.arpa', 'r', '.');
4660 next if $$recflags{$szone2} && $$recflags{$szone2} > $val->masklen;
4661 print $datafile "\&$szone2"."::$host:$ttl:$stamp:$loc\n";
4662 $$recflags{$szone2} = $val->masklen;
4663 }
4664 } else {
4665 my $val2 = _ZONE($val, 'ZONE', 'r', '.').($val->{isv6} ? '.ip6.arpa' : '.in-addr.arpa');
4666 print $datafile "\&$val2"."::$host:$ttl:$stamp:$loc\n";
4667 $$recflags{$val2} = $val->masklen;
4668 }
4669 } else {
4670 print $datafile "\&$host"."::$val:$ttl:$stamp:$loc\n";
4671 }
4672
4673 } elsif ($typemap{$type} eq 'AAAA') {
4674
4675 print $datafile ":$host:28:";
4676 my $altgrp = 0;
4677 my @altconv;
4678 # Split in to up to 8 groups of hex digits (allows for IPv6 :: 0-collapsing)
4679 foreach (split /:/, $val) {
4680 if (/^$/) {
4681 # flag blank entry; this is a series of 0's of (currently) unknown length
4682 $altconv[$altgrp++] = 's';
4683 } else {
4684 # call sub to convert 1-4 hex digits to 2 string-rep octal bytes
4685 $altconv[$altgrp++] = octalize($_)
4686 }
4687 }
4688 foreach my $octet (@altconv) {
4689 # if not 's', output
4690 print $datafile $octet unless $octet =~ /^s$/;
4691 # if 's', output (9-array length)x literal '\000\000'
4692 print $datafile '\000\000'x(9-$altgrp) if $octet =~ /^s$/;
4693 }
4694 print $datafile ":$ttl:$stamp:$loc\n";
4695
4696 } elsif ($typemap{$type} eq 'MX') {
4697
4698 print $datafile "\@$host"."::$val:$dist:$ttl:$stamp:$loc\n";
4699
4700 } elsif ($typemap{$type} eq 'TXT') {
4701
4702##fixme: split v-e-r-y long TXT strings? will need to do so for BIND export, at least
4703 if ($revrec eq 'n') {
4704 $val =~ s/:/\\072/g; # may need to replace other symbols
4705 print $datafile "'$host:$val:$ttl:$stamp:$loc\n";
4706 } else {
4707 $host =~ s/:/\\072/g; # may need to replace other symbols
4708 my $val2 = NetAddr::IP->new($val);
4709 print $datafile "'"._ZONE($val2, 'ZONE', 'r', '.').($val2->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
4710 ":$host:$ttl:$stamp:$loc\n";
4711 }
4712
4713# by-hand TXT
4714#:deepnet.cx:16:2v\075spf1\040a\040a\072bacon.deepnet.cx\040a\072home.deepnet.cx\040-all:3600
4715#@ IN TXT "v=spf1 a a:bacon.deepnet.cx a:home.deepnet.cx -all"
4716#'deepnet.cx:v=spf1 a a\072bacon.deepnet.cx a\072home.deepnet.cx -all:3600
4717
4718#txttest IN TXT "v=foo bar:bob kn;ob' \" !@#$%^&*()-=_+[]{}<>?"
4719#: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
4720
4721# very long TXT record as brought in by axfr-get
4722# note tinydns does not support >512-byte RR data, need axfr-dns (for TCP support) for that
4723# also note, tinydns does not seem to support <512, >256-byte RRdata from axfr-get either. :/
4724#:longtxt.deepnet.cx:16:
4725#\170this is a very long txt record. it is really long. long. very long. really very long. this is a very long txt record.
4726#\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.
4727#\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.
4728#:3600
4729
4730 } elsif ($typemap{$type} eq 'CNAME') {
4731
4732 if ($revrec eq 'n') {
4733 print $datafile "C$host:$val:$ttl:$stamp:$loc\n";
4734 } else {
4735 my $val2 = NetAddr::IP->new($val);
4736 print $datafile "C"._ZONE($val2, 'ZONE', 'r', '.').($val2->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
4737 ":$host:$ttl:$stamp:$loc\n";
4738 }
4739
4740 } elsif ($typemap{$type} eq 'SRV') {
4741
4742 # data is two-byte values for priority, weight, port, in that order,
4743 # followed by length/string data
4744
4745 print $datafile ":$host:33:".octalize($dist,'d').octalize($weight,'d').octalize($port,'d');
4746
4747 $val .= '.' if $val !~ /\.$/;
4748 foreach (split /\./, $val) {
4749 printf $datafile "\\%0.3o%s", length($_), $_;
4750 }
4751 print $datafile "\\000:$ttl:$stamp:$loc\n";
4752
4753 } elsif ($typemap{$type} eq 'RP') {
4754
4755 # RP consists of two mostly free-form strings.
4756 # The first is supposed to be an email address with @ replaced by . (as with the SOA contact)
4757 # The second is the "hostname" of a TXT record with more info.
4758 print $datafile ":$host:17:";
4759 my ($who,$what) = split /\s/, $val;
4760 foreach (split /\./, $who) {
4761 printf $datafile "\\%0.3o%s", length($_), $_;
4762 }
4763 print $datafile '\000';
4764 foreach (split /\./, $what) {
4765 printf $datafile "\\%0.3o%s", length($_), $_;
4766 }
4767 print $datafile "\\000:$ttl:$stamp:$loc\n";
4768
4769 } elsif ($typemap{$type} eq 'PTR') {
4770
4771 $zone = NetAddr::IP->new($zone);
4772 $$recflags{$val}++;
4773 if (!$zone->{isv6} && $zone->masklen > 24) {
4774 ($val) = ($val =~ /\.(\d+)$/);
4775 print $datafile "^$val."._ZONE($zone, 'ZONE', 'r', '.').'.in-addr.arpa'.
4776 ":$host:ttl:$stamp:$loc\n";
4777 } else {
4778 $val = NetAddr::IP->new($val);
4779 print $datafile "^".
4780 _ZONE($val, 'ZONE', 'r', '.').($val->{isv6} ? '.ip6.arpa' : '.in-addr.arpa').
4781 ":$host:$ttl:$stamp:$loc\n";
4782 }
4783
4784 } elsif ($type == 65280) { # A+PTR
4785
4786 $$recflags{$val}++;
4787 print $datafile "=$host:$val:$ttl:$stamp:$loc\n";
4788
4789 } elsif ($type == 65281) { # AAAA+PTR
4790
4791#$$recflags{$val}++;
4792 # treat these as two separate records. since tinydns doesn't have
4793 # a native combined type, we have to create them separately anyway.
4794 if ($revrec eq 'n') {
4795 $type = 28;
4796 } else {
4797 $type = 12;
4798 }
4799 _printrec_tiny($datafile,$revrec,$recflags,$zone,$host,$type,$val,$dist,$weight,$port,$ttl,$loc,$stamp);
4800##fixme: add a config flag to indicate use of the patch from http://www.fefe.de/dns/
4801# type 6 is for AAAA+PTR, type 3 is for AAAA
4802
4803 } elsif ($type == 65282) { # PTR template
4804
4805 # only useful for v4 with standard DNS software, since this expands all
4806 # IPs in $zone (or possibly $val?) with autogenerated records
4807 $val = NetAddr::IP->new($val);
4808 return if $val->{isv6};
4809
4810 if ($val->masklen <= 16) {
4811 foreach my $sub ($val->split(16)) {
4812 __publish_subnet($sub, $recflags, $host, $datafile, $ttl, $stamp, $loc, 1);
4813 }
4814 } else {
4815 __publish_subnet($val, $recflags, $host, $datafile, $ttl, $stamp, $loc, 1);
4816 }
4817
4818 } elsif ($type == 65283) { # A+PTR template
4819
4820 $val = NetAddr::IP->new($val);
4821 # Just In Case. An A+PTR should be impossible to add to a v6 revzone via API.
4822 return if $val->{isv6};
4823
4824 if ($val->masklen <= 16) {
4825 foreach my $sub ($val->split(16)) {
4826 __publish_subnet($sub, $recflags, $host, $datafile, $ttl, $stamp, $loc, 0);
4827 }
4828 } else {
4829 __publish_subnet($val, $recflags, $host, $datafile, $ttl, $stamp, $loc, 0);
4830 }
4831
4832 } elsif ($type == 65284) { # AAAA+PTR template
4833 # Stub for completeness. Could be exported to DNS software that supports
4834 # some degree of internal automagic in generic-record-creation
4835 # (eg http://search.cpan.org/dist/AllKnowingDNS/ )
4836
4837 } elsif ($type == 65285) { # Delegation
4838 # This is intended for reverse zones, but may prove useful in forward zones.
4839
4840 # All delegations need to create one or more NS records. The NS record handler knows what to do.
4841 _printrec_tiny($datafile,$revrec,$recflags,$zone,$host,$reverse_typemap{'NS'},
4842 $val,$dist,$weight,$port,$ttl,$loc,$stamp);
4843 if ($revrec eq 'y') {
4844 # In the case of a sub-/24 v4 reverse delegation, we need to generate CNAMEs
4845 # to redirect all of the individual IP lookups as well.
4846 # Not sure how this would actually resolve if a /24 or larger was delegated
4847 # one way, and a sub-/24 in that >=/24 was delegated elsewhere...
4848 my $dblock = NetAddr::IP->new($val);
4849 if (!$dblock->{isv6} && $dblock->masklen > 24) {
4850 my @subs = $dblock->split;
4851 foreach (@subs) {
4852 next if $$recflags{"$_"};
4853 my ($oct) = ($_->addr =~ /(\d+)$/);
4854 print $datafile "C"._ZONE($_, 'ZONE.in-addr.arpa', 'r', '.').":$oct.".
4855 _ZONE($dblock, 'ZONE.in-addr.arpa', 'r', '.').":$ttl:$stamp:$loc\n";
4856 $$recflags{"$_"}++;
4857 }
4858 }
4859 }
4860
4861##
4862## Uncommon types. These will need better UI support Any Day Sometime Maybe(TM).
4863##
4864
4865 } elsif ($type == 44) { # SSHFP
4866 my ($algo,$fpt,$fp) = split /\s+/, $val;
4867
4868 my $rec = sprintf ":$host:44:\\%0.3o\\%0.3o", $algo, $fpt;
4869 while (my ($byte) = ($fp =~ /^(..)/) ) {
4870 $rec .= sprintf "\\%0.3o", hex($byte);
4871 $fp =~ s/^..//;
4872 }
4873 print $datafile "$rec:$ttl:$stamp:$loc\n";
4874
4875 } else {
4876 # raw record. we don't know what's in here, so we ASS-U-ME the user has
4877 # put it in correctly, since either the user is messing directly with the
4878 # database, or the record was imported via AXFR
4879 # <split by char>
4880 # convert anything not a-zA-Z0-9.- to octal coding
4881
4882##fixme: add flag to export "unknown" record types - note we'll probably end up
4883# mangling them since they were written to the DB from Net::DNS::RR::<type>->rdatastr.
4884 #print $datafile ":$host:$type:$val:$ttl:$stamp:$loc\n";
4885
4886 } # record type if-else
4887
4888} # end _printrec_tiny()
4889
4890
4891## DNSDB::mailNotify()
4892# Sends notification mail to recipients regarding a DNSDB operation
4893sub mailNotify {
4894 my $dbh = shift;
4895 my ($subj,$message) = @_;
4896
4897 return if $config{mailhost} eq 'smtp.example.com'; # do nothing if still using default SMTP host.
4898
4899 my $mailer = Net::SMTP->new($config{mailhost}, Hello => "dnsadmin.$config{domain}");
4900
4901 my $mailsender = ($config{mailsender} ? $config{mailsender} : $config{mailnotify});
4902
4903 $mailer->mail($mailsender);
4904 $mailer->to($config{mailnotify});
4905 $mailer->data("From: \"$config{mailname}\" <$mailsender>\n",
4906 "To: <$config{mailnotify}>\n",
4907 "Date: ".strftime("%a, %d %b %Y %H:%M:%S %z",localtime)."\n",
4908 "Subject: $subj\n",
4909 "X-Mailer: DNSAdmin Notify v".sprintf("%.1d",$DNSDB::VERSION)."\n",
4910 "Organization: $config{orgname}\n",
4911 "\n$message\n");
4912 $mailer->quit;
4913}
4914
4915# shut Perl up
49161;
Note: See TracBrowser for help on using the repository browser.