source: trunk/DNSDB.pm@ 285

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

/trunk

Move action logging for zone delete (deldom/delrevzone) into delZone()
See #35

  • Property svn:keywords set to Date Rev Author Id
File size: 112.1 KB
Line 
1# dns/trunk/DNSDB.pm
2# Abstraction functions for DNS administration
3##
4# $Id: DNSDB.pm 285 2012-03-22 21:23:00Z kdeugau $
5# Copyright 2008-2011 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 vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
33
34$VERSION = 0.1; ##VERSION##
35@ISA = qw(Exporter);
36@EXPORT_OK = qw(
37 &initGlobals &login &initActionLog
38 &initPermissions &getPermissions &changePermissions &comparePermissions
39 &changeGroup
40 &loadConfig &connectDB &finish
41 &addDomain &delZone &domainName &revName &domainID &revID &addRDNS
42 &getZoneCount &getZoneList
43 &addGroup &delGroup &getChildren &groupName
44 &addUser &updateUser &delUser &userFullName &userStatus &getUserData
45 &getSOA &updateSOA &getRecLine &getDomRecs &getRecCount
46 &addRec &updateRec &delRec
47 &getTypelist
48 &parentID
49 &isParent
50 &zoneStatus &importAXFR
51 &export
52 &mailNotify
53 %typemap %reverse_typemap %config
54 %permissions @permtypes $permlist
55 );
56
57@EXPORT = (); # Export nothing by default.
58%EXPORT_TAGS = ( ALL => [qw(
59 &initGlobals &login &initActionLog
60 &initPermissions &getPermissions &changePermissions &comparePermissions
61 &changeGroup
62 &loadConfig &connectDB &finish
63 &addDomain &delZone &domainName &revName &domainID &revID &addRDNS
64 &getZoneCount &getZoneList
65 &addGroup &delGroup &getChildren &groupName
66 &addUser &updateUser &delUser &userFullName &userStatus &getUserData
67 &getSOA &updateSOA &getRecLine &getDomRecs &getRecCount
68 &addRec &updateRec &delRec
69 &getTypelist
70 &parentID
71 &isParent
72 &zoneStatus &importAXFR
73 &export
74 &mailNotify
75 %typemap %reverse_typemap %config
76 %permissions @permtypes $permlist
77 )]
78 );
79
80our $group = 1;
81our $errstr = '';
82our $resultstr = '';
83
84# Halfway sane defaults for SOA, TTL, etc.
85# serial defaults to 0 for convenience.
86# value will be either YYYYMMDDNN for BIND/etc, or auto-internal for tinydns
87our %def = qw (
88 contact hostmaster.DOMAIN
89 prins ns1.myserver.com
90 serial 0
91 soattl 86400
92 refresh 10800
93 retry 3600
94 expire 604800
95 minttl 10800
96 ttl 10800
97);
98
99# Arguably defined wholly in the db, but little reason to change without supporting code changes
100our @permtypes = qw (
101 group_edit group_create group_delete
102 user_edit user_create user_delete
103 domain_edit domain_create domain_delete
104 record_edit record_create record_delete
105 self_edit admin
106);
107our $permlist = join(',',@permtypes);
108
109# DNS record type map and reverse map.
110# loaded from the database, from http://www.iana.org/assignments/dns-parameters
111our %typemap;
112our %reverse_typemap;
113
114our %permissions;
115
116# Prepopulate a basic config. Note some of these *will* cause errors if left unset.
117# note: add appropriate stanzas in loadConfig to parse these
118our %config = (
119 # Database connection info
120 dbname => 'dnsdb',
121 dbuser => 'dnsdb',
122 dbpass => 'secret',
123 dbhost => '',
124
125 # Email notice settings
126 mailhost => 'smtp.example.com',
127 mailnotify => 'dnsdb@example.com', # to
128 mailsender => 'dnsdb@example.com', # from
129 mailname => 'DNS Administration',
130 orgname => 'Example Corp',
131 domain => 'example.com',
132
133 # Template directory
134 templatedir => 'templates/',
135# fmeh. this is a real web path, not a logical internal one. hm..
136# cssdir => 'templates/',
137 sessiondir => 'session/',
138
139 # Session params
140 timeout => '3600', # 1 hour default
141
142 # Other miscellanea
143 log_failures => 1, # log all evarthing by default
144 perpage => 15,
145 );
146
147## (Semi)private variables
148
149# Hash of functions for validating record types. Filled in initGlobals() since
150# it relies on visibility flags from the rectypes table in the DB
151my %validators;
152
153# Username, full name, ID - mainly for logging
154my %userdata;
155
156
157##
158## utility functions
159##
160
161## DNSDB::_rectable()
162# Takes default+rdns flags, returns appropriate table name
163sub _rectable {
164 my $def = shift;
165 my $rev = shift;
166
167 return 'records' if $def ne 'y';
168 return 'default_records' if $rev ne 'y';
169 return 'default_rev_records';
170} # end _rectable()
171
172## DNSDB::_recparent()
173# Takes default+rdns flags, returns appropriate parent-id column name
174sub _recparent {
175 my $def = shift;
176 my $rev = shift;
177
178 return 'group_id' if $def eq 'y';
179 return 'rdns_id' if $rev eq 'y';
180 return 'domain_id';
181} # end _recparent()
182
183## DNSDB::_ipparent()
184# Check an IP to be added in a reverse zone to see if it's really in the requested parent.
185# Takes a database handle, default and reverse flags, IP (fragment) to check, parent zone ID,
186# and a reference to a NetAddr::IP object (also used to pass back a fully-reconstructed IP for
187# database insertion)
188sub _ipparent {
189 my $dbh = shift;
190 my $defrec = shift;
191 my $revrec = shift;
192 my $val = shift;
193 my $id = shift;
194 my $addr = shift;
195
196 return if $revrec ne 'y'; # this sub not useful in forward zones
197
198 $$addr = NetAddr::IP->new($$val); #necessary?
199
200 # subsub to split, reverse, and overlay an IP fragment on a netblock
201 sub __rev_overlay {
202 my $splitme = shift; # ':' or '.', m'lud?
203 my $parnet = shift;
204 my $val = shift;
205 my $addr = shift;
206
207 my $joinme = $splitme;
208 $splitme = '\.' if $splitme eq '.';
209 my @working = reverse(split($splitme, $parnet->addr));
210 my @parts = reverse(split($splitme, $$val));
211 for (my $i = 0; $i <= $#parts; $i++) {
212 $working[$i] = $parts[$i];
213 }
214 my $checkme = NetAddr::IP->new(join($joinme, reverse(@working))) or return 0;
215 return 0 unless $checkme->within($parnet);
216 $$addr = $checkme; # force "correct" IP to be recorded.
217 return 1;
218 }
219
220 my ($parstr) = $dbh->selectrow_array("SELECT revnet FROM revzones WHERE rdns_id = ?", undef, ($id));
221 my $parnet = NetAddr::IP->new($parstr);
222
223 # Fail early on v6-in-v4 or v4-in-v6. We're not accepting these ATM.
224 return 0 if $parnet->addr =~ /\./ && $$val =~ /:/;
225 return 0 if $parnet->addr =~ /:/ && $$val =~ /\./;
226
227 if ($$addr && $$val =~ /^[\da-fA-F][\da-fA-F:]+[\da-fA-F]$/) {
228 # the only case where NetAddr::IP's acceptance of legitimate IPs is "correct" is for a proper IPv6 address.
229 # the rest we have to restructure before fiddling. *sigh*
230 return 1 if $$addr->within($parnet);
231 } else {
232 # We don't have a complete IP in $$val (yet)
233 if ($parnet->addr =~ /:/) {
234 $$val =~ s/^:+//; # gotta strip'em all...
235 return __rev_overlay(':', $parnet, $val, $addr);
236 }
237 if ($parnet->addr =~ /\./) {
238 $$val =~ s/^\.+//;
239 return __rev_overlay('.', $parnet, $val, $addr);
240 }
241 # should be impossible to get here...
242 }
243 # ... and here.
244 # can't do nuttin' in forward zones
245} # end _ipparent()
246
247## DNSDB::_hostparent()
248# A little different than _ipparent above; this tries to *find* the parent zone of a hostname
249# Takes a database handle and hostname.
250# Returns the domain ID of the parent domain if one was found.
251sub _hostparent {
252 my $dbh = shift;
253 my $hname = shift;
254
255 my @hostbits = split /\./, $hname;
256 my $sth = $dbh->prepare("SELECT count(*),domain_id FROM domains WHERE domain = ? GROUP BY domain_id");
257 foreach (@hostbits) {
258 $sth->execute($hname);
259 my ($found, $parid) = $sth->fetchrow_array;
260 if ($found) {
261 return $parid;
262 }
263 $hname =~ s/^$_\.//;
264 }
265} # end _hostparent()
266
267## DNSDB::_log()
268# Log an action
269# Takes a database handle and log entry hash containing at least:
270# group_id, log entry
271# and optionally one or more of:
272# domain_id, rdns_id
273# The %userdata hash provides the user ID, username, and fullname
274sub _log {
275 my $dbh = shift;
276
277 my %args = @_;
278
279 $args{rdns_id} = 0 if !$args{rdns_id};
280 $args{domain_id} = 0 if !$args{domain_id};
281
282##fixme: farm out the actual logging to different subs for file, syslog, internal, etc based on config
283# if ($config{log_channel} eq 'sql') {
284 $dbh->do("INSERT INTO log (domain_id,rdns_id,group_id,entry,user_id,email,name) VALUES (?,?,?,?,?,?,?)",
285 undef,
286 ($args{domain_id}, $args{rdns_id}, $args{group_id}, $args{entry},
287 $userdata{userid}, $userdata{username}, $userdata{fullname}) );
288# } elsif ($config{log_channel} eq 'file') {
289# } elsif ($config{log_channel} eq 'syslog') {
290# }
291} # end _log
292
293
294##
295## Record validation subs.
296##
297
298## All of these subs take substantially the same arguments:
299# a database handle
300# a hash containing at least the following keys:
301# - defrec (default/live flag)
302# - revrec (forward/reverse flag)
303# - id (parent entity ID)
304# - host (hostname)
305# - rectype
306# - val (IP, hostname [CNAME/MX/SRV] or text)
307# - addr (NetAddr::IP object from val. May be undef.)
308# MX and SRV record validation also expect distance, and SRV records expect weight and port as well.
309# host, rectype, and addr should be references as these may be modified in validation
310
311# A record
312sub _validate_1 {
313 my $dbh = shift;
314
315 my %args = @_;
316
317 return ('FAIL', 'Reverse zones cannot contain A records') if $args{revrec} eq 'y';
318
319 # Coerce all hostnames to end in ".DOMAIN" for group/default records,
320 # or the intended parent domain for live records.
321 my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : domainName($dbh,$args{id}));
322 ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
323
324 # Check IP is well-formed, and that it's a v4 address
325 # Fail on "compact" IPv4 variants, because they are not consistent and predictable.
326 return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv4 address")
327 unless ${$args{val}} =~ /^\d+\.\d+\.\d+\.\d+$/;
328 return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv4 address")
329 unless $args{addr} && !$args{addr}->{isv6};
330 # coerce IP/value to normalized form for storage
331 ${$args{val}} = $args{addr}->addr;
332
333 return ('OK','OK');
334} # done A record
335
336# NS record
337sub _validate_2 {
338 my $dbh = shift;
339
340 my %args = @_;
341
342 # Coerce the hostname to "DOMAIN" for forward default records, "ZONE" for reverse default records,
343 # or the intended parent zone for live records.
344##fixme: allow for delegating <subdomain>.DOMAIN?
345 if ($args{revrec} eq 'y') {
346 my $pname = ($args{defrec} eq 'y' ? 'ZONE' : revName($dbh,$args{id}));
347 ${$args{host}} = $pname if ${$args{host}} ne $pname;
348 } else {
349 my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : domainName($dbh,$args{id}));
350 ${$args{host}} = $pname if ${$args{host}} ne $pname;
351 }
352
353# Let this lie for now. Needs more magic.
354# # Check IP is well-formed, and that it's a v4 address
355# return ('FAIL',"A record must be a valid IPv4 address")
356# unless $addr && !$addr->{isv6};
357# # coerce IP/value to normalized form for storage
358# $$val = $addr->addr;
359
360 return ('OK','OK');
361} # done NS record
362
363# CNAME record
364sub _validate_5 {
365 my $dbh = shift;
366
367 my %args = @_;
368
369# Not really true, but these are only useful for delegating smaller-than-/24 IP blocks.
370# This is fundamentally a messy operation and should really just be taken care of by the
371# export process, not manual maintenance of the necessary records.
372 return ('FAIL', 'Reverse zones cannot contain CNAME records') if $args{revrec} eq 'y';
373
374 # Coerce all hostnames to end in ".DOMAIN" for group/default records,
375 # or the intended parent domain for live records.
376 my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : domainName($dbh,$args{id}));
377 ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
378
379 return ('OK','OK');
380} # done CNAME record
381
382# SOA record
383sub _validate_6 {
384 # Smart monkeys won't stick their fingers in here; we have
385 # separate dedicated routines to deal with SOA records.
386 return ('OK','OK');
387} # done SOA record
388
389# PTR record
390sub _validate_12 {
391 my $dbh = shift;
392
393 my %args = @_;
394
395 if ($args{revrec} eq 'y') {
396 if ($args{defrec} eq 'n') {
397 return ('FAIL', "IP or IP fragment ${$args{val}} is not within ".revName($dbh, $args{id}))
398 unless _ipparent($dbh, $args{defrec}, $args{revrec}, $args{val}, $args{id}, \$args{addr});
399 ${$args{val}} = $args{addr}->addr;
400 } else {
401 if (${$args{val}} =~ /\./) {
402 # looks like a v4 or fragment
403 if (${$args{val}} =~ /^\d+\.\d+\.\d+\.\d+$/) {
404 # woo! a complete IP! validate it and normalize, or fail.
405 $args{addr} = NetAddr::IP->new(${$args{val}})
406 or return ('FAIL', "IP/value looks like IPv4 but isn't valid");
407 ${$args{val}} = $args{addr}->addr;
408 } else {
409 ${$args{val}} =~ s/^\.*/ZONE./ unless ${$args{val}} =~ /^ZONE/;
410 }
411 } elsif (${$args{val}} =~ /[a-f:]/) {
412 # looks like a v6 or fragment
413 ${$args{val}} =~ s/^:*/ZONE::/ if !$args{addr} && ${$args{val}} !~ /^ZONE/;
414 if ($args{addr}) {
415 if ($args{addr}->addr =~ /^0/) {
416 ${$args{val}} =~ s/^:*/ZONE::/ unless ${$args{val}} =~ /^ZONE/;
417 } else {
418 ${$args{val}} = $args{addr}->addr;
419 }
420 }
421 } else {
422 # bare number (probably). These could be v4 or v6, so we'll
423 # expand on these on creation of a reverse zone.
424 ${$args{val}} = "ZONE,${$args{val}}" unless ${$args{val}} =~ /^ZONE/;
425 }
426 ${$args{host}} =~ s/\.*$/\.$config{domain}/ if ${$args{host}} !~ /(?:$config{domain}|ADMINDOMAIN)$/;
427 }
428
429# Multiple PTR records do NOT generally do what most people believe they do,
430# and tend to fail in the most awkward way possible. Check and warn.
431# We use $val instead of $addr->addr since we may be in a defrec, and may have eg "ZONE::42" or "ZONE.12"
432
433 my @checkvals = (${$args{val}});
434 if (${$args{val}} =~ /,/) {
435 # push . and :: variants into checkvals if val has ,
436 my $tmp;
437 ($tmp = ${$args{val}}) =~ s/,/./;
438 push @checkvals, $tmp;
439 ($tmp = ${$args{val}}) =~ s/,/::/;
440 push @checkvals, $tmp;
441 }
442 my $pcsth = $dbh->prepare("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec})." WHERE val = ?");
443 foreach my $checkme (@checkvals) {
444 if ($args{update}) {
445 # Record update. There should usually be an existing PTR (the record being updated)
446 my @ptrs = @{ $dbh->selectcol_arrayref("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
447 " WHERE val = ?", undef, ($checkme)) };
448 return ('WARN', "PTR record for $checkme already exists; adding another will probably not do what you want")
449 if @ptrs && (!grep /^$args{update}$/, @ptrs);
450 } else {
451 # New record. Always warn if a PTR exists
452 my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
453 " WHERE val = ?", undef, ($checkme));
454 return ('WARN', "PTR record for $checkme already exists; adding another will probably not do what you want")
455 if $ptrcount;
456 }
457 }
458
459 } else {
460 # Not absolutely true but only useful if you hack things up for sub-/24 v4 reverse delegations
461 # Simpler to just create the reverse zone and grant access for the customer to edit it, and create direct
462 # PTR records on export
463 return ('FAIL',"Forward zones cannot contain PTR records");
464 }
465
466 return ('OK','OK');
467} # done PTR record
468
469# MX record
470sub _validate_15 {
471 my $dbh = shift;
472
473 my %args = @_;
474
475# Not absolutely true but WTF use is an MX record for a reverse zone?
476 return ('FAIL', 'Reverse zones cannot contain MX records') if $args{revrec} eq 'y';
477
478 return ('FAIL', "Distance is required for MX records") unless defined(${$args{dist}});
479 ${$args{dist}} =~ s/\s*//g;
480 return ('FAIL',"Distance is required, and must be numeric") unless ${$args{dist}} =~ /^\d+$/;
481
482 ${$args{fields}} = "distance,";
483 push @{$args{vallist}}, ${$args{dist}};
484
485 # Coerce all hostnames to end in ".DOMAIN" for group/default records,
486 # or the intended parent domain for live records.
487 my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : domainName($dbh,$args{id}));
488 ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
489
490# hmm.. this might work. except possibly for something pointing to "deadbeef.ca". <g>
491# if ($type == $reverse_typemap{NS} || $type == $reverse_typemap{MX} || $type == $reverse_typemap{SRV}) {
492# if ($val =~ /^\s*[\da-f:.]+\s*$/) {
493# return ('FAIL',"$val is not a valid IP address") if !$addr;
494# }
495# }
496
497 return ('OK','OK');
498} # done MX record
499
500# TXT record
501sub _validate_16 {
502 # Could arguably put a WARN return here on very long (>512) records
503 return ('OK','OK');
504} # done TXT record
505
506# RP record
507sub _validate_17 {
508 # Probably have to validate these some day
509 return ('OK','OK');
510} # done RP record
511
512# AAAA record
513sub _validate_28 {
514 my $dbh = shift;
515
516 my %args = @_;
517
518 return ('FAIL', 'Reverse zones cannot contain AAAA records') if $args{revrec} eq 'y';
519
520 # Coerce all hostnames to end in ".DOMAIN" for group/default records,
521 # or the intended parent domain for live records.
522 my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : domainName($dbh,$args{id}));
523 ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
524
525 # Check IP is well-formed, and that it's a v6 address
526 return ('FAIL',"$typemap{${$args{rectype}}} record must be a valid IPv6 address")
527 unless $args{addr} && $args{addr}->{isv6};
528 # coerce IP/value to normalized form for storage
529 ${$args{val}} = $args{addr}->addr;
530
531 return ('OK','OK');
532} # done AAAA record
533
534# SRV record
535sub _validate_33 {
536 my $dbh = shift;
537
538 my %args = @_;
539
540# Not absolutely true but WTF use is an SRV record for a reverse zone?
541 return ('FAIL', 'Reverse zones cannot contain SRV records') if $args{revrec} eq 'y';
542
543 return ('FAIL', "Distance is required for SRV records") unless defined(${$args{dist}});
544 ${$args{dist}} =~ s/\s*//g;
545 return ('FAIL',"Distance is required, and must be numeric") unless ${$args{dist}} =~ /^\d+$/;
546
547 return ('FAIL',"SRV records must begin with _service._protocol [${$args{host}}]")
548 unless ${$args{host}} =~ /^_[A-Za-z]+\._[A-Za-z]+\.[a-zA-Z0-9-]+/;
549 return ('FAIL',"Port and weight are required for SRV records")
550 unless defined(${$args{weight}}) && defined(${$args{port}});
551 ${$args{weight}} =~ s/\s*//g;
552 ${$args{port}} =~ s/\s*//g;
553
554 return ('FAIL',"Port and weight are required, and must be numeric")
555 unless ${$args{weight}} =~ /^\d+$/ && ${$args{port}} =~ /^\d+$/;
556
557 ${$args{fields}} = "distance,weight,port,";
558 push @{$args{vallist}}, (${$args{dist}}, ${$args{weight}}, ${$args{port}});
559
560 # Coerce all hostnames to end in ".DOMAIN" for group/default records,
561 # or the intended parent domain for live records.
562 my $pname = ($args{defrec} eq 'y' ? 'DOMAIN' : domainName($dbh,$args{id}));
563 ${$args{host}} =~ s/\.*$/\.$pname/ if ${$args{host}} !~ /$pname$/;
564
565 return ('OK','OK');
566} # done SRV record
567
568# Now the custom types
569
570# A+PTR record. With a very little bit of magic we can also use this sub to validate AAAA+PTR. Whee!
571sub _validate_65280 {
572 my $dbh = shift;
573
574 my %args = @_;
575
576 my $code = 'OK';
577 my $msg = 'OK';
578
579 if ($args{defrec} eq 'n') {
580 # live record; revrec determines whether we validate the PTR or A component first.
581
582 if ($args{revrec} eq 'y') {
583 ($code,$msg) = _validate_12($dbh, %args);
584 return ($code,$msg) if $code eq 'FAIL';
585
586 # Check if the reqested domain exists. If not, coerce the type down to PTR and warn.
587 if (!(${$args{domid}} = _hostparent($dbh, ${$args{host}}))) {
588 my $addmsg = "Record ".($args{update} ? 'updated' : 'added').
589 " as PTR instead of $typemap{${$args{rectype}}}; domain not found for ${$args{host}}";
590 $msg .= "\n$addmsg" if $code eq 'WARN';
591 $msg = $addmsg if $code eq 'OK';
592 ${$args{rectype}} = $reverse_typemap{PTR};
593 return ('WARN', $msg);
594 }
595
596 # Add domain ID to field list and values
597 ${$args{fields}} .= "domain_id,";
598 push @{$args{vallist}}, ${$args{domid}};
599
600 } else {
601 ($code,$msg) = _validate_1($dbh, %args) if ${$args{rectype}} == 65280;
602 ($code,$msg) = _validate_28($dbh, %args) if ${$args{rectype}} == 65281;
603 return ($code,$msg) if $code eq 'FAIL';
604
605 # Check if the requested reverse zone exists - note, an IP fragment won't
606 # work here since we don't *know* which parent to put it in.
607 # ${$args{val}} has been validated as a valid IP by now, in one of the above calls.
608 my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet >> ?".
609 " ORDER BY masklen(revnet) DESC", undef, (${$args{val}}));
610 if (!$revid) {
611 $msg = "Record ".($args{update} ? 'updated' : 'added')." as ".(${$args{rectype}} == 65280 ? 'A' : 'AAAA').
612 " instead of $typemap{${$args{rectype}}}; reverse zone not found for ${$args{val}}";
613 ${$args{rectype}} = (${$args{rectype}} == 65280 ? $reverse_typemap{A} : $reverse_typemap{AAAA});
614 return ('WARN', $msg);
615 }
616
617 # Check for duplicate PTRs. Note we don't have to play games with $code and $msg, because
618 # by definition there can't be duplicate PTRs if the reverse zone isn't managed here.
619 if ($args{update}) {
620 # Record update. There should usually be an existing PTR (the record being updated)
621 my @ptrs = @{ $dbh->selectcol_arrayref("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
622 " WHERE val = ?", undef, (${$args{val}})) };
623 if (@ptrs && (!grep /^$args{update}$/, @ptrs)) {
624 $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want";
625 $code = 'WARN';
626 }
627 } else {
628 # New record. Always warn if a PTR exists
629 my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
630 " WHERE val = ?", undef, (${$args{val}}));
631 $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want"
632 if $ptrcount;
633 $code = 'WARN' if $ptrcount;
634 }
635
636# my ($ptrcount) = $dbh->selectrow_array("SELECT count(*) FROM "._rectable($args{defrec},$args{revrec}).
637# " WHERE val = ?", undef, ${$args{val}});
638# if ($ptrcount) {
639# my $curid = $dbh->selectrow_array("SELECT record_id FROM "._rectable($args{defrec},$args{revrec}).
640# " WHERE val = ?
641# $msg = "PTR record for ${$args{val}} already exists; adding another will probably not do what you want";
642# $code = 'WARN';
643# }
644
645 ${$args{fields}} .= "rdns_id,";
646 push @{$args{vallist}}, $revid;
647 }
648
649 } else { # defrec eq 'y'
650 if ($args{revrec} eq 'y') {
651 ($code,$msg) = _validate_12($dbh, %args);
652 return ($code,$msg) if $code eq 'FAIL';
653 if (${$args{rectype}} == 65280) {
654 return ('FAIL',"A+PTR record must be a valid IPv4 address or fragment")
655 if ${$args{val}} =~ /:/;
656 ${$args{val}} =~ s/^ZONE,/ZONE./; # Clean up after uncertain IP-fragment-type from _validate_12
657 } elsif (${$args{rectype}} == 65281) {
658 return ('FAIL',"AAAA+PTR record must be a valid IPv6 address or fragment")
659 if ${$args{val}} =~ /\./;
660 ${$args{val}} =~ s/^ZONE,/ZONE::/; # Clean up after uncertain IP-fragment-type from _validate_12
661 }
662 } else {
663 # This is easy. I also can't see a real use-case for A/AAAA+PTR in *all* forward
664 # domains, since you wouldn't be able to substitute both domain and reverse zone
665 # sanely, and you'd end up with guaranteed over-replicated PTR records that would
666 # confuse the hell out of pretty much anything that uses them.
667##fixme: make this a config flag?
668 return ('FAIL', "$typemap{${$args{rectype}}} records not allowed in default domains");
669 }
670 }
671
672 return ($code, $msg);
673} # done A+PTR record
674
675# AAAA+PTR record
676# A+PTR above has been magicked to handle AAAA+PTR as well.
677sub _validate_65281 {
678 return _validate_65280(@_);
679} # done AAAA+PTR record
680
681# PTR template record
682sub _validate_65282 {
683 return ('OK','OK');
684} # done PTR template record
685
686# A+PTR template record
687sub _validate_65283 {
688 return ('OK','OK');
689} # done AAAA+PTR template record
690
691# AAAA+PTR template record
692sub _validate_65284 {
693 return ('OK','OK');
694} # done AAAA+PTR template record
695
696
697##
698## Record data substitution subs
699##
700
701# Replace ZONE in hostname
702sub _ZONE {
703 my $zone = shift;
704 my $string = shift;
705 my $fr = shift || 'f'; # flag for forward/reverse order? nb: ignored for IP
706
707 my $prefix = $zone->network->addr; # Just In Case someone managed to slip in
708 # a funky subnet that had host bits set.
709
710 $string =~ s/,/./ if !$zone->{isv6};
711 $string =~ s/,/::/ if $zone->{isv6};
712
713# if ($zone->{isv6} && ($zone->masklen % 4) != 0) {
714# # grumpyfail, non-nibble zone. shouldn't happen
715# return;
716# }
717
718 # Subbing ZONE in the host. We need to properly ID the netblock range
719 # The subbed text should have "network IP with trailing zeros stripped" for
720 # blocks lined up on octet (for v4) or 16-bit (for v6) boundaries
721 # For blocks that do NOT line up on these boundaries, we tack on an extra "-0",
722 # then take the most significant octet or 16-bit chunk of the "broadcast" IP and
723 # append it after a double-dash
724 # ie:
725 # 8.0.0.0/6 -> 8.0.0.0 -> 11.255.255.255; sub should be 8--11
726 # 10.0.0.0/12 -> 10.0.0.0 -> 10.0.0.0 -> 10.15.255.255; sub should be 10-0--15
727 # 192.168.4.0/22 -> 192.168.4.0 -> 192.168.7.255; sub should be 192-168-4--7
728 # 192.168.0.8/29 -> 192.168.0.8 -> 192.168.0.15; sub should be 192-168-0-8--15
729 # Similar for v6
730 if (!$zone->{isv6}) {
731 my $bc = $zone->broadcast->addr;
732 if ($zone->masklen > 24) {
733 $bc =~ s/^\d+\.\d+\.\d+\.//;
734 } elsif ($zone->masklen > 16) {
735 $prefix =~ s/\.0$//;
736 $bc =~ s/^\d+\.\d+\.//;
737 } elsif ($zone->masklen > 8) {
738 $bc =~ s/^\d+\.//;
739 $prefix =~ s/\.0\.0$//;
740 } else {
741 $prefix =~ s/\.0\.0\.0$//;
742 }
743 if ($zone->masklen % 8) {
744 $bc =~ s/(\.255)+$//;
745 $prefix .= "--$bc"; #"--".zone->masklen; # use range or mask length?
746 }
747 } else {
748 if (($zone->masklen % 16) != 0) {
749 # Strip trailing :0 off $prefix, and :ffff off the broadcast IP
750 # Strip the leading 16-bit chunks off the front of the broadcast IP
751 # Append the remaining 16-bit chunk to the prefix after "--"
752 my $bc = $zone->broadcast->addr;
753 for (my $i=0; $i<(7-int($zone->masklen / 16)); $i++) {
754 $prefix =~ s/:0$//;
755 $bc =~ s/:ffff$//;
756 }
757 $bc =~ s/^([a-f0-9]+:)+//;
758 $prefix .= "--$bc";
759 } else {
760 # Strip off :0 from the end until we reach the netblock length.
761 for (my $i=0; $i<(8-$zone->masklen / 16); $i++) {
762 $prefix =~ s/:0$//;
763 }
764 }
765 }
766
767 # Replace . and : with -
768 # If flagged for reverse-order, split on . or :, reverse, and join with -
769 if ($fr eq 'f') {
770 $prefix =~ s/[:.]+/-/g;
771 } else {
772 $prefix = join('-', reverse(split(/[:.]/, $prefix)));
773 }
774 $string =~ s/ZONE/$prefix/;
775# }
776 return $string;
777} # done _ZONE
778
779
780
781##
782## Initialization and cleanup subs
783##
784
785
786## DNSDB::loadConfig()
787# Load the minimum required initial state (DB connect info) from a config file
788# Load misc other bits while we're at it.
789# Takes an optional basename and config path to look for
790# Populates the %config and %def hashes
791sub loadConfig {
792 my $basename = shift || ''; # this will work OK
793##fixme $basename isn't doing what I think I thought I was trying to do.
794
795 my $deferr = ''; # place to put error from default config file in case we can't find either one
796
797 my $configroot = "/etc/dnsdb"; ##CFG_LEAF##
798 $configroot = '' if $basename =~ m|^/|;
799 $basename .= ".conf" if $basename !~ /\.conf$/;
800 my $defconfig = "$configroot/dnsdb.conf";
801 my $siteconfig = "$configroot/$basename";
802
803 # System defaults
804 __cfgload("$defconfig") or $deferr = $errstr;
805
806 # Per-site-ish settings.
807 if ($basename ne '.conf') {
808 unless (__cfgload("$siteconfig")) {
809 $errstr = ($deferr ? "Error opening default config file $defconfig: $deferr\n" : '').
810 "Error opening site config file $siteconfig";
811 return;
812 }
813 }
814
815 # Munge log_failures.
816 if ($config{log_failures} ne '1' && $config{log_failures} ne '0') {
817 # true/false, on/off, yes/no all valid.
818 if ($config{log_failures} =~ /^(?:true|false|on|off|yes|no)$/) {
819 if ($config{log_failures} =~ /(?:true|on|yes)/) {
820 $config{log_failures} = 1;
821 } else {
822 $config{log_failures} = 0;
823 }
824 } else {
825 $errstr = "Bad log_failures setting $config{log_failures}";
826 $config{log_failures} = 1;
827 # Bad setting shouldn't be fatal.
828 # return 2;
829 }
830 }
831
832 # All good, clear the error and go home.
833 $errstr = '';
834 return 1;
835} # end loadConfig()
836
837
838## DNSDB::__cfgload()
839# Private sub to parse a config file and load it into %config
840# Takes a file handle on an open config file
841sub __cfgload {
842 $errstr = '';
843 my $cfgfile = shift;
844
845 if (open CFG, "<$cfgfile") {
846 while (<CFG>) {
847 chomp;
848 s/^\s*//;
849 next if /^#/;
850 next if /^$/;
851# hmm. more complex bits in this file might require [heading] headers, maybe?
852# $mode = $1 if /^\[(a-z)+]/;
853 # DB connect info
854 $config{dbname} = $1 if /^dbname\s*=\s*([a-z0-9_.-]+)/i;
855 $config{dbuser} = $1 if /^dbuser\s*=\s*([a-z0-9_.-]+)/i;
856 $config{dbpass} = $1 if /^dbpass\s*=\s*([a-z0-9_.-]+)/i;
857 $config{dbhost} = $1 if /^dbhost\s*=\s*([a-z0-9_.-]+)/i;
858 # SOA defaults
859 $def{contact} = $1 if /^contact\s*=\s*([a-z0-9_.-]+)/i;
860 $def{prins} = $1 if /^prins\s*=\s*([a-z0-9_.-]+)/i;
861 $def{soattl} = $1 if /^soattl\s*=\s*(\d+)/i;
862 $def{refresh} = $1 if /^refresh\s*=\s*(\d+)/i;
863 $def{retry} = $1 if /^retry\s*=\s*(\d+)/i;
864 $def{expire} = $1 if /^expire\s*=\s*(\d+)/i;
865 $def{minttl} = $1 if /^minttl\s*=\s*(\d+)/i;
866 $def{ttl} = $1 if /^ttl\s*=\s*(\d+)/i;
867 # Mail settings
868 $config{mailhost} = $1 if /^mailhost\s*=\s*([a-z0-9_.-]+)/i;
869 $config{mailnotify} = $1 if /^mailnotify\s*=\s*([a-z0-9_.\@-]+)/i;
870 $config{mailsender} = $1 if /^mailsender\s*=\s*([a-z0-9_.\@-]+)/i;
871 $config{mailname} = $1 if /^mailname\s*=\s*([a-z0-9\s_.-]+)/i;
872 $config{orgname} = $1 if /^orgname\s*=\s*([a-z0-9\s_.,'-]+)/i;
873 $config{domain} = $1 if /^domain\s*=\s*([a-z0-9_.-]+)/i;
874 # session - note this is fed directly to CGI::Session
875 $config{timeout} = $1 if /^[tT][iI][mM][eE][oO][uU][tT]\s*=\s*(\d+[smhdwMy]?)/;
876 $config{sessiondir} = $1 if m{^sessiondir\s*=\s*([a-z0-9/_.-]+)}i;
877 # misc
878 $config{log_failures} = $1 if /^log_failures\s*=\s*([a-z01]+)/i;
879 $config{perpage} = $1 if /^perpage\s*=\s*(\d+)/i;
880 }
881 close CFG;
882 } else {
883 $errstr = $!;
884 return;
885 }
886 return 1;
887} # end __cfgload()
888
889
890## DNSDB::connectDB()
891# Creates connection to DNS database.
892# Requires the database name, username, and password.
893# Returns a handle to the db.
894# Set up for a PostgreSQL db; could be any transactional DBMS with the
895# right changes.
896sub connectDB {
897 $errstr = '';
898 my $dbname = shift;
899 my $user = shift;
900 my $pass = shift;
901 my $dbh;
902 my $DSN = "DBI:Pg:dbname=$dbname";
903
904 my $host = shift;
905 $DSN .= ";host=$host" if $host;
906
907# Note that we want to autocommit by default, and we will turn it off locally as necessary.
908# We may not want to print gobbledygook errors; YMMV. Have to ponder that further.
909 $dbh = DBI->connect($DSN, $user, $pass, {
910 AutoCommit => 1,
911 PrintError => 0
912 })
913 or return (undef, $DBI::errstr) if(!$dbh);
914
915##fixme: initialize the DB if we can't find the table (since, by definition, there's
916# nothing there if we can't select from it...)
917 my $tblsth = $dbh->prepare("SELECT count(*) FROM pg_catalog.pg_class WHERE relkind='r' AND relname=?");
918 my ($tblcount) = $dbh->selectrow_array($tblsth, undef, ('misc'));
919 return (undef,$DBI::errstr) if $dbh->err;
920
921#if ($tblcount == 0) {
922# # create tables one at a time, checking for each.
923# return (undef, "check table misc missing");
924#}
925
926
927# Return here if we can't select.
928# This should retrieve the dbversion key.
929 my $sth = $dbh->prepare("SELECT key,value FROM misc WHERE misc_id=1");
930 $sth->execute();
931 return (undef,$DBI::errstr) if ($sth->err);
932
933##fixme: do stuff to the DB on version mismatch
934# x.y series should upgrade on $DNSDB::VERSION > misc(key=>version)
935# DB should be downward-compatible; column defaults should give sane (if possibly
936# useless-and-needs-help) values in columns an older software stack doesn't know about.
937
938# See if the select returned anything (or null data). This should
939# succeed if the select executed, but...
940 $sth->fetchrow();
941 return (undef,$DBI::errstr) if ($sth->err);
942
943 $sth->finish;
944
945# If we get here, we should be OK.
946 return ($dbh,"DB connection OK");
947} # end connectDB
948
949
950## DNSDB::finish()
951# Cleans up after database handles and so on.
952# Requires a database handle
953sub finish {
954 my $dbh = $_[0];
955 $dbh->disconnect;
956} # end finish
957
958
959## DNSDB::initGlobals()
960# Initialize global variables
961# NB: this does NOT include web-specific session variables!
962# Requires a database handle
963sub initGlobals {
964 my $dbh = shift;
965
966# load record types from database
967 my $sth = $dbh->prepare("SELECT val,name,stdflag FROM rectypes");
968 $sth->execute;
969 while (my ($recval,$recname,$stdflag) = $sth->fetchrow_array()) {
970 $typemap{$recval} = $recname;
971 $reverse_typemap{$recname} = $recval;
972 # now we fill the record validation function hash
973 if ($stdflag < 5) {
974 my $fn = "_validate_$recval";
975 $validators{$recval} = \&$fn;
976 } else {
977 my $fn = "sub { return ('FAIL','Type $recval ($recname) not supported'); }";
978 $validators{$recval} = eval $fn;
979 }
980 }
981} # end initGlobals
982
983
984## DNSDB::login()
985# Takes a database handle, username and password
986# Returns a userdata hash (UID, GID, username, fullname parts) if username exists
987# and password matches the one on file
988# Returns undef otherwise
989sub login {
990 my $dbh = shift;
991 my $user = shift;
992 my $pass = shift;
993
994 my $userinfo = $dbh->selectrow_hashref("SELECT user_id,group_id,password,firstname,lastname FROM users WHERE username=?",
995 undef, ($user) );
996 return if !$userinfo;
997
998 if ($userinfo->{password} =~ m|^\$1\$([A-Za-z0-9/.]+)\$|) {
999 # native passwords (crypt-md5)
1000 return if $userinfo->{password} ne unix_md5_crypt($pass,$1);
1001 } elsif ($userinfo->{password} =~ /^[0-9a-f]{32}$/) {
1002 # VegaDNS import (hex-coded MD5)
1003 return if $userinfo->{password} ne md5_hex($pass);
1004 } else {
1005 # plaintext (convenient now and then)
1006 return if $userinfo->{password} ne $pass;
1007 }
1008
1009 return $userinfo;
1010} # end login()
1011
1012
1013## DNSDB::initActionLog()
1014# Set up action logging. Takes a database handle and user ID
1015# Sets some internal globals and Does The Right Thing to set up a logging channel.
1016# This sets up _log() to spew out log entries to the defined channel without worrying
1017# about having to open a file or a syslog channel
1018##fixme Need to call _initActionLog_blah() for various logging channels, configured
1019# via dnsdb.conf, in $config{log_channel} or something
1020# See https://secure.deepnet.cx/trac/dnsadmin/ticket/21
1021sub initActionLog {
1022 my $dbh = shift;
1023 my $uid = shift;
1024
1025 return if !$uid;
1026
1027 # snag user info for logging. there's got to be a way to not have to pass this back
1028 # and forth from a caller, but web usage means no persistence we can rely on from
1029 # the server side.
1030 my ($username,$fullname) = $dbh->selectrow_array("SELECT username, firstname || ' ' || lastname".
1031 " FROM users WHERE user_id=?", undef, ($uid));
1032##fixme: errors are unpossible!
1033
1034 $userdata{username} = $username;
1035 $userdata{userid} = $uid;
1036 $userdata{fullname} = $fullname;
1037
1038 # convert to real check once we have other logging channels
1039 # if ($config{log_channel} eq 'sql') {
1040 # Open Log, Sez Me!
1041 # }
1042
1043} # end initActionLog
1044
1045
1046## DNSDB::initPermissions()
1047# Set up permissions global
1048# Takes database handle and UID
1049sub initPermissions {
1050 my $dbh = shift;
1051 my $uid = shift;
1052
1053# %permissions = $(getPermissions($dbh,'user',$uid));
1054 getPermissions($dbh, 'user', $uid, \%permissions);
1055
1056} # end initPermissions()
1057
1058
1059## DNSDB::getPermissions()
1060# Get permissions from DB
1061# Requires DB handle, group or user flag, ID, and hashref.
1062sub getPermissions {
1063 my $dbh = shift;
1064 my $type = shift;
1065 my $id = shift;
1066 my $hash = shift;
1067
1068 my $sql = qq(
1069 SELECT
1070 p.admin,p.self_edit,
1071 p.group_create,p.group_edit,p.group_delete,
1072 p.user_create,p.user_edit,p.user_delete,
1073 p.domain_create,p.domain_edit,p.domain_delete,
1074 p.record_create,p.record_edit,p.record_delete
1075 FROM permissions p
1076 );
1077 if ($type eq 'group') {
1078 $sql .= qq(
1079 JOIN groups g ON g.permission_id=p.permission_id
1080 WHERE g.group_id=?
1081 );
1082 } else {
1083 $sql .= qq(
1084 JOIN users u ON u.permission_id=p.permission_id
1085 WHERE u.user_id=?
1086 );
1087 }
1088
1089 my $sth = $dbh->prepare($sql);
1090
1091 $sth->execute($id) or die "argh: ".$sth->errstr;
1092
1093# my $permref = $sth->fetchrow_hashref;
1094# return $permref;
1095# $hash = $permref;
1096# Eww. Need to learn how to forcibly drop a hashref onto an existing hash.
1097 ($hash->{admin},$hash->{self_edit},
1098 $hash->{group_create},$hash->{group_edit},$hash->{group_delete},
1099 $hash->{user_create},$hash->{user_edit},$hash->{user_delete},
1100 $hash->{domain_create},$hash->{domain_edit},$hash->{domain_delete},
1101 $hash->{record_create},$hash->{record_edit},$hash->{record_delete})
1102 = $sth->fetchrow_array;
1103
1104} # end getPermissions()
1105
1106
1107## DNSDB::changePermissions()
1108# Update an ACL entry
1109# Takes a db handle, type, owner-id, and hashref for the changed permissions.
1110sub changePermissions {
1111 my $dbh = shift;
1112 my $type = shift;
1113 my $id = shift;
1114 my $newperms = shift;
1115 my $inherit = shift || 0;
1116
1117 my $failmsg = '';
1118
1119 # see if we're switching from inherited to custom. for bonus points,
1120 # snag the permid and parent permid anyway, since we'll need the permid
1121 # to set/alter custom perms, and both if we're switching from custom to
1122 # inherited.
1123 my $sth = $dbh->prepare("SELECT (u.permission_id=g.permission_id) AS was_inherited,u.permission_id,g.permission_id".
1124 " FROM ".($type eq 'user' ? 'users' : 'groups')." u ".
1125 " JOIN groups g ON u.".($type eq 'user' ? '' : 'parent_')."group_id=g.group_id ".
1126 " WHERE u.".($type eq 'user' ? 'user' : 'group')."_id=?");
1127 $sth->execute($id);
1128
1129 my ($wasinherited,$permid,$parpermid) = $sth->fetchrow_array;
1130
1131# hack phtoui
1132# group id 1 is "special" in that it's it's own parent (err... possibly.)
1133# may make its parent id 0 which doesn't exist, and as a bonus is Perl-false.
1134 $wasinherited = 0 if ($type eq 'group' && $id == 1);
1135
1136 local $dbh->{AutoCommit} = 0;
1137 local $dbh->{RaiseError} = 1;
1138
1139 # Wrap all the SQL in a transaction
1140 eval {
1141 if ($inherit) {
1142
1143 $dbh->do("UPDATE ".($type eq 'user' ? 'users' : 'groups')." SET inherit_perm='t',permission_id=? ".
1144 "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($parpermid, $id) );
1145 $dbh->do("DELETE FROM permissions WHERE permission_id=?", undef, ($permid) );
1146
1147 } else {
1148
1149 if ($wasinherited) { # munge new permission entry in if we're switching from inherited perms
1150##fixme: need to add semirecursive bit to properly munge inherited permission ID on subgroups and users
1151# ... if'n'when we have groups with fully inherited permissions.
1152 # SQL is coo
1153 $dbh->do("INSERT INTO permissions ($permlist,".($type eq 'user' ? 'user' : 'group')."_id) ".
1154 "SELECT $permlist,? FROM permissions WHERE permission_id=?", undef, ($id,$permid) );
1155 ($permid) = $dbh->selectrow_array("SELECT permission_id FROM permissions ".
1156 "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($id) );
1157 $dbh->do("UPDATE ".($type eq 'user' ? 'users' : 'groups')." SET inherit_perm='f',permission_id=? ".
1158 "WHERE ".($type eq 'user' ? 'user' : 'group')."_id=?", undef, ($permid, $id) );
1159 }
1160
1161 # and now set the permissions we were passed
1162 foreach (@permtypes) {
1163 if (defined ($newperms->{$_})) {
1164 $dbh->do("UPDATE permissions SET $_=? WHERE permission_id=?", undef, ($newperms->{$_},$permid) );
1165 }
1166 }
1167
1168 } # (inherited->)? custom
1169
1170 $dbh->commit;
1171 }; # end eval
1172 if ($@) {
1173 my $msg = $@;
1174 eval { $dbh->rollback; };
1175 return ('FAIL',"$failmsg: $msg ($permid)");
1176 } else {
1177 return ('OK',$permid);
1178 }
1179
1180} # end changePermissions()
1181
1182
1183## DNSDB::comparePermissions()
1184# Compare two permission hashes
1185# Returns '>', '<', '=', '!'
1186sub comparePermissions {
1187 my $p1 = shift;
1188 my $p2 = shift;
1189
1190 my $retval = '='; # assume equality until proven otherwise
1191
1192 no warnings "uninitialized";
1193
1194 foreach (@permtypes) {
1195 next if $p1->{$_} == $p2->{$_}; # equal is good
1196 if ($p1->{$_} && !$p2->{$_}) {
1197 if ($retval eq '<') { # if we've already found an unequal pair where
1198 $retval = '!'; # $p2 has more access, and we now find a pair
1199 last; # where $p1 has more access, the overall access
1200 } # is neither greater or lesser, it's unequal.
1201 $retval = '>';
1202 }
1203 if (!$p1->{$_} && $p2->{$_}) {
1204 if ($retval eq '>') { # if we've already found an unequal pair where
1205 $retval = '!'; # $p1 has more access, and we now find a pair
1206 last; # where $p2 has more access, the overall access
1207 } # is neither greater or lesser, it's unequal.
1208 $retval = '<';
1209 }
1210 }
1211 return $retval;
1212} # end comparePermissions()
1213
1214
1215## DNSDB::changeGroup()
1216# Change group ID of an entity
1217# Takes a database handle, entity type, entity ID, and new group ID
1218sub changeGroup {
1219 my $dbh = shift;
1220 my $type = shift;
1221 my $id = shift;
1222 my $newgrp = shift;
1223
1224##fixme: fail on not enough args
1225 #return ('FAIL', "Missing
1226
1227 if ($type eq 'domain') {
1228 $dbh->do("UPDATE domains SET group_id=? WHERE domain_id=?", undef, ($newgrp, $id))
1229 or return ('FAIL','Group change failed: '.$dbh->errstr);
1230 } elsif ($type eq 'user') {
1231 $dbh->do("UPDATE users SET group_id=? WHERE user_id=?", undef, ($newgrp, $id))
1232 or return ('FAIL','Group change failed: '.$dbh->errstr);
1233 } elsif ($type eq 'group') {
1234 $dbh->do("UPDATE groups SET parent_group_id=? WHERE group_id=?", undef, ($newgrp, $id))
1235 or return ('FAIL','Group change failed: '.$dbh->errstr);
1236 }
1237 return ('OK','OK');
1238} # end changeGroup()
1239
1240
1241##
1242## Processing subs
1243##
1244
1245## DNSDB::addDomain()
1246# Add a domain
1247# Takes a database handle, domain name, numeric group, boolean(ish) state (active/inactive),
1248# and user info hash (for logging).
1249# Returns a status code and message
1250sub addDomain {
1251 $errstr = '';
1252 my $dbh = shift;
1253 return ('FAIL',"Need database handle") if !$dbh;
1254 my $domain = shift;
1255 return ('FAIL',"Domain must not be blank") if !$domain;
1256 my $group = shift;
1257 return ('FAIL',"Need group") if !defined($group);
1258 my $state = shift;
1259 return ('FAIL',"Need domain status") if !defined($state);
1260
1261 my %userinfo = @_; # remaining bits.
1262# user ID, username, user full name
1263
1264 $state = 1 if $state =~ /^active$/;
1265 $state = 1 if $state =~ /^on$/;
1266 $state = 0 if $state =~ /^inactive$/;
1267 $state = 0 if $state =~ /^off$/;
1268
1269 return ('FAIL',"Invalid domain status") if $state !~ /^\d+$/;
1270
1271 return ('FAIL', "Invalid characters in domain") if $domain !~ /^[a-zA-Z0-9_.-]+$/;
1272
1273 my $sth = $dbh->prepare("SELECT domain_id FROM domains WHERE domain=?");
1274 my $dom_id;
1275
1276# quick check to start to see if we've already got one
1277 $sth->execute($domain);
1278 ($dom_id) = $sth->fetchrow_array;
1279
1280 return ('FAIL', "Domain already exists") if $dom_id;
1281
1282 # Allow transactions, and raise an exception on errors so we can catch it later.
1283 # Use local to make sure these get "reset" properly on exiting this block
1284 local $dbh->{AutoCommit} = 0;
1285 local $dbh->{RaiseError} = 1;
1286
1287 # Wrap all the SQL in a transaction
1288 eval {
1289 # insert the domain...
1290 $dbh->do("INSERT INTO domains (domain,group_id,status) VALUES (?,?,?)", undef, ($domain, $group, $state));
1291
1292 # get the ID...
1293 ($dom_id) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE domain=?", undef, ($domain));
1294
1295 _log($dbh, (domain_id => $dom_id, group_id => $group,
1296 entry => "Added ".($state ? 'active' : 'inactive')." domain $domain"));
1297
1298 # ... and now we construct the standard records from the default set. NB: group should be variable.
1299 my $sth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl FROM default_records WHERE group_id=?");
1300 my $sth_in = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,distance,weight,port,ttl)".
1301 " VALUES ($dom_id,?,?,?,?,?,?,?)");
1302 $sth->execute($group);
1303 while (my ($host,$type,$val,$dist,$weight,$port,$ttl) = $sth->fetchrow_array()) {
1304 $host =~ s/DOMAIN/$domain/g;
1305 $val =~ s/DOMAIN/$domain/g;
1306 $sth_in->execute($host,$type,$val,$dist,$weight,$port,$ttl);
1307 if ($typemap{$type} eq 'SOA') {
1308 my @tmp1 = split /:/, $host;
1309 my @tmp2 = split /:/, $val;
1310 _log($dbh, (domain_id => $dom_id, group_id => $group,
1311 entry => "[new $domain] Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
1312 "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl"));
1313 } else {
1314 my $logentry = "[new $domain] Added record '$host $typemap{$type}";
1315 $logentry .= " [distance $dist]" if $typemap{$type} eq 'MX';
1316 $logentry .= " [priority $dist] [weight $weight] [port $port]" if $typemap{$type} eq 'SRV';
1317 _log($dbh, (domain_id => $dom_id, group_id => $group,
1318 entry => $logentry." $val', TTL $ttl"));
1319 }
1320 }
1321
1322 # once we get here, we should have suceeded.
1323 $dbh->commit;
1324 }; # end eval
1325
1326 if ($@) {
1327 my $msg = $@;
1328 eval { $dbh->rollback; };
1329 _log($dbh, (domain_id => $dom_id, group_id => $group, entry => "Failed adding domain $domain ($msg)"))
1330 if $config{log_failures};
1331 $dbh->commit; # since we enabled transactions earlier
1332 return ('FAIL',$msg);
1333 } else {
1334 return ('OK',$dom_id);
1335 }
1336} # end addDomain
1337
1338
1339## DNSDB::delZone()
1340# Delete a forward or reverse zone.
1341# Takes a database handle, zone ID, and forward/reverse flag.
1342# for now, just delete the records, then the domain.
1343# later we may want to archive it in some way instead (status code 2, for example?)
1344sub delZone {
1345 my $dbh = shift;
1346 my $zoneid = shift;
1347 my $revrec = shift;
1348
1349 # Allow transactions, and raise an exception on errors so we can catch it later.
1350 # Use local to make sure these get "reset" properly on exiting this block
1351 local $dbh->{AutoCommit} = 0;
1352 local $dbh->{RaiseError} = 1;
1353
1354 my $msg = '';
1355 my $failmsg = '';
1356 my $zone = ($revrec eq 'n' ? domainName($dbh, $zoneid) : revName($dbh, $zoneid));
1357
1358 # Set this up here since we may use if if $config{log_failures} is enabled
1359 my %loghash;
1360 $loghash{domain_id} = $zoneid if $revrec eq 'n';
1361 $loghash{rdns_id} = $zoneid if $revrec eq 'y';
1362 $loghash{group_id} = parentID($dbh,
1363 (id => $zoneid, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec) );
1364
1365 # Wrap all the SQL in a transaction
1366 eval {
1367 # Disentangle custom record types before removing the
1368 # ones that are only in the zone to be deleted
1369 if ($revrec eq 'n') {
1370 my $sth = $dbh->prepare("UPDATE records SET type=?,domain_id=0 WHERE domain_id=? AND type=?");
1371 $failmsg = "Failure converting multizone types to single-zone";
1372 $sth->execute($reverse_typemap{PTR}, $zoneid, 65280);
1373 $sth->execute($reverse_typemap{PTR}, $zoneid, 65281);
1374 $sth->execute(65282, $zoneid, 65283);
1375 $sth->execute(65282, $zoneid, 65284);
1376 $failmsg = "Failure removing domain records";
1377 $dbh->do("DELETE FROM records WHERE domain_id=?", undef, ($zoneid));
1378 $failmsg = "Failure removing domain";
1379 $dbh->do("DELETE FROM domains WHERE domain_id=?", undef, ($zoneid));
1380 } else {
1381 my $sth = $dbh->prepare("UPDATE records SET type=?,rdns_id=0 WHERE rdns_id=? AND type=?");
1382 $failmsg = "Failure converting multizone types to single-zone";
1383 $sth->execute($reverse_typemap{A}, $zoneid, 65280);
1384 $sth->execute($reverse_typemap{AAAA}, $zoneid, 65281);
1385# We don't have an "A template" or "AAAA template" type, although it might be useful for symmetry.
1386# $sth->execute(65285?, $zoneid, 65283);
1387# $sth->execute(65285?, $zoneid, 65284);
1388 $failmsg = "Failure removing reverse records";
1389 $dbh->do("DELETE FROM records WHERE rdns_id=?", undef, ($zoneid));
1390 $failmsg = "Failure removing reverse zone";
1391 $dbh->do("DELETE FROM revzones WHERE rdns_id=?", undef, ($zoneid));
1392 }
1393
1394 $msg = "Deleted ".($revrec eq 'n' ? 'domain' : 'reverse zone')." $zone";
1395 $loghash{entry} = $msg;
1396 _log($dbh, %loghash);
1397
1398 # once we get here, we should have suceeded.
1399 $dbh->commit;
1400 }; # end eval
1401
1402 if ($@) {
1403 $msg = $@;
1404 eval { $dbh->rollback; };
1405 $loghash{entry} = "Delete $zone: $failmsg: $msg";
1406 _log($dbh, %loghash) if $config{log_failures};
1407 $dbh->commit; # since we enabled transactions earlier
1408 return ('FAIL',"Delete $zone: $failmsg: $msg");
1409 } else {
1410 return ('OK',$msg);
1411 }
1412
1413} # end delZone()
1414
1415
1416## DNSDB::domainName()
1417# Return the domain name based on a domain ID
1418# Takes a database handle and the domain ID
1419# Returns the domain name or undef on failure
1420sub domainName {
1421 $errstr = '';
1422 my $dbh = shift;
1423 my $domid = shift;
1424 my ($domname) = $dbh->selectrow_array("SELECT domain FROM domains WHERE domain_id=?", undef, ($domid) );
1425 $errstr = $DBI::errstr if !$domname;
1426 return $domname if $domname;
1427} # end domainName()
1428
1429
1430## DNSDB::revName()
1431# Return the reverse zone name based on an rDNS ID
1432# Takes a database handle and the rDNS ID
1433# Returns the reverse zone name or undef on failure
1434sub revName {
1435 $errstr = '';
1436 my $dbh = shift;
1437 my $revid = shift;
1438 my ($revname) = $dbh->selectrow_array("SELECT revnet FROM revzones WHERE rdns_id=?", undef, ($revid) );
1439 $errstr = $DBI::errstr if !$revname;
1440 return $revname if $revname;
1441} # end revName()
1442
1443
1444## DNSDB::domainID()
1445# Takes a database handle and domain name
1446# Returns the domain ID number
1447sub domainID {
1448 $errstr = '';
1449 my $dbh = shift;
1450 my $domain = shift;
1451 my ($domid) = $dbh->selectrow_array("SELECT domain_id FROM domains WHERE domain=?", undef, ($domain) );
1452 $errstr = $DBI::errstr if !$domid;
1453 return $domid if $domid;
1454} # end domainID()
1455
1456
1457## DNSDB::revID()
1458# Takes a database handle and reverse zone name
1459# Returns the rDNS ID number
1460sub revID {
1461 $errstr = '';
1462 my $dbh = shift;
1463 my $revzone = shift;
1464 my ($revid) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revnet=?", undef, ($revzone) );
1465 $errstr = $DBI::errstr if !$revid;
1466 return $revid if $revid;
1467} # end revID()
1468
1469
1470## DNSDB::addRDNS
1471# Adds a reverse DNS zone
1472# Takes a database handle, CIDR block, numeric group, boolean(ish) state (active/inactive),
1473# and user info hash (for logging).
1474# Returns a status code and message
1475sub addRDNS {
1476 my $dbh = shift;
1477 my $zone = NetAddr::IP->new(shift);
1478 return ('FAIL',"Zone name must be a valid CIDR netblock") unless ($zone && $zone->addr !~ /^0/);
1479 my $revpatt = shift; # construct a custom (A/AAAA+)? PTR template record
1480 my $group = shift;
1481 my $state = shift;
1482
1483 my %userinfo = @_; # remaining bits.
1484# user ID, username, user full name
1485
1486 $state = 1 if $state =~ /^active$/;
1487 $state = 1 if $state =~ /^on$/;
1488 $state = 0 if $state =~ /^inactive$/;
1489 $state = 0 if $state =~ /^off$/;
1490
1491 return ('FAIL',"Invalid zone status") if $state !~ /^\d+$/;
1492
1493# quick check to start to see if we've already got one
1494 my ($rdns_id) = $dbh->selectrow_array("SELECT rdns_id FROM revzones WHERE revzone=?", undef, ("$zone"));
1495
1496 return ('FAIL', "Zone already exists") if $rdns_id;
1497
1498 # Allow transactions, and raise an exception on errors so we can catch it later.
1499 # Use local to make sure these get "reset" properly on exiting this block
1500 local $dbh->{AutoCommit} = 0;
1501 local $dbh->{RaiseError} = 1;
1502
1503 my $warnstr = '';
1504 my $defttl = 3600; # 1 hour should be reasonable. And unless things have gone horribly
1505 # wrong, we should have a value to override this anyway.
1506
1507 # Wrap all the SQL in a transaction
1508 eval {
1509 # insert the domain...
1510 $dbh->do("INSERT INTO revzones (revnet,group_id,status) VALUES (?,?,?)", undef, ($zone, $group, $state));
1511
1512 # get the ID...
1513 ($rdns_id) = $dbh->selectrow_array("SELECT currval('revzones_rdns_id_seq')");
1514
1515 _log($dbh, (rdns_id => $rdns_id, user_id => $userinfo{id}, group_id => $group, username => $userinfo{name},
1516 entry => "Added ".($state ? 'active' : 'inactive')." reverse zone $zone"));
1517
1518 # ... and now we construct the standard records from the default set. NB: group should be variable.
1519 my $sth = $dbh->prepare("SELECT host,type,val,ttl FROM default_rev_records WHERE group_id=?");
1520 my $sth_in = $dbh->prepare("INSERT INTO records (rdns_id,domain_id,host,type,val,ttl)".
1521 " VALUES ($rdns_id,?,?,?,?,?)");
1522 $sth->execute($group);
1523 while (my ($host,$type,$val,$ttl) = $sth->fetchrow_array()) {
1524 # Silently skip v4/v6 mismatches. This is not an error, this is expected.
1525 if ($zone->{isv6}) {
1526 next if ($type == 65280 || $type == 65283);
1527 } else {
1528 next if ($type == 65281 || $type == 65284);
1529 }
1530
1531 $host =~ s/ADMINDOMAIN/$config{domain}/g;
1532
1533 # Check to make sure the IP stubs will fit in the zone. Under most usage failures here should be rare.
1534 # On failure, tack a note on to a warning string and continue without adding this record.
1535 # While we're at it, we substitute $zone for ZONE in the value.
1536 if ($val eq 'ZONE') {
1537 next if $revpatt; # If we've got a pattern, we skip the default record version.
1538##fixme? do we care if we have multiple whole-zone templates?
1539 $val = $zone->network;
1540 } elsif ($val =~ /ZONE/) {
1541 my $tmpval = $val;
1542 $tmpval =~ s/ZONE//;
1543 # Bend the rules and allow single-trailing-number PTR or PTR template records to be inserted
1544 # as either v4 or v6. May make this an off-by-default config flag
1545 # Note that the origin records that may trigger this **SHOULD** already have ZONE,\d
1546 if ($type == 12 || $type == 65282) {
1547 $tmpval =~ s/[,.]/::/ if ($tmpval =~ /^[,.]\d+$/ && $zone->{isv6});
1548 $tmpval =~ s/[,:]+/./ if ($tmpval =~ /^(?:,|::)\d+$/ && !$zone->{isv6});
1549 }
1550 my $addr;
1551 if (_ipparent($dbh, 'n', 'y', \$tmpval, $rdns_id, \$addr)) {
1552 $val = $addr->addr;
1553 } else {
1554 $warnstr .= "\nDefault record '$val $typemap{$type} $host' doesn't fit in $zone, skipping";
1555 next;
1556 }
1557 }
1558
1559 # Substitute $zone for ZONE in the hostname.
1560 $host = _ZONE($zone, $host);
1561
1562 # Fill in the forward domain ID if we can find it, otherwise:
1563 # Coerce type down to PTR or PTR template if we can't
1564 my $domid = 0;
1565 if ($type >= 65280) {
1566 if (!($domid = _hostparent($dbh, $host))) {
1567 $warnstr .= "\nRecord added as PTR instead of $typemap{$type}; domain not found for $host";
1568 $type = $reverse_typemap{PTR};
1569 $domid = 0; # just to be explicit.
1570 }
1571 }
1572
1573 $sth_in->execute($domid,$host,$type,$val,$ttl);
1574
1575 if ($typemap{$type} eq 'SOA') {
1576 my @tmp1 = split /:/, $host;
1577 my @tmp2 = split /:/, $val;
1578 _log($dbh, (rdns_id => $rdns_id, user_id => $userinfo{id}, group_id => $group,
1579 username => $userinfo{name}, entry =>
1580 "[new $zone] Added SOA record [contact $tmp1[0]] [master $tmp1[1]] ".
1581 "[refresh $tmp2[0]] [retry $tmp2[1]] [expire $tmp2[2]] [minttl $tmp2[3]], TTL $ttl"));
1582 $defttl = $tmp2[3];
1583 } else {
1584 my $logentry = "[new $zone] Added record '$host $typemap{$type}";
1585 _log($dbh, (rdns_id => $rdns_id, domain_id => $domid, user_id => $userinfo{id}, group_id => $group,
1586 username => $userinfo{name}, entry =>
1587 $logentry." $val', TTL $ttl"));
1588 }
1589 }
1590
1591 # Generate record based on provided pattern.
1592 if ($revpatt) {
1593 my $host;
1594 my $type = ($zone->{isv6} ? 65284 : 65283);
1595 my $val = $zone->network;
1596
1597 # Substitute $zone for ZONE in the hostname.
1598 $host = _ZONE($zone, $revpatt);
1599
1600 my $domid = 0;
1601 if (!($domid = _hostparent($dbh, $host))) {
1602 $warnstr .= "\nDefault pattern added as PTR template instead of $typemap{$type}; domain not found for $host";
1603 $type = 65282;
1604 $domid = 0; # just to be explicit.
1605 }
1606
1607 $sth_in->execute($domid,$host,$type,$val,$defttl);
1608 }
1609
1610 # If there are warnings (presumably about default records skipped for cause) log them
1611 _log($dbh, (rdns_id => $rdns_id, user_id => $userinfo{id}, group_id => $group,
1612 username => $userinfo{name}, entry => "Warning(s) adding $zone:$warnstr"))
1613 if $warnstr;
1614
1615 # once we get here, we should have suceeded.
1616 $dbh->commit;
1617 }; # end eval
1618
1619 if ($@) {
1620 my $msg = $@;
1621 eval { $dbh->rollback; };
1622 return ('FAIL',$msg);
1623 } else {
1624 return ('OK',$rdns_id);
1625 }
1626
1627} # end addRDNS()
1628
1629
1630## DNSDB::getZoneCount
1631# Get count of zones in group or groups
1632# Takes a database handle and hash containing:
1633# - the "current" group
1634# - an array of "acceptable" groups
1635# - a flag for forward/reverse zones
1636# - Optionally accept a "starts with" and/or "contains" filter argument
1637# Returns an integer count of the resulting zone list.
1638sub getZoneCount {
1639 my $dbh = shift;
1640
1641 my %args = @_;
1642
1643 my @filterargs;
1644 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
1645 push @filterargs, "^$args{startwith}" if $args{startwith};
1646 $args{filter} =~ s/\./\[\.\]/g if $args{filter}; # only match literal dots, usually in reverse zones
1647 push @filterargs, $args{filter} if $args{filter};
1648
1649 my $sql;
1650 # Not as compact, and fix-me-twice if the common bits get wrong, but much easier to read
1651 if ($args{revrec} eq 'n') {
1652 $sql = "SELECT count(*) FROM domains".
1653 " WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
1654 ($args{startwith} ? " AND domain ~* ?" : '').
1655 ($args{filter} ? " AND domain ~* ?" : '');
1656 } else {
1657 $sql = "SELECT count(*) FROM revzones".
1658 " WHERE group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
1659 ($args{startwith} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '').
1660 ($args{filter} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '');
1661 }
1662 my ($count) = $dbh->selectrow_array($sql, undef, @filterargs);
1663 return $count;
1664} # end getZoneCount()
1665
1666
1667## DNSDB::getZoneList()
1668# Get a list of zones in the specified group(s)
1669# Takes the same arguments as getZoneCount() above
1670# Returns a reference to an array of hashrefs suitable for feeding to HTML::Template
1671sub getZoneList {
1672 my $dbh = shift;
1673
1674 my %args = @_;
1675
1676 my @zonelist;
1677
1678 $args{sortorder} = 'ASC' if !grep $args{sortorder}, ('ASC','DESC');
1679 $args{offset} = 0 if !$args{offset} || $args{offset} !~ /^(?:all|\d+)$/;
1680
1681 my @filterargs;
1682 $args{startwith} = undef if $args{startwith} && $args{startwith} !~ /^(?:[a-z]|0-9)$/;
1683 push @filterargs, "^$args{startwith}" if $args{startwith};
1684 $args{filter} =~ s/\./\[\.\]/g if $args{filter}; # only match literal dots, usually in reverse zones
1685 push @filterargs, $args{filter} if $args{filter};
1686
1687 my $sql;
1688 # Not as compact, and fix-me-twice if the common bits get wrong, but much easier to read
1689 if ($args{revrec} eq 'n') {
1690 $args{sortby} = 'domain' if !grep $args{sortby}, ('revnet','group','status');
1691 $sql = "SELECT domain_id,domain,status,groups.group_name AS group FROM domains".
1692 " INNER JOIN groups ON domains.group_id=groups.group_id".
1693 " WHERE domains.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
1694 ($args{startwith} ? " AND domain ~* ?" : '').
1695 ($args{filter} ? " AND domain ~* ?" : '');
1696 } else {
1697##fixme: arguably startwith here is irrelevant. depends on the UI though.
1698 $args{sortby} = 'revnet' if !grep $args{sortby}, ('domain','group','status');
1699 $sql = "SELECT rdns_id,revnet,status,groups.group_name AS group FROM revzones".
1700 " INNER JOIN groups ON revzones.group_id=groups.group_id".
1701 " WHERE revzones.group_id IN ($args{curgroup}".($args{childlist} ? ",$args{childlist}" : '').")".
1702 ($args{startwith} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '').
1703 ($args{filter} ? " AND CAST(revnet AS VARCHAR) ~* ?" : '');
1704 }
1705 # A common tail.
1706 $sql .= " ORDER BY ".($args{sortby} eq 'group' ? 'groups.group_name' : $args{sortby})." $args{sortorder} ".
1707 ($args{offset} eq 'all' ? '' : " LIMIT $config{perpage}".
1708 " OFFSET ".$args{offset}*$config{perpage});
1709 my $sth = $dbh->prepare($sql);
1710 $sth->execute(@filterargs);
1711 my $rownum = 0;
1712
1713 while (my @data = $sth->fetchrow_array) {
1714 my %row;
1715 $row{domainid} = $data[0];
1716 $row{domain} = $data[1];
1717 $row{status} = $data[2];
1718 $row{group} = $data[3];
1719 push @zonelist, \%row;
1720 }
1721
1722 return \@zonelist;
1723} # end getZoneList()
1724
1725
1726## DNSDB::addGroup()
1727# Add a group
1728# Takes a database handle, group name, parent group, hashref for permissions,
1729# and optional template-vs-cloneme flag
1730# Returns a status code and message
1731sub addGroup {
1732 $errstr = '';
1733 my $dbh = shift;
1734 my $groupname = shift;
1735 my $pargroup = shift;
1736 my $permissions = shift;
1737
1738 # 0 indicates "custom", hardcoded.
1739 # Any other value clones that group's default records, if it exists.
1740 my $inherit = shift || 0;
1741##fixme: need a flag to indicate clone records or <?> ?
1742
1743 # Allow transactions, and raise an exception on errors so we can catch it later.
1744 # Use local to make sure these get "reset" properly on exiting this block
1745 local $dbh->{AutoCommit} = 0;
1746 local $dbh->{RaiseError} = 1;
1747
1748 my $sth = $dbh->prepare("SELECT group_id FROM groups WHERE group_name=?");
1749 my $group_id;
1750
1751# quick check to start to see if we've already got one
1752 $sth->execute($groupname);
1753 ($group_id) = $sth->fetchrow_array;
1754
1755 return ('FAIL', "Group already exists") if $group_id;
1756
1757 # Wrap all the SQL in a transaction
1758 eval {
1759 $sth = $dbh->prepare("INSERT INTO groups (parent_group_id,group_name) VALUES (?,?)");
1760 $sth->execute($pargroup,$groupname);
1761
1762 my ($groupid) = $dbh->selectrow_array("SELECT group_id FROM groups WHERE group_name=?", undef, ($groupname));
1763
1764# Permissions
1765 if ($inherit) {
1766 } else {
1767 my @permvals;
1768 foreach (@permtypes) {
1769 if (!defined ($permissions->{$_})) {
1770 push @permvals, 0;
1771 } else {
1772 push @permvals, $permissions->{$_};
1773 }
1774 }
1775
1776 $sth = $dbh->prepare("INSERT INTO permissions (group_id,$permlist) values (?".',?'x($#permtypes+1).")");
1777 $sth->execute($groupid,@permvals);
1778
1779 $sth = $dbh->prepare("SELECT permission_id FROM permissions WHERE group_id=?");
1780 $sth->execute($groupid);
1781 my ($permid) = $sth->fetchrow_array();
1782
1783 $dbh->do("UPDATE groups SET permission_id=$permid WHERE group_id=$groupid");
1784 } # done permission fiddling
1785
1786# Default records
1787 my $sthf = $dbh->prepare("INSERT INTO default_records (group_id,host,type,val,distance,weight,port,ttl) ".
1788 "VALUES ($groupid,?,?,?,?,?,?,?)");
1789 my $sthr = $dbh->prepare("INSERT INTO default_rev_records (group_id,host,type,val,ttl) ".
1790 "VALUES ($groupid,?,?,?,?)");
1791 if ($inherit) {
1792 # Duplicate records from parent. Actually relying on inherited records feels
1793 # very fragile, and it would be problematic to roll over at a later time.
1794 my $sth2 = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl FROM default_records WHERE group_id=?");
1795 $sth2->execute($pargroup);
1796 while (my @clonedata = $sth2->fetchrow_array) {
1797 $sthf->execute(@clonedata);
1798 }
1799 # And now the reverse records
1800 $sth2 = $dbh->prepare("SELECT group_id,host,type,val,ttl FROM default_rev_records WHERE group_id=?");
1801 $sth2->execute($pargroup);
1802 while (my @clonedata = $sth2->fetchrow_array) {
1803 $sthr->execute(@clonedata);
1804 }
1805 } else {
1806##fixme: Hardcoding is Bad, mmmmkaaaay?
1807 # reasonable basic defaults for SOA, MX, NS, and minimal hosting
1808 # could load from a config file, but somewhere along the line we need hardcoded bits.
1809 $sthf->execute('ns1.example.com:hostmaster.example.com', 6, '10800:3600:604800:10800', 0, 0, 0, 86400);
1810 $sthf->execute('DOMAIN', 1, '192.168.4.2', 0, 0, 0, 7200);
1811 $sthf->execute('DOMAIN', 15, 'mx.example.com', 10, 0, 0, 7200);
1812 $sthf->execute('DOMAIN', 2, 'ns1.example.com', 0, 0, 0, 7200);
1813 $sthf->execute('DOMAIN', 2, 'ns2.example.com', 0, 0, 0, 7200);
1814 $sthf->execute('www.DOMAIN', 5, 'DOMAIN', 0, 0, 0, 7200);
1815 # reasonable basic defaults for generic reverse zone. Same as initial SQL tabledef.
1816 $sthr->execute('hostmaster.ADMINDOMAIN:ns1.ADMINDOMAIN', 6, '10800:3600:604800:10800', 86400);
1817 $sthr->execute('unused-%r.ADMINDOMAIN', 65283, 'ZONE', 3600);
1818 }
1819
1820 # once we get here, we should have suceeded.
1821 $dbh->commit;
1822 }; # end eval
1823
1824 if ($@) {
1825 my $msg = $@;
1826 eval { $dbh->rollback; };
1827 return ('FAIL',$msg);
1828 } else {
1829 return ('OK','OK');
1830 }
1831
1832} # end addGroup()
1833
1834
1835## DNSDB::delGroup()
1836# Delete a group.
1837# Takes a group ID
1838# Returns a status code and message
1839sub delGroup {
1840 my $dbh = shift;
1841 my $groupid = shift;
1842
1843 # Allow transactions, and raise an exception on errors so we can catch it later.
1844 # Use local to make sure these get "reset" properly on exiting this block
1845 local $dbh->{AutoCommit} = 0;
1846 local $dbh->{RaiseError} = 1;
1847
1848##fixme: locate "knowable" error conditions and deal with them before the eval
1849# ... or inside, whatever.
1850# -> domains still exist in group
1851# -> ...
1852 my $failmsg = '';
1853
1854 # Wrap all the SQL in a transaction
1855 eval {
1856 my $sth = $dbh->prepare("SELECT count(*) FROM domains WHERE group_id=?");
1857 $sth->execute($groupid);
1858 my ($domcnt) = $sth->fetchrow_array;
1859 $failmsg = "Can't remove group ".groupName($dbh,$groupid);
1860 die "$domcnt domains still in group\n" if $domcnt;
1861
1862 $sth = $dbh->prepare("delete from default_records where group_id=?");
1863 $failmsg = "Failed to delete default records for ".groupName($dbh,$groupid);
1864 $sth->execute($groupid);
1865 $sth = $dbh->prepare("delete from groups where group_id=?");
1866 $failmsg = "Failed to remove group ".groupName($dbh,$groupid);
1867 $sth->execute($groupid);
1868
1869 # once we get here, we should have suceeded.
1870 $dbh->commit;
1871 }; # end eval
1872
1873 if ($@) {
1874 my $msg = $@;
1875 eval { $dbh->rollback; };
1876 return ('FAIL',"$failmsg: $msg");
1877 } else {
1878 return ('OK','OK');
1879 }
1880} # end delGroup()
1881
1882
1883## DNSDB::getChildren()
1884# Get a list of all groups whose parent^n is group <n>
1885# Takes a database handle, group ID, reference to an array to put the group IDs in,
1886# and an optional flag to return only immediate children or all children-of-children
1887# default to returning all children
1888# Calls itself
1889sub getChildren {
1890 $errstr = '';
1891 my $dbh = shift;
1892 my $rootgroup = shift;
1893 my $groupdest = shift;
1894 my $immed = shift || 'all';
1895
1896 # special break for default group; otherwise we get stuck.
1897 if ($rootgroup == 1) {
1898 # by definition, group 1 is the Root Of All Groups
1899 my $sth = $dbh->prepare("SELECT group_id FROM groups WHERE NOT (group_id=1)".
1900 ($immed ne 'all' ? " AND parent_group_id=1" : ''));
1901 $sth->execute;
1902 while (my @this = $sth->fetchrow_array) {
1903 push @$groupdest, @this;
1904 }
1905 } else {
1906 my $sth = $dbh->prepare("SELECT group_id FROM groups WHERE parent_group_id=?");
1907 $sth->execute($rootgroup);
1908 return if $sth->rows == 0;
1909 my @grouplist;
1910 while (my ($group) = $sth->fetchrow_array) {
1911 push @$groupdest, $group;
1912 getChildren($dbh,$group,$groupdest) if $immed eq 'all';
1913 }
1914 }
1915} # end getChildren()
1916
1917
1918## DNSDB::groupName()
1919# Return the group name based on a group ID
1920# Takes a database handle and the group ID
1921# Returns the group name or undef on failure
1922sub groupName {
1923 $errstr = '';
1924 my $dbh = shift;
1925 my $groupid = shift;
1926 my $sth = $dbh->prepare("SELECT group_name FROM groups WHERE group_id=?");
1927 $sth->execute($groupid);
1928 my ($groupname) = $sth->fetchrow_array();
1929 $errstr = $DBI::errstr if !$groupname;
1930 return $groupname if $groupname;
1931} # end groupName
1932
1933
1934## DNSDB::groupID()
1935# Return the group ID based on the group name
1936# Takes a database handle and the group name
1937# Returns the group ID or undef on failure
1938sub groupID {
1939 $errstr = '';
1940 my $dbh = shift;
1941 my $group = shift;
1942 my ($grpid) = $dbh->selectrow_array("SELECT group_id FROM groups WHERE group=?", undef, ($group) );
1943 $errstr = $DBI::errstr if !$grpid;
1944 return $grpid if $grpid;
1945} # end groupID()
1946
1947
1948## DNSDB::addUser()
1949# Add a user.
1950# Takes a DB handle, username, group ID, password, state (active/inactive).
1951# Optionally accepts:
1952# user type (user/admin) - defaults to user
1953# permissions string - defaults to inherit from group
1954# three valid forms:
1955# i - Inherit permissions
1956# c:<user_id> - Clone permissions from <user_id>
1957# C:<permission list> - Set these specific permissions
1958# first name - defaults to username
1959# last name - defaults to blank
1960# phone - defaults to blank (could put other data within column def)
1961# Returns (OK,<uid>) on success, (FAIL,<message>) on failure
1962sub addUser {
1963 $errstr = '';
1964 my $dbh = shift;
1965 my $username = shift;
1966 my $group = shift;
1967 my $pass = shift;
1968 my $state = shift;
1969
1970 return ('FAIL', "Missing one or more required entries") if !defined($state);
1971 return ('FAIL', "Username must not be blank") if !$username;
1972
1973 my $type = shift || 'u'; # create limited users by default - fwiw, not sure yet how this will interact with ACLs
1974
1975 my $permstring = shift || 'i'; # default is to inhert permissions from group
1976
1977 my $fname = shift || $username;
1978 my $lname = shift || '';
1979 my $phone = shift || ''; # not going format-check
1980
1981 my $sth = $dbh->prepare("SELECT user_id FROM users WHERE username=?");
1982 my $user_id;
1983
1984# quick check to start to see if we've already got one
1985 $sth->execute($username);
1986 ($user_id) = $sth->fetchrow_array;
1987
1988 return ('FAIL', "User already exists") if $user_id;
1989
1990 # Allow transactions, and raise an exception on errors so we can catch it later.
1991 # Use local to make sure these get "reset" properly on exiting this block
1992 local $dbh->{AutoCommit} = 0;
1993 local $dbh->{RaiseError} = 1;
1994
1995 my $failmsg = '';
1996
1997 # Wrap all the SQL in a transaction
1998 eval {
1999 # insert the user... note we set inherited perms by default since
2000 # it's simple and cleans up some other bits of state
2001 my $sth = $dbh->prepare("INSERT INTO users ".
2002 "(group_id,username,password,firstname,lastname,phone,type,status,permission_id,inherit_perm) ".
2003 "VALUES (?,?,?,?,?,?,?,?,(SELECT permission_id FROM permissions WHERE group_id=?),'t')");
2004 $sth->execute($group,$username,unix_md5_crypt($pass),$fname,$lname,$phone,$type,$state,$group);
2005
2006 # get the ID...
2007 ($user_id) = $dbh->selectrow_array("SELECT currval('users_user_id_seq')");
2008
2009# Permissions! Gotta set'em all!
2010 die "Invalid permission string $permstring"
2011 if $permstring !~ /^(?:
2012 i # inherit
2013 |c:\d+ # clone
2014 # custom. no, the leading , is not a typo
2015 |C:(?:,(?:group|user|domain|record|self)_(?:edit|create|delete))*
2016 )$/x;
2017# bleh. I'd call another function to do my dirty work, but we're in the middle of a transaction already.
2018 if ($permstring ne 'i') {
2019 # for cloned or custom permissions, we have to create a new permissions entry.
2020 my $clonesrc = $group;
2021 if ($permstring =~ /^c:(\d+)/) { $clonesrc = $1; }
2022 $dbh->do("INSERT INTO permissions ($permlist,user_id) ".
2023 "SELECT $permlist,? FROM permissions WHERE permission_id=".
2024 "(SELECT permission_id FROM permissions WHERE ".($permstring =~ /^c:/ ? 'user' : 'group')."_id=?)",
2025 undef, ($user_id,$clonesrc) );
2026 $dbh->do("UPDATE users SET permission_id=".
2027 "(SELECT permission_id FROM permissions WHERE user_id=?) ".
2028 "WHERE user_id=?", undef, ($user_id, $user_id) );
2029 }
2030 if ($permstring =~ /^C:/) {
2031 # finally for custom permissions, we set the passed-in permissions (and unset
2032 # any that might have been brought in by the clone operation above)
2033 my ($permid) = $dbh->selectrow_array("SELECT permission_id FROM permissions WHERE user_id=?",
2034 undef, ($user_id) );
2035 foreach (@permtypes) {
2036 if ($permstring =~ /,$_/) {
2037 $dbh->do("UPDATE permissions SET $_='t' WHERE permission_id=?", undef, ($permid) );
2038 } else {
2039 $dbh->do("UPDATE permissions SET $_='f' WHERE permission_id=?", undef, ($permid) );
2040 }
2041 }
2042 }
2043
2044 $dbh->do("UPDATE users SET inherit_perm='n' WHERE user_id=?", undef, ($user_id) );
2045
2046##fixme: add another table to hold name/email for log table?
2047
2048 # once we get here, we should have suceeded.
2049 $dbh->commit;
2050 }; # end eval
2051
2052 if ($@) {
2053 my $msg = $@;
2054 eval { $dbh->rollback; };
2055 return ('FAIL',$msg." $failmsg");
2056 } else {
2057 return ('OK',$user_id);
2058 }
2059} # end addUser
2060
2061
2062## DNSDB::checkUser()
2063# Check user/pass combo on login
2064sub checkUser {
2065 my $dbh = shift;
2066 my $user = shift;
2067 my $inpass = shift;
2068
2069 my $sth = $dbh->prepare("SELECT user_id,group_id,password,firstname,lastname FROM users WHERE username=?");
2070 $sth->execute($user);
2071 my ($uid,$gid,$pass,$fname,$lname) = $sth->fetchrow_array;
2072 my $loginfailed = 1 if !defined($uid);
2073
2074 if ($pass =~ m|^\$1\$([A-Za-z0-9/.]+)\$|) {
2075 $loginfailed = 1 if $pass ne unix_md5_crypt($inpass,$1);
2076 } else {
2077 $loginfailed = 1 if $pass ne $inpass;
2078 }
2079
2080 # nnnngggg
2081 return ($uid, $gid);
2082} # end checkUser
2083
2084
2085## DNSDB:: updateUser()
2086# Update general data about user
2087sub updateUser {
2088 my $dbh = shift;
2089
2090##fixme: tweak calling convention so that we can update any given bit of data
2091 my $uid = shift;
2092 my $username = shift;
2093 my $group = shift;
2094 my $pass = shift;
2095 my $state = shift;
2096 my $type = shift || 'u';
2097 my $fname = shift || $username;
2098 my $lname = shift || '';
2099 my $phone = shift || ''; # not going format-check
2100
2101 my $failmsg = '';
2102
2103 # Allow transactions, and raise an exception on errors so we can catch it later.
2104 # Use local to make sure these get "reset" properly on exiting this block
2105 local $dbh->{AutoCommit} = 0;
2106 local $dbh->{RaiseError} = 1;
2107
2108 my $sth;
2109
2110 # Password can be left blank; if so we assume there's one on file.
2111 # Actual blank passwords are bad, mm'kay?
2112 if (!$pass) {
2113 $sth = $dbh->prepare("SELECT password FROM users WHERE user_id=?");
2114 $sth->execute($uid);
2115 ($pass) = $sth->fetchrow_array;
2116 } else {
2117 $pass = unix_md5_crypt($pass);
2118 }
2119
2120 eval {
2121 my $sth = $dbh->prepare(q(
2122 UPDATE users
2123 SET username=?, password=?, firstname=?, lastname=?, phone=?, type=?, status=?
2124 WHERE user_id=?
2125 )
2126 );
2127 $sth->execute($username, $pass, $fname, $lname, $phone, $type, $state, $uid);
2128 $dbh->commit;
2129 };
2130 if ($@) {
2131 my $msg = $@;
2132 eval { $dbh->rollback; };
2133 return ('FAIL',"$failmsg: $msg");
2134 } else {
2135 return ('OK','OK');
2136 }
2137} # end updateUser()
2138
2139
2140## DNSDB::delUser()
2141#
2142sub delUser {
2143 my $dbh = shift;
2144 return ('FAIL',"Need database handle") if !$dbh;
2145 my $userid = shift;
2146 return ('FAIL',"Missing userid") if !defined($userid);
2147
2148 my $sth = $dbh->prepare("delete from users where user_id=?");
2149 $sth->execute($userid);
2150
2151 return ('FAIL',"Couldn't remove user: ".$sth->errstr) if $sth->err;
2152
2153 return ('OK','OK');
2154
2155} # end delUser
2156
2157
2158## DNSDB::userFullName()
2159# Return a pretty string!
2160# Takes a user_id and optional printf-ish string to indicate which pieces where:
2161# %u for the username
2162# %f for the first name
2163# %l for the last name
2164# All other text in the passed string will be left as-is.
2165##fixme: need a "smart" option too, so that missing/null/blank first/last names don't give funky output
2166sub userFullName {
2167 $errstr = '';
2168 my $dbh = shift;
2169 my $userid = shift;
2170 my $fullformat = shift || '%f %l (%u)';
2171 my $sth = $dbh->prepare("select username,firstname,lastname from users where user_id=?");
2172 $sth->execute($userid);
2173 my ($uname,$fname,$lname) = $sth->fetchrow_array();
2174 $errstr = $DBI::errstr if !$uname;
2175
2176 $fullformat =~ s/\%u/$uname/g;
2177 $fullformat =~ s/\%f/$fname/g;
2178 $fullformat =~ s/\%l/$lname/g;
2179
2180 return $fullformat;
2181} # end userFullName
2182
2183
2184## DNSDB::userStatus()
2185# Sets and/or returns a user's status
2186# Takes a database handle, user ID and optionally a status argument
2187# Returns undef on errors.
2188sub userStatus {
2189 my $dbh = shift;
2190 my $id = shift;
2191 my $newstatus = shift;
2192
2193 return undef if $id !~ /^\d+$/;
2194
2195 my $sth;
2196
2197# ooo, fun! let's see what we were passed for status
2198 if ($newstatus) {
2199 $sth = $dbh->prepare("update users set status=? where user_id=?");
2200 # ass-u-me caller knows what's going on in full
2201 if ($newstatus =~ /^[01]$/) { # only two valid for now.
2202 $sth->execute($newstatus,$id);
2203 } elsif ($newstatus =~ /^usero(?:n|ff)$/) {
2204 $sth->execute(($newstatus eq 'useron' ? 1 : 0),$id);
2205 }
2206 }
2207
2208 $sth = $dbh->prepare("select status from users where user_id=?");
2209 $sth->execute($id);
2210 my ($status) = $sth->fetchrow_array;
2211 return $status;
2212} # end userStatus()
2213
2214
2215## DNSDB::getUserData()
2216# Get misc user data for display
2217sub getUserData {
2218 my $dbh = shift;
2219 my $uid = shift;
2220
2221 my $sth = $dbh->prepare("SELECT group_id,username,firstname,lastname,phone,type,status,inherit_perm ".
2222 "FROM users WHERE user_id=?");
2223 $sth->execute($uid);
2224 return $sth->fetchrow_hashref();
2225
2226} # end getUserData()
2227
2228
2229## DNSDB::getSOA()
2230# Return all suitable fields from an SOA record in separate elements of a hash
2231# Takes a database handle, default/live flag, domain/reverse flag, and parent ID
2232sub getSOA {
2233 $errstr = '';
2234 my $dbh = shift;
2235 my $def = shift;
2236 my $rev = shift;
2237 my $id = shift;
2238 my %ret;
2239
2240 # (ab)use distance and weight columns to store SOA data? can't for default_rev_records...
2241 # - should really attach serial to the zone parent somewhere
2242
2243 my $sql = "SELECT record_id,host,val,ttl from "._rectable($def,$rev).
2244 " WHERE "._recparent($def,$rev)." = ? AND type=$reverse_typemap{SOA}";
2245
2246 my $sth = $dbh->prepare($sql);
2247 $sth->execute($id);
2248##fixme: stick a flag somewhere if the record doesn't exist. by the API, this is an impossible case, but...
2249
2250 my ($recid,$host,$val,$ttl) = $sth->fetchrow_array() or return;
2251 my ($contact,$prins) = split /:/, $host;
2252 my ($refresh,$retry,$expire,$minttl) = split /:/, $val;
2253
2254 $ret{recid} = $recid;
2255 $ret{ttl} = $ttl;
2256# $ret{serial} = $serial; # ca't use distance for serial with default_rev_records
2257 $ret{prins} = $prins;
2258 $ret{contact} = $contact;
2259 $ret{refresh} = $refresh;
2260 $ret{retry} = $retry;
2261 $ret{expire} = $expire;
2262 $ret{minttl} = $minttl;
2263
2264 return %ret;
2265} # end getSOA()
2266
2267
2268## DNSDB::updateSOA()
2269# Update the specified SOA record
2270# Takes a database handle, default/live flag, forward/reverse flag, and SOA data hash
2271# Returns a two-element list with a result code and message
2272sub updateSOA {
2273 my $dbh = shift;
2274 my $defrec = shift;
2275 my $revrec = shift;
2276
2277 my %soa = @_;
2278
2279 my %oldsoa = getSOA($dbh, $defrec, $revrec, $soa{recid});
2280
2281 # Allow transactions, and raise an exception on errors so we can catch it later.
2282 # Use local to make sure these get "reset" properly on exiting this block
2283 local $dbh->{AutoCommit} = 0;
2284 local $dbh->{RaiseError} = 1;
2285
2286 my $msg;
2287
2288 eval {
2289##fixme: data validation: make sure {recid} is really the SOA for {parent}
2290 my $sql = "UPDATE "._rectable($defrec, $revrec)." SET host=?, val=?, ttl=? WHERE record_id=? AND type=6";
2291 $dbh->do($sql, undef, ("$soa{contact}:$soa{prins}", "$soa{refresh}:$soa{retry}:$soa{expire}:$soa{minttl}",
2292 $soa{ttl}, $soa{recid}) );
2293
2294 $msg = "Updated ".($defrec eq 'y' ? 'default ' : '')."SOA for ".
2295 ($defrec eq 'y' ? groupName($dbh, $soa{recid}) :
2296 ($revrec eq 'n' ? domainName($dbh, $soa{recid}) : revName($dbh, $soa{recid}) ) ).
2297 ": (ns $oldsoa{prins}, contact $oldsoa{contact}, refresh $oldsoa{refresh},".
2298 " retry $oldsoa{retry}, expire $oldsoa{expire}, minTTL $oldsoa{minttl}, TTL $oldsoa{ttl}) to ".
2299 "(ns $soa{prins}, contact $soa{contact}, refresh $soa{refresh},".
2300 " retry $soa{retry}, expire $soa{expire}, minTTL $soa{minttl}, TTL $soa{ttl})";
2301
2302# _log($dbh, (rdns_id => $rdns_id, user_id => $userinfo{id}, group_id => $group,
2303# username => $userinfo{name}, entry => $msg) );
2304
2305 $dbh->commit;
2306 };
2307 if ($@) {
2308 $msg = $@;
2309 eval { $dbh->rollback; };
2310 return ('FAIL',$msg);
2311 } else {
2312 return ('OK', $msg);
2313 }
2314} # end updateSOA()
2315
2316
2317## DNSDB::getRecLine()
2318# Return all data fields for a zone record in separate elements of a hash
2319# Takes a database handle, default/live flag, forward/reverse flag, and record ID
2320sub getRecLine {
2321 $errstr = '';
2322 my $dbh = shift;
2323 my $defrec = shift;
2324 my $revrec = shift;
2325 my $id = shift;
2326
2327 my $sql = "SELECT record_id,host,type,val,ttl".($revrec eq 'n' ? ',distance,weight,port' : '').
2328 (($defrec eq 'y') ? ',group_id FROM ' : ',domain_id,rdns_id FROM ').
2329 _rectable($defrec,$revrec)." WHERE record_id=?";
2330 my $ret = $dbh->selectrow_hashref($sql, undef, ($id) );
2331
2332 if ($dbh->err) {
2333 $errstr = $DBI::errstr;
2334 return undef;
2335 }
2336
2337 if (!$ret) {
2338 $errstr = "No such record";
2339 return undef;
2340 }
2341
2342 # explicitly set a parent id
2343 if ($defrec eq 'y') {
2344 $ret->{parid} = $ret->{group_id};
2345 } else {
2346 $ret->{parid} = (($revrec eq 'n') ? $ret->{domain_id} : $ret->{rdns_id});
2347 # and a secondary if we have a custom type that lives in both a forward and reverse zone
2348 $ret->{secid} = (($revrec eq 'y') ? $ret->{domain_id} : $ret->{rdns_id}) if $ret->{type} > 65279;
2349 }
2350
2351 return $ret;
2352}
2353
2354
2355##fixme: should use above (getRecLine()) to get lines for below?
2356## DNSDB::getDomRecs()
2357# Return records for a domain
2358# Takes a database handle, default/live flag, group/domain ID, start,
2359# number of records, sort field, and sort order
2360# Returns a reference to an array of hashes
2361sub getDomRecs {
2362 $errstr = '';
2363 my $dbh = shift;
2364 my $def = shift;
2365 my $rev = shift;
2366 my $id = shift;
2367 my $nrecs = shift || 'all';
2368 my $nstart = shift || 0;
2369
2370## for order, need to map input to column names
2371 my $order = shift || 'host';
2372 my $direction = shift || 'ASC';
2373
2374 my $filter = shift || '';
2375
2376 my $sql = "SELECT r.record_id,r.host,r.type,r.val,r.ttl";
2377 $sql .= ",r.distance,r.weight,r.port" if $rev eq 'n';
2378 $sql .= " FROM "._rectable($def,$rev)." r ";
2379 $sql .= "INNER JOIN rectypes t ON r.type=t.val "; # for sorting by type alphabetically
2380 $sql .= "WHERE "._recparent($def,$rev)." = ?";
2381 $sql .= " AND NOT r.type=$reverse_typemap{SOA}";
2382 $sql .= " AND host ~* ?" if $filter;
2383 # use alphaorder column for "correct" ordering of sort-by-type instead of DNS RR type number
2384 $sql .= " ORDER BY ".($order eq 'type' ? 't.alphaorder' : "r.$order")." $direction";
2385
2386 my @bindvars = ($id);
2387 push @bindvars, $filter if $filter;
2388
2389 # just to be ultraparanoid about SQL injection vectors
2390 if ($nstart ne 'all') {
2391 $sql .= " LIMIT ? OFFSET ?";
2392 push @bindvars, $nrecs;
2393 push @bindvars, ($nstart*$nrecs);
2394 }
2395 my $sth = $dbh->prepare($sql) or warn $dbh->errstr;
2396 $sth->execute(@bindvars) or warn "$sql: ".$sth->errstr;
2397
2398 my @retbase;
2399 while (my $ref = $sth->fetchrow_hashref()) {
2400 push @retbase, $ref;
2401 }
2402
2403 my $ret = \@retbase;
2404 return $ret;
2405} # end getDomRecs()
2406
2407
2408## DNSDB::getRecCount()
2409# Return count of non-SOA records in zone (or default records in a group)
2410# Takes a database handle, default/live flag, reverse/forward flag, group/domain ID,
2411# and optional filtering modifier
2412# Returns the count
2413sub getRecCount {
2414 my $dbh = shift;
2415 my $defrec = shift;
2416 my $revrec = shift;
2417 my $id = shift;
2418 my $filter = shift || '';
2419
2420 # keep the nasties down, since we can't ?-sub this bit. :/
2421 # note this is chars allowed in DNS hostnames
2422 $filter =~ s/[^a-zA-Z0-9_.:-]//g;
2423
2424 my @bindvars = ($id);
2425 push @bindvars, $filter if $filter;
2426 my $sql = "SELECT count(*) FROM ".
2427 _rectable($defrec,$revrec).
2428 " WHERE "._recparent($defrec,$revrec)."=? ".
2429 "AND NOT type=$reverse_typemap{SOA}".
2430 ($filter ? " AND host ~* ?" : '');
2431 my ($count) = $dbh->selectrow_array($sql, undef, (@bindvars) );
2432
2433 return $count;
2434
2435} # end getRecCount()
2436
2437
2438## DNSDB::addRec()
2439# Add a new record to a domain or a group's default records
2440# Takes a database handle, default/live flag, group/domain ID,
2441# host, type, value, and TTL
2442# Some types require additional detail: "distance" for MX and SRV,
2443# and weight/port for SRV
2444# Returns a status code and detail message in case of error
2445##fixme: pass a hash with the record data, not a series of separate values
2446sub addRec {
2447 $errstr = '';
2448 my $dbh = shift;
2449 my $defrec = shift;
2450 my $revrec = shift;
2451 my $id = shift; # parent (group_id for defrecs, rdns_id for reverse records,
2452 # domain_id for domain records)
2453
2454 my $host = shift;
2455 my $rectype = shift; # reference so we can coerce it if "+"-types can't find both zones
2456 my $val = shift;
2457 my $ttl = shift;
2458
2459 # prep for validation
2460 my $addr = NetAddr::IP->new($$val);
2461 $$host =~ s/\.+$//; # FQDNs ending in . are an internal detail, and really shouldn't be exposed in the UI.
2462
2463 my $domid = 0;
2464 my $revid = 0;
2465
2466 my $retcode = 'OK'; # assume everything will go OK
2467 my $retmsg = '';
2468
2469 # do simple validation first
2470 return ('FAIL', "TTL must be numeric") unless $ttl =~ /^\d+$/;
2471
2472 # Quick check on hostname parts. Note the regex is more forgiving than the error message;
2473 # domain names technically are case-insensitive, and we use printf-like % codes for a couple
2474 # of types. Other things may also be added to validate default records of several flavours.
2475 return ('FAIL', "Hostnames may not contain anything other than (0-9 a-z . _)")
2476 if $defrec eq 'n' && $$host !~ /^[0-9a-z_%.-]+$/i;
2477
2478 # Collect these even if we're only doing a simple A record so we can call *any* validation sub
2479 my $dist = shift;
2480 my $weight = shift;
2481 my $port = shift;
2482
2483 my $fields;
2484 my @vallist;
2485
2486 # Call the validation sub for the type requested.
2487 ($retcode,$retmsg) = $validators{$$rectype}($dbh, (defrec => $defrec, revrec => $revrec, id => $id,
2488 host => $host, rectype => $rectype, val => $val, addr => $addr,
2489 dist => \$dist, port => \$port, weight => \$weight,
2490 fields => \$fields, vallist => \@vallist) );
2491
2492 return ($retcode,$retmsg) if $retcode eq 'FAIL';
2493
2494 # Set up database fields and bind parameters
2495 $fields .= "host,type,val,ttl,"._recparent($defrec,$revrec);
2496 push @vallist, ($$host,$$rectype,$$val,$ttl,$id);
2497 my $vallen = '?'.(',?'x$#vallist);
2498
2499 # Allow transactions, and raise an exception on errors so we can catch it later.
2500 # Use local to make sure these get "reset" properly on exiting this block
2501 local $dbh->{AutoCommit} = 0;
2502 local $dbh->{RaiseError} = 1;
2503
2504 eval {
2505 $dbh->do("INSERT INTO "._rectable($defrec, $revrec)." ($fields) VALUES ($vallen)",
2506 undef, @vallist);
2507 $dbh->commit;
2508 };
2509 if ($@) {
2510 my $msg = $@;
2511 eval { $dbh->rollback; };
2512 return ('FAIL',$msg);
2513 }
2514
2515 return ($retcode, $retmsg);
2516
2517} # end addRec()
2518
2519
2520## DNSDB::updateRec()
2521# Update a record
2522# Takes a database handle, default and reverse flags, record ID, immediate parent ID, and new record data.
2523# Returns a status code and message
2524sub updateRec {
2525 $errstr = '';
2526
2527 my $dbh = shift;
2528 my $defrec = shift;
2529 my $revrec = shift;
2530 my $id = shift;
2531 my $parid = shift; # immediate parent entity that we're descending from to update the record
2532
2533 # all records have these
2534 my $host = shift;
2535 my $hostbk = $$host; # Keep a backup copy of the original, so we can WARN if the update mangles the domain
2536 my $rectype = shift;
2537 my $val = shift;
2538 my $ttl = shift;
2539
2540 # prep for validation
2541 my $addr = NetAddr::IP->new($$val);
2542 $$host =~ s/\.+$//; # FQDNs ending in . are an internal detail, and really shouldn't be exposed in the UI.
2543
2544 my $domid = 0;
2545 my $revid = 0;
2546
2547 my $retcode = 'OK'; # assume everything will go OK
2548 my $retmsg = '';
2549
2550 # do simple validation first
2551 return ('FAIL', "TTL must be numeric") unless $ttl =~ /^\d+$/;
2552
2553 # Quick check on hostname parts. Note the regex is more forgiving than the error message;
2554 # domain names technically are case-insensitive, and we use printf-like % codes for a couple
2555 # of types. Other things may also be added to validate default records of several flavours.
2556 return ('FAIL', "Hostnames may not contain anything other than (0-9 a-z - . _)")
2557 if $defrec eq 'n' && $$host !~ /^[0-9a-z_%.-]+$/i;
2558
2559 # only MX and SRV will use these
2560 my $dist = 0;
2561 my $weight = 0;
2562 my $port = 0;
2563
2564 my $fields;
2565 my @vallist;
2566
2567 # get old record data so we have the right parent ID
2568 # and for logging (eventually)
2569 my $oldrec = getRecLine($dbh, $defrec, $revrec, $id);
2570
2571 # Call the validation sub for the type requested.
2572 # Note the ID to pass here is the *parent*, not the record
2573 ($retcode,$retmsg) = $validators{$$rectype}($dbh, (defrec => $defrec, revrec => $revrec,
2574 id => ($defrec eq 'y' ? $oldrec->{group_id} : ($revrec eq 'n' ? $oldrec->{domain_id} : $oldrec->{rdns_id})),
2575 host => $host, rectype => $rectype, val => $val, addr => $addr,
2576 dist => \$dist, port => \$port, weight => \$weight,
2577 fields => \$fields, vallist => \@vallist,
2578 update => $id) );
2579
2580 return ($retcode,$retmsg) if $retcode eq 'FAIL';
2581
2582 # Set up database fields and bind parameters. Note only the optional fields
2583 # (distance, weight, port, secondary parent ID) are added in the validation call above
2584 $fields .= "host,type,val,ttl,"._recparent($defrec,$revrec);
2585 push @vallist, ($$host,$$rectype,$$val,$ttl,
2586 ($defrec eq 'y' ? $oldrec->{group_id} : ($revrec eq 'n' ? $oldrec->{domain_id} : $oldrec->{rdns_id})) );
2587
2588 # hack hack PTHUI
2589 # need to forcibly make sure we disassociate a record with a parent it's no longer related to.
2590 # eg, PTR records may not have a domain parent, or A/AAAA records may not have a revzone parent.
2591 # mainly needed for crossover types that got coerced down to "standard" types
2592 if ($defrec eq 'n') {
2593 if ($$rectype == $reverse_typemap{PTR}) {
2594 $fields .= ",domain_id";
2595 push @vallist, 0;
2596 }
2597 if ($$rectype == $reverse_typemap{A} || $$rectype == $reverse_typemap{AAAA}) {
2598 $fields .= ",rdns_id";
2599 push @vallist, 0;
2600 }
2601 }
2602
2603 # Fiddle the field list into something suitable for updates
2604 $fields =~ s/,/=?,/g;
2605 $fields .= "=?";
2606
2607 local $dbh->{AutoCommit} = 0;
2608 local $dbh->{RaiseError} = 1;
2609
2610 eval {
2611 $dbh->do("UPDATE "._rectable($defrec,$revrec)." SET $fields WHERE record_id=?", undef, (@vallist, $id) );
2612 $dbh->commit;
2613 };
2614 if ($@) {
2615 my $msg = $@;
2616 $dbh->rollback;
2617 return ('FAIL', $msg);
2618 }
2619
2620 return ($retcode, $retmsg);
2621} # end updateRec()
2622
2623
2624## DNSDB::delRec()
2625# Delete a record.
2626sub delRec {
2627 $errstr = '';
2628 my $dbh = shift;
2629 my $defrec = shift;
2630 my $revrec = shift;
2631 my $id = shift;
2632
2633 my $sth = $dbh->prepare("DELETE FROM "._rectable($defrec,$revrec)." WHERE record_id=?");
2634 $sth->execute($id);
2635
2636 return ('FAIL',"Couldn't remove record: ".$sth->errstr) if $sth->err;
2637
2638 return ('OK','OK');
2639} # end delRec()
2640
2641
2642 # Reference hashes.
2643my %par_tbl = (
2644 group => 'groups',
2645 user => 'users',
2646 defrec => 'default_records',
2647 defrevrec => 'default_rev_records',
2648 domain => 'domains',
2649 revzone => 'revzones',
2650 record => 'records'
2651 );
2652my %id_col = (
2653 group => 'group_id',
2654 user => 'user_id',
2655 defrec => 'record_id',
2656 defrevrec => 'record_id',
2657 domain => 'domain_id',
2658 revzone => 'rdns_id',
2659 record => 'record_id'
2660 );
2661my %par_col = (
2662 group => 'parent_group_id',
2663 user => 'group_id',
2664 defrec => 'group_id',
2665 defrevrec => 'group_id',
2666 domain => 'group_id',
2667 revzone => 'group_id',
2668 record => 'domain_id'
2669 );
2670my %par_type = (
2671 group => 'group',
2672 user => 'group',
2673 defrec => 'group',
2674 defrevrec => 'group',
2675 domain => 'group',
2676 revzone => 'group',
2677 record => 'domain'
2678 );
2679
2680
2681## DNSDB::getTypelist()
2682# Get a list of record types for various UI dropdowns
2683# Takes database handle, forward/reverse/lookup flag, and optional "tag as selected" indicator (defaults to A)
2684# Returns an arrayref to list of hashrefs perfect for HTML::Template
2685sub getTypelist {
2686 my $dbh = shift;
2687 my $recgroup = shift;
2688 my $type = shift || $reverse_typemap{A};
2689
2690 # also accepting $webvar{revrec}!
2691 $recgroup = 'f' if $recgroup eq 'n';
2692 $recgroup = 'r' if $recgroup eq 'y';
2693
2694 my $sql = "SELECT val,name FROM rectypes WHERE ";
2695 if ($recgroup eq 'r') {
2696 # reverse zone types
2697 $sql .= "stdflag=2 OR stdflag=3";
2698 } elsif ($recgroup eq 'l') {
2699 # DNS lookup types. Note we avoid our custom types >= 65280, since those are entirely internal.
2700 $sql .= "(stdflag=1 OR stdflag=2 OR stdflag=3) AND val < 65280";
2701 } else {
2702 # default; forward zone types. technically $type eq 'f' but not worth the error message.
2703 $sql .= "stdflag=1 OR stdflag=2";
2704 }
2705 $sql .= " ORDER BY listorder";
2706
2707 my $sth = $dbh->prepare($sql);
2708 $sth->execute;
2709 my @typelist;
2710 while (my ($rval,$rname) = $sth->fetchrow_array()) {
2711 my %row = ( recval => $rval, recname => $rname );
2712 $row{tselect} = 1 if $rval == $type;
2713 push @typelist, \%row;
2714 }
2715
2716 # Add SOA on lookups since it's not listed in other dropdowns.
2717 if ($recgroup eq 'l') {
2718 my %row = ( recval => $reverse_typemap{SOA}, recname => 'SOA' );
2719 $row{tselect} = 1 if $reverse_typemap{SOA} == $type;
2720 push @typelist, \%row;
2721 }
2722
2723 return \@typelist;
2724} # end getTypelist()
2725
2726
2727## DNSDB::parentID()
2728# Get ID of entity that is nearest parent to requested id
2729# Takes a database handle and a hash of entity ID, entity type, optional parent type flag
2730# (domain/reverse zone or group), and optional default/live and forward/reverse flags
2731# Returns the ID or undef on failure
2732sub parentID {
2733 my $dbh = shift;
2734
2735 my %args = @_;
2736
2737 # clean up the parent-type. Set it to group if not set; coerce revzone to domain for simpler logic
2738 $args{partype} = 'group' if !$args{partype};
2739 $args{partype} = 'domain' if $args{partype} eq 'revzone';
2740
2741 # clean up defrec and revrec. default to live record, forward zone
2742 $args{defrec} = 'n' if !$args{defrec};
2743 $args{revrec} = 'n' if !$args{revrec};
2744
2745 if ($par_type{$args{partype}} eq 'domain') {
2746 # only live records can have a domain/zone parent
2747 return unless ($args{type} eq 'record' && $args{defrec} eq 'n');
2748 my $result = $dbh->selectrow_hashref("SELECT ".($args{revrec} eq 'n' ? 'domain_id' : 'rdns_id').
2749 " FROM records WHERE record_id = ?",
2750 undef, ($args{id}) ) or return;
2751 return $result;
2752 } else {
2753 # snag some arguments that will either fall through or be overwritten to save some code duplication
2754 my $tmpid = $args{id};
2755 my $type = $args{type};
2756 if ($type eq 'record' && $args{defrec} eq 'n') {
2757 # Live records go through the records table first.
2758 ($tmpid) = $dbh->selectrow_array("SELECT ".($args{revrec} eq 'n' ? 'domain_id' : 'rdns_id').
2759 " FROM records WHERE record_id = ?",
2760 undef, ($args{id}) ) or return;
2761 $type = ($args{revrec} eq 'n' ? 'domain' : 'revzone');
2762 }
2763 my ($result) = $dbh->selectrow_array("SELECT $par_col{$type} FROM $par_tbl{$type} WHERE $id_col{$type} = ?",
2764 undef, ($tmpid) );
2765 return $result;
2766 }
2767# should be impossible to get here with even remotely sane arguments
2768 return;
2769} # end parentID()
2770
2771
2772## DNSDB::isParent()
2773# Returns true if $id1 is a parent of $id2, false otherwise
2774sub isParent {
2775 my $dbh = shift;
2776 my $id1 = shift;
2777 my $type1 = shift;
2778 my $id2 = shift;
2779 my $type2 = shift;
2780##todo: immediate, secondary, full (default)
2781
2782 # Return false on invalid types
2783 return 0 if !grep /^$type1$/, ('record','defrec','defrevrec','user','domain','revzone','group');
2784 return 0 if !grep /^$type2$/, ('record','defrec','defrevrec','user','domain','revzone','group');
2785
2786 # Return false on impossible relations
2787 return 0 if $type1 eq 'record'; # nothing may be a child of a record
2788 return 0 if $type1 eq 'defrec'; # nothing may be a child of a record
2789 return 0 if $type1 eq 'defrevrec'; # nothing may be a child of a record
2790 return 0 if $type1 eq 'user'; # nothing may be child of a user
2791 return 0 if $type1 eq 'domain' && $type2 ne 'record'; # domain may not be a parent of anything other than a record
2792 return 0 if $type1 eq 'revzone' && $type2 ne 'record';# reverse zone may not be a parent of anything other than a record
2793
2794 # ennnhhhh.... if we're passed an id of 0, it will never be found. usual
2795 # case would be the UI creating a new <thing>, and so we don't have an ID for
2796 # <thing> to look up yet. in that case the UI should check the parent as well.
2797 return 0 if $id1 == 0; # nothing can have a parent id of 0
2798 return 1 if $id2 == 0; # anything could have a child id of 0 (or "unknown")
2799
2800 # group 1 is the ultimate root parent
2801 return 1 if $type1 eq 'group' && $id1 == 1;
2802
2803 # groups are always (a) parent of themselves
2804 return 1 if $type1 eq 'group' && $type2 eq 'group' && $id1 == $id2;
2805
2806 my $id = $id2;
2807 my $type = $type2;
2808 my $foundparent = 0;
2809
2810 # Records are the only entity with two possible parents. We need to split the parent checks on
2811 # domain/rdns.
2812 if ($type eq 'record') {
2813 my ($dom,$rdns) = $dbh->selectrow_array("SELECT domain_id,rdns_id FROM records WHERE record_id=?",
2814 undef, ($id));
2815 # check immediate parent against request
2816 return 1 if $type1 eq 'domain' && $id1 == $dom;
2817 return 1 if $type1 eq 'revzone' && $id1 == $rdns;
2818 # if request is group, check *both* parents. Only check if the parent is nonzero though.
2819 return 1 if $dom && isParent($dbh, $id1, $type1, $dom, 'domain');
2820 return 1 if $rdns && isParent($dbh, $id1, $type1, $rdns, 'revzone');
2821 # exit here since we've executed the loop below by proxy in the above recursive calls.
2822 return 0;
2823 }
2824
2825# almost the same loop as getParents() above
2826 my $limiter = 0;
2827 while (1) {
2828 my $sql = "SELECT $par_col{$type} FROM $par_tbl{$type} WHERE $id_col{$type} = ?";
2829 my $result = $dbh->selectrow_hashref($sql,
2830 undef, ($id) );
2831 if (!$result) {
2832 $limiter++;
2833##fixme: how often will this happen on a live site? fail at max limiter <n>?
2834 warn "no results looking for $sql with id $id (depth $limiter)\n";
2835 last;
2836 }
2837 if ($result && $result->{$par_col{$type}} == $id1) {
2838 $foundparent = 1;
2839 last;
2840 } else {
2841##fixme: do we care about trying to return a "no such record/domain/user/group" error?
2842# should be impossible to create an inconsistent DB just with API calls.
2843 warn $dbh->errstr." $sql, $id" if $dbh->errstr;
2844 }
2845 # group 1 is its own parent. need this here more to break strange loops than for detecting a parent
2846 last if $result->{$par_col{$type}} == 1;
2847 $id = $result->{$par_col{$type}};
2848 $type = $par_type{$type};
2849 }
2850
2851 return $foundparent;
2852} # end isParent()
2853
2854
2855## DNSDB::zoneStatus()
2856# Returns and optionally sets a zone's status
2857# Takes a database handle, domain/revzone ID, forward/reverse flag, and optionally a status argument
2858# Returns status, or undef on errors.
2859sub zoneStatus {
2860 my $dbh = shift;
2861 my $id = shift;
2862 my $revrec = shift;
2863 my $newstatus = shift || 'mu';
2864
2865 return undef if $id !~ /^\d+$/;
2866
2867 # Allow transactions, and raise an exception on errors so we can catch it later.
2868 # Use local to make sure these get "reset" properly on exiting this block
2869 local $dbh->{AutoCommit} = 0;
2870 local $dbh->{RaiseError} = 1;
2871
2872 if ($newstatus ne 'mu') {
2873 # ooo, fun! let's see what we were passed for status
2874 eval {
2875 $newstatus = 0 if $newstatus eq 'domoff';
2876 $newstatus = 1 if $newstatus eq 'domon';
2877 $dbh->do("UPDATE ".($revrec eq 'n' ? 'domains' : 'revzones')." SET status=? WHERE ".
2878 ($revrec eq 'n' ? 'domain_id' : 'rdns_id')."=?", undef, ($newstatus,$id) );
2879
2880##fixme switch to more consise "Enabled <domain"/"Disabled <domain>" as with users?
2881 $resultstr = "Changed ".($revrec eq 'n' ? domainName($dbh, $id) : revName($dbh, $id)).
2882 " state to ".($newstatus ? 'active' : 'inactive');
2883
2884 my %loghash;
2885 $loghash{domain_id} = $id if $revrec eq 'n';
2886 $loghash{rdns_id} = $id if $revrec eq 'y';
2887 $loghash{group_id} = parentID($dbh,
2888 (id => $id, type => ($revrec eq 'n' ? 'domain' : 'revzone'), revrec => $revrec) );
2889 $loghash{entry} = $resultstr;
2890 _log($dbh, %loghash);
2891
2892 $dbh->commit;
2893 };
2894 if ($@) {
2895 my $msg = $@;
2896 eval { $dbh->rollback; };
2897 $resultstr = '';
2898 $errstr = $msg;
2899 return;
2900 }
2901 }
2902
2903 my ($status) = $dbh->selectrow_array("SELECT status FROM ".
2904 ($revrec eq 'n' ? "domains WHERE domain_id=?" : "revzones WHERE rdns_id=?"),
2905 undef, ($id) );
2906 return $status;
2907} # end zoneStatus()
2908
2909
2910## DNSDB::importAXFR
2911# Import a domain via AXFR
2912# Takes AXFR host, domain to transfer, group to put the domain in,
2913# and optionally:
2914# - active/inactive state flag (defaults to active)
2915# - overwrite-SOA flag (defaults to off)
2916# - overwrite-NS flag (defaults to off, doesn't affect subdomain NS records)
2917# Returns a status code (OK, WARN, or FAIL) and message - message should be blank
2918# if status is OK, but WARN includes conditions that are not fatal but should
2919# really be reported.
2920sub importAXFR {
2921 my $dbh = shift;
2922 my $ifrom_in = shift;
2923 my $domain = shift;
2924 my $group = shift;
2925 my $status = shift || 1;
2926 my $rwsoa = shift || 0;
2927 my $rwns = shift || 0;
2928
2929##fixme: add mode to delete&replace, merge+overwrite, merge new?
2930
2931 my $nrecs = 0;
2932 my $soaflag = 0;
2933 my $nsflag = 0;
2934 my $warnmsg = '';
2935 my $ifrom;
2936
2937 # choke on possible bad setting in ifrom
2938 # IPv4 and v6, and valid hostnames!
2939 ($ifrom) = ($ifrom_in =~ /^([0-9a-f\:.]+|[0-9a-z_.-]+)$/i);
2940 return ('FAIL', "Bad AXFR source host $ifrom")
2941 unless ($ifrom) = ($ifrom_in =~ /^([0-9a-f\:.]+|[0-9a-z_.-]+)$/i);
2942
2943 # Allow transactions, and raise an exception on errors so we can catch it later.
2944 # Use local to make sure these get "reset" properly on exiting this block
2945 local $dbh->{AutoCommit} = 0;
2946 local $dbh->{RaiseError} = 1;
2947
2948 my $sth = $dbh->prepare("SELECT domain_id FROM domains WHERE domain=?");
2949 my $dom_id;
2950
2951# quick check to start to see if we've already got one
2952 $sth->execute($domain);
2953 ($dom_id) = $sth->fetchrow_array;
2954
2955 return ('FAIL', "Domain already exists") if $dom_id;
2956
2957 eval {
2958 # can't do this, can't nest transactions. sigh.
2959 #my ($dcode, $dmsg) = addDomain(dbh, domain, group, status);
2960
2961##fixme: serial
2962 my $sth = $dbh->prepare("INSERT INTO domains (domain,group_id,status) VALUES (?,?,?)");
2963 $sth->execute($domain,$group,$status);
2964
2965## bizarre DBI<->Net::DNS interaction bug:
2966## sometimes a zone will cause an immediate commit-and-exit (sort of) of the while()
2967## fixed, apparently I was doing *something* odd, but not certain what it was that
2968## caused a commit instead of barfing
2969
2970 # get domain id so we can do the records
2971 $sth = $dbh->prepare("SELECT domain_id FROM domains WHERE domain=?");
2972 $sth->execute($domain);
2973 ($dom_id) = $sth->fetchrow_array();
2974
2975 my $res = Net::DNS::Resolver->new;
2976 $res->nameservers($ifrom);
2977 $res->axfr_start($domain)
2978 or die "Couldn't begin AXFR\n";
2979
2980 while (my $rr = $res->axfr_next()) {
2981 my $type = $rr->type;
2982
2983 my $sql = "INSERT INTO records (domain_id,host,type,ttl,val";
2984 my $vallen = "?,?,?,?,?";
2985
2986 $soaflag = 1 if $type eq 'SOA';
2987 $nsflag = 1 if $type eq 'NS';
2988
2989 my @vallist = ($dom_id, $rr->name, $reverse_typemap{$type}, $rr->ttl);
2990
2991# "Primary" types:
2992# A, NS, CNAME, SOA, PTR(warn in forward), MX, TXT, AAAA, SRV, A6(ob), SPF
2993# maybe KEY
2994
2995# nasty big ugly case-like thing here, since we have to do *some* different
2996# processing depending on the record. le sigh.
2997
2998##fixme: what record types other than TXT can/will have >255-byte payloads?
2999
3000 if ($type eq 'A') {
3001 push @vallist, $rr->address;
3002 } elsif ($type eq 'NS') {
3003# hmm. should we warn here if subdomain NS'es are left alone?
3004 next if ($rwns && ($rr->name eq $domain));
3005 push @vallist, $rr->nsdname;
3006 $nsflag = 1;
3007 } elsif ($type eq 'CNAME') {
3008 push @vallist, $rr->cname;
3009 } elsif ($type eq 'SOA') {
3010 next if $rwsoa;
3011 $vallist[1] = $rr->mname.":".$rr->rname;
3012 push @vallist, ($rr->refresh.":".$rr->retry.":".$rr->expire.":".$rr->minimum);
3013 $soaflag = 1;
3014 } elsif ($type eq 'PTR') {
3015 push @vallist, $rr->ptrdname;
3016 # hmm. PTR records should not be in forward zones.
3017 } elsif ($type eq 'MX') {
3018 $sql .= ",distance";
3019 $vallen .= ",?";
3020 push @vallist, $rr->exchange;
3021 push @vallist, $rr->preference;
3022 } elsif ($type eq 'TXT') {
3023##fixme: Net::DNS docs say this should be deprecated for rdatastr() or char_str_list(),
3024## but don't really seem enthusiastic about it.
3025 my $rrdata = $rr->txtdata;
3026 push @vallist, $rrdata;
3027 } elsif ($type eq 'SPF') {
3028##fixme: and the same caveat here, since it is apparently a clone of ::TXT
3029 my $rrdata = $rr->txtdata;
3030 push @vallist, $rrdata;
3031 } elsif ($type eq 'AAAA') {
3032 push @vallist, $rr->address;
3033 } elsif ($type eq 'SRV') {
3034 $sql .= ",distance,weight,port" if $type eq 'SRV';
3035 $vallen .= ",?,?,?" if $type eq 'SRV';
3036 push @vallist, $rr->target;
3037 push @vallist, $rr->priority;
3038 push @vallist, $rr->weight;
3039 push @vallist, $rr->port;
3040 } elsif ($type eq 'KEY') {
3041 # we don't actually know what to do with these...
3042 push @vallist, ($rr->flags.":".$rr->protocol.":".$rr->algorithm.":".$rr->key.":".$rr->keytag.":".$rr->privatekeyname);
3043 } else {
3044 my $rrdata = $rr->rdatastr;
3045 push @vallist, $rrdata;
3046 # Finding a different record type is not fatal.... just problematic.
3047 # We may not be able to export it correctly.
3048 $warnmsg .= "Unusual record ".$rr->name." ($type) found\n";
3049 }
3050
3051# BIND supports:
3052# A CNAME HINFO MB(ex) MD(ob) MF(ob) MG(ex) MINFO(ex) MR(ex) MX NS NULL
3053# PTR SOA TXT WKS AFSDB(ex) ISDN(ex) RP(ex) RT(ex) X25(ex) PX
3054# ... if one can ever find the right magic to format them correctly
3055
3056# Net::DNS supports:
3057# RRSIG SIG NSAP NS NIMLOC NAPTR MX MR MINFO MG MB LOC ISDN IPSECKEY HINFO
3058# EID DNAME CNAME CERT APL AFSDB AAAA A DS NXT NSEC3PARAM NSEC3 NSEC KEY
3059# DNSKEY DLV X25 TXT TSIG TKEY SSHFP SRV SPF SOA RT RP PX PTR NULL APL::AplItem
3060
3061 $sth = $dbh->prepare($sql.") VALUES (".$vallen.")") or die "problem preparing record insert SQL\n";
3062 $sth->execute(@vallist) or die "failed to insert ".$rr->string.": ".$sth->errstr."\n";
3063
3064 $nrecs++;
3065
3066 } # while axfr_next
3067
3068 # Overwrite SOA record
3069 if ($rwsoa) {
3070 $soaflag = 1;
3071 my $sthgetsoa = $dbh->prepare("SELECT host,val,ttl FROM default_records WHERE group_id=? AND type=?");
3072 my $sthputsoa = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,ttl) VALUES (?,?,?,?,?)");
3073 $sthgetsoa->execute($group,$reverse_typemap{SOA});
3074 while (my ($host,$val,$ttl) = $sthgetsoa->fetchrow_array()) {
3075 $host =~ s/DOMAIN/$domain/g;
3076 $val =~ s/DOMAIN/$domain/g;
3077 $sthputsoa->execute($dom_id,$host,$reverse_typemap{SOA},$val,$ttl);
3078 }
3079 }
3080
3081 # Overwrite NS records
3082 if ($rwns) {
3083 $nsflag = 1;
3084 my $sthgetns = $dbh->prepare("SELECT host,val,ttl FROM default_records WHERE group_id=? AND type=?");
3085 my $sthputns = $dbh->prepare("INSERT INTO records (domain_id,host,type,val,ttl) VALUES (?,?,?,?,?)");
3086 $sthgetns->execute($group,$reverse_typemap{NS});
3087 while (my ($host,$val,$ttl) = $sthgetns->fetchrow_array()) {
3088 $host =~ s/DOMAIN/$domain/g;
3089 $val =~ s/DOMAIN/$domain/g;
3090 $sthputns->execute($dom_id,$host,$reverse_typemap{NS},$val,$ttl);
3091 }
3092 }
3093
3094 die "No records found; either $ifrom is not authoritative or doesn't allow transfers\n" if !$nrecs;
3095 die "Bad zone: No SOA record!\n" if !$soaflag;
3096 die "Bad zone: No NS records!\n" if !$nsflag;
3097
3098 $dbh->commit;
3099
3100 };
3101
3102 if ($@) {
3103 my $msg = $@;
3104 eval { $dbh->rollback; };
3105 return ('FAIL',$msg." $warnmsg");
3106 } else {
3107 return ('WARN', $warnmsg) if $warnmsg;
3108 return ('OK',"Imported OK");
3109 }
3110
3111 # it should be impossible to get here.
3112 return ('WARN',"OOOK!");
3113} # end importAXFR()
3114
3115
3116## DNSDB::export()
3117# Export the DNS database, or a part of it
3118# Takes database handle, export type, optional arguments depending on type
3119# Writes zone data to targets as appropriate for type
3120sub export {
3121 my $dbh = shift;
3122 my $target = shift;
3123
3124 if ($target eq 'tiny') {
3125 __export_tiny($dbh,@_);
3126 }
3127# elsif ($target eq 'foo') {
3128# __export_foo($dbh,@_);
3129#}
3130# etc
3131
3132} # end export()
3133
3134
3135## DNSDB::__export_tiny
3136# Internal sub to implement tinyDNS (compatible) export
3137# Takes database handle, filehandle to write export to, optional argument(s)
3138# to determine which data gets exported
3139sub __export_tiny {
3140 my $dbh = shift;
3141 my $datafile = shift;
3142
3143##fixme: slurp up further options to specify particular zone(s) to export
3144
3145 ## Convert a bare number into an octal-coded pair of octets.
3146 # Take optional arg to indicate a decimal or hex input. Defaults to hex.
3147 sub octalize {
3148 my $tmp = shift;
3149 my $srctype = shift || 'h'; # default assumes hex string
3150 $tmp = sprintf "%0.4x", hex($tmp) if $srctype eq 'h'; # 0-pad hex to 4 digits
3151 $tmp = sprintf "%0.4x", $tmp if $srctype eq 'd'; # 0-pad decimal to 4 hex digits
3152 my @o = ($tmp =~ /^(..)(..)$/); # split into octets
3153 return sprintf "\\%0.3o\\%0.3o", hex($o[0]), hex($o[1]);;
3154 }
3155
3156##fixme: fail if $datafile isn't an open, writable file
3157
3158 # easy case - export all evarything
3159 # not-so-easy case - export item(s) specified
3160 # todo: figure out what kind of list we use to export items
3161
3162 my $domsth = $dbh->prepare("SELECT domain_id,domain,status FROM domains WHERE status=1");
3163 my $recsth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl ".
3164 "FROM records WHERE domain_id=?");
3165 $domsth->execute();
3166 while (my ($domid,$dom,$domstat) = $domsth->fetchrow_array) {
3167 $recsth->execute($domid);
3168 while (my ($host,$type,$val,$dist,$weight,$port,$ttl) = $recsth->fetchrow_array) {
3169##fixme: need to store location in the db, and retrieve it here.
3170# temporarily hardcoded to empty so we can include it further down.
3171my $loc = '';
3172
3173##fixme: record validity timestamp. tinydns supports fiddling with timestamps.
3174# note $ttl must be set to 0 if we want to use tinydns's auto-expiring timestamps.
3175# timestamps are TAI64
3176# ~~ 2^62 + time()
3177my $stamp = '';
3178
3179# raw packet in unknown format: first byte indicates length
3180# of remaining data, allows up to 255 raw bytes
3181
3182##fixme? append . to all host/val hostnames
3183 if ($typemap{$type} eq 'SOA') {
3184
3185 # host contains pri-ns:responsible
3186 # val is abused to contain refresh:retry:expire:minttl
3187##fixme: "manual" serial vs tinydns-autoserial
3188 # let's be explicit about abusing $host and $val
3189 my ($email, $primary) = (split /:/, $host)[0,1];
3190 my ($refresh, $retry, $expire, $min_ttl) = (split /:/, $val)[0,1,2,3];
3191 print $datafile "Z$dom:$primary:$email"."::$refresh:$retry:$expire:$min_ttl:$ttl:$stamp:$loc\n";
3192
3193 } elsif ($typemap{$type} eq 'A') {
3194
3195 print $datafile "+$host:$val:$ttl:$stamp:$loc\n";
3196
3197 } elsif ($typemap{$type} eq 'NS') {
3198
3199 print $datafile "\&$host"."::$val:$ttl:$stamp:$loc\n";
3200
3201 } elsif ($typemap{$type} eq 'AAAA') {
3202
3203 print $datafile ":$host:28:";
3204 my $altgrp = 0;
3205 my @altconv;
3206 # Split in to up to 8 groups of hex digits (allows for IPv6 :: 0-collapsing)
3207 foreach (split /:/, $val) {
3208 if (/^$/) {
3209 # flag blank entry; this is a series of 0's of (currently) unknown length
3210 $altconv[$altgrp++] = 's';
3211 } else {
3212 # call sub to convert 1-4 hex digits to 2 string-rep octal bytes
3213 $altconv[$altgrp++] = octalize($_)
3214 }
3215 }
3216 foreach my $octet (@altconv) {
3217 # if not 's', output
3218 print $datafile $octet unless $octet =~ /^s$/;
3219 # if 's', output (9-array length)x literal '\000\000'
3220 print $datafile '\000\000'x(9-$altgrp) if $octet =~ /^s$/;
3221 }
3222 print $datafile ":$ttl:$stamp:$loc\n";
3223
3224 } elsif ($typemap{$type} eq 'MX') {
3225
3226 print $datafile "\@$host"."::$val:$dist:$ttl:$stamp:$loc\n";
3227
3228 } elsif ($typemap{$type} eq 'TXT') {
3229
3230##fixme: split v-e-r-y long TXT strings? will need to do so for BIND export, at least
3231 $val =~ s/:/\\072/g; # may need to replace other symbols
3232 print $datafile "'$host:$val:$ttl:$stamp:$loc\n";
3233
3234# by-hand TXT
3235#:deepnet.cx:16:2v\075spf1\040a\040a\072bacon.deepnet.cx\040a\072home.deepnet.cx\040-all:3600
3236#@ IN TXT "v=spf1 a a:bacon.deepnet.cx a:home.deepnet.cx -all"
3237#'deepnet.cx:v=spf1 a a\072bacon.deepnet.cx a\072home.deepnet.cx -all:3600
3238
3239#txttest IN TXT "v=foo bar:bob kn;ob' \" !@#$%^&*()-=_+[]{}<>?"
3240#: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
3241
3242# very long TXT record as brought in by axfr-get
3243# note tinydns does not support >512-byte RR data, need axfr-dns (for TCP support) for that
3244# also note, tinydns does not seem to support <512, >256-byte RRdata from axfr-get either. :/
3245#:longtxt.deepnet.cx:16:
3246#\170this is a very long txt record. it is really long. long. very long. really very long. this is a very long txt record.
3247#\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.
3248#\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.
3249#:3600
3250
3251 } elsif ($typemap{$type} eq 'CNAME') {
3252
3253 print $datafile "C$host:$val:$ttl:$stamp:$loc\n";
3254
3255 } elsif ($typemap{$type} eq 'SRV') {
3256
3257 # data is two-byte values for priority, weight, port, in that order,
3258 # followed by length/string data
3259
3260 print $datafile ":$host:33:".octalize($dist,'d').octalize($weight,'d').octalize($port,'d');
3261
3262 $val .= '.' if $val !~ /\.$/;
3263 foreach (split /\./, $val) {
3264 printf $datafile "\\%0.3o%s", length($_), $_;
3265 }
3266 print $datafile "\\000:$ttl:$stamp:$loc\n";
3267
3268 } elsif ($typemap{$type} eq 'RP') {
3269
3270 # RP consists of two mostly free-form strings.
3271 # The first is supposed to be an email address with @ replaced by . (as with the SOA contact)
3272 # The second is the "hostname" of a TXT record with more info.
3273 print $datafile ":$host:17:";
3274 my ($who,$what) = split /\s/, $val;
3275 foreach (split /\./, $who) {
3276 printf $datafile "\\%0.3o%s", length($_), $_;
3277 }
3278 print $datafile '\000';
3279 foreach (split /\./, $what) {
3280 printf $datafile "\\%0.3o%s", length($_), $_;
3281 }
3282 print $datafile "\\000:$ttl:$stamp:$loc\n";
3283
3284 } elsif ($typemap{$type} eq 'PTR') {
3285
3286 # must handle both IPv4 and IPv6
3287##work
3288 # data should already be in suitable reverse order.
3289 print $datafile "^$host:$val:$ttl:$stamp:$loc\n";
3290
3291 } else {
3292 # raw record. we don't know what's in here, so we ASS-U-ME the user has
3293 # put it in correctly, since either the user is messing directly with the
3294 # database, or the record was imported via AXFR
3295 # <split by char>
3296 # convert anything not a-zA-Z0-9.- to octal coding
3297
3298##fixme: add flag to export "unknown" record types - note we'll probably end up
3299# mangling them since they were written to the DB from Net::DNS::RR::<type>->rdatastr.
3300 #print $datafile ":$host:$type:$val:$ttl:$stamp:$loc\n";
3301
3302 } # record type if-else
3303
3304 } # while ($recsth)
3305 } # while ($domsth)
3306} # end __export_tiny()
3307
3308
3309## DNSDB::mailNotify()
3310# Sends notification mail to recipients regarding a DNSDB operation
3311sub mailNotify {
3312 my $dbh = shift;
3313 my ($subj,$message) = @_;
3314
3315 return if $config{mailhost} eq 'smtp.example.com'; # do nothing if still using default SMTP host.
3316
3317 my $mailer = Net::SMTP->new($config{mailhost}, Hello => "dnsadmin.$config{domain}");
3318
3319 my $mailsender = ($config{mailsender} ? $config{mailsender} : $config{mailnotify});
3320
3321 $mailer->mail($mailsender);
3322 $mailer->to($config{mailnotify});
3323 $mailer->data("From: \"$config{mailname}\" <$mailsender>\n",
3324 "To: <$config{mailnotify}>\n",
3325 "Date: ".strftime("%a, %d %b %Y %H:%M:%S %z",localtime)."\n",
3326 "Subject: $subj\n",
3327 "X-Mailer: DNSAdmin Notify v".sprintf("%.1d",$DNSDB::VERSION)."\n",
3328 "Organization: $config{orgname}\n",
3329 "\n$message\n");
3330 $mailer->quit;
3331}
3332
3333# shut Perl up
33341;
Note: See TracBrowser for help on using the repository browser.