source: trunk/dns-rpc.cgi@ 717

Last change on this file since 717 was 717, checked in by Kris Deugau, 8 years ago

/trunk

Rollup of refinements mainly for IPDB RPC calls

  • Tweak stripping of CIDR mask length to avoid missing a record
  • Extra canonicalization of IP addresses to avoid missing a record
  • Pass RPC flag in all getRecList() calls except direct RPC shim, so that callers not dealing natively with actual records can just send in the IPs
  • Fix a couple of corner cases where detection of existing records didn't fire when it should (causing duplicates), or fired when it shouldn't (causing missing records)
  • Refine handling of record sets so that deletes happen when they should
  • Property svn:executable set to *
  • Property svn:keywords set to Date Rev Author Id
File size: 36.5 KB
RevLine 
[216]1#!/usr/bin/perl -w -T
[262]2# XMLRPC interface to manipulate most DNS DB entities
3##
[200]4# $Id: dns-rpc.cgi 717 2016-04-15 16:23:03Z kdeugau $
[496]5# Copyright 2012,2013 Kris Deugau <kdeugau@deepnet.cx>
[262]6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19##
[119]20
21use strict;
22use warnings;
[216]23
24# don't remove! required for GNU/FHS-ish install from tarball
25use lib '.'; ##uselib##
[490]26use DNSDB;
[216]27
[490]28use FCGI;
[119]29#use Frontier::RPC2;
30use Frontier::Responder;
31
32## We need to handle a couple of things globally, rather than pasting the same bit into *every* sub.
33## So, let's subclass Frontier::RPC2 + Frontier::Responder, so we can override the single sub in each
34## that needs kicking
35#### hmm. put this in a separate file?
36#package DNSDB::RPC;
37#our @ISA = ("Frontier::RPC2", "Frontier::Responder");
38#package main;
39
[468]40my $dnsdb = DNSDB->new();
[191]41
[119]42my $methods = {
[515]43#sub getPermissions {
44#sub changePermissions {
45#sub comparePermissions {
46#sub changeGroup {
[119]47 'dnsdb.addDomain' => \&addDomain,
[401]48 'dnsdb.delZone' => \&delZone,
[515]49#sub domainName {
50#sub revName {
[500]51 'dnsdb.domainID' => \&domainID,
[515]52#sub revID {
[405]53 'dnsdb.addRDNS' => \&addRDNS,
[515]54#sub getZoneCount {
55#sub getZoneList {
56#sub getZoneLocation {
[121]57 'dnsdb.addGroup' => \&addGroup,
58 'dnsdb.delGroup' => \&delGroup,
[515]59#sub getChildren {
60#sub groupName {
61#sub getGroupCount {
62#sub getGroupList {
63#sub groupID {
[121]64 'dnsdb.addUser' => \&addUser,
[515]65#sub getUserCount {
66#sub getUserList {
67#sub getUserDropdown {
[121]68 'dnsdb.updateUser' => \&updateUser,
69 'dnsdb.delUser' => \&delUser,
[515]70#sub userFullName {
71#sub userStatus {
72#sub getUserData {
73#sub addLoc {
74#sub updateLoc {
75#sub delLoc {
76#sub getLoc {
77#sub getLocCount {
78#sub getLocList {
[447]79 'dnsdb.getLocDropdown' => \&getLocDropdown,
[121]80 'dnsdb.getSOA' => \&getSOA,
[515]81#sub updateSOA {
[123]82 'dnsdb.getRecLine' => \&getRecLine,
[495]83 'dnsdb.getRecList' => \&getRecList,
[123]84 'dnsdb.getRecCount' => \&getRecCount,
[659]85 'dnsdb.addRec' => \&rpc_addRec,
[675]86 'dnsdb.updateRec' => \&rpc_updateRec,
[515]87#sub downconvert {
[453]88 'dnsdb.addOrUpdateRevRec' => \&addOrUpdateRevRec,
[676]89 'dnsdb.updateRevSet' => \&updateRevSet,
[680]90 'dnsdb.splitTemplate' => \&splitTemplate,
[681]91 'dnsdb.resizeTemplate' => \&resizeTemplate,
[682]92 'dnsdb.templatesToRecords' => \&templatesToRecords,
[123]93 'dnsdb.delRec' => \&delRec,
[459]94 'dnsdb.delByCIDR' => \&delByCIDR,
[684]95 'dnsdb.delRevSet' => \&delRevSet,
[452]96#sub getLogCount {}
97#sub getLogEntries {}
98 'dnsdb.getRevPattern' => \&getRevPattern,
[673]99 'dnsdb.getRevSet' => \&getRevSet,
[506]100 'dnsdb.getTypelist' => \&getTypelist,
[504]101 'dnsdb.getTypemap' => \&getTypemap,
102 'dnsdb.getReverse_typemap' => \&getReverse_typemap,
[515]103#sub parentID {
104#sub isParent {
[405]105 'dnsdb.zoneStatus' => \&zoneStatus,
[452]106 'dnsdb.getZonesByCIDR' => \&getZonesByCIDR,
[515]107#sub importAXFR {
108#sub importBIND {
109#sub import_tinydns {
110#sub export {
111#sub mailNotify {
[121]112
[119]113 'dnsdb.getMethods' => \&get_method_list
114};
115
[490]116my $reqcnt = 0;
117
118while (FCGI::accept >= 0) {
119 my $res = Frontier::Responder->new(
[119]120 methods => $methods
121 );
122
[490]123 # "Can't do that" errors
124 if (!$dnsdb) {
125 print "Content-type: text/xml\n\n".$res->{_decode}->encode_fault(5, $dnsdb->err);
126 } else {
127 print $res->answer;
128 }
129 last if $reqcnt++ > $dnsdb->{maxfcgi};
130} # while FCGI::accept
[119]131
132
133exit;
134
135##
136## Subs below here
137##
138
[710]139##
140## Internal utility subs
141##
142
[490]143# Check RPC ACL
[401]144sub _aclcheck {
145 my $subsys = shift;
[486]146 return 1 if grep /$ENV{REMOTE_ADDR}/, @{$dnsdb->{rpcacl}{$subsys}};
[505]147 warn "$subsys/$ENV{REMOTE_ADDR} not in ACL\n"; # a bit of logging
[401]148 return 0;
149}
150
[405]151# Let's see if we can factor these out of the RPC method subs
152sub _commoncheck {
153 my $argref = shift;
154 my $needslog = shift;
155
156 die "Missing remote system name\n" if !$argref->{rpcsystem};
157 die "Access denied\n" if !_aclcheck($argref->{rpcsystem});
158 if ($needslog) {
159 die "Missing remote username\n" if !$argref->{rpcuser};
160 die "Couldn't set userdata for logging\n"
[486]161 unless $dnsdb->initRPC(username => $argref->{rpcuser}, rpcsys => $argref->{rpcsystem},
162 fullname => ($argref->{fullname} ? $argref->{fullname} : $argref->{rpcuser}) );
[405]163 }
164}
165
[511]166# check for defrec and revrec; only call on subs that deal with records
167sub _reccheck {
168 my $argref = shift;
169 die "Missing defrec and/or revrec flags\n" if !($argref->{defrec} || $argref->{revrec});
170}
171
[453]172# set location to the zone's default location if none is specified
173sub _loccheck {
174 my $argref = shift;
175 if (!$argref->{location} && $argref->{defrec} eq 'n') {
[477]176 $argref->{location} = $dnsdb->getZoneLocation($argref->{revrec}, $argref->{parent_id});
[453]177 }
178}
179
[710]180# set ttl to zone default minttl if none is specified
[453]181sub _ttlcheck {
182 my $argref = shift;
183 if (!$argref->{ttl}) {
[486]184 my $tmp = $dnsdb->getSOA($argref->{defrec}, $argref->{revrec}, $argref->{parent_id});
[453]185 $argref->{ttl} = $tmp->{minttl};
186 }
187}
188
[710]189# Check if the hashrefs passed in refer to identical record data, so we can skip
190# the actual update if nothing has actually changed. This is mainly useful for
191# reducing log noise due to chained calls orginating with updateRevSet() since
192# "many" records could be sent for update but only one or two have actually changed.
193sub _checkRecMod {
194 my $oldrec = shift;
195 my $newrec = shift;
196
197 # Because we don't know which fields we've even been passed
198 no warnings qw(uninitialized);
199
200 my $modflag = 0;
201 # order by most common change. host should be first, due to rDNS RPC calls
202 for my $field qw(host type val) {
203 return 1 if (
204 defined($newrec->{$field}) &&
205 $oldrec->{$field} ne $newrec->{$field} );
206 }
207
208 return 0;
209} # _checRecMod
210
211
212##
213## Shims for DNSDB core subs
214##
215
[119]216#sub connectDB {
217#sub finish {
218#sub initGlobals {
219#sub initPermissions {
220#sub getPermissions {
221#sub changePermissions {
222#sub comparePermissions {
223#sub changeGroup {
224#sub _log {
225
226sub addDomain {
227 my %args = @_;
228
[405]229 _commoncheck(\%args, 'y');
[119]230
[687]231 my ($code, $msg) = $dnsdb->addDomain($args{domain}, $args{group}, $args{state}, $args{defloc});
[511]232 die "$msg\n" if $code eq 'FAIL';
[119]233 return $msg; # domain ID
234}
235
[401]236sub delZone {
[119]237 my %args = @_;
238
[405]239 _commoncheck(\%args, 'y');
240 die "Need forward/reverse zone flag\n" if !$args{revrec};
[687]241 die "Need zone identifier\n" if !$args{zone};
[119]242
[121]243 my ($code,$msg);
[405]244 # Let's be nice; delete based on zone id OR zone name. Saves an RPC call round-trip, maybe.
245 if ($args{zone} =~ /^\d+$/) {
[477]246 ($code,$msg) = $dnsdb->delZone($args{zone}, $args{revrec});
[119]247 } else {
[405]248 my $zoneid;
[477]249 $zoneid = $dnsdb->domainID($args{zone}) if $args{revrec} eq 'n';
250 $zoneid = $dnsdb->revID($args{zone}) if $args{revrec} eq 'y';
[671]251 die "Can't find zone: ".$dnsdb->errstr."\n" if !$zoneid;
[477]252 ($code,$msg) = $dnsdb->delZone($zoneid, $args{revrec});
[119]253 }
[511]254 die "$msg\n" if $code eq 'FAIL';
[405]255 return $msg;
[687]256} # delZone()
[119]257
[405]258#sub domainName {}
259#sub revName {}
[500]260
261sub domainID {
262 my %args = @_;
263
264 _commoncheck(\%args, 'y');
265
266 my $domid = $dnsdb->domainID($args{domain});
[671]267 die $dnsdb->errstr."\n" if !$domid;
[500]268 return $domid;
269}
270
[405]271#sub revID {}
[119]272
[405]273sub addRDNS {
274 my %args = @_;
275
276 _commoncheck(\%args, 'y');
277
[477]278 my ($code, $msg) = $dnsdb->addRDNS($args{revzone}, $args{revpatt}, $args{group}, $args{state}, $args{defloc});
[447]279 die "$msg\n" if $code eq 'FAIL';
[687]280 return $msg; # zone ID
[405]281}
282
283#sub getZoneCount {}
284#sub getZoneList {}
285#sub getZoneLocation {}
286
[119]287sub addGroup {
288 my %args = @_;
289
[405]290 _commoncheck(\%args, 'y');
[407]291 die "Missing new group name\n" if !$args{groupname};
292 die "Missing parent group ID\n" if !$args{parent_id};
[119]293
[407]294# not sure how to usefully represent permissions via RPC. :/
[121]295# not to mention, permissions are checked at the UI layer, not the DB layer.
[119]296 my $perms = {domain_edit => 1, domain_create => 1, domain_delete => 1,
297 record_edit => 1, record_create => 1, record_delete => 1
298 };
299## optional $inhert arg?
[476]300 my ($code,$msg) = $dnsdb->addGroup($args{groupname}, $args{parent_id}, $perms);
[511]301 die "$msg\n" if $code eq 'FAIL';
[119]302 return $msg;
303}
304
305sub delGroup {
306 my %args = @_;
307
[405]308 _commoncheck(\%args, 'y');
[407]309 die "Missing group ID or name to remove\n" if !$args{group};
[119]310
[121]311 my ($code,$msg);
[119]312 # Let's be nice; delete based on groupid OR group name. Saves an RPC call round-trip, maybe.
313 if ($args{group} =~ /^\d+$/) {
[476]314 ($code,$msg) = $dnsdb->delGroup($args{group});
[119]315 } else {
[486]316 my $grpid = $dnsdb->groupID($args{group});
[407]317 die "Can't find group\n" if !$grpid;
[476]318 ($code,$msg) = $dnsdb->delGroup($grpid);
[119]319 }
[511]320 die "$msg\n" if $code eq 'FAIL';
[407]321 return $msg;
[119]322}
323
[405]324#sub getChildren {}
325#sub groupName {}
326#sub getGroupCount {}
327#sub getGroupList {}
328#sub groupID {}
[119]329
330sub addUser {
331 my %args = @_;
332
[405]333 _commoncheck(\%args, 'y');
[119]334
[409]335# not sure how to usefully represent permissions via RPC. :/
[121]336# not to mention, permissions are checked at the UI layer, not the DB layer.
[119]337 # bend and twist; get those arguments in in the right order!
338 $args{type} = 'u' if !$args{type};
339 $args{permstring} = 'i' if !defined($args{permstring});
340 my @userargs = ($args{username}, $args{group}, $args{pass}, $args{state}, $args{type}, $args{permstring});
341 for my $argname ('fname','lname','phone') {
342 last if !$args{$argname};
343 push @userargs, $args{$argname};
344 }
[479]345 my ($code,$msg) = $dnsdb->addUser(@userargs);
[511]346 die "$msg\n" if $code eq 'FAIL';
[119]347 return $msg;
348}
349
[405]350#sub getUserCount {}
351#sub getUserList {}
352#sub getUserDropdown {}
353#sub checkUser {}
[119]354
355sub updateUser {
356 my %args = @_;
357
[405]358 _commoncheck(\%args, 'y');
[119]359
[401]360 die "Missing UID\n" if !$args{uid};
[121]361
[119]362 # bend and twist; get those arguments in in the right order!
[411]363 $args{type} = 'u' if !$args{type};
[119]364 my @userargs = ($args{uid}, $args{username}, $args{group}, $args{pass}, $args{state}, $args{type});
365 for my $argname ('fname','lname','phone') {
366 last if !$args{$argname};
367 push @userargs, $args{$argname};
368 }
369##fixme: also underlying in DNSDB::updateUser(): no way to just update this or that attribute;
370# have to pass them all in to be overwritten
[479]371 my ($code,$msg) = $dnsdb->updateUser(@userargs);
[511]372 die "$msg\n" if $code eq 'FAIL';
[412]373 return $msg;
[119]374}
375
376sub delUser {
377 my %args = @_;
378
[405]379 _commoncheck(\%args, 'y');
[119]380
[401]381 die "Missing UID\n" if !$args{uid};
[479]382 my ($code,$msg) = $dnsdb->delUser($args{uid});
[511]383 die "$msg\n" if $code eq 'FAIL';
[412]384 return $msg;
[119]385}
386
[405]387#sub userFullName {}
388#sub userStatus {}
389#sub getUserData {}
[119]390
[405]391#sub addLoc {}
392#sub updateLoc {}
393#sub delLoc {}
394#sub getLoc {}
395#sub getLocCount {}
396#sub getLocList {}
397
[447]398sub getLocDropdown {
399 my %args = @_;
400
401 _commoncheck(\%args);
402 $args{defloc} = '' if !$args{defloc};
403
[480]404 my $ret = $dnsdb->getLocDropdown($args{group}, $args{defloc});
[447]405 return $ret;
406}
407
[119]408sub getSOA {
409 my %args = @_;
410
[405]411 _commoncheck(\%args);
[121]412
[511]413 _reccheck(\%args);
414
[481]415 my $ret = $dnsdb->getSOA($args{defrec}, $args{revrec}, $args{id});
[413]416 if (!$ret) {
417 if ($args{defrec} eq 'y') {
[401]418 die "No default SOA record in group\n";
[121]419 } else {
[413]420 die "No SOA record in zone\n";
[121]421 }
422 }
[413]423 return $ret;
[119]424}
425
[405]426#sub updateSOA {}
427
[119]428sub getRecLine {
429 my %args = @_;
430
[405]431 _commoncheck(\%args);
[123]432
[511]433 _reccheck(\%args);
434
[481]435 my $ret = $dnsdb->getRecLine($args{defrec}, $args{revrec}, $args{id});
[123]436
[671]437 die $dnsdb->errstr."\n" if !$ret;
[123]438
439 return $ret;
[119]440}
441
[495]442sub getRecList {
[119]443 my %args = @_;
444
[405]445 _commoncheck(\%args);
[123]446
[500]447 # deal gracefully with alternate calling convention for args{id}
448 $args{id} = $args{ID} if !$args{id} && $args{ID};
449 # ... and fail if we don't have one
450 die "Missing zone ID\n" if !$args{id};
451
[405]452 # set some optional args
[500]453 $args{offset} = 0 if !$args{offset};
[123]454## for order, need to map input to column names
455 $args{order} = 'host' if !$args{order};
456 $args{direction} = 'ASC' if !$args{direction};
[500]457 $args{defrec} = 'n' if !$args{defrec};
458 $args{revrec} = 'n' if !$args{revrec};
[123]459
[500]460 # convert zone name to zone ID, if needed
461 if ($args{defrec} eq 'n') {
462 if ($args{revrec} eq 'n') {
463 $args{id} = $dnsdb->domainID($args{id}) if $args{id} !~ /^\d+$/;
464 } else {
465 $args{id} = $dnsdb->revID($args{id}) if $args{id} !~ /^\d+$/
466 }
467 }
468
[502]469 # fail if we *still* don't have a valid zone ID
[671]470 die $dnsdb->errstr."\n" if !$args{id};
[502]471
[500]472 # and finally retrieve the records.
[495]473 my $ret = $dnsdb->getRecList(defrec => $args{defrec}, revrec => $args{revrec}, id => $args{id},
[500]474 offset => $args{offset}, nrecs => $args{nrecs}, sortby => $args{sortby},
475 sortorder => $args{sortorder}, filter => $args{filter});
[671]476 die $dnsdb->errstr."\n" if !$ret;
[123]477
478 return $ret;
[119]479}
480
[123]481sub getRecCount {
482 my %args = @_;
[119]483
[405]484 _commoncheck(\%args);
[123]485
[511]486 _reccheck(\%args);
487
[405]488 # set some optional args
489 $args{nrecs} = 'all' if !$args{nrecs};
490 $args{nstart} = 0 if !$args{nstart};
491## for order, need to map input to column names
492 $args{order} = 'host' if !$args{order};
493 $args{direction} = 'ASC' if !$args{direction};
494
[666]495 my $ret = $dnsdb->getRecCount(defrec => $args{defrec}, revrec => $args{revrec},
496 id => $args{id}, filter => $args{filter});
[405]497
[671]498 die $dnsdb->errstr."\n" if !$ret;
[405]499
500 return $ret;
[123]501}
502
[687]503# The core sub uses references for some arguments to allow limited modification for
504# normalization or type+zone matching/mapping/availability.
[659]505sub rpc_addRec {
[119]506 my %args = @_;
507
[405]508 _commoncheck(\%args, 'y');
[123]509
[511]510 _reccheck(\%args);
[453]511 _loccheck(\%args);
512 _ttlcheck(\%args);
[123]513
[498]514 # allow passing text types rather than DNS integer IDs
[499]515 $args{type} = $DNSDB::reverse_typemap{$args{type}} if $args{type} !~ /^\d+$/;
[498]516
[481]517 my @recargs = ($args{defrec}, $args{revrec}, $args{parent_id},
[543]518 \$args{name}, \$args{type}, \$args{address}, $args{ttl}, $args{location},
519 $args{expires}, $args{stamp});
[426]520 if ($args{type} == $DNSDB::reverse_typemap{MX} or $args{type} == $DNSDB::reverse_typemap{SRV}) {
521 push @recargs, $args{distance};
522 if ($args{type} == $DNSDB::reverse_typemap{SRV}) {
523 push @recargs, $args{weight};
524 push @recargs, $args{port};
525 }
526 }
527
[481]528 my ($code, $msg) = $dnsdb->addRec(@recargs);
[426]529
[511]530 die "$msg\n" if $code eq 'FAIL';
[426]531 return $msg;
[659]532} # rpc_addRec
[119]533
[675]534sub rpc_updateRec {
[119]535 my %args = @_;
536
[405]537 _commoncheck(\%args, 'y');
[123]538
[511]539 _reccheck(\%args);
540
[543]541 # put some caller-friendly names in their rightful DB column places
[680]542 $args{val} = $args{address} if !$args{val};
543 $args{host} = $args{name} if !$args{host};
[543]544
[452]545 # get old line, so we can update only the bits that the caller passed to change
[481]546 my $oldrec = $dnsdb->getRecLine($args{defrec}, $args{revrec}, $args{id});
[543]547 foreach my $field (qw(host type val ttl location expires distance weight port)) {
[452]548 $args{$field} = $oldrec->{$field} if !$args{$field} && defined($oldrec->{$field});
549 }
[543]550 # stamp has special handling when blank or 0. "undefined" from the caller should mean "don't change"
[659]551 $args{stamp} = $oldrec->{stamp} if !defined($args{stamp}) && $oldrec->{stampactive};
[452]552
[498]553 # allow passing text types rather than DNS integer IDs
[499]554 $args{type} = $DNSDB::reverse_typemap{$args{type}} if $args{type} !~ /^\d+$/;
[498]555
[405]556 # note dist, weight, port are not required on all types; will be ignored if not needed.
[426]557 # parent_id is the "primary" zone we're updating; necessary for forward/reverse voodoo
[481]558 my ($code, $msg) = $dnsdb->updateRec($args{defrec}, $args{revrec}, $args{id}, $args{parent_id},
[543]559 \$args{host}, \$args{type}, \$args{val}, $args{ttl}, $args{location},
560 $args{expires}, $args{stamp},
[426]561 $args{distance}, $args{weight}, $args{port});
[123]562
[511]563 die "$msg\n" if $code eq 'FAIL';
[426]564 return $msg;
[680]565} # rpc_updateRec
[119]566
[710]567
[453]568# Takes a passed CIDR block and DNS pattern; adds a new record or updates the record(s) affected
569sub addOrUpdateRevRec {
570 my %args = @_;
571
572 _commoncheck(\%args, 'y');
[459]573 my $cidr = new NetAddr::IP $args{cidr};
[453]574
[477]575 my $zonelist = $dnsdb->getZonesByCIDR(%args);
[453]576 if (scalar(@$zonelist) == 0) {
577 # enhh.... WTF?
578 } elsif (scalar(@$zonelist) == 1) {
579 # check if the single zone returned is bigger than the CIDR. if so, we can just add a record
580 my $zone = new NetAddr::IP $zonelist->[0]->{revnet};
[459]581 if ($zone->contains($cidr)) {
[717]582 # We need to strip the CIDR mask on IPv4 /32 or v6 /128 assignments, or we just add a new record all the time.
583 my $filt = ( $cidr->{isv6} ? ($cidr->masklen != 128 ? "$cidr" : $cidr->addr) :
584 ($cidr->masklen != 32 ? "$cidr" : $cidr->addr) );
585 my $reclist = $dnsdb->getRecList(rpc => 1, defrec => 'n', revrec => 'y',
[454]586 id => $zonelist->[0]->{rdns_id}, filter => $filt);
[671]587##fixme: Figure some new magic to automerge new incoming A(AAA)+PTR requests
588# with existing A records to prevent duplication of A(AAA) records
[453]589 if (scalar(@$reclist) == 0) {
590 # Aren't Magic Numbers Fun? See pseudotype list in dnsadmin.
[672]591 my $type = ($cidr->{isv6} ? ($cidr->masklen == 128 ? 65281 : 65284) : ($cidr->masklen == 32 ? 65280 : 65283) );
[659]592 rpc_addRec(defrec => 'n', revrec => 'y', parent_id => $zonelist->[0]->{rdns_id}, type => $type,
[459]593 address => "$cidr", %args);
[453]594 } else {
[459]595 my $flag = 0;
[453]596 foreach my $rec (@$reclist) {
[454]597 # pure PTR plus composite types
598 next unless $rec->{type} == 12 || $rec->{type} == 65280 || $rec->{type} == 65281
599 || $rec->{type} == 65282 || $rec->{type} == 65283 || $rec->{type} == 65284;
600 next unless $rec->{val} eq $filt; # make sure we really update the record we want to update.
[717]601 # canonicalize the IP values so funny IPv6 short forms don't
602 # cause non-updates by not being literally string-equal
603 $rec->{val} = new NetAddr::IP $rec->{val};
604 my $tmpcidr = new NetAddr::IP $args{cidr};
605 my %newrec = (host => $args{name}, val => $tmpcidr, type => $args{type});
[675]606 rpc_updateRec(defrec =>'n', revrec => 'y', id => $rec->{record_id},
[710]607 parent_id => $zonelist->[0]->{rdns_id}, address => "$cidr", %args)
608 if _checkRecMod($rec, \%newrec); # and only do the update if there really is something to change
[459]609 $flag = 1;
[453]610 last; # only do one record.
611 }
[459]612 unless ($flag) {
613 # Nothing was updated, so we didn't really have a match. Add as per @$reclist==0
614 # Aren't Magic Numbers Fun? See pseudotype list in dnsadmin.
615 my $type = ($cidr->{isv6} ? 65282 : ($cidr->masklen == 32 ? 65280 : 65283) );
[659]616 rpc_addRec(defrec => 'n', revrec => 'y', parent_id => $zonelist->[0]->{rdns_id}, type => $type,
[459]617 address => "$cidr", %args);
618 }
[453]619 }
620 } else {
621 # ebbeh? CIDR is only partly represented in DNS. This needs manual intervention.
622 } # done single-zone-contains-$cidr
623 } else {
624 # Overlapping reverse zones shouldn't be possible, so if we're here we've got a CIDR
625 # that spans multiple reverse zones (eg, /23 CIDR -> 2 /24 rzones)
626 foreach my $zdata (@$zonelist) {
[717]627 my $reclist = $dnsdb->getRecList(rpc => 1, defrec => 'n', revrec => 'y',
[453]628 id => $zdata->{rdns_id}, filter => $zdata->{revnet});
629 if (scalar(@$reclist) == 0) {
630 my $type = ($args{cidr}->{isv6} ? 65282 : ($args{cidr}->masklen == 32 ? 65280 : 65283) );
[659]631 rpc_addRec(defrec => 'n', revrec => 'y', parent_id => $zdata->{rdns_id}, type => $type,
[453]632 address => "$args{cidr}", %args);
633 } else {
[717]634 my $updflag = 0;
[453]635 foreach my $rec (@$reclist) {
[454]636 # only the composite and/or template types; pure PTR or nontemplate composite
637 # types are nominally impossible here.
[453]638 next unless $rec->{type} == 65282 || $rec->{type} == 65283 || $rec->{type} == 65284;
[717]639 my %newrec = (host => $args{name}, val => $zdata->{revnet}, type => $args{type});
[678]640 rpc_updateRec(defrec => 'n', revrec => 'y', id => $rec->{record_id},
[717]641 parent_id => $zdata->{rdns_id}, %args)
642 if _checkRecMod($rec, \%newrec); # and only do the update if there really is something to change
643 $updflag = 1;
[453]644 last; # only do one record.
645 }
[717]646 # catch the case of "oops, no zone-sized template record and need to add a new one",
647 # because the SOA and NS records will be returned from the getRecList() call above
648 unless ($updflag) {
649 my $type = ($cidr->{isv6} ? 65284 : 65283);
650 rpc_addRec(defrec => 'n', revrec => 'y', parent_id => $zdata->{rdns_id}, type => $type,
651 address => $zdata->{revnet}, %args);
652 }
653 } # scalar(@$reclist) != 0
[453]654 } # iterate zones within $cidr
655 } # done $cidr-contains-zones
[676]656##fixme: what about errors? what about warnings?
657} # done addOrUpdateRevRec()
[453]658
[676]659# Update rDNS on a whole batch of IP addresses. Presented as a separate sub via RPC
660# since RPC calls can be s...l...o...w....
661sub updateRevSet {
662 my %args = @_;
663
664 _commoncheck(\%args, 'y');
665
666 my @ret;
667 # loop over passed IP/hostname pairs
668 foreach my $key (keys %args) {
[678]669 next unless $key =~ m{^host_((?:[\d.]+|[\da-f:]+)(?:/\d+)?)$};
[676]670 my $ip = $1;
[710]671 push @ret, addOrUpdateRevRec(%args, cidr => $ip, name => $args{$key});
[676]672 }
[710]673
674 # now we check the parts of the block that didn't get passed to see if they should be deleted
675 my $block = new NetAddr::IP $args{cidr};
[717]676 if (!$block->{isv6}) {
677 foreach my $ip (@{$block->splitref(32)}) {
678 my $bare = $ip->addr;
679 next if $args{"host_$bare"};
680 delByCIDR(delforward => 1, delsubs => 0, cidr => $bare, location => $args{location},
[710]681 rpcuser => $args{rpcuser}, rpcsystem => $args{rpcsystem});
[717]682 }
[710]683 }
684
[676]685##fixme: what about errors? what about warnings?
686 return \@ret;
687} # done updateRevSet()
688
[680]689# Split a template record as per a passed CIDR.
690# Requires the CIDR and the new mask length
691sub splitTemplate {
692 my %args = @_;
693
694 _commoncheck(\%args, 'y');
695
696 my $cidr = new NetAddr::IP $args{cidr};
697
698 my $zonelist = $dnsdb->getZonesByCIDR(%args);
699
700 if (scalar(@$zonelist) == 0) {
701 # enhh.... WTF?
702
703 } elsif (scalar(@$zonelist) == 1) {
704 my $zone = new NetAddr::IP $zonelist->[0]->{revnet};
705 if ($zone->contains($cidr)) {
706 # Find the first record in the reverse zone that matches the CIDR we're splitting...
[717]707 my $reclist = $dnsdb->getRecList(rpc => 1, defrec => 'n', revrec => 'y',
[680]708 id => $zonelist->[0]->{rdns_id}, filter => $cidr, sortby => 'val', sortorder => 'DESC');
709 my $oldrec;
710 foreach my $rec (@$reclist) {
711 my $reccidr = new NetAddr::IP $rec->{val};
712 next unless $cidr->contains($reccidr); # not sure this is needed here
713 # ... and is a reverse-template type.
714 # Could arguably trim the list below to just 65282, 65283, 65284
715 next unless $rec->{type} == 12 || $rec->{type} == 65280 || $rec->{type} == 65281 ||
716 $rec->{type} == 65282 || $rec->{type} == 65283 ||$rec->{type} == 65284;
717 # snag old record so we can copy its data
718 $oldrec = $dnsdb->getRecLine('n', 'y', $rec->{record_id});
719 last; # we've found one record that meets our criteria; Extras Are Irrelevant
720 }
721
722 my @newblocks = $cidr->split($args{newmask});
723 # Change the existing record with the new CIDR
724 my $up_res = rpc_updateRec(%args, val => $newblocks[0], id => $oldrec->{record_id}, defrec => 'n', revrec => 'y');
725 my @ret;
726 # the update is assumed to have succeeded if it didn't fail.
727##fixme: find a way to save and return "warning" states?
728 push @ret, {block => "$newblocks[0]", code => "OK", msg => $up_res};
729 # And now add new record(s) for each of the new CIDR entries, reusing the old data
730 for (my $i = 1; $i <= $#newblocks; $i++) {
731 my $newval = "$newblocks[$i]";
732 my @recargs = ('n', 'y', $oldrec->{rdns_id}, \$oldrec->{host}, \$oldrec->{type}, \$newval,
733 $oldrec->{ttl}, $oldrec->{location}, 0, '');
734 my ($code, $msg) = $dnsdb->addRec(@recargs);
735 # Note failures here are not fatal; this should typically only ever be called by IPDB
736 push @ret, {block => "$newblocks[$i]", code => $code, msg => $up_res};
737 }
738 # return an info hash in case of warnings doing the update or add(s)
739 return \@ret;
740
741 } else { # $cidr > $zone but we only have one zone
742 # ebbeh? CIDR is only partly represented in DNS. This needs manual intervention.
743 return "Warning: $args{cidr} is only partly represented in DNS. Check and update DNS records manually.";
744 } # done single-zone-contains-$cidr
745
746 } else {
747 # multiple zones nominally "contain" $cidr
748 } # done $cidr-contains-zones
749
750} # done splitTemplate()
751
[681]752# Resize a template according to an old/new CIDR pair
753# Takes the old cidr in $args{oldcidr} and the new in $args{newcidr}
754sub resizeTemplate {
755 my %args = @_;
756
757 _commoncheck(\%args, 'y');
758
759 my $oldcidr = new NetAddr::IP $args{oldcidr};
760 my $newcidr = new NetAddr::IP $args{newcidr};
761 die "$oldcidr and $newcidr do not overlap"
762 unless $oldcidr->contains($newcidr) || $newcidr->contains($oldcidr);
763 $args{cidr} = $args{oldcidr};
764
765 my $up_res;
766
767 my $zonelist = $dnsdb->getZonesByCIDR(%args);
768 if (scalar(@$zonelist) == 0) {
769 # enhh.... WTF?
770
771 } elsif (scalar(@$zonelist) == 1) {
772 my $zone = new NetAddr::IP $zonelist->[0]->{revnet};
773 if ($zone->contains($oldcidr)) {
774 # Find record(s) matching the old and new CIDR
775
776 my $sql = q(
777 SELECT record_id,host,val
778 FROM records
779 WHERE rdns_id = ?
780 AND type IN (12, 65280, 65281, 65282, 65283, 65284)
781 AND (val = ? OR val = ?)
782 ORDER BY masklen(inetlazy(val)) ASC
783 );
784 my $sth = $dnsdb->{dbh}->prepare($sql);
785 $sth->execute($zonelist->[0]->{rdns_id}, "$oldcidr", "$newcidr");
786 my $upd_id;
787 my $oldhost;
788 while (my ($recid, $host, $val) = $sth->fetchrow_array) {
789 my $tcidr = NetAddr::IP->new($val);
790 if ($tcidr == $newcidr) {
791 # Match found for new CIDR. Delete this record.
792 $up_res = $dnsdb->delRec('n', 'y', $recid);
793 } else {
794 # Update this record, then exit the loop
795 $up_res = rpc_updateRec(%args, val => $newcidr, id => $recid, defrec => 'n', revrec => 'y');
796 last;
797 }
798 # Your llama is on fire
799 }
800 $sth->finish;
801
802 return "Template record for $oldcidr changed to $newcidr.";
803
804 } else { # $cidr > $zone but we only have one zone
805 # ebbeh? CIDR is only partly represented in DNS. This needs manual intervention.
806 return "Warning: $args{cidr} is only partly represented in DNS. Check and update DNS records manually.";
807 } # done single-zone-contains-$cidr
808
809 } else {
810 # multiple zones nominally "contain" $cidr
811 }
812
813 return $up_res;
814} # done resizeTemplate()
815
[682]816# Convert one or more template records to a set of individual IP records. Expands the template.
817# Handle the case of nested templates, although the primary caller (IPDB) should not be
818# able to generate records that would trigger that case.
819# Accounts for existing PTR or A+PTR records same as on-export template expansion.
820# Takes a list of templates and a bounding CIDR?
821sub templatesToRecords {
822 my %args = @_;
823
824 _commoncheck(\%args, 'y');
825
826 my %iplist;
827 my @retlist;
828
829 my $zsth = $dnsdb->{dbh}->prepare("SELECT rdns_id,group_id FROM revzones WHERE revnet >>= ?");
830 # Going to assume template records with no expiry
831 # Also note IPv6 template records don't expand sanely the way v4 records do
832 my $recsth = $dnsdb->{dbh}->prepare(q(
833 SELECT record_id, domain_id, host, type, val, ttl, location
834 FROM records
835 WHERE rdns_id = ?
836 AND type IN (12, 65280, 65282, 65283)
837 AND inetlazy(val) <<= ?
838 ORDER BY masklen(inetlazy(val)) DESC
839 ));
840 my $insth = $dnsdb->{dbh}->prepare("INSERT INTO records (domain_id, rdns_id, host, type, val, ttl, location)".
841 " VALUES (?,?,?,?,?,?,?)");
842 my $delsth = $dnsdb->{dbh}->prepare("DELETE FROM records WHERE record_id = ?");
843 my %typedown = (12 => 12, 65280 => 65280, 65281 => 65281, 65282 => 12, 65283 => 65280, 65284 => 65281);
844
845 my @checkrange;
846
847 local $dnsdb->{dbh}->{AutoCommit} = 0;
848 local $dnsdb->{dbh}->{RaiseError} = 1;
849
850 eval {
851 foreach my $template (@{$args{templates}}) {
852 $zsth->execute($template);
853 my ($zid,$zgrp) = $zsth->fetchrow_array;
854 if (!$zid) {
855 push @retlist, {$template, "Zone not found"};
856 next;
857 }
858 $recsth->execute($zid, $template);
859 while (my ($recid, $domid, $host, $type, $val, $ttl, $loc) = $recsth->fetchrow_array) {
860 # Skip single IPs with PTR or A+PTR records
861 if ($type == 12 || $type == 65280) {
862 $iplist{"$val/32"}++;
863 next;
864 }
865 my @newips = NetAddr::IP->new($template)->split(32);
866 $type = $typedown{$type};
867 foreach my $ip (@newips) {
868 next if $iplist{$ip};
869 my $newhost = $host;
[686]870 $dnsdb->_template4_expand(\$newhost, $ip->addr);
[682]871 $insth->execute($domid, $zid, $newhost, $type, $ip->addr, $ttl, $loc);
872 $iplist{$ip}++;
873 }
874 $delsth->execute($recid);
875 $dnsdb->_log(group_id => $zgrp, domain_id => $domid, rdns_id => $zid,
876 entry => "$template converted to individual $typemap{$type} records");
877 push @retlist, "$template converted to individual records";
878 } # record fetch
879 } # foreach passed template CIDR
880
881 $dnsdb->{dbh}->commit;
882 };
883 if ($@) {
884 die "Error converting a template record to individual records: $@";
885 }
886
887 return \@retlist;
888
889} # done templatesToRecords()
890
[119]891sub delRec {
892 my %args = @_;
893
[405]894 _commoncheck(\%args, 'y');
[123]895
[511]896 _reccheck(\%args);
897
[687]898 my ($code, $msg) = $dnsdb->delRec($args{defrec}, $args{revrec}, $args{id});
[123]899
[511]900 die "$msg\n" if $code eq 'FAIL';
[426]901 return $msg;
[119]902}
903
[459]904sub delByCIDR {
905 my %args = @_;
906
907 _commoncheck(\%args, 'y');
908
[683]909 # Caller may pass 'n' in delsubs. Assume it should be false/undefined
910 # unless the caller explicitly requested 'yes'
911 $args{delsubs} = 0 if $args{delsubs} ne 'y';
912
[687]913 # Don't delete the A component of an A+PTR by default
914 $args{delforward} = 0 if !$args{delforward};
915
[717]916 # make sure this is set if not passed
917 $args{location} = '' if !$args{location};
918
[459]919 # much like addOrUpdateRevRec()
[477]920 my $zonelist = $dnsdb->getZonesByCIDR(%args);
[459]921 my $cidr = new NetAddr::IP $args{cidr};
922
923 if (scalar(@$zonelist) == 0) {
924 # enhh.... WTF?
925 } elsif (scalar(@$zonelist) == 1) {
926
927 # check if the single zone returned is bigger than the CIDR
928 my $zone = new NetAddr::IP $zonelist->[0]->{revnet};
929 if ($zone->contains($cidr)) {
930 if ($args{delsubs}) {
931 # Delete ALL EVARYTHING!!one11!! in $args{cidr}
[717]932 my $reclist = $dnsdb->getRecList(rpc => 1, defrec => 'n', revrec => 'y', id => $zonelist->[0]->{rdns_id});
[459]933 foreach my $rec (@$reclist) {
934 my $reccidr = new NetAddr::IP $rec->{val};
935 next unless $cidr->contains($reccidr);
[460]936 next unless $rec->{type} == 12 || $rec->{type} == 65280 || $rec->{type} == 65281 ||
937 $rec->{type} == 65282 || $rec->{type} == 65283 ||$rec->{type} == 65284;
[459]938 ##fixme: multiple records, wanna wax'em all, how to report errors?
939 if ($args{delforward} ||
940 $rec->{type} == 12 || $rec->{type} == 65282 ||
941 $rec->{type} == 65283 || $rec->{type} == 65284) {
[481]942 my ($code,$msg) = $dnsdb->delRec('n', 'y', $rec->{record_id});
[459]943 } else {
[686]944##fixme: AAAA+PTR?
[481]945 my $ret = $dnsdb->downconvert($rec->{record_id}, $DNSDB::reverse_typemap{A});
[459]946 }
947 }
[460]948 if ($args{parpatt} && $zone == $cidr) {
949 # Edge case; we've just gone and axed all the records in the reverse zone.
950 # Re-add one to match the parent if we've been given a pattern to use.
[659]951 rpc_addRec(defrec => 'n', revrec => 'y', parent_id => $zonelist->[0]->{rdns_id},
[672]952 type => ($zone->{isv6} ? 65284 : 65283), address => "$cidr", name => $args{parpatt}, %args);
[460]953 }
[459]954
955 } else {
956 # Selectively delete only exact matches on $args{cidr}
957 # We need to strip the CIDR mask on IPv4 /32 assignments, or we can't find single-IP records
[717]958 my $filt = ( $cidr->{isv6} ? ($cidr->masklen != 128 ? "$cidr" : $cidr->addr) :
959 ($cidr->masklen != 32 ? "$cidr" : $cidr->addr) );
960 my $reclist = $dnsdb->getRecList(rpc => 1, defrec => 'n', revrec => 'y', location => $args{location},
[459]961 id => $zonelist->[0]->{rdns_id}, filter => $filt, sortby => 'val', sortorder => 'DESC');
962 foreach my $rec (@$reclist) {
963 my $reccidr = new NetAddr::IP $rec->{val};
964 next unless $cidr == $reccidr;
[460]965 next unless $rec->{type} == 12 || $rec->{type} == 65280 || $rec->{type} == 65281 ||
966 $rec->{type} == 65282 || $rec->{type} == 65283 ||$rec->{type} == 65284;
[459]967 if ($args{delforward} || $rec->{type} == 12) {
[481]968 my ($code,$msg) = $dnsdb->delRec('n', 'y', $rec->{record_id});
[511]969 die "$msg\n" if $code eq 'FAIL';
[459]970 return $msg;
971 } else {
[481]972 my $ret = $dnsdb->downconvert($rec->{record_id}, $DNSDB::reverse_typemap{A});
[671]973 die $dnsdb->errstr."\n" if !$ret;
[459]974 return "A+PTR for $args{cidr} split and PTR removed";
975 }
976 } # foreach @$reclist
977 }
978
979 } else { # $cidr > $zone but we only have one zone
980 # ebbeh? CIDR is only partly represented in DNS. This needs manual intervention.
981 return "Warning: $args{cidr} is only partly represented in DNS. Check and remove DNS records manually.";
982 } # done single-zone-contains-$cidr
983
984 } else { # multiple zones nominally "contain" $cidr
985 # Overlapping reverse zones shouldn't be possible, so if we're here we've got a CIDR
986 # that spans multiple reverse zones (eg, /23 CIDR -> 2 /24 rzones)
987 foreach my $zdata (@$zonelist) {
[717]988 my $reclist = $dnsdb->getRecList(rpc => 1, defrec => 'n', revrec => 'y', id => $zdata->{rdns_id});
[459]989 if (scalar(@$reclist) == 0) {
[460]990# nothing to do? or do we (re)add a record based on the parent?
991# yes, yes we do, past the close of the else
992# my $type = ($args{cidr}->{isv6} ? 65282 : ($args{cidr}->masklen == 32 ? 65280 : 65283) );
[659]993# rpc_addRec(defrec => 'n', revrec => 'y', parent_id => $zdata->{rdns_id}, type => $type,
[460]994# address => "$args{cidr}", %args);
[459]995 } else {
996 foreach my $rec (@$reclist) {
[460]997 next unless $rec->{type} == 12 || $rec->{type} == 65280 || $rec->{type} == 65281 ||
998 $rec->{type} == 65282 || $rec->{type} == 65283 || $rec->{type} == 65284;
999 # Template types are only useful when attached to a reverse zone.
1000##fixme ..... or ARE THEY?
1001 if ($args{delforward} ||
1002 $rec->{type} == 12 || $rec->{type} == 65282 ||
1003 $rec->{type} == 65283 || $rec->{type} == 65284) {
[481]1004 my ($code,$msg) = $dnsdb->delRec('n', 'y', $rec->{record_id});
[460]1005 } else {
[481]1006 my $ret = $dnsdb->downconvert($rec->{record_id}, $DNSDB::reverse_typemap{A});
[460]1007 }
[459]1008 } # foreach @$reclist
[460]1009 } # nrecs != 0
1010 if ($args{parpatt}) {
1011 # We've just gone and axed all the records in the reverse zone.
1012 # Re-add one to match the parent if we've been given a pattern to use.
[659]1013 rpc_addRec(defrec => 'n', revrec => 'y', parent_id => $zdata->{rdns_id},
[460]1014 type => ($cidr->{isv6} ? 65284 : 65283),
1015 address => $zdata->{revnet}, name => $args{parpatt}, %args);
[459]1016 }
1017 } # iterate zones within $cidr
1018 } # done $cidr-contains-zones
1019
1020} # end delByCIDR()
1021
[684]1022# Batch-delete a set of reverse entries similar to updateRevSet
1023sub delRevSet {
1024 my %args = @_;
1025
1026 _commoncheck(\%args, 'y');
1027
1028 my @ret;
1029 # loop over passed CIDRs in args{cidrlist}
1030 foreach my $cidr (split(',', $args{cidrlist})) {
1031 push @ret, delByCIDR(cidr => $cidr, %args)
1032 }
1033
1034 return \@ret;
1035} # end delRevSet()
1036
[405]1037#sub getLogCount {}
1038#sub getLogEntries {}
[452]1039
1040sub getRevPattern {
1041 my %args = @_;
1042
1043 _commoncheck(\%args, 'y');
1044
[700]1045 return $dnsdb->getRevPattern($args{cidr}, location => $args{location}, group => $args{group});
[452]1046}
1047
[673]1048sub getRevSet {
1049 my %args = @_;
1050
1051 _commoncheck(\%args, 'y');
1052
[700]1053 return $dnsdb->getRevSet($args{cidr}, location => $args{location}, group => $args{group});
[673]1054}
1055
[506]1056sub getTypelist {
1057 my %args = @_;
1058 _commoncheck(\%args, 'y');
[504]1059
[506]1060 $args{selected} = $reverse_typemap{A} if !$args{selected};
1061
1062 return $dnsdb->getTypelist($args{recgroup}, $args{selected});
1063}
1064
[504]1065sub getTypemap {
1066 my %args = @_;
1067 _commoncheck(\%args, 'y');
1068 return \%typemap;
1069}
1070
1071sub getReverse_typemap {
1072 my %args = @_;
1073 _commoncheck(\%args, 'y');
1074 return \%reverse_typemap;
1075}
1076
[405]1077#sub parentID {}
1078#sub isParent {}
[123]1079
[405]1080sub zoneStatus {
[123]1081 my %args = @_;
1082
[405]1083 _commoncheck(\%args, 'y');
[123]1084
[687]1085 $args{reverse} = 'n' if !$args{reverse} || $args{reverse} ne 'y';
1086 my @arglist = ($args{zoneid}, $args{reverse});
[123]1087 push @arglist, $args{status} if defined($args{status});
1088
[477]1089 my $status = $dnsdb->zoneStatus(@arglist);
[123]1090}
1091
[452]1092# Get a list of hashes referencing the reverse zone(s) for a passed CIDR block
1093sub getZonesByCIDR {
1094 my %args = @_;
1095
1096 _commoncheck(\%args, 'y');
1097
[477]1098 return $dnsdb->getZonesByCIDR(%args);
[452]1099}
1100
[405]1101#sub importAXFR {}
1102#sub importBIND {}
1103#sub import_tinydns {}
1104#sub export {}
1105#sub __export_tiny {}
1106#sub _printrec_tiny {}
1107#sub mailNotify {}
[119]1108
1109sub get_method_list {
1110 my @methods = keys %{$methods};
1111 return \@methods;
1112}
Note: See TracBrowser for help on using the repository browser.