source: trunk/cgi-bin/IPDB.pm@ 867

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

/trunk

Extra safety net in allocateBlock() to make sure we have a user identifier
for logging and downstream RPC

  • Property svn:keywords set to Date Rev Author
File size: 131.6 KB
Line 
1# ipdb/cgi-bin/IPDB.pm
2# Contains functions for IPDB - database access, subnet mangling, block allocation, etc
3###
4# SVN revision info
5# $Date: 2016-05-04 14:41:20 +0000 (Wed, 04 May 2016) $
6# SVN revision $Rev: 867 $
7# Last update by $Author: kdeugau $
8###
9# Copyright (C) 2004-2010 - Kris Deugau
10
11package IPDB;
12
13use strict;
14use warnings;
15use Exporter;
16use DBI;
17use Net::SMTP;
18use NetAddr::IP qw(:lower Compact );
19use Frontier::Client;
20use POSIX;
21use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
22
23$VERSION = 3; ##VERSION##
24@ISA = qw(Exporter);
25@EXPORT_OK = qw(
26 %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist
27 %IPDBacl %merge_display %aclmsg %rpcacl $maxfcgi
28 $errstr
29 &initIPDBGlobals &connectDB &finish &checkDBSanity
30 &addVRF &getVRF &deleteVRF &addMaster &touchMaster
31 &listVRF &listSummary &listSubs &listContainers &listAllocations &listForMerge &listFree &listPool
32 &getMasterList &getTypeList &getPoolSelect &findAllocateFrom
33 &ipParent &subParent &blockParent &getBreadCrumbs &getRoutedCity
34 &allocateBlock &updateBlock &splitBlock &shrinkBlock &mergeBlocks &deleteBlock &getBlockData
35 &getBlockRDNS &getRDNSbyIP &getRevID
36 &getNodeList &getNodeName &getNodeInfo
37 &mailNotify
38 );
39
40@EXPORT = (); # Export nothing by default.
41%EXPORT_TAGS = ( ALL => [qw(
42 %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist
43 %IPDBacl %merge_display %aclmsg %rpcacl $maxfcgi
44 $errstr
45 &initIPDBGlobals &connectDB &finish &checkDBSanity
46 &addVRF &getVRF &deleteVRF &addMaster &touchMaster
47 &listVRF &listSummary &listSubs &listContainers &listAllocations &listForMerge &listFree &listPool
48 &getMasterList &getTypeList &getPoolSelect &findAllocateFrom
49 &ipParent &subParent &blockParent &getBreadCrumbs &getRoutedCity
50 &allocateBlock &updateBlock &splitBlock &shrinkBlock &mergeBlocks &deleteBlock &getBlockData
51 &getBlockRDNS &getRDNSbyIP &getRevID
52 &getNodeList &getNodeName &getNodeInfo
53 &mailNotify
54 )]
55 );
56
57##
58## Global variables
59##
60our %disp_alloctypes;
61our %list_alloctypes;
62our %def_custids;
63our @citylist;
64our @poplist;
65our %IPDBacl;
66
67# Mapping hash for pooltype -> poolip-as-netblock conversions
68my %poolmap = (sd => 'en', cd => 'cn', dp => 'cn', mp => 'cn', wp => 'cn', ld => 'in', ad => 'in', bd => 'in');
69
70# Backup fields, since we iterate over the set regularly
71our @backupfields = qw(brand model type src user vpass epass port ip);
72
73# Friendly display strings for merge scopes
74our %merge_display = (
75 keepall => "Keep mergeable allocations as suballocations of new block",
76 mergepeer => "Keep suballocations of mergeable allocations",
77 clearpeer => "Keep only suballocations of the selected block",
78 clearall => "Clear all suballocations"
79 );
80
81# mapping table for functional-area => error message
82our %aclmsg = (
83 addmaster => 'add a master block',
84 addblock => 'add an allocation',
85 updateblock => 'update a block',
86 delblock => 'delete an allocation',
87 mergeblock => 'merge allocations',
88 );
89
90our %rpcacl;
91our $maxfcgi = 3;
92
93# error reporting
94our $errstr = '';
95
96our $org_name = 'Example Corp';
97our $smtphost = 'smtp.example.com';
98our $domain = 'example.com';
99our $defcustid = '5554242';
100our $smtpsender = 'ipdb@example.com';
101# mostly for rwhois
102##fixme: leave these blank by default?
103our $rwhoisDataPath = '/usr/local/rwhoisd/etc/rwhoisd'; # to match ./configure defaults from rwhoisd-1.5.9.6
104our $org_street = '123 4th Street';
105our $org_city = 'Anytown';
106our $org_prov_state = 'ON';
107our $org_pocode = 'H0H 0H0';
108our $org_country = 'CA';
109our $org_phone = '000-555-1234';
110our $org_techhandle = 'ISP-ARIN-HANDLE';
111our $org_email = 'noc@example.com';
112our $hostmaster = 'dns@example.com';
113
114our $syslog_facility = 'local2';
115
116our $rpc_url = '';
117our $dnsadmin_url; # needs to be modified later
118our $revgroup = 1; # should probably be configurable somewhere
119our $rpccount = 0;
120
121# Largest inverse CIDR mask length to show per-IP rDNS list
122# (eg, NetAddr::IP->bits - NetAddr::IP->masklen)
123our $maxrevlist = 5; # /27
124
125# Display the per-IP rDNS list on all block types even when it might not
126# make sense (typically for IP pools, where the per-IP entries are available
127# from each IP's edit page)
128our $revlistalltypes = 0;
129
130# UI layout for subblocks/containers
131our $sublistlayout = 1;
132
133# UI layout for VRF/master blocks
134our $masterswithvrfs = 2;
135
136# VLAN validation mode. Set to 0 to allow alphanumeric vlan names instead of using the vlan number.
137our $numeric_vlan = 1;
138
139# Billing system return link
140our $billinglink = 'https://billing.example.com/radius.pl';
141
142##
143## Internal utility functions
144##
145
146## IPDB::_rpc
147# Make an RPC call for DNS changes
148sub _rpc {
149 return if !$rpc_url; # Just In Case
150 my $rpcsub = shift;
151 my %args = @_;
152
153 # Make an object to represent the XML-RPC server.
154 my $server = Frontier::Client->new(url => $rpc_url, debug => 0);
155 my $result;
156
157 my %rpcargs = (
158 rpcsystem => 'ipdb',
159# must be provided by caller's caller
160# rpcuser => $args{user},
161 %args,
162 );
163
164 eval {
165 $result = $server->call("dnsdb.$rpcsub", %rpcargs);
166 };
167 if ($@) {
168 $errstr = $@;
169 $errstr =~ s/\s*$//;
170 $errstr =~ s/Fault returned from XML RPC Server, fault code 4: error executing RPC `dnsdb.$rpcsub'\.\s//;
171 }
172 $rpccount++;
173
174 return $result if $result;
175} # end _rpc()
176
177
178## IPDB::_compactFree()
179# Utility sub to compact a set of free block entries down to the minimum possible set of CIDR entries
180# Not to be called outside of an eval{}!
181sub _compactFree {
182 my $dbh = shift;
183 my $parent = shift;
184
185 # Rather than having the caller provide all the details
186 my $pinfo = getBlockData($dbh, $parent);
187 my $ftype = (split //, $pinfo->{type})[0];
188
189# NetAddr::IP->compact() attempts to produce the smallest inclusive block
190# from the caller and the passed terms.
191# EG: if you call $cidr->compact($ip1,$ip2,$ip3) when $cidr, $ip1, $ip2,
192# and $ip3 are consecutive /27's starting on .0 (.0-.31, .32-.63,
193# .64-.95, and .96-.128), you will get an array containing a single
194# /25 as element 0 (.0-.127). Order is not important; you could have
195# $cidr=.32/27, $ip1=.96/27, $ip2=.0/27, and $ip3=.64/27.
196
197##fixme: vrf
198##fixme: simplify since all containers now represent different "layers"/"levels"?
199
200 # set up the query to get the list of blocks to try to merge.
201 my $sth = $dbh->prepare(q{
202 SELECT cidr,id FROM freeblocks
203 WHERE parent_id = ?
204 ORDER BY masklen(cidr) DESC
205 });
206 $sth->execute($parent);
207
208 my (@rawfb, @combinelist, %rawid);
209 my $i=0;
210 # for each free block under $parent, push a NetAddr::IP object into one list, and
211 # continuously use NetAddr::IP->compact to automagically merge netblocks as possible.
212 while (my ($fcidr, $fid) = $sth->fetchrow_array) {
213 my $testIP = new NetAddr::IP $fcidr;
214 push @rawfb, $testIP;
215 $rawid{"$testIP"} = $fid; # $data[0] vs "$testIP" *does* make a difference for v6
216 @combinelist = $testIP->compact(@combinelist);
217 }
218
219 # now that we have the full list of "compacted" freeblocks, go back over
220 # the list of raw freeblocks, and delete the ones that got merged.
221 $sth = $dbh->prepare("DELETE FROM freeblocks WHERE id = ?");
222 foreach my $rawfree (@rawfb) {
223 next if grep { $rawfree == $_ } @combinelist; # skip if the raw block is in the compacted list
224 $sth->execute($rawid{$rawfree});
225 }
226
227 # now we walk the new list of compacted blocks, and see which ones we need to insert
228 $sth = $dbh->prepare("INSERT INTO freeblocks (cidr,city,routed,vrf,parent_id,master_id) VALUES (?,?,?,?,?,?)");
229 foreach my $cme (@combinelist) {
230 next if grep { $cme == $_ } @rawfb; # skip if the combined block was in the raw list
231 $sth->execute($cme, $pinfo->{city}, $ftype, $pinfo->{vrf}, $parent, $pinfo->{master_id});
232 }
233
234} # end _compactFree()
235
236
237## IPDB::_toPool()
238# Convert an allocation or allocation tree to entries in an IP pool
239# Assumes an incomplete/empty pool
240# Takes a parent ID for the pool, CIDR range descriptor for the allocation(s) to convert, and the pool type
241sub _toPool {
242 my $dbh = shift;
243 my $poolparent = shift;
244 my $convblock = shift; # May be smaller than the block referenced by $poolparent
245 my $pooltype = shift;
246 my $retall = shift || 0;
247
248 # there is probably a way to avoid the temporary $foo here
249 my $foo = $dbh->selectall_arrayref("SELECT master_id,parent_id FROM allocations WHERE id = ?", undef, $poolparent);
250 my ($master,$mainparent) = @{$foo->[0]};
251
252 my @retlist;
253
254 my $iptype = $pooltype;
255 $iptype =~ s/[pd]$/i/;
256 my $poolclass = (split //, $iptype)[0];
257
258 my $cidrpool = new NetAddr::IP $convblock;
259
260 my $asth = $dbh->prepare(q{
261 SELECT id, cidr, type, parent_id, city, description, notes, circuitid,
262 createstamp, modifystamp, privdata, custid, vrf, vlan, rdns
263 FROM allocations
264 WHERE cidr <<= ? AND master_id = ?
265 ORDER BY masklen(cidr) DESC
266 });
267 my $inssth = $dbh->prepare(q{
268 INSERT INTO poolips (
269 ip,type,parent_id,available,
270 city,description,notes,circuitid,createstamp,modifystamp,privdata,custid,vrf,vlan,rdns
271 )
272 VALUES (?,?,?,'n',?,?,?,?,?,?,?,?,?,?,?)
273 });
274 my $updsth = $dbh->prepare("UPDATE poolips SET parent_id = ?, type = ? WHERE parent_id = ?");
275 my $delsth = $dbh->prepare("DELETE FROM allocations WHERE id = ?");
276 my $fbdelsth = $dbh->prepare("DELETE FROM freeblocks WHERE parent_id = ?");
277
278 $asth->execute($convblock, $master);
279 my %poolcounter;
280 while (my ($oldid, $oldcidr, $oldtype, $oldparent, @oldalloc) = $asth->fetchrow_array) {
281 if ($oldtype =~ /.[enr]/) {
282 # Convert leaf allocations to block of pool IP assignments
283 my $tmpcidr = new NetAddr::IP $oldcidr;
284 my $newtype = $poolclass.'i';
285 # set up the gateway IP in case we need it
286 my $gw = $cidrpool+1;
287 foreach my $newip ($tmpcidr->split(32)) {
288 my $baseip = $newip->addr;
289 # skip .0 and .255, they are prefectly legitimate but some systems behave
290 # poorly talking to a client using them.
291 next if $baseip =~ /\.(?:0|255)$/;
292 # skip the network, broadcast, and gateway IPs if we're creating a "normal netblock" pool
293 if ($pooltype =~ /d$/) {
294 next if $newip->addr eq $cidrpool->network->addr;
295 next if $newip->addr eq $cidrpool->broadcast->addr;
296 next if $newip->addr eq $gw->addr;
297 }
298 $inssth->execute($newip, $newtype, $poolparent, @oldalloc) if !$poolcounter{"$newip"};
299 $poolcounter{"$newip"}++;
300 }
301 } elsif ($oldtype =~ /.[dp]/) {
302 # Reparent IPs in an existing pool, and rewrite their type
303 $updsth->execute($poolparent, $poolclass.'i', $oldid);
304 } else {
305 # Containers are mostly "not interesting" in this context since they're
306 # equivalent to the pool allocation on .[dp] types. Clean up the lingering free block(s).
307 $fbdelsth->execute($oldid);
308 }
309 # Clean up - remove the converted block unless it is the "primary"
310 $delsth->execute($oldid) unless $oldid == $poolparent;
311 # Return the converted blocks, but only the immediate peers, not the entire tree
312 push @retlist, { block => $oldcidr, mdisp => $disp_alloctypes{$oldtype}, mtype => $oldtype }
313 if (($oldparent == $mainparent) || $retall) && $oldid != $poolparent;
314 } # while $asth->fetch
315
316 return \@retlist;
317} # end _toPool()
318
319
320## IPDB::_poolToAllocations
321# Convert pool IPs into allocations, and free IPs into free blocks
322# Takes a pool ID, original pool CIDR (in case the allocation has been updated before the call here)
323# and hashref to data for the new parent container for the IPs,
324# and an optional hash with the new parent ID and allocation type
325sub _poolToAllocations {
326 my $dbh = shift;
327 my $oldpool = shift;
328 my $parentinfo = shift;
329 my %args = @_;
330
331 # Default to converting the pool to a container
332 $args{newparent} = $oldpool->{id} if !$args{newparent};
333
334 my ($containerclass) = ($parentinfo->{type} =~ /(.)./);
335
336 # Default type mapping
337 $args{newtype} = $poolmap{$oldpool->{type}} if !$args{newtype};
338
339 # Convert a bunch of pool IP allocations into "normal" netblock allocations
340 my $pool2alloc = $dbh->prepare(q{
341 INSERT INTO allocations (
342 cidr,type,city, description, notes, circuitid, createstamp, modifystamp,
343 privdata, custid, vrf, vlan, rdns, parent_id, master_id
344 )
345 SELECT
346 ip, ? AS type, city, description, notes, circuitid, createstamp, modifystamp,
347 privdata, custid, vrf, vlan, rdns, ? AS parent_id, master_id
348 FROM poolips
349 WHERE parent_id = ? AND available = 'n'
350 });
351 $pool2alloc->execute($args{newtype}, $args{newparent}, $oldpool->{id});
352
353 # Snag the whole list of pool IPs
354 my @freeips = @{$dbh->selectall_arrayref("SELECT ip,available FROM poolips WHERE parent_id = ?",
355 undef, $oldpool->{id})};
356 my @iplist;
357 my %usedips;
358 # Filter out the ones that were used...
359 foreach my $ip (@freeips) {
360 $$ip[0] =~ s{/32$}{};
361 push @iplist, NetAddr::IP->new($$ip[0]) if $$ip[1] eq 'y';
362 $usedips{$$ip[0]}++ if $$ip[1] eq 'n';
363 }
364 # ... so that we can properly decide whether the net, gw, and bcast IPs need to be added to the free list.
365 my $tmpblock = new NetAddr::IP $oldpool->{block};
366 push @iplist, NetAddr::IP->new($tmpblock->network->addr)
367 if !$usedips{$tmpblock->network->addr} || $tmpblock->network->addr =~ /\.0$/;
368 push @iplist, NetAddr::IP->new($tmpblock->broadcast->addr)
369 if !$usedips{$tmpblock->broadcast->addr} || $tmpblock->broadcast->addr =~ /\.255$/;
370 # only "DHCP"-ish pools have a gw ip removed from the pool
371 if ($oldpool->{type} =~ /.d/) {
372 $tmpblock++;
373 push @iplist, NetAddr::IP->new($tmpblock->addr);
374 }
375
376 # take the list of /32 IPs, and see what CIDR ranges we get back as free, then insert them.
377 @iplist = Compact(@iplist);
378 my $insfbsth = $dbh->prepare("INSERT INTO freeblocks (cidr,city,routed,vrf,parent_id,master_id) VALUES (?,?,?,?,?,?)");
379 foreach (@iplist) {
380 $insfbsth->execute($_, $parentinfo->{city}, $containerclass, $parentinfo->{vrf},
381 $args{newparent}, $parentinfo->{master_id});
382 }
383
384 # and finally delete the poolips entries
385 $dbh->do("DELETE FROM poolips WHERE parent_id = ?", undef, $oldpool->{id});
386
387} # end _poolToAllocations()
388
389
390## IPDB::_deleteCascade()
391# Internal sub. Deletes an allocation and all subcomponents
392sub _deleteCascade {
393 my $dbh = shift;
394 my $id = shift;
395 my $createfb = shift; # may be null at this point
396
397 my $binfo = getBlockData($dbh, $id);
398
399 # Decide if we're going to add a free block.
400
401 # Caller is normal block delete -> add freeblock under $binfo->{parent_id} -> pass nothing
402 # Caller is delete for merge to leaf -> do not add freeblock -> pass 0
403 # Caller is normal master delete -> do not add freeblock -> pass nothing
404 # Caller is merge master -> add freeblock under alternate parent -> pass parent ID
405 if ($binfo->{type} ne 'mm') {
406 # Deleting a non-master block
407 if (!defined($createfb)) {
408 # No createfb flag passed; assuming normal block delete. Add the freeblock
409 # under the parent of the block we're deleting.
410 $createfb = $binfo->{parent_id};
411 #} else {
412 # Don't need to actually do anything here. The caller has given us an ID,
413 # which is either 0 (causing no free block) or (theoretically) a valid block
414 # ID to add the free block under.
415 }
416 #} else {
417 # Deleting a master block
418 # Don't need to actually do anything here. If the caller passed a parent ID,
419 # that parent will get the new free block. if the caller didn't pass anything,
420 # no free block will be added.
421 }
422
423##fixme: special-case master blocks up here and quickly delete based on master_id,
424# instead of wasting time tracing parent relations
425
426 # grab all allocations in the master within the CIDR of the block to be deleted
427 my %parents;
428 my %cidrlist;
429##fixme: limit by VRF?
430 my $sth = $dbh->prepare("SELECT cidr,id,parent_id FROM allocations WHERE cidr <<= ? AND master_id = ?");
431 $sth->execute($binfo->{block}, $binfo->{master_id});
432 while (my ($cidr, $cid, $pid) = $sth->fetchrow_array) {
433 $parents{$cid} = $pid;
434 $cidrlist{$cid} = $cidr;
435 }
436
437 # Trace the parent relations up the tree until we either hit parent ID 0 (we've found a master block
438 # but not the parent we're looking for - arguably this is already an error) or the parent ID matches
439 # the passed ID. If the latter, push the whole set into a second flag hash, so we can terminate
440 # further tree-tracing early.
441 my %found;
442 foreach my $cid (keys %parents) {
443 my @tmp;
444 if ($cid == $id) {
445 # "child" is the ID we've been asked to cascade-delete.
446 $found{$cid}++;
447 } elsif ($found{$cid}) {
448 # ID already seen and the chain terminates in our parent.
449 } elsif ($parents{$cid} == $id) {
450 # Immediate parent is the target parent
451 $found{$cid}++;
452 } else {
453 # Immediate parent isn't the one we're looking for. Walk the chain up until we hit our parent,
454 # the nonexistent parent id 0, or undefined (ID is not a child of the target ID at all)
455 # There are probably better ways to structure this loop.
456 while (1) {
457 # cache the ID
458 push @tmp, $cid;
459 # some very particularly defined loop ending conditions
460 if (!defined($parents{$cid}) || $parents{$cid} == $id || $parents{$cid} == 0) {
461 last;
462 } else {
463 # if we haven't found either the desired parent or another limiting condition,
464 # reset the ID to the parent next up the tree
465 $cid = $parents{$cid};
466 }
467 }
468 # if the current chain of relations ended with our target parent, shuffle the cached IDs into a flag hash
469 if (defined($parents{$cid}) && $parents{$cid} == $id) {
470 foreach (@tmp) { $found{$_}++; }
471 }
472 } # else
473 } # foreach my $cid
474
475 # Use the keys in the flag hash to determine which allocations to actually delete.
476 # Delete matching freeblocks and pool IPs; their parents are going away so we want
477 # to make sure we don't leave orphaned records lying around loose.
478 my @dellist = keys %found;
479 push @dellist, $id; # Just In Case the target ID didn't make the list earlier.
480 my $b = '?'. (',?' x $#dellist);
481 $dbh->do("DELETE FROM allocations WHERE id IN ($b)", undef, (@dellist) );
482 $dbh->do("DELETE FROM freeblocks WHERE parent_id IN ($b)", undef, (@dellist) );
483 $dbh->do("DELETE FROM poolips WHERE parent_id IN ($b)", undef, (@dellist) );
484
485 # Insert a new free block if needed
486 if ($createfb) {
487 my $pinfo = getBlockData($dbh, $createfb);
488 my $pt = (split //, $pinfo->{type})[1];
489 $dbh->do("INSERT INTO freeblocks (cidr,city,routed,parent_id,vrf,master_id) VALUES (?,?,?,?,?,?)", undef,
490 $binfo->{block}, $pinfo->{city}, $pt, $createfb, $pinfo->{vrf}, $binfo->{master_id});
491 }
492
493##todo: and hey! bonus! we can return @dellist, or something (%cidrlist{@dellist})
494
495} # end _deleteCascade()
496
497
498## IPDB::_getChildren()
499# Recursive sub to retrieve a flat list of suballocations
500# Takes the root parent ID, master ID, reference to push results into, and the CIDR
501# range to restrict results to
502sub _getChildren {
503 my $dbh = shift;
504 my $id = shift;
505 my $master = shift;
506 my $retlist = shift; # better than trying to return complex structures recursively. Ow.
507 my $cidr = shift;
508
509 if (!$cidr) {
510 my $bd = getBlockData($dbh, $id);
511 $cidr = $bd->{cidr};
512 }
513
514 my $sth = $dbh->prepare(q(
515 SELECT id,cidr,type FROM allocations
516 WHERE parent_id = ? AND master_id = ? AND cidr <<= ?
517 ) );
518 $sth->execute($id, $master, $cidr);
519 while (my $row = $sth->fetchrow_hashref) {
520 push @$retlist, $row;
521 _getChildren($dbh, $row->{id}, $master, $retlist, $cidr);
522 }
523} # end _getChildren()
524
525
526##
527## Public subs
528##
529
530
531## IPDB::initIPDBGlobals()
532# Initialize all globals. Takes a database handle, returns a success or error code
533sub initIPDBGlobals {
534 my $dbh = $_[0];
535 my $sth;
536
537 # Initialize alloctypes hashes
538 $sth = $dbh->prepare("select type,listname,dispname,listorder,def_custid from alloctypes order by listorder");
539 $sth->execute;
540 while (my @data = $sth->fetchrow_array) {
541 $disp_alloctypes{$data[0]} = $data[2];
542 $def_custids{$data[0]} = $data[4];
543 if ($data[3] < 900) {
544 $list_alloctypes{$data[0]} = $data[1];
545 }
546 }
547
548 # City and POP listings
549 $sth = $dbh->prepare("select city,routing from cities order by city");
550 $sth->execute;
551 return (undef,$sth->errstr) if $sth->err;
552 while (my @data = $sth->fetchrow_array) {
553 push @citylist, $data[0];
554 if ($data[1] eq 'y') {
555 push @poplist, $data[0];
556 }
557 }
558
559 # Load ACL data. Specific username checks are done at a different level.
560 $sth = $dbh->prepare("select username,acl from users");
561 $sth->execute;
562 return (undef,$sth->errstr) if $sth->err;
563 while (my @data = $sth->fetchrow_array) {
564 $IPDBacl{$data[0]} = $data[1];
565 }
566
567##fixme: initialize HTML::Template env var for template path
568# something like $self->path().'/templates' ?
569# $ENV{HTML_TEMPLATE_ROOT} = 'foo/bar';
570
571 # fix up DNSAdmin remote link based on RPC URL
572 if ($rpc_url) {
573 ($dnsadmin_url = $rpc_url) =~ s{/dns-rpc\.f?cgi}{};
574 }
575
576 return (1,"OK");
577} # end initIPDBGlobals
578
579
580## IPDB::connectDB()
581# Creates connection to IPDB.
582# Requires the database name, username, and password.
583# Returns a handle to the db.
584# Set up for a PostgreSQL db; could be any transactional DBMS with the
585# right changes.
586sub connectDB {
587 my $dbname = shift;
588 my $user = shift;
589 my $pass = shift;
590 my $dbhost = shift;
591
592 my $dbh;
593 my $DSN = "DBI:Pg:".($dbhost ? "host=$dbhost;" : '')."dbname=$dbname";
594
595# Note that we want to autocommit by default, and we will turn it off locally as necessary.
596# We may not want to print gobbledygook errors; YMMV. Have to ponder that further.
597 $dbh = DBI->connect($DSN, $user, $pass, {
598 AutoCommit => 1,
599 PrintError => 0
600 })
601 or return (undef, $DBI::errstr) if(!$dbh);
602
603# Return here if we can't select. Note that this indicates a
604# problem executing the select.
605 my $sth = $dbh->prepare("select type from alloctypes");
606 $sth->execute();
607 return (undef,$DBI::errstr) if ($sth->err);
608
609# See if the select returned anything (or null data). This should
610# succeed if the select executed, but...
611 $sth->fetchrow();
612 return (undef,$DBI::errstr) if ($sth->err);
613
614# If we get here, we should be OK.
615 return ($dbh,"DB connection OK");
616} # end connectDB
617
618
619## IPDB::finish()
620# Cleans up after database handles and so on.
621# Requires a database handle
622sub finish {
623 my $dbh = $_[0];
624 $dbh->disconnect if $dbh;
625} # end finish
626
627
628## IPDB::checkDBSanity()
629# Quick check to see if the db is responding. A full integrity
630# check will have to be a separate tool to walk the IP allocation trees.
631sub checkDBSanity {
632 my ($dbh) = $_[0];
633
634 if (!$dbh) {
635 print "No database handle, or connection has been closed.";
636 return -1;
637 } else {
638 # it connects, try a stmt.
639 my $sth = $dbh->prepare("select type from alloctypes");
640 my $err = $sth->execute();
641
642 if ($sth->fetchrow()) {
643 # all is well.
644 return 1;
645 } else {
646 print "Connected to the database, but could not execute test statement. ".$sth->errstr();
647 return -1;
648 }
649 }
650 # Clean up after ourselves.
651# $dbh->disconnect;
652} # end checkDBSanity
653
654
655## IPDB::addVRF()
656#
657sub addVRF {
658 my $dbh = shift;
659 my $newvrf = shift;
660 my %args = @_;
661
662 $args{comment} = '' if !$args{comment};
663 $args{location} = '' if !$args{location};
664
665 # Allow transactions, and raise an exception on errors so we can catch it later.
666 # Use local to make sure these get "reset" properly on exiting this block
667 local $dbh->{AutoCommit} = 0;
668 local $dbh->{RaiseError} = 1;
669
670 eval {
671 # Check if the VRF exists. Arguably should check for "looks similar", but that gets ugly fast.
672 my $vrfex = $dbh->selectrow_array("SELECT vrf FROM vrfs WHERE vrf=?", undef, $newvrf);
673 die "VRF already exists!\n" if $vrfex;
674
675 # Nothing there yet, so we can insert the new VRF
676 $dbh->do("INSERT INTO vrfs (vrf,comment,location) VALUES (?,?,?)", undef,
677 $newvrf, $args{comment}, $args{location});
678
679 $dbh->commit;
680 };
681 if ($@) {
682 my $msg = $@;
683 eval { $dbh->rollback; };
684 return ('FAIL',$msg);
685 }
686 return ('OK',$newvrf);
687} # end addVRF()
688
689
690## IPDB::getVRF()
691# Retrieve additional fields from DB for a VRF
692sub getVRF {
693 my $dbh = shift;
694 my $vrf = shift;
695
696 return $dbh->selectrow_hashref("SELECT comment,location FROM vrfs WHERE vrf = ?", {Slice=>{}}, $vrf);
697} # end getVRF()
698
699
700## IPDB::deleteVRF()
701#
702sub deleteVRF {
703 my $dbh = shift;
704 my $vrf = shift;
705
706 # Allow transactions, and raise an exception on errors so we can catch it later.
707 # Use local to make sure these get "reset" properly on exiting this block
708 local $dbh->{AutoCommit} = 0;
709 local $dbh->{RaiseError} = 1;
710
711 eval {
712 $dbh->do("DELETE FROM vrfs WHERE vrf = ?", undef, $vrf);
713 $dbh->commit;
714 };
715 if ($@) {
716 my $msg = $@; # not much complexity here just yet.
717 return ('FAIL',$msg);
718 }
719
720 return ('OK','OK');
721} # end deleteVRF()
722
723
724## IPDB::addMaster()
725# Does all the magic necessary to sucessfully add a master block
726# Requires database handle, block to add
727# Returns failure code and error message or success code and "message"
728sub addMaster {
729 my $dbh = shift;
730 # warning! during testing, this somehow generated a "Bad file descriptor" error. O_o
731 my $cidr = new NetAddr::IP shift;
732 my %args = @_;
733
734 $args{vrf} = '' if !$args{vrf};
735 $args{rdns} = '' if !$args{rdns};
736 $args{defloc} = '' if !$args{defloc};
737 $args{rwhois} = 'n' if !$args{rwhois}; # fail "safe", sort of.
738 $args{rwhois} = 'n' if $args{rwhois} ne 'n' and $args{rwhois} ne 'y';
739
740 my $mid;
741
742 # Allow transactions, and raise an exception on errors so we can catch it later.
743 # Use local to make sure these get "reset" properly on exiting this block
744 local $dbh->{AutoCommit} = 0;
745 local $dbh->{RaiseError} = 1;
746
747 # Wrap all the SQL in a transaction
748 eval {
749 # First check - does the master exist? Ignore VRFs until we can see a sane UI
750 my ($mcontained) = $dbh->selectrow_array("SELECT cidr FROM allocations WHERE cidr >>= ? AND type = 'mm' AND vrf = ?",
751 undef, ($cidr, $args{vrf}) );
752 die "Master block $mcontained already exists and entirely contains $cidr\n"
753 if $mcontained;
754
755 # Second check - does the new master contain an existing one or ones?
756 my ($mexist) = $dbh->selectrow_array("SELECT cidr FROM allocations WHERE cidr <<= ? AND type = 'mm' AND vrf = ?",
757 undef, ($cidr, $args{vrf}) );
758
759 if (!$mexist) {
760 # First case - master is brand-spanking-new.
761##fixme: rwhois should be globally-flagable somewhere, much like a number of other things
762## maybe a db table called "config"?
763 $dbh->do("INSERT INTO allocations (cidr,type,swip,vrf,rdns) VALUES (?,?,?,?,?)", undef,
764 ($cidr, 'mm', 'y', $args{vrf}, $args{rdns}) );
765 ($mid) = $dbh->selectrow_array("SELECT currval('allocations_id_seq')");
766
767# Unrouted blocks aren't associated with a city (yet). We don't rely on this
768# elsewhere though; legacy data may have traps and pitfalls in it to break this.
769# Thus the "routed" flag.
770 $dbh->do("INSERT INTO freeblocks (cidr,city,routed,parent_id,vrf,master_id) VALUES (?,?,?,?,?,?)", undef,
771 ($cidr, '<NULL>', 'm', $mid, $args{vrf}, $mid) );
772
773 # master should be its own master, so deletes directly at the master level work
774 $dbh->do("UPDATE allocations SET master_id = ? WHERE id = ?", undef, ($mid, $mid) );
775
776 # If we get here, everything is happy. Commit changes.
777 $dbh->commit;
778
779 } # done new master does not contain existing master(s)
780 else {
781
782 # collect the master(s) we're going to absorb, and snag the longest netmask while we're at it.
783 my $smallmask = $cidr->masklen;
784 my $sth = $dbh->prepare("SELECT cidr,id FROM allocations WHERE cidr <<= ? AND type='mm' AND parent_id=0");
785 $sth->execute($cidr);
786 my @cmasters;
787 my @oldmids;
788 while (my @data = $sth->fetchrow_array) {
789 my $master = new NetAddr::IP $data[0];
790 push @cmasters, $master;
791 push @oldmids, $data[1];
792 $smallmask = $master->masklen if $master->masklen > $smallmask;
793 }
794
795 # split the new master, and keep only those blocks not part of an existing master
796 my @blocklist;
797 foreach my $seg ($cidr->split($smallmask)) {
798 my $contained = 0;
799 foreach my $master (@cmasters) {
800 $contained = 1 if $master->contains($seg);
801 }
802 push @blocklist, $seg if !$contained;
803 }
804
805##fixme: master_id
806 # collect the unrouted free blocks within the new master
807 $sth = $dbh->prepare("SELECT cidr FROM freeblocks WHERE masklen(cidr) <= ? AND cidr <<= ? AND routed = 'm'");
808 $sth->execute($smallmask, $cidr);
809 while (my @data = $sth->fetchrow_array) {
810 my $freeblock = new NetAddr::IP $data[0];
811 push @blocklist, $freeblock;
812 }
813
814 # combine the set of free blocks we should have now.
815 @blocklist = Compact(@blocklist);
816
817 # master
818 $dbh->do("INSERT INTO allocations (cidr,type,swip,vrf,rdns) VALUES (?,?,?,?,?)", undef,
819 ($cidr, 'mm', 'y', $args{vrf}, $args{rdns}) );
820 ($mid) = $dbh->selectrow_array("SELECT currval('allocations_id_seq')");
821
822 # master should be its own master, so deletes directly at the master level work
823 $dbh->do("UPDATE allocations SET master_id = ? WHERE id = ?", undef, ($mid, $mid) );
824
825 # and now insert the new data. Make sure to delete old masters too.
826
827 # freeblocks
828 $sth = $dbh->prepare("DELETE FROM freeblocks WHERE cidr <<= ? AND parent_id IN (".join(',', @oldmids).")");
829 my $sth2 = $dbh->prepare("INSERT INTO freeblocks (cidr,city,routed,parent_id,vrf,master_id)".
830 " VALUES (?,'<NULL>','m',?,?,?)");
831 foreach my $newblock (@blocklist) {
832 $sth->execute($newblock);
833 $sth2->execute($newblock, $mid, $args{vrf}, $mid);
834 }
835
836 # Update immediate allocations, and remove the old parents
837 $sth = $dbh->prepare("UPDATE allocations SET parent_id = ? WHERE parent_id = ?");
838 $sth2 = $dbh->prepare("DELETE FROM allocations WHERE id = ?");
839 foreach my $old (@oldmids) {
840 $sth->execute($mid, $old);
841 $sth2->execute($old);
842 }
843
844 # *whew* If we got here, we likely suceeded.
845 $dbh->commit;
846
847 } # new master contained existing master(s)
848 }; # end eval
849
850 if ($@) {
851 my $msg = $@;
852 eval { $dbh->rollback; };
853 return ('FAIL',$msg);
854 } else {
855
856 # Only attempt rDNS if the IPDB side succeeded
857 if ($rpc_url) {
858
859# Note *not* splitting reverse zones negates any benefit from caching the exported data.
860# IPv6 address space is far too large to split usefully, and in any case (also due to
861# the large address space) doesn't support the iterated template records v4 zones do
862# that causes the bulk of the slowdown that needs the cache anyway.
863
864 my @zonelist;
865# allow splitting reverse zones to be disabled, maybe, someday
866#if ($splitrevzones && !$cidr->{isv6}) {
867 if (1 && !$cidr->{isv6}) {
868 my $splitpoint = ($cidr->masklen <= 16 ? 16 : 24); # hack pthui
869 @zonelist = $cidr->split($splitpoint);
870 } else {
871 @zonelist = ($cidr);
872 }
873 my @fails;
874 ##fixme: remove hardcoding where possible
875 my $dasth = $dbh->prepare("INSERT INTO dnsavail (zone,location,parent_alloc) VALUES (?,?,?)");
876 foreach my $subzone (@zonelist) {
877 my %rpcargs = (
878 rpcuser => $args{user},
879 revzone => "$subzone",
880 revpatt => $args{rdns},
881 defloc => $args{defloc},
882 group => $revgroup, # not sure how these two could sanely be exposed, tbh...
883 state => 1, # could make them globally configurable maybe
884 );
885 if ($rpc_url) {
886 if (!_rpc('addRDNS', %rpcargs)) {
887 push @fails, ("$subzone" => $errstr);
888 } else {
889 $dasth->execute($subzone, $args{defloc}, $mid)
890 or push @fails, ("$subzone" => "rDNS added but failed to track locally: ".$dasth->errstr."\n");
891 }
892 }
893 }
894 if (@fails) {
895 $errstr = "Warning(s) adding $cidr to reverse DNS:\n".join("\n", @fails);
896 return ('WARN',$mid);
897 }
898 }
899 return ('OK',$mid);
900 }
901} # end addMaster
902
903
904## IPDB::touchMaster()
905# Update last-changed timestamp on a master block.
906sub touchMaster {
907 my $dbh = shift;
908 my $master = shift;
909
910 local $dbh->{AutoCommit} = 0;
911 local $dbh->{RaiseError} = 1;
912
913 eval {
914 $dbh->do("UPDATE allocations SET modifystamp=now() WHERE id = ?", undef, ($master));
915 $dbh->commit;
916 };
917
918 if ($@) {
919 my $msg = $@;
920 eval { $dbh->rollback; };
921 return ('FAIL',$msg);
922 }
923 return ('OK','OK');
924} # end touchMaster()
925
926
927## IPDB::listVRF()
928# Get summary list of all VRFs
929# Returns an arrayref to a list of hashrefs with the VRF name, comment
930sub listVRF {
931 my $dbh = shift;
932 my $vrflist = $dbh->selectall_arrayref("SELECT vrf,comment FROM vrfs ORDER BY vrf", { Slice => {} });
933 return $vrflist;
934} # end listVRF()
935
936
937## IPDB::listSummary()
938# Get summary list of all master blocks
939# Returns an arrayref to a list of hashrefs containing the master block, routed count,
940# allocated count, free count, and largest free block masklength
941sub listSummary {
942 my $dbh = shift;
943 my $vrf = shift;
944
945 my $mlist = $dbh->selectall_arrayref("SELECT cidr AS master,id FROM allocations ".
946 "WHERE type='mm' AND vrf = ? ORDER BY cidr",
947 { Slice => {} }, $vrf);
948
949 foreach (@{$mlist}) {
950 my ($rcnt) = $dbh->selectrow_array("SELECT count(*) FROM allocations WHERE cidr <<= ? AND type='rm' AND master_id = ?",
951 undef, ($$_{master}, $$_{id}));
952 $$_{routed} = $rcnt;
953 my ($acnt) = $dbh->selectrow_array("SELECT count(*) FROM allocations WHERE cidr <<= ? ".
954 "AND NOT type='rm' AND NOT type='mm' AND master_id = ?",
955 undef, ($$_{master}, $$_{id}));
956 $$_{allocated} = $acnt;
957 my ($fcnt) = $dbh->selectrow_array("SELECT count(*) FROM freeblocks WHERE cidr <<= ? AND master_id = ?",
958 undef, ($$_{master}, $$_{id}));
959 $$_{free} = $fcnt;
960 my ($bigfree) = $dbh->selectrow_array("SELECT masklen(cidr) AS maskbits FROM freeblocks WHERE cidr <<= ?".
961 " AND master_id = ? ORDER BY masklen(cidr) LIMIT 1", undef, ($$_{master}, $$_{id}));
962##fixme: should find a way to do this without having to HTMLize the <>
963 $bigfree = "/$bigfree" if $bigfree;
964 $bigfree = '<NONE>' if !$bigfree;
965 $$_{bigfree} = $bigfree;
966 }
967 return $mlist;
968} # end listSummary()
969
970
971## IPDB::listSubs()
972# Get list of subnets within a specified CIDR block, on a specified VRF.
973# Returns an arrayref to a list of hashrefs containing the CIDR block, customer location or
974# city it's routed to, block type, SWIP status, and description
975sub listSubs {
976 my $dbh = shift;
977 my %args = @_;
978
979 # Just In Case
980 $args{vrf} = '' if !$args{vrf};
981
982 # Snag the allocations for this block
983 my $sth = $dbh->prepare("SELECT cidr,city,type,custid,swip,description,vrf,id,master_id".
984 " FROM allocations WHERE parent_id = ? ORDER BY cidr");
985 $sth->execute($args{parent});
986
987 # hack hack hack
988 # set up to flag swip=y records if they don't actually have supporting data in the customers table
989 my $custsth = $dbh->prepare("SELECT count(*) FROM customers WHERE custid = ?");
990
991 # snag some more details
992 my $substh = $dbh->prepare("SELECT count(*) FROM allocations WHERE cidr <<= ? ".
993 "AND type ~ '[mc]\$' AND master_id = ? AND NOT cidr = ? ");
994 my $alsth = $dbh->prepare("SELECT count(*) FROM allocations WHERE cidr <<= ? ".
995 "AND NOT type='rm' AND NOT type='mm' AND master_id = ? AND NOT id = ?");
996 my $freesth = $dbh->prepare("SELECT count(*) FROM freeblocks WHERE cidr <<= ? AND master_id = ?");
997 my $lfreesth = $dbh->prepare("SELECT masklen(cidr) AS maskbits FROM freeblocks WHERE cidr <<= ?".
998 " AND master_id = ? ORDER BY masklen(cidr) LIMIT 1");
999
1000 my @blocklist;
1001 while (my ($cidr,$city,$type,$custid,$swip,$desc,$vrf,$id,$mid) = $sth->fetchrow_array()) {
1002 $desc .= " - vrf:$vrf" if $desc && $vrf;
1003 $desc = "vrf:$vrf" if !$desc && $vrf;
1004 $custsth->execute($custid);
1005 my ($ncust) = $custsth->fetchrow_array();
1006 $substh->execute($cidr, $mid, $cidr);
1007 my ($cont) = $substh->fetchrow_array();
1008 $alsth->execute($cidr, $mid, $id);
1009 my ($alloc) = $alsth->fetchrow_array();
1010 $freesth->execute($cidr, $mid);
1011 my ($free) = $freesth->fetchrow_array();
1012 $lfreesth->execute($cidr, $mid);
1013 my ($lfree) = $lfreesth->fetchrow_array();
1014 $lfree = "/$lfree" if $lfree;
1015 $lfree = '<NONE>' if !$lfree;
1016 my %row = (
1017 block => $cidr,
1018 subfree => $free,
1019 lfree => $lfree,
1020 city => $city,
1021 type => $disp_alloctypes{$type},
1022 custid => $custid,
1023 desc => $desc,
1024 hassubs => ($type eq 'rm' || $type =~ /.c/ ? 1 : 0),
1025 id => $id,
1026 );
1027# $row{subblock} = ($type =~ /^.r$/); # hmf. wonder why these won't work in the hash declaration...
1028 $row{listpool} = ($type =~ /^.[pd]$/);
1029 push (@blocklist, \%row);
1030 }
1031 return \@blocklist;
1032} # end listSubs()
1033
1034
1035## IPDB::listContainers()
1036# List all container-type allocations in a given parent
1037# Takes a database handle and a hash:
1038# - parent is the ID of the parent block
1039# Returns an arrayref to a list of hashrefs with the CIDR block, location, type,
1040# description, block ID, and counts for the nmber uf suballocations (all types),
1041# free blocks, and the CIDR size of the largest free block
1042sub listContainers {
1043 my $dbh = shift;
1044 my %args = @_;
1045
1046 # Just In Case
1047 $args{vrf} = '' if !$args{vrf};
1048
1049 # Snag the allocations for this block
1050 my $sth = $dbh->prepare("SELECT cidr,city,type,custid,swip,description,vrf,id,master_id".
1051 " FROM allocations WHERE parent_id = ? AND type ~ '[mc]\$' ORDER BY cidr");
1052 $sth->execute($args{parent});
1053
1054 my $alsth = $dbh->prepare("SELECT count(*) FROM allocations WHERE cidr <<= ? ".
1055 "AND NOT type='rm' AND NOT type='mm' AND master_id = ? AND NOT id = ?");
1056 my $freesth = $dbh->prepare("SELECT count(*) FROM freeblocks WHERE cidr <<= ? AND master_id = ?");
1057 my $lfreesth = $dbh->prepare("SELECT masklen(cidr) AS maskbits FROM freeblocks WHERE cidr <<= ?".
1058 " AND master_id = ? ORDER BY masklen(cidr) LIMIT 1");
1059
1060 my @blocklist;
1061 while (my ($cidr,$city,$type,$custid,$swip,$desc,$vrf,$id,$mid) = $sth->fetchrow_array()) {
1062 $desc .= " - vrf:$vrf" if $desc && $vrf;
1063 $desc = "vrf:$vrf" if !$desc && $vrf;
1064 $alsth->execute($cidr, $mid, $id);
1065 my ($alloc) = $alsth->fetchrow_array();
1066 $freesth->execute($cidr, $mid);
1067 my ($free) = $freesth->fetchrow_array();
1068 $lfreesth->execute($cidr, $mid);
1069 my ($lfree) = $lfreesth->fetchrow_array();
1070 $lfree = "/$lfree" if $lfree;
1071 $lfree = '<NONE>' if !$lfree;
1072 my %row = (
1073 block => $cidr,
1074 suballocs => $alloc,
1075 subfree => $free,
1076 lfree => $lfree,
1077 city => $city,
1078 type => $disp_alloctypes{$type},
1079 desc => $desc,
1080 id => $id,
1081 );
1082 push (@blocklist, \%row);
1083 }
1084 return \@blocklist;
1085} # end listContainers()
1086
1087
1088## IPDB::listAllocations()
1089# List all end-use allocations in a given parent
1090# Takes a database handle and a hash:
1091# - parent is the ID of the parent block
1092# Returns an arrayref to a list of hashrefs with the CIDR block, location, type,
1093# custID, SWIP flag, description, block ID, and master ID
1094sub listAllocations {
1095 my $dbh = shift;
1096 my %args = @_;
1097
1098 # Snag the allocations for this block
1099 my $sth = $dbh->prepare("SELECT cidr,city,type,custid,swip,description,vrf,id,master_id".
1100 " FROM allocations WHERE parent_id = ? AND type !~ '[mc]\$' ORDER BY cidr");
1101 $sth->execute($args{parent});
1102
1103 # hack hack hack
1104 # set up to flag swip=y records if they don't actually have supporting data in the customers table
1105 my $custsth = $dbh->prepare("SELECT count(*) FROM customers WHERE custid = ?");
1106
1107 my @blocklist;
1108 while (my ($cidr,$city,$type,$custid,$swip,$desc,$vrf,$id,$mid) = $sth->fetchrow_array()) {
1109 $desc .= " - vrf:$vrf" if $desc && $vrf;
1110 $desc = "vrf:$vrf" if !$desc && $vrf;
1111 $custsth->execute($custid);
1112 my ($ncust) = $custsth->fetchrow_array();
1113 my %row = (
1114 block => $cidr,
1115 city => $city,
1116 type => $disp_alloctypes{$type},
1117 custid => $custid,
1118 swip => ($swip eq 'y' ? 'Yes' : 'No'),
1119 partswip => ($swip eq 'y' && $ncust == 0 ? 1 : 0),
1120 desc => $desc,
1121 id => $id,
1122 );
1123# $row{subblock} = ($type =~ /^.r$/); # hmf. wonder why these won't work in the hash declaration...
1124 $row{listpool} = ($type =~ /^.[pd]$/);
1125 push (@blocklist, \%row);
1126 }
1127 return \@blocklist;
1128} # end listAllocations()
1129
1130
1131## IPDB::listForMerge()
1132# Get a list of blocks targetted in a proposed merge
1133sub listForMerge {
1134 my $dbh = shift;
1135 my $parent = shift;
1136 my $newblock = shift;
1137 my $btype = shift || 'a';
1138 $btype = 'a' if $btype !~/^[af]$/;
1139 my $incsub = shift;
1140 $incsub = 1 if !defined($incsub);
1141
1142 my $sql;
1143 if ($btype eq 'a') {
1144 my $ret = $dbh->selectall_arrayref(q(
1145 SELECT a.cidr,a.id,t.dispname FROM allocations a
1146 JOIN alloctypes t ON a.type=t.type
1147 WHERE a.parent_id = ? AND a.cidr <<= ?
1148 ORDER BY a.cidr
1149 ),
1150 { Slice => {} }, $parent, $newblock);
1151 return $ret;
1152 } else {
1153##fixme: Not sure about the casting hackery in "SELECT ?::integer AS id", but it works as intended
1154 my @dbargs = ($parent, "$newblock");
1155 push @dbargs, $parent, $newblock if $incsub;
1156 my $ret = $dbh->selectall_arrayref(q{
1157 SELECT cidr,id FROM freeblocks
1158 WHERE parent_id IN (
1159 }.($incsub ? "SELECT id FROM allocations WHERE parent_id = ? AND cidr <<= ? UNION " : '').q{
1160 SELECT ?::integer AS id
1161 ) AND cidr <<= ?
1162 ORDER BY cidr
1163 },
1164 { Slice => {} }, @dbargs);
1165 return $ret;
1166 }
1167 return;
1168} # end listForMerge()
1169
1170
1171## IPDB::listFree()
1172# Gets a list of free blocks in the requested parent/master and VRF instance in both CIDR and range notation
1173# Takes a parent/master ID and an optional VRF specifier that defaults to empty.
1174# Returns an arrayref to a list of hashrefs containing the CIDR and range-notation blocks
1175# Returns some extra flags in the hashrefs for routed blocks, since those can have several subtypes
1176sub listFree {
1177 my $dbh = shift;
1178
1179 my %args = @_;
1180 # Just In Case
1181 $args{vrf} = '' if !$args{vrf};
1182
1183 my $sth = $dbh->prepare(q(
1184 SELECT f.cidr,f.id,allocations.cidr
1185 FROM freeblocks f
1186 LEFT JOIN allocations ON f.reserve_for = allocations.id
1187 WHERE f.parent_id = ?
1188 ORDER BY f.cidr
1189 ) );
1190# $sth->execute($args{parent}, $args{vrf});
1191 $sth->execute($args{parent});
1192 my @flist;
1193 while (my ($cidr,$id,$resv) = $sth->fetchrow_array()) {
1194 $cidr = new NetAddr::IP $cidr;
1195 my %row = (
1196 fblock => "$cidr",
1197 frange => $cidr->range,
1198 fbid => $id,
1199 fbparent => $args{parent},
1200 resv => $resv,
1201 );
1202 push @flist, \%row;
1203 }
1204 return \@flist;
1205} # end listFree()
1206
1207
1208## IPDB::listPool()
1209# List the IPs in an IP pool.
1210# Takes a pool/parent ID
1211# Returns an arrayref to a list of hashrefs containing the IP, customer ID, availability flag,
1212# description, backreference to the pool/parent, and the IP ID in the pool.
1213# Also includes a "may be deleted" metaflag mainly useful for allowing the return to be passed
1214# directly to HTML::Template for UI display.
1215sub listPool {
1216 my $dbh = shift;
1217 my $pool = shift;
1218 my $incdesc = shift;
1219 $incdesc = 1 if !defined($incdesc); # extra flag to include description and "deleteme" flag
1220
1221 my $sth = $dbh->prepare("SELECT ip,custid,available,description,type,id".
1222 " FROM poolips WHERE parent_id = ? ORDER BY ip");
1223 $sth->execute($pool);
1224 my @poolips;
1225 while (my ($ip,$custid,$available,$desc,$type,$id) = $sth->fetchrow_array) {
1226 my %row = (
1227 ip => $ip,
1228 custid => $custid,
1229 available => $available,
1230 parent => $pool,
1231 id => $id,
1232 );
1233 if ($incdesc) {
1234 $row{desc} = $desc;
1235 $row{delme} = ($available eq 'n');
1236 }
1237 push @poolips, \%row;
1238 }
1239 return \@poolips;
1240} # end listPool()
1241
1242
1243## IPDB::getMasterList()
1244# Get a list of master blocks, optionally including last-modified timestamps
1245# Takes an optional flag to indicate whether to include timestamps;
1246# 'm' includes ctime, all others (suggest 'c') do not.
1247# Returns an arrayref to a list of hashrefs
1248sub getMasterList {
1249 my $dbh = shift;
1250 my $stampme = shift || 'm'; # optional but should be set by caller for clarity
1251
1252 my $mlist = $dbh->selectall_arrayref("SELECT id,vrf,cidr AS master".($stampme eq 'm' ? ',modifystamp AS mtime' : '').
1253 " FROM allocations WHERE type='mm' ORDER BY cidr", { Slice => {} });
1254 return $mlist;
1255} # end getMasterList()
1256
1257
1258## IPDB::getTypeList()
1259# Get an alloctype/description pair list suitable for dropdowns
1260# Takes a flag to determine which general groups of types are returned
1261# Returns an reference to an array of hashrefs
1262sub getTypeList {
1263 my $dbh = shift;
1264 my $tgroup = shift || 'a'; # technically optional, like this, but should
1265 # really be specified in the call for clarity
1266 my $seltype = shift || '';
1267
1268 my $sql = "SELECT type,listname,type=? AS sel FROM alloctypes WHERE listorder <= 500";
1269 if ($tgroup eq 'n') {
1270 # grouping 'n' - all netblock types. These include routed blocks, containers (_c)
1271 # and contained (_r) types, dynamic-allocation ranges (_e), static IP pools (_d and _p),
1272 # and the "miscellaneous" cn, in, and en types.
1273 # Or in other words, everything but master and static IP types.
1274 $sql .= " AND type NOT LIKE '_i'";
1275 } elsif ($tgroup eq 'p') {
1276 # grouping 'p' - primary allocation types. As with 'n' above but without the _r contained types.
1277 $sql .= " AND type NOT LIKE '_i' AND type NOT LIKE '_r'";
1278 } elsif ($tgroup eq 'c') {
1279 # grouping 'c' - contained types. These include all static IPs and all _r types.
1280 $sql .= " AND (type LIKE '_i' OR type LIKE '_r')";
1281 } elsif ($tgroup eq 'i') {
1282 # grouping 'i' - static IP types.
1283 $sql .= " AND type LIKE '_i'";
1284 } else {
1285 # grouping 'a' - all standard allocation types. This includes everything
1286 # but mm (present only as a formality). Make this the default.
1287 # ... whee! no extra WHERE clauses
1288 }
1289 $sql .= " ORDER BY listorder";
1290 my $tlist = $dbh->selectall_arrayref($sql, { Slice => {} }, $seltype);
1291 return $tlist;
1292}
1293
1294
1295## IPDB::getPoolSelect()
1296# Get a list of pools matching the passed city and type that have 1 or more free IPs
1297# Returns an arrayref to a list of hashrefs containing the number of available IPs, the CIDR pool,
1298# and the city it's nominally in.
1299sub getPoolSelect {
1300 my $dbh = shift;
1301 my $iptype = shift;
1302 my $pcity = shift;
1303
1304 my ($ptype) = ($iptype =~ /^(.)i$/);
1305 return if !$ptype;
1306 $ptype .= '_';
1307
1308 my $plist = $dbh->selectall_arrayref( q(
1309 SELECT a.id as poolid,count(*) AS poolfree,a.cidr AS poolblock, a.city AS poolcit
1310 FROM poolips p
1311 JOIN allocations a ON p.parent_id=a.id
1312 WHERE p.available='y' AND a.city = ? AND p.type LIKE ?
1313 GROUP BY a.id,a.cidr,a.city
1314 ORDER BY a.cidr
1315 ),
1316 { Slice => {} }, ($pcity, $ptype) );
1317 return $plist;
1318} # end getPoolSelect()
1319
1320
1321## IPDB::findAllocateFrom()
1322# Find free block to add a new allocation from. (CIDR block version of pool select above, more or less)
1323# Takes
1324# - mask length
1325# - allocation type
1326# - POP city "parent"
1327# - optional master-block restriction
1328# - optional flag to allow automatic pick-from-private-network-ranges
1329# Returns a 3-element list with the free block ID, CIDR, and parent ID matching the criteria, if any
1330sub findAllocateFrom {
1331 my $dbh = shift;
1332 my $maskbits = shift;
1333 my $type = shift;
1334 my $city = shift;
1335 my $pop = shift;
1336 my %optargs = @_;
1337
1338 my $failmsg = "No suitable free block found\n";
1339
1340 my @vallist;
1341 my $sql;
1342
1343 # Free pool IPs should be easy.
1344 if ($type =~ /^.i$/) {
1345 # User may get an IP from the wrong VRF. User should not be using admin tools to allocate static IPs.
1346 $sql = "SELECT id, ip, parent_id FROM poolips WHERE ip = ?";
1347 @vallist = ($optargs{gimme});
1348 } else {
1349
1350## Set up the SQL to find out what freeblock we can (probably) use for an allocation.
1351## Very large systems will require development of a reserve system (possibly an extension
1352## of the reserve-for-expansion concept in https://secure.deepnet.cx/trac/ipdb/ticket/24?)
1353## Also populate a value list for the DBI call.
1354
1355 @vallist = ($maskbits);
1356 $sql = "SELECT id,cidr,parent_id FROM freeblocks WHERE masklen(cidr) <= ?";
1357
1358# cases, strict rules
1359# .c -> container type
1360# requires a routing container, fbtype r
1361# .d -> DHCP/"normal-routing" static pool
1362# requires a routing container, fbtype r
1363# .e -> Dynamic-assignment connectivity
1364# requires a routing container, fbtype r
1365# .i -> error, can't allocate static IPs this way?
1366# mm -> error, master block
1367# rm -> routed block
1368# requires master block, fbtype m
1369# .n -> Miscellaneous usage
1370# requires a routing container, fbtype r
1371# .p -> PPP(oE) static pool
1372# requires a routing container, fbtype r
1373# .r -> contained type
1374# requires a matching container, fbtype $1
1375##fixme: strict-or-not flag
1376
1377##fixme: config or UI flag for "Strict" mode
1378# if ($strictmode) {
1379if (0) {
1380 if ($type =~ /^(.)r$/) {
1381 push @vallist, $1;
1382 $sql .= " AND routed = ?";
1383 } elsif ($type eq 'rm') {
1384 $sql .= " AND routed = 'm'";
1385 } else {
1386 $sql .= " AND routed = 'r'";
1387 }
1388}
1389
1390 # for PPP(oE) and container types, the POP city is the one attached to the pool.
1391 # individual allocations get listed with the customer city site.
1392 ##fixme: chain cities to align roughly with a full layer-2 node graph
1393 $city = $pop if $type !~ /^.[pc]$/;
1394 if ($type ne 'rm' && $city) {
1395 $sql .= " AND city = ?";
1396 push @vallist, $city;
1397 }
1398 # Allow specifying an arbitrary full block, instead of a master
1399 if ($optargs{gimme}) {
1400 $sql .= " AND cidr >>= ?";
1401 push @vallist, $optargs{gimme};
1402 }
1403 # if a specific master was requested, allow the requestor to self->shoot(foot)
1404 if ($optargs{master} && $optargs{master} ne '-') {
1405 $sql .= " AND master_id = ?";
1406# if $optargs{master} ne '-';
1407 push @vallist, $optargs{master};
1408 } else {
1409 # if a specific master was NOT requested, filter out the RFC 1918 private networks
1410 if (!$optargs{allowpriv}) {
1411 $sql .= " AND NOT (cidr <<= '192.168.0.0/16' OR cidr <<= '10.0.0.0/8' OR cidr <<= '172.16.0.0/12')";
1412 }
1413 }
1414 # Keep "reserved" blocks out of automatic assignment.
1415##fixme: needs a UI flag or a config knob
1416 $sql .= " AND reserve_for = 0";
1417 # Sorting and limiting, since we don't (currently) care to provide a selection of
1418 # blocks to carve up. This preserves something resembling optimal usage of the IP
1419 # space by forcing contiguous allocations and free blocks as much as possible.
1420 $sql .= " ORDER BY masklen(cidr) DESC,cidr LIMIT 1";
1421 } # done setting up SQL for free CIDR block
1422
1423 my ($fbid,$fbfound,$fbparent) = $dbh->selectrow_array($sql, undef, @vallist);
1424 return $fbid,$fbfound,$fbparent;
1425} # end findAllocateFrom()
1426
1427
1428## IPDB::ipParent()
1429# Get an IP's parent pool's details
1430# Takes a database handle and IP
1431# Returns a hashref to the parent pool block, if any
1432sub ipParent {
1433 my $dbh = shift;
1434 my $block = shift;
1435
1436 my $pinfo = $dbh->selectrow_hashref("SELECT cidr,custid,type,city,description FROM allocations".
1437 " WHERE cidr >>= ? AND (type LIKE '_p' OR type LIKE '_d')", undef, ($block) );
1438 return $pinfo;
1439} # end ipParent()
1440
1441
1442## IPDB::subParent()
1443# Get a block's parent's details
1444# Takes a database handle and CIDR block
1445# Returns a hashref to the parent container block, if any
1446sub subParent {
1447 my $dbh = shift;
1448 my $block = shift;
1449
1450 my $pinfo = $dbh->selectrow_hashref("SELECT cidr,custid,type,city,description FROM allocations".
1451 " WHERE cidr >>= ?", undef, ($block) );
1452 return $pinfo;
1453} # end subParent()
1454
1455
1456## IPDB::blockParent()
1457# Get a block's parent's details
1458# Takes a database handle and CIDR block
1459# Returns a hashref to the parent container block, if any
1460sub blockParent {
1461 my $dbh = shift;
1462 my $block = shift;
1463
1464 my $pinfo = $dbh->selectrow_hashref("SELECT cidr,city FROM routed".
1465 " WHERE cidr >>= ?", undef, ($block) );
1466 return $pinfo;
1467} # end blockParent()
1468
1469
1470## IPDB::getBreadCrumbs()
1471# Retrieve the ID and CIDR of a block's parent(s) up to the master block
1472# Returns an arrayref to a list of hashrefs with CIDR and block ID
1473sub getBreadCrumbs {
1474 my $dbh = shift;
1475 my $parent = shift || 0;
1476 my $vrf = shift; # if we're not browsing into netblocks yet, caller can pass the VRF for breadcrumbs
1477 my @result;
1478
1479 my $sth = $dbh-> prepare("SELECT cidr,type,id,parent_id,vrf FROM allocations WHERE id=?");
1480
1481 while ($parent != 0) {
1482 $sth->execute($parent);
1483 my ($cidr,$type,$id,$pid,$bvrf) = $sth->fetchrow_array;
1484 $vrf = $bvrf;
1485 push @result, { cidr => $cidr, link => $id, ispool => ($type =~ /^.[dp]$/ ? 1 : 0) };
1486 $parent = $pid;
1487 }
1488
1489 push @result, { cidr => "vrf:$vrf", link => $vrf, isvrf => 1 }
1490 if $vrf;
1491
1492 return \@result;
1493} # end getBreadCrumbs()
1494
1495
1496## IPDB::getRoutedCity()
1497# Get the city for a routed block.
1498sub getRoutedCity {
1499 my $dbh = shift;
1500 my $block = shift;
1501
1502 my ($rcity) = $dbh->selectrow_array("SELECT city FROM routed WHERE cidr = ?", undef, ($block) );
1503 return $rcity;
1504} # end getRoutedCity()
1505
1506
1507## IPDB::allocateBlock()
1508# Does all of the magic of actually allocating a netblock
1509# Requires a database handle, and a hash containing the block to allocate, routing depth, custid,
1510# type, city, block to allocate from, and optionally a description, notes, circuit ID,
1511# and private data
1512# Returns a success code and optional error message.
1513sub allocateBlock {
1514 my $dbh = shift;
1515
1516 my %args = @_;
1517
1518 if ($args{cidr} eq 'Single static IP') {
1519 $args{cidr} = '';
1520 } else {
1521 $args{cidr} = new NetAddr::IP $args{cidr};
1522 }
1523
1524 $args{desc} = $args{description} if $args{description};
1525 $args{desc} = '' if !$args{desc};
1526 $args{notes} = '' if !$args{notes};
1527 $args{circid} = '' if !$args{circid};
1528 $args{privdata} = '' if !$args{privdata};
1529##fixme: VRF should trickle down like master_id
1530 $args{vrf} = '' if !$args{vrf};
1531 $args{vlan} = '' if !$args{vlan};
1532 $args{rdns} = '' if !$args{rdns};
1533
1534 $args{user} = $args{rpcuser} if !$args{user};
1535
1536 # Could arguably allow this for eg /120 allocations, but end users who get a single v4 IP are
1537 # usually given a v6 /64, and most v6 addressing schemes need at least half that address space
1538 if ($args{cidr} && $args{cidr}->{isv6} && $args{rdns} =~ /\%/) {
1539 return ('FAIL','Reverse DNS template patterns are not supported for IPv6 allocations');
1540 }
1541
1542 my $sth;
1543
1544 # Snag the "type" of the freeblock and its CIDR
1545 my ($alloc_from_type, $alloc_from, $fbparent, $fcity, $fbmaster) =
1546 $dbh->selectrow_array("SELECT routed,cidr,parent_id,city,master_id FROM freeblocks WHERE id = ?",
1547 undef, $args{fbid});
1548 $alloc_from = new NetAddr::IP $alloc_from;
1549 return ('FAIL',"Failed to allocate $args{cidr}; intended free block was used by another allocation.")
1550 if ($args{type} !~ /.i/ && !$fbparent);
1551##fixme: fail here if !$alloc_from
1552# also consider "lock for allocation" due to multistep allocation process
1553
1554 # To contain the error message, if any.
1555 my $msg = "Unknown error allocating $args{cidr} as '$disp_alloctypes{$args{type}}'";
1556
1557 # Enable transactions and error handling
1558 local $dbh->{AutoCommit} = 0; # These need to be local so we don't
1559 local $dbh->{RaiseError} = 1; # step on our toes by accident.
1560
1561 if ($args{type} =~ /^.i$/) {
1562 $msg = "Unable to assign static IP $args{cidr} to $args{custid}";
1563 eval {
1564##fixme: IP pools across VRFs, need to use the IP ID instead of the CIDR
1565# ... or the VRF itself?
1566 if ($args{cidr}) { # IP specified
1567 my ($isavail) = $dbh->selectrow_array(
1568 "SELECT available FROM poolips WHERE ip=?".($args{vrf} ? " AND vrf=?" : ''),
1569 undef, ($args{vrf} ? ($args{cidr},$args{vrf}) : $args{cidr}) );
1570 die "IP is not in an IP pool.\n"
1571 if !$isavail;
1572 die "IP already allocated. Deallocate and reallocate, or update the entry\n"
1573 if $isavail eq 'n';
1574 } else { # IP not specified, take first available
1575 ($args{cidr}) = $dbh->selectrow_array("SELECT ip FROM poolips WHERE parent_id=? AND available='y' ORDER BY ip",
1576 undef, ($args{parent}) );
1577 }
1578
1579 # backup
1580 my $backupid = 0;
1581 if ($args{backup}) {
1582 my $bksql = "INSERT INTO backuplist (";
1583 my @bkvals;
1584 my @bkfields;
1585 for my $bk (@backupfields) {
1586 if ($args{"bk$bk"}) {
1587 push @bkfields, "bk$bk";
1588 push @bkvals, $args{"bk$bk"};
1589 }
1590 }
1591 $bksql .= join(',',@bkfields).") VALUES (".join(',', map {'?'} @bkfields).")";
1592 $dbh->do($bksql, undef, @bkvals);
1593 ($backupid) = $dbh->selectrow_array("SELECT currval('backuplist_backup_id_seq')");
1594 }
1595
1596 # finally assign the IP
1597 $dbh->do("UPDATE poolips SET custid = ?, city = ?, available='n', description = ?, notes = ?, ".
1598 "circuitid = ?, privdata = ?, rdns = ?, backup_id = ? ".
1599 "WHERE ip = ? AND parent_id = ?", undef,
1600 ($args{custid}, $args{city}, $args{desc}, $args{notes},
1601 $args{circid}, $args{privdata}, $args{rdns}, $backupid,
1602 $args{cidr}, $args{parent}) );
1603
1604# node hack
1605 if ($args{nodeid} && $args{nodeid} ne '') {
1606 $dbh->do("INSERT INTO noderef (block,node_id) VALUES (?,?)", undef, ($args{cidr}, $args{nodeid}) );
1607 }
1608# end node hack
1609
1610 $dbh->commit; # Allocate IP from pool
1611 };
1612 if ($@) {
1613 $msg .= ": $@";
1614 eval { $dbh->rollback; };
1615 return ('FAIL', $msg);
1616 } else {
1617 # Snag the pool info
1618 my $pinfo = getBlockData($dbh, $args{parent});
1619 # Only try to update rDNS when the pool is flagged as "rDNS available"
1620 if ($pinfo->{revavail} || $pinfo->{revpartial}) {
1621 _rpc('addOrUpdateRevRec', cidr => "$args{cidr}", name => $args{rdns}, rpcuser => $args{user});
1622 }
1623 return ('OK', $args{cidr});
1624 }
1625
1626 } else { # end IP-from-pool allocation
1627
1628 if ($args{cidr} == $alloc_from) {
1629 # Easiest case- insert in one table, delete in the other, and go home. More or less.
1630
1631 eval {
1632 $msg = "Unable to allocate $args{cidr} as '$disp_alloctypes{$args{type}}'";
1633
1634 # backup
1635 my $backupid = 0;
1636 if ($args{backup}) {
1637 if (!$args{bkip}) {
1638 # check for /32-ness. no point in skipping /32 "netblocks", because they already single IPs
1639 die "Backup data set on a netblock requires a backup IP\n" unless $args{cidr} =~ m{/32$};
1640 $args{bkip} = $args{cidr};
1641 }
1642 my $bksql = "INSERT INTO backuplist (";
1643 my @bkfields;
1644 my @bkvals;
1645 for my $bk (@backupfields) {
1646 if ($args{"bk$bk"}) {
1647 push @bkfields, "bk$bk";
1648 push @bkvals, $args{"bk$bk"};
1649 }
1650 }
1651 $bksql .= join(',',@bkfields).") VALUES (".join(',',map {'?'} @bkfields).")";
1652 $dbh->do($bksql, undef, @bkvals);
1653 ($backupid) = $dbh->selectrow_array("SELECT currval('backuplist_backup_id_seq')");
1654 } # $args{backup}
1655
1656 # Insert the allocations entry
1657 $dbh->do("INSERT INTO allocations ".
1658 "(cidr,parent_id,master_id,vrf,vlan,custid,type,city,description,notes,circuitid,privdata,rdns,backup_id)".
1659 " VALUES (?,?,?,(SELECT vrf FROM allocations WHERE id=?),?,?,?,?,?,?,?,?,?,?)", undef,
1660 ($args{cidr}, $fbparent, $fbmaster, $fbmaster, $args{vlan}, $args{custid}, $args{type}, $args{city},
1661 $args{desc}, $args{notes}, $args{circid}, $args{privdata}, $args{rdns}, $backupid) );
1662 my ($bid) = $dbh->selectrow_array("SELECT currval('allocations_id_seq')");
1663
1664 # Munge freeblocks
1665 if ($args{type} =~ /^(.)[mc]$/) {
1666 # special case - block is a routed or container/"reserve" block
1667 my $rtype = $1;
1668 $dbh->do("UPDATE freeblocks SET routed = ?,city = ?,parent_id = ? WHERE id = ?",
1669 undef, ($rtype, $args{city}, $bid, $args{fbid}) );
1670 } else {
1671 # "normal" case
1672 $dbh->do("DELETE FROM freeblocks WHERE id = ?", undef, ($args{fbid}) );
1673 }
1674
1675 # And initialize the pool, if necessary
1676 # PPPoE pools (currently dialup, DSL, and WiFi) get all IPs made available
1677 # "DHCP" or "real-subnet" pools have the net, gw, and bcast IPs removed.
1678 if ($args{type} =~ /^.p$/) {
1679 $msg = "Could not initialize IPs in new $disp_alloctypes{$args{type}} $args{cidr}";
1680 my ($code,$rmsg) = initPool($dbh, $args{cidr}, $args{type}, $args{city}, "all", $bid);
1681 die $rmsg if $code eq 'FAIL';
1682 } elsif ($args{type} =~ /^.d$/) {
1683 $msg = "Could not initialize IPs in new $disp_alloctypes{$args{type}} $args{cidr}";
1684 my ($code,$rmsg) = initPool($dbh, $args{cidr}, $args{type}, $args{city}, "normal", $bid);
1685 die $rmsg if $code eq 'FAIL';
1686 }
1687
1688# node hack
1689 if ($args{nodeid} && $args{nodeid} ne '') {
1690 $dbh->do("INSERT INTO noderef (block,node_id) VALUES (?,?)", undef, ($args{cidr}, $args{nodeid}) );
1691 }
1692# end node hack
1693
1694 $dbh->commit; # Simple block allocation
1695 }; # end of eval
1696 if ($@) {
1697 $msg .= ": ".$@;
1698 eval { $dbh->rollback; };
1699 return ('FAIL',$msg);
1700 }
1701
1702 } else { # cidr != alloc_from
1703
1704 # Hard case. Allocation is smaller than free block.
1705
1706 # make sure new allocation is in fact within freeblock. *sigh*
1707 return ('FAIL',"Requested allocation $args{cidr} is not within $alloc_from")
1708 if !$alloc_from->contains($args{cidr});
1709 my $wantmaskbits = $args{cidr}->masklen;
1710 my $maskbits = $alloc_from->masklen;
1711
1712 my @newfreeblocks; # Holds free blocks generated from splitting the source freeblock.
1713
1714 # This determines which blocks will be left "free" after allocation. We take the
1715 # block we're allocating from, and split it in half. We see which half the wanted
1716 # block is in, and repeat until the wanted block is equal to one of the halves.
1717 my $i=0;
1718 my $tmp_from = $alloc_from; # So we don't munge $args{alloc_from}
1719 while ($maskbits++ < $wantmaskbits) {
1720 my @subblocks = $tmp_from->split($maskbits);
1721 $newfreeblocks[$i++] = (($args{cidr}->within($subblocks[0])) ? $subblocks[1] : $subblocks[0]);
1722 $tmp_from = ( ($args{cidr}->within($subblocks[0])) ? $subblocks[0] : $subblocks[1] );
1723 } # while
1724
1725 # Begin SQL transaction block
1726 eval {
1727 $msg = "Unable to allocate $args{cidr} as '$disp_alloctypes{$args{type}}'";
1728
1729 # Delete old freeblocks entry
1730 $dbh->do("DELETE FROM freeblocks WHERE id = ?", undef, ($args{fbid}) );
1731
1732 # Insert the allocations entry
1733 $dbh->do("INSERT INTO allocations ".
1734 "(cidr,parent_id,master_id,vrf,vlan,custid,type,city,description,notes,circuitid,privdata,rdns)".
1735 " VALUES (?,?,?,(SELECT vrf FROM allocations WHERE id=?),?,?,?,?,?,?,?,?,?)", undef,
1736 ($args{cidr}, $fbparent, $fbmaster, $fbmaster, $args{vlan}, $args{custid}, $args{type}, $args{city},
1737 $args{desc}, $args{notes}, $args{circid}, $args{privdata}, $args{rdns}) );
1738 my ($bid) = $dbh->selectrow_array("SELECT currval('allocations_id_seq')");
1739
1740 # Insert new list of smaller free blocks left over. Flag the one that matches the
1741 # masklength of the new allocation, if a reserve block was requested.
1742 $sth = $dbh->prepare("INSERT INTO freeblocks (cidr,city,routed,vrf,parent_id,master_id,reserve_for) ".
1743 "VALUES (?,?,?,?,?,?,?)");
1744 foreach my $block (@newfreeblocks) {
1745 $sth->execute($block, $fcity, $alloc_from_type, $args{vrf}, $fbparent, $fbmaster,
1746 ($args{reserve} && $block->masklen == $wantmaskbits ? $bid : 0));
1747 }
1748
1749 # For routed/container types, add a freeblock within the allocated block so we can subdivide it further
1750 if ($args{type} =~ /(.)[mc]/) { # rm and .c types - containers
1751 my $rtype = $1;
1752 $sth->execute($args{cidr}, $args{city}, $rtype, $args{vrf}, $bid, $fbmaster, 0);
1753 }
1754
1755 # And initialize the pool, if necessary
1756 # PPPoE pools (currently dialup, DSL, and WiFi) get all IPs made available
1757 # "DHCP" or "real-subnet" pools have the net, gw, and bcast IPs removed.
1758 if ($args{type} =~ /^.p$/) {
1759 $msg = "Could not initialize IPs in new $disp_alloctypes{$args{type}} $args{cidr}";
1760 my ($code,$rmsg) = initPool($dbh, $args{cidr}, $args{type}, $args{city}, "all", $bid);
1761 die $rmsg if $code eq 'FAIL';
1762 } elsif ($args{type} =~ /^.d$/) {
1763 $msg = "Could not initialize IPs in new $disp_alloctypes{$args{type}} $args{cidr}";
1764 my ($code,$rmsg) = initPool($dbh, $args{cidr}, $args{type}, $args{city}, "normal", $bid);
1765 die $rmsg if $code eq 'FAIL';
1766 }
1767
1768# node hack
1769 if ($args{nodeid} && $args{nodeid} ne '') {
1770 $dbh->do("INSERT INTO noderef (block,node_id) VALUES (?,?)", undef, ($args{cidr}, $args{nodeid}) );
1771 }
1772# end node hack
1773
1774 $dbh->commit; # Complex block allocation
1775 }; # end eval
1776 if ($@) {
1777 $msg .= ": ".$@;
1778 eval { $dbh->rollback; };
1779 return ('FAIL',$msg);
1780 }
1781
1782 } # end fullcidr != alloc_from
1783
1784 # Snag the parent info
1785 my $pinfo = getBlockData($dbh, $fbparent);
1786 # Only try to update rDNS when the block is flagged as "rDNS available"
1787 if (($pinfo->{revavail} || $pinfo->{revpartial}) && ($args{rdns} || $args{iprev})) {
1788 # the netblock/allocation...
1789 _rpc('addOrUpdateRevRec', cidr => "$args{cidr}", name => $args{rdns}, rpcuser => $args{user});
1790 # ...and the per-IP set, if there is one.
1791 _rpc('updateRevSet', %{$args{iprev}}, rpcuser => $args{user})
1792 if keys (%{$args{iprev}});
1793 }
1794
1795 return ('OK', 'OK');
1796
1797 } # end static-IP vs netblock allocation
1798
1799} # end allocateBlock()
1800
1801
1802## IPDB::initPool()
1803# Initializes a pool
1804# Requires a database handle, the pool CIDR, type, city, and a parameter
1805# indicating whether the pool should allow allocation of literally every
1806# IP, or if it should reserve network/gateway/broadcast IPs
1807# Note that this is NOT done in a transaction, that's why it's a private
1808# function and should ONLY EVER get called from allocateBlock()
1809sub initPool {
1810 my ($dbh,undef,$type,$city,$class,$parent) = @_;
1811 my $pool = new NetAddr::IP $_[1];
1812
1813 # IPv6 does not lend itself to IP pools as supported
1814 return ('FAIL',"Refusing to create IPv6 static IP pool") if $pool->{isv6};
1815 # IPv4 pools don't make much sense beyond even /24. Allow up to 4096-host footshooting anyway.
1816 # NetAddr::IP won't allow more than a /16 (65k hosts).
1817 return ('FAIL',"Refusing to create oversized static IP pool") if $pool->masklen <= 20;
1818
1819 # Retrieve some odds and ends for defaults on the IPs
1820 my ($pcustid) = $dbh->selectrow_array("SELECT def_custid FROM alloctypes WHERE type=?", undef, ($type) );
1821 my ($vrf,$vlan,$master) = $dbh->selectrow_array("SELECT vrf,vlan,master_id FROM allocations WHERE id = ?",
1822 undef, ($parent) );
1823
1824 $type =~ s/[pd]$/i/;
1825 my $sth;
1826 my $msg;
1827
1828 eval {
1829 # have to insert all pool IPs into poolips table as "unallocated".
1830 $sth = $dbh->prepare("INSERT INTO poolips (ip,custid,city,type,parent_id,master_id,vrf) VALUES (?,?,?,?,?,?,?)");
1831
1832 # in case of pool extension by some means, we need to see what IPs were already inserted
1833 my $tmp1 = $dbh->selectall_arrayref("SELECT ip FROM poolips WHERE parent_id = ?", undef, $parent);
1834 my %foundips;
1835 foreach (@{$tmp1}) {
1836 $foundips{$_->[0]} = 1;
1837 }
1838
1839# Dodge an edge case - pool where IPs have been "stolen" and turned into a netblock assignment.
1840# We can't just "get all the current IPs, and add the missing ones", because some IPs are
1841# legitimately missing (for stretchy values of "legitimately").
1842
1843 my $pdata = getBlockData($dbh, $parent);
1844 my $pcidr = new NetAddr::IP $pdata->{block};
1845
1846 if ($pcidr != $pool) {
1847 # enumerate the IPs from the *old* pool, flag them as "found", so we can iterate the entire
1848 # requested pool and still make sure we skip the IPs in the old pool - even if they've been
1849 # "stolen" by legacy netblocks.
1850 my @oldips = $pcidr->hostenum;
1851 # decide whether to start excluding existing IPs at the "gateway" or "gateway+1"
1852 my $ostart = ($pdata->{type} =~ /^.d$/ ? 1 : 0);
1853 for (my $i = $ostart; $i<= $#oldips; $i++) {
1854 $foundips{$oldips[$i]} = 1;
1855 }
1856 }
1857
1858 # enumerate the hosts in the IP range - everything except the first (net) and last (bcast) IP
1859 my @poolip_list = $pool->hostenum;
1860
1861 # always check/add IPs from gw+1 through bcast-1:
1862 # (but the set won't be in oooorderrrrr! <pout>)
1863 for (my $i=1; $i<=$#poolip_list; $i++) {
1864 my $baseip = $poolip_list[$i]->addr;
1865 if ($baseip !~ /\.(?:0|255)$/ && !$foundips{$poolip_list[$i]}) {
1866 $sth->execute($baseip, $pcustid, $city, $type, $parent, $master, $vrf);
1867 }
1868 }
1869
1870 # now do the special case - DSL/PPP blocks can use the "net", "gw", and "bcast" IPs.
1871 # we exclude .0 and .255 anyway, since while they'll mostly work, they *will* behave badly here and there.
1872 if ($class eq 'all') { # (DSL-ish block - *all* IPs available
1873 if ($pool->addr !~ /\.0$/) { # .0 causes weirdness.
1874 $sth->execute($pool->addr, $pcustid, $city, $type, $parent, $master, $vrf)
1875 unless $foundips{$pool->addr."/32"};
1876 }
1877 $sth->execute($poolip_list[0]->addr, $pcustid, $city, $type, $parent, $master, $vrf)
1878 unless $foundips{$poolip_list[0]};
1879 $pool--;
1880 if ($pool->addr !~ /\.255$/) { # .255 can cause weirdness.
1881 $sth->execute($pool->addr, $pcustid, $city, $type, $parent, $master, $vrf)
1882 unless $foundips{$pool->addr."/32"};
1883 }
1884 }
1885# don't commit here! the caller may not be done.
1886# $dbh->commit;
1887 };
1888 if ($@) {
1889 $msg = $@;
1890# Don't roll back! It's up to the caller to handle this.
1891# eval { $dbh->rollback; };
1892 return ('FAIL',$msg);
1893 } else {
1894 return ('OK',"OK");
1895 }
1896} # end initPool()
1897
1898
1899## IPDB::updateBlock()
1900# Update an allocation
1901# Takes all allocation fields in a hash
1902sub updateBlock {
1903 my $dbh = shift;
1904 my %args = @_;
1905
1906 return ('FAIL', 'Missing block to update') if !$args{block};
1907
1908 # Spaces don't show up well in lots of places. Make sure they don't get into the DB.
1909 $args{custid} =~ s/^\s+//;
1910 $args{custid} =~ s/\s+$//;
1911
1912 # do it all in a transaction
1913 local $dbh->{AutoCommit} = 0;
1914 local $dbh->{RaiseError} = 1;
1915
1916 my @fieldlist;
1917 my @vallist;
1918 foreach ('custid', 'city', 'description', 'notes', 'circuitid', 'privdata', 'rdns', 'vrf', 'vlan') {
1919 if ($args{$_}) {
1920 push @fieldlist, $_;
1921 push @vallist, $args{$_};
1922 }
1923 }
1924
1925 my $binfo;
1926 my $updtable = 'allocations';
1927 my $keyfield = 'id';
1928 if ($args{type} =~ /^(.)i$/) {
1929 $updtable = 'poolips';
1930 $binfo = getBlockData($dbh, $args{block}, 'i');
1931 # allow allocating an IP by update. mainly for RPC, may simplify matters for caller
1932 if ($args{assignIP_on_update}) {
1933 push @fieldlist, 'available';
1934 push @vallist, 'n';
1935 }
1936 } else {
1937## fixme: there's got to be a better way...
1938 $binfo = getBlockData($dbh, $args{block});
1939 if ($args{swip}) {
1940 if ($args{swip} eq 'on' || $args{swip} eq '1' || $args{swip} eq 'y') {
1941 $args{swip} = 'y';
1942 } else {
1943 $args{swip} = 'n';
1944 }
1945 }
1946 foreach ('type', 'swip') {
1947 if ($args{$_}) {
1948 push @fieldlist, $_;
1949 push @vallist, $args{$_};
1950 }
1951 }
1952 }
1953
1954 return ('FAIL', 'No fields to update') if !@fieldlist;
1955
1956 my $sql = "UPDATE $updtable SET ";
1957 $sql .= join " = ?, ", @fieldlist;
1958
1959 # create these here so we can use the expanded CIDR in the rDNS update after the eval,
1960 # if we're expanding the block into a "reserved" freeblock
1961 my $cidr = NetAddr::IP->new($binfo->{block});
1962 my $newblock = NetAddr::IP->new($cidr->addr, $cidr->masklen - 1)->network;
1963
1964 eval {
1965 # check for block merge first...
1966 if ($args{fbmerge}) {
1967 # safety net? make sure mergeable block passed in is really one or both of
1968 # a) reserved for expansion of the block and
1969 # b) confirmed CIDR-combinable
1970 # "safety? SELECT foo FROM freeblocks WHERE cidr << ? AND masklen(cidr) = ?, $newblock, ".$cidr->masklen."\n";
1971 $dbh->do("DELETE FROM freeblocks WHERE id=?", undef, $args{fbmerge});
1972 # ... so we can append the change in the stored CIDR field to extend the allocation.
1973 $sql .= " = ?, cidr";
1974 push @vallist, $newblock;
1975 # if we have an IP pool, call initPool to fill in any missing entries in the pool
1976 if ($binfo->{type} =~ /^.p$/) {
1977 my ($code,$rmsg) = initPool($dbh, "$newblock", $binfo->{type}, $binfo->{city}, 'all', $args{block});
1978 die $rmsg if $code eq 'FAIL';
1979 } elsif ($binfo->{type} =~ /^.d$/) {
1980 my ($code,$rmsg) = initPool($dbh, "$newblock", $binfo->{type}, $binfo->{city}, 'normal', $args{block});
1981 die $rmsg if $code eq 'FAIL';
1982 }
1983 }
1984
1985 # backup
1986 if (!defined($args{ignorebk})) {
1987 # backup data considered "restricted"; caller should set this flag if user does not have 's' permission
1988
1989 my $backupid = $binfo->{hasbk};
1990 if (!$binfo->{hasbk}) {
1991 if ($args{backup}) {
1992 # failure mode: backup data on netblock with no IP set
1993 if (!$args{bkip}) {
1994 # check for /32-ness. no point in skipping /32 "netblocks", because they already single IPs
1995 die "Backup data set on a netblock requires a backup IP\n" unless $binfo->{block} =~ m{/32$};
1996 $args{bkip} = $binfo->{block};
1997 }
1998 # insert new backup record since we don't have one
1999 my $bksql = "INSERT INTO backuplist (";
2000 my @bkfields;
2001 my @bkvals;
2002 for my $bk (@backupfields) {
2003 if ($args{"bk$bk"}) {
2004 push @bkfields, "bk$bk";
2005 push @bkvals, $args{"bk$bk"};
2006 }
2007 }
2008 $bksql .= join(',',@bkfields).") VALUES (".join(',', map {'?'} @bkfields).")";
2009 $dbh->do($bksql, undef, @bkvals);
2010 ($backupid) = $dbh->selectrow_array("SELECT currval('backuplist_backup_id_seq')");
2011 # add the backup ID to the update
2012 push @vallist, $backupid;
2013 $sql .= " = ?, backup_id";
2014 }
2015
2016 } else { # !$binfo->{hasbk}
2017
2018 # allocation already has backup data
2019 if ($args{backup}) {
2020 if (!$args{bkip}) {
2021 # check for /32-ness. no point in skipping /32 "netblocks", because they are already single IPs
2022 die "Backup data set on a netblock requires a backup IP\n" unless $binfo->{block} =~ m{/32$};
2023 $args{bkip} = $binfo->{block};
2024 }
2025 my @bkfields;
2026 my @bkvals;
2027 for my $bk (@backupfields) {
2028 no warnings qw( uninitialized );
2029 if ($binfo->{"bk$bk"} ne $args{"bk$bk"}) {
2030 push @bkfields, "bk$bk = ?";
2031 push @bkvals, $args{"bk$bk"};
2032 }
2033 }
2034
2035 $dbh->do("UPDATE backuplist SET ".join(',', @bkfields)." WHERE backup_id = ?",
2036 undef, @bkvals, $binfo->{hasbk})
2037 if @bkfields;
2038##todo: keep historic changes for $timeperiod, by adding a backref ID field, and on updates adding a new backup
2039# record instead of updating the existing one. should probably check if new==old so we don't do needless updates
2040# in that case...
2041 } else {
2042 if ($binfo->{hasbk}) {
2043 # had backup data, no longer checked - delete backup entry
2044 $dbh->do("DELETE FROM backuplist WHERE backup_id = ?", undef, $binfo->{hasbk});
2045 $sql .= " = ?, backup_id";
2046 push @vallist, 0;
2047 }
2048 }
2049 } # $binfo->{hasbk} defined
2050 } # if !args{ignorebk}
2051
2052 # append another SQL fragment
2053 push @vallist, $args{block};
2054 $sql .= " = ? WHERE $keyfield = ?";
2055
2056##fixme: don't do the update on pool IPs if the IP is available and assignIP_on_update is not set
2057 # do the update
2058 $dbh->do($sql, undef, @vallist);
2059
2060 if ($args{node}) {
2061 # done with delete/insert so we don't have to worry about funkyness updating a node ref that isn't there
2062 $dbh->do("DELETE FROM noderef WHERE block = ?", undef, ($binfo->{block}) );
2063 $dbh->do("INSERT INTO noderef (block,node_id) VALUES (?,?)", undef, ($binfo->{block}, $args{node}) )
2064 if $args{node} ne '--';
2065 }
2066
2067 $dbh->commit;
2068 };
2069 if ($@) {
2070 my $msg = $@;
2071 $dbh->rollback;
2072 return ('FAIL', $msg);
2073 }
2074
2075 # Do RPC rDNS call, if available.
2076 # Snag the parent info
2077 my $pinfo = getBlockData($dbh, $binfo->{parent_id});
2078 # Return early if rDNS flag(s) are not set
2079 return ('OK','OK') unless ($pinfo->{revavail} || $pinfo->{revpartial});
2080
2081 # In case of any container (mainly master block), only update freeblocks so we don't stomp subs
2082 # (which would be the wrong thing in pretty much any case except "DELETE ALL EVARYTHING!!1!oneone!")
2083 if ($binfo->{type} =~ '.[mc]') {
2084 # Not using listFree() as it doesn't return quite all of the blocks wanted.
2085 # Retrieve the immediate free blocks
2086 my $sth = $dbh->prepare(q(
2087 SELECT cidr FROM freeblocks WHERE parent_id = ?
2088 UNION
2089 SELECT cidr FROM freeblocks f WHERE
2090 cidr = (SELECT cidr FROM allocations a WHERE f.cidr = a.cidr)
2091 AND master_id = ?
2092 ) );
2093 $sth->execute($args{block}, $binfo->{master_id});
2094 my %fbset;
2095 while (my ($fb) = $sth->fetchrow_array) {
2096 $fbset{"host_$fb"} = $args{rdns};
2097 }
2098 # We use this RPC call instead of multiple addOrUpdateRevRec calls, since we don't
2099 # know how many records we'll be updating and more than 3-4 is far too slow. This
2100 # should be safe to call unconditionally.
2101 # Requires dnsadmin >= r678
2102 _rpc('updateRevSet', %fbset, rpcuser => $args{user});
2103
2104 } else {
2105 $binfo->{block} =~ s{/(?:32|128)$}{};
2106 # Only insert a record for IPv4, or actual single v6 IPs
2107 _rpc('addOrUpdateRevRec', cidr => $binfo->{block}, name => $args{rdns}, rpcuser => $args{user})
2108 if !$cidr->{isv6} || ($cidr->{isv6} && $cidr->masklen == 128);
2109
2110 # and the per-IP set, if there is one.
2111 _rpc('updateRevSet', cidr => $binfo->{block}, %{$args{iprev}}, rpcuser => $args{user}, location => $pinfo->{location})
2112 if keys (%{$args{iprev}});
2113
2114 # and fix up the template's CIDR if required
2115 _rpc('resizeTemplate', oldcidr => "$binfo->{block}", newcidr => $newblock->network.'', rpcuser => $args{user})
2116 if $args{fbmerge};
2117 }
2118
2119##fixme: RPC failures?
2120 return ('OK','OK');
2121} # end updateBlock()
2122
2123
2124## IPDB::splitBlock()
2125# Splits an existing allocation into two or more smaller allocations based on a passed netmask
2126# Duplicates all other data
2127# Returns an arrayref to a list of hashrefs with ID and CIDR keys for the list of new allocations.
2128# Should probably commit DNS magic to realign DNS data
2129# Mostly works but may return Strange Things(TM) if used on a master block
2130sub splitBlock {
2131 my $dbh = shift;
2132 my %args = @_;
2133
2134##fixme: set errstr on errors so caller can suitably clue-by-four the user
2135 return if $args{basetype} ne 'b'; # only netblocks allowed!
2136
2137 my $binfo = getBlockData($dbh, $args{id});
2138 return if !$binfo;
2139
2140 return if $args{newmask} !~ /^\d+$/;
2141
2142 my @ret;
2143 my $block = new NetAddr::IP $binfo->{block};
2144 my $oldmask = $block->masklen;
2145
2146 # Fail if the block to split is "too small" - eg, can't split a v4 /32 at all
2147 # failure modes:
2148 # difference between $oldmask and $newmask is negative or 0
2149 if ($args{newmask} - $oldmask <= 0) {
2150 $errstr = "Can't split a /$oldmask allocation into /$args{newmask} pieces";
2151 return;
2152 }
2153# # difference between $oldmask and $newmask is > n, for arbitrary n?
2154# if ($newmask - $oldmask > 42) { # because 42
2155# }
2156 # $oldmask > n, for arbitrary n? At least check limits of data type.
2157 if ($block->{isv6}) {
2158 if ($args{newmask} - $oldmask > 128) {
2159 $errstr = "Impossible IPv6 mask length /$args{newmask} requested";
2160 return;
2161 }
2162 } else {
2163 if ($args{newmask} - $oldmask > 32) {
2164 $errstr = "Impossible IPv4 mask length /$args{newmask} requested";
2165 return;
2166 }
2167 }
2168
2169 my @newblocks = $block->split($args{newmask});
2170
2171 local $dbh->{AutoCommit} = 0;
2172 local $dbh->{RaiseError} = 1;
2173
2174 eval {
2175 # line up a list of fields and values. Be nice if there was a handy way to do,
2176 # direct in SQL, something like
2177 # "INSERT INTO foo (f1,f2,f3) VALUES (newf1,(SELECT oldf2,oldf3 FROM foo WHERE baz))"
2178 my @fieldlist = qw(type city description notes circuitid privdata custid swip vrf vlan rdns parent_id master_id);
2179 my $fields_sql = join(',', @fieldlist);
2180 my @vals;
2181 foreach (@fieldlist) {
2182 push @vals, $binfo->{$_};
2183 }
2184 # note the first block in the split for return
2185 push @ret, {nid => $args{id}, nblock => "$newblocks[0]"};
2186
2187 # prepare
2188 my $idsth = $dbh->prepare("SELECT currval('allocations_id_seq')");
2189 my $allocsth = $dbh->prepare("INSERT INTO allocations (cidr, $fields_sql)".
2190 " VALUES (?".',?'x(scalar(@fieldlist)).")");
2191 my $allocsth2 = $dbh->prepare(qq(
2192 INSERT INTO allocations (cidr, $fields_sql)
2193 SELECT ? AS cidr, $fields_sql
2194 FROM allocations
2195 WHERE id = ?
2196 ) );
2197 my $nbsth = $dbh->prepare("DELETE FROM poolips WHERE parent_id = ? AND ip = ?");
2198 my $upd_psth = $dbh->prepare("UPDATE allocations SET parent_id = ? WHERE parent_id = ? AND cidr <<= ?");
2199 my $upd_msth = $dbh->prepare("UPDATE allocations SET master_id = ? WHERE master_id = ? AND cidr <<= ?");
2200 my $fb_psth = $dbh->prepare("UPDATE freeblocks SET parent_id = ? WHERE parent_id = ? AND cidr <<= ?");
2201 my $fb_msth = $dbh->prepare("UPDATE freeblocks SET master_id = ? WHERE master_id = ? AND cidr <<= ?");
2202 my $pool_psth = $dbh->prepare("UPDATE poolips SET parent_id = ? WHERE parent_id = ? AND ip << ?");
2203 my $pool_msth = $dbh->prepare("UPDATE poolips SET master_id = ? WHERE master_id = ? AND ip <<= ?");
2204
2205 my @clist;
2206 _getChildren($dbh, $args{id}, $binfo->{master_id}, \@clist, $block);
2207
2208 my @processlist;
2209 push @processlist, { id => $args{id}, cidr => $block, mask => $block->masklen, type => $binfo->{type} };
2210 foreach (@clist) {
2211 $_->{cidr} = new NetAddr::IP $_->{cidr};
2212 if ($_->{cidr}->masklen < $args{newmask}) {
2213 $_->{mask} = $_->{cidr}->masklen;
2214 push @processlist, $_;
2215 }
2216 }
2217
2218 # Sort on masklen, crudely break ties by pushing container blocks down the stack. Multiple-nested containers
2219 # of the same size are virtually guaranteed to produce strange results, but should be rare enough to not matter
2220 @processlist = sort { $b->{cidr}->masklen <=> $a->{cidr}->masklen || $a->{type} =~ /^.m$/ } @processlist;
2221
2222 foreach my $pr (@processlist) {
2223 my @nbset = $pr->{cidr}->split($args{newmask});
2224
2225 # set up update of existing block
2226 $dbh->do("UPDATE allocations SET cidr = ? WHERE id = ?", undef, ("$nbset[0]", $pr->{id}) );
2227
2228 # axe the new bcast IP from the smaller pool at the "base" block, if it's a "normal" pool
2229 if ($pr->{type} =~ /.d/) {
2230 $nbset[0]--;
2231 $nbsth->execute($pr->{id}, $nbset[0]->addr);
2232 }
2233
2234 # Holder for freeblocks-to-delete. Should be impossible to have more than one...
2235 my %fbdel;
2236
2237 # Loop over the new blocks that are not the base block
2238 for (my $i = 1; $i <= $#nbset; $i++) {
2239 # add the new allocation
2240 $allocsth2->execute($nbset[$i], $pr->{id});
2241
2242 # fetch the ID of the entry we just added...
2243 $idsth->execute();
2244 my ($nid) = $idsth->fetchrow_array();
2245 # ... so we can pass back the list of blocks and IDs...
2246 push @ret, {nid => $nid, nblock => "$nbset[$i]"};
2247 # axe the net, gw, and bcast IPs as necessary when splitting a "normal" pool
2248 if ($pr->{type} =~ /.d/) {
2249 # net
2250 $nbsth->execute($pr->{id}, $nbset[$i]->addr);
2251 $nbset[$i]++;
2252 # gw
2253 $nbsth->execute($pr->{id}, $nbset[$i]->addr);
2254 $nbset[$i]--;
2255 $nbset[$i]--;
2256 # bcast
2257 $nbsth->execute($pr->{id}, $nbset[$i]->addr);
2258 $nbset[$i]++;
2259 } # $binfo->{type} =~ /.d/
2260
2261 # Check for free blocks larger than the new mask length, and split those as needed.
2262 if ($pr->{type} =~ /.[cm]/) {
2263 # get a "list" of freeblocks bigger than the allocation in the parent. there's only one, right?
2264 my $fblist = $dbh->selectall_arrayref("SELECT id FROM freeblocks WHERE cidr >> ? AND parent_id = ? ",
2265 {Slice=>{}}, $nbset[$i], $pr->{id});
2266 if (@$fblist) {
2267 # create a new freeblock for the new block we created earlier
2268 $dbh->do(q{
2269 INSERT INTO freeblocks (cidr, parent_id, master_id, city, routed,vrf)
2270 SELECT ? AS cidr, ? AS parent_id, master_id, city, routed, vrf FROM freeblocks
2271 WHERE id = ?
2272 }, undef, ($nbset[$i], $nid, $fblist->[0]->{id}) );
2273 $fbdel{$fblist->[0]->{id}}++;
2274 }
2275 } # $binfo->{type} =~ /.[cm]/
2276
2277 # Reparent allocations, freeblocks, and pool IPs.
2278 $upd_psth->execute($nid, $pr->{id}, $nbset[$i]);
2279 $fb_psth->execute($nid, $pr->{id}, $nbset[$i]);
2280 $pool_psth->execute($nid, $pr->{id}, $nbset[$i]);
2281
2282 # Update master if we've split a master block
2283 if ($pr->{type} eq 'mm') {
2284 $upd_msth->execute($nid, $pr->{id}, $nbset[$i]);
2285 $fb_msth->execute($nid, $pr->{id}, $nbset[$i]);
2286 $pool_msth->execute($nid, $pr->{id}, $nbset[$i]);
2287 }
2288
2289##fixme:
2290# 2015/09/09 not sure if the latest rewrite has covered this case complete or not
2291# Still missing one edge case - megasplitting a large block such that "many" children also need to be split.
2292# I'm going to call this "unsupported" because I really can't imagine a sane reason for doing this.
2293# Should probably check and error out at least
2294
2295 } # for (... @nbset)
2296
2297 if (%fbdel) {
2298 my $delfblist = $dbh->selectall_arrayref(q{
2299 SELECT cidr,parent_id,id FROM freeblocks
2300 WHERE id in (
2301 }.join(',', keys %fbdel).")", {Slice=>{}} );
2302 $dbh->do("DELETE FROM freeblocks WHERE id IN (".join(',', keys %fbdel).")") if %fbdel;
2303 }
2304
2305 } # foreach @processlist
2306
2307 $dbh->commit;
2308 };
2309 if ($@) {
2310 $errstr = "Error splitting $binfo->{block}: $@";
2311 $dbh->rollback;
2312 return;
2313 }
2314
2315 # Only try to update rDNS when the original block is flagged as "rDNS available"
2316 _rpc('splitTemplate', cidr => $binfo->{block}, newmask => $args{newmask}, rpcuser => $args{user})
2317 if ($binfo->{revavail} || $binfo->{revpartial});
2318
2319 return \@ret;
2320} # end splitBlock()
2321
2322
2323## IPDB::shrinkBlock()
2324# Shrink an allocation to the passed CIDR block
2325# Takes an allocation ID and a new CIDR
2326# Returns an arrayref to a list of hashrefs with the ID and CIDR of the freed block(s)
2327# Refuses to shrink "real netblock" pool types below /30
2328sub shrinkBlock {
2329 my $dbh = shift;
2330 my $id = shift;
2331
2332 # just take the new CIDR spec; this way we can shrink eg .16/28 to .20/30 without extra contortions
2333 my $newblock = new NetAddr::IP shift;
2334
2335 my $user = shift;
2336
2337 if (!$newblock) {
2338 $errstr = "Can't shrink something that's not a netblock";
2339 return;
2340 }
2341
2342 my $binfo = getBlockData($dbh, $id);
2343 my $pinfo = getBlockData($dbh, $binfo->{parent_id});
2344
2345 if ($binfo->{type} =~ /.d/ && $newblock->masklen > ($newblock->bits+2) ) {
2346 $errstr = "Can't shrink a non-PPP pool smaller than ".($newblock->{isv6} ? '/124' : '/30');
2347 return;
2348 }
2349
2350 my $oldblock = new NetAddr::IP $binfo->{block};
2351
2352 # Don't try to shrink the block outside of itself, Bad Things (probably) Happen.
2353 if (!$oldblock->contains($newblock)) {
2354 $errstr = "Can't shrink an allocation outside of itself";
2355 return;
2356 }
2357
2358 local $dbh->{AutoCommit} = 0;
2359 local $dbh->{RaiseError} = 1;
2360
2361 my $addfbsth = $dbh->prepare("INSERT INTO freeblocks (cidr,city,routed,vrf,parent_id,master_id) VALUES (?,?,?,?,?,?)");
2362 my $idsth = $dbh->prepare("SELECT currval('freeblocks_id_seq')");
2363 my $poolsth = $dbh->prepare("DELETE FROM poolips WHERE parent_id = ? AND ip << ?");
2364 my $netsth = $dbh->prepare("DELETE FROM poolips WHERE parent_id = ? AND ip = ?");
2365 my $allocsth = $dbh->prepare("DELETE FROM allocations WHERE parent_id = ? AND cidr <<= ?");
2366 my $delfbsth = $dbh->prepare("DELETE FROM freeblocks WHERE parent_id = ? AND cidr <<= ?");
2367
2368 my @ret;
2369 my @newfreelist;
2370 eval {
2371 $dbh->do("UPDATE allocations SET cidr = ? WHERE id = ?", undef, $newblock, $id);
2372
2373 # find the netblock(s) that are now free
2374 my @workingblocks = $oldblock->split($newblock->masklen);
2375 foreach my $newsub (@workingblocks) {
2376 next if $newsub == $newblock;
2377 push @newfreelist, $newsub;
2378 }
2379 @newfreelist = Compact(@newfreelist);
2380
2381 # set new freeblocks, and clean up any IP pool entries if needed.
2382 foreach my $newfree (@newfreelist) {
2383 my @clist;
2384 # the block we're munging
2385 push @clist, { id => $id, type => $binfo->{type}, cidr => $binfo->{block} };
2386 _getChildren($dbh, $id, $binfo->{master_id}, \@clist, $newfree);
2387
2388 foreach my $goner (@clist) {
2389 $poolsth->execute($goner->{id}, $newfree) if $goner->{type} =~ /.[dp]/;
2390 $allocsth->execute($goner->{id}, $newfree);
2391 $delfbsth->execute($goner->{id}, $newfree);
2392 }
2393
2394 # No pinfo means we're shrinking a master block, which means the free space is returned outside of IPDB.
2395 if ($pinfo) {
2396 $addfbsth->execute($newfree, $pinfo->{city}, 'm', $pinfo->{vrf}, $binfo->{parent_id}, $pinfo->{master_id});
2397 $idsth->execute;
2398 my ($nid) = $idsth->fetchrow_array();
2399 # add to return list
2400 push @ret, {fbid => $nid, newfree => "$newfree", fbparent => $binfo->{parent_id} };
2401 }
2402
2403 } # $newfree (@newfreelist)
2404
2405 # additional cleanup on net/gw/bcast IPs in pool
2406 if ($binfo->{type} =~ /.d/) {
2407 $netsth->execute($id, $newblock->addr);
2408 $newblock++;
2409 $netsth->execute($id, $newblock->addr);
2410 $newblock--;
2411 $newblock--;
2412 $netsth->execute($id, $newblock->addr);
2413 }
2414
2415 $dbh->commit;
2416 };
2417 if ($@) {
2418 $errstr = "Error splitting $binfo->{block}: $@";
2419 $dbh->rollback;
2420 return;
2421 }
2422
2423 # Only try to update rDNS when the original block is flagged as "rDNS available"
2424 _rpc('resizeTemplate', oldcidr => $binfo->{block}, newcidr => $newblock->network, rpcuser => $user)
2425 if ($binfo->{revavail} || $binfo->{revpartial});
2426
2427 return \@ret;
2428} # end shrinkBlock()
2429
2430
2431## IPDB::mergeBlocks()
2432# Merges two or more adjacent allocations, optionally including relevant
2433# free space, into one allocation.
2434# Takes a "base" block ID and a hash with a mask length and a scope argument to decide
2435# how much existing allocation data to delete.
2436# Returns a list starting with the new merged block, then the merged allocations with comment
2437## Merge scope:
2438# Merge to container
2439# keepall
2440# Move all mergeable allocations into the new block
2441# Move all mergeable free blocks into the new block
2442# mergepeer
2443# Move subs of mergeable containers into the updated primary.
2444# Reparent free blocks in mergeable containers to the updated primary.
2445# Convert assigned IPs from pools into subs.
2446# Convert unused IPs from pools into free blocks.
2447# Convert leaf allocations into free blocks.
2448# clearpeer
2449# Keep subs of the original (if it was a container).
2450# Convert assigned IPs from the original pool into subs (if it was a pool).
2451# Convert unused IPs from the original pool into free blocks (if it was a pool).
2452# Delete all peers and their subs aside from the original.
2453# clearall
2454# Delete all peers, subs and IPs.
2455# Add single free block for new container.
2456# Merge to pool
2457# keepall
2458# Convert all leaf allocations in the merge range to groups of used IPs
2459# mergepeer
2460# Effectively equal to keepall
2461# clearpeer
2462# Only convert IPs from the original allocation to used IPs
2463# clearall
2464# Delete any existing IPs, and reinitialize the new pool entirely
2465# Merge to leaf type
2466# Remove all subs
2467sub mergeBlocks {
2468 my $dbh = shift;
2469 my $prime = shift; # "base" block ID to use as a starting point
2470 if (!$prime) {
2471 $errstr = "Missing block ID to base merge on";
2472 return;
2473 }
2474
2475 my %args = @_;
2476
2477 # check key arguments.
2478 if (!$args{scope} || $args{scope} !~ /^(keepall|mergepeer|clearpeer|clearall)$/) {
2479 $errstr = "Bad or missing merge scope";
2480 return;
2481 }
2482 if (!$args{newmask} || $args{newmask} !~ /^\d+$/) {
2483 $errstr = "Bad or missing new netmask";
2484 return;
2485 }
2486
2487 # Retrieve info about the base allocation we're munging
2488 my $binfo = getBlockData($dbh, $prime);
2489 my $block = new NetAddr::IP $binfo->{block};
2490 my ($basetype) = ($binfo->{type} =~ /^.(.)$/);
2491 $binfo->{id} = $prime; # preserve for later, just in case
2492
2493 # proposed block
2494 my $newblock = new NetAddr::IP $block->addr."/$args{newmask}";
2495 $newblock = $newblock->network;
2496 $args{newtype} = $binfo->{type} if !$args{newtype};
2497 # if the "primary" block being changed is a master, it must remain one.
2498 # Also force the scope, since otherwise things get ugly.
2499 if ($binfo->{type} eq 'mm') {
2500 $args{newtype} = 'mm';
2501 # don't want to make a peer master a sub of the existing one; too many special cases go explodey,
2502 # but want to retain all other allocations
2503 $args{scope} = 'mergepeer';
2504 }
2505 my ($newcontainerclass) = ($args{newtype} =~ /^(.).$/);
2506
2507 # build an info hash for the "new" allocation we're creating
2508 my $pinfo = {
2509 id => $prime,
2510 block => "$newblock",
2511 type => $args{newtype},
2512 parent_id =>
2513 $binfo->{parent_id},
2514 city => $binfo->{city},
2515 vrf => $binfo->{vrf},
2516 master_id => $binfo->{master_id}
2517 };
2518
2519 my @retlist;
2520
2521 local $dbh->{AutoCommit} = 0;
2522 local $dbh->{RaiseError} = 1;
2523
2524 # Want to do all of the DB stuff in a transaction, to minimize data changing underfoot
2525 eval {
2526
2527 # We always update the "prime" block passed in...
2528 my $updsth = $dbh->prepare("UPDATE allocations SET cidr = ?, type = ? WHERE id = ?");
2529
2530##fixme: There's still an edge case in the return list where some branches accidentally include
2531# the original block as "additional". Probably due to the ordering of when the prepared update
2532# above gets executed.
2533
2534 # For leaf blocks, we may need to create a new parent as the "primary" instead
2535 # of updating the existing block
2536 my $newparent = $dbh->prepare(q{
2537 INSERT INTO allocations (
2538 cidr, type, city, description, notes, circuitid, createstamp, modifystamp,
2539 privdata, custid, swip, vrf, vlan, rdns, parent_id, master_id
2540 )
2541 SELECT
2542 ? AS cidr, ? AS type, city, description, notes, circuitid, createstamp, modifystamp,
2543 privdata, custid, swip, vrf, vlan, rdns, parent_id, master_id
2544 FROM allocations
2545 WHERE id = ?
2546 });
2547
2548 # Common actions
2549 my $peersth = $dbh->prepare("SELECT cidr,id,type,master_id FROM allocations WHERE parent_id = ? AND cidr <<= ?");
2550 $peersth->execute($binfo->{parent_id}, "$newblock");
2551 my $reparentsth = $dbh->prepare("UPDATE allocations SET parent_id = ?, master_id = ? WHERE id = ?");
2552 my $insfbsth = $dbh->prepare("INSERT INTO freeblocks (cidr,city,routed,vrf,parent_id,master_id) VALUES (?,?,?,?,?,?)");
2553 my $delsth = $dbh->prepare("DELETE FROM allocations WHERE id = ?");
2554
2555 my $fbreparentsth = $dbh->prepare(q{
2556 UPDATE freeblocks
2557 SET parent_id = ?, master_id = ?, city = ?, routed = ?, vrf = ?
2558 WHERE parent_id = ? AND cidr <<= ?
2559 });
2560
2561 if ($args{newtype} =~ /.[cm]/) {
2562 ## Container
2563
2564 # In case of merging a master block. Somewhat redundant with calls to $fbreparentsth,
2565 # but not *quite* entirely.
2566 my $mfbsth = $dbh->prepare("UPDATE freeblocks SET master_id = ? WHERE master_id = ?");
2567
2568 if ($args{scope} eq 'keepall') {
2569 # Create a new parent with the same info as the passed "primary".
2570 $newparent->execute($newblock, $args{newtype}, $prime);
2571 # and now retrieve the new parent ID
2572 ($prime) = $dbh->selectrow_array("SELECT currval('allocations_id_seq')");
2573 # snag the new parent info for the return list
2574 push @retlist, { block => "$newblock", type => $disp_alloctypes{$args{newtype}}, id => $prime };
2575 # Reparent the free blocks in the new block
2576 $fbreparentsth->execute($prime, $binfo->{master_id}, $binfo->{city}, $newcontainerclass, $binfo->{vrf},
2577 $binfo->{parent_id}, $newblock);
2578 # keep existing allocations (including the original primary), just push them down a level
2579 while (my ($peercidr, $peer_id, $peertype, $m_id) = $peersth->fetchrow_array) {
2580 $reparentsth->execute($prime, $binfo->{master_id}, $peer_id);
2581 # Fix up master_id on free blocks if we're merging a master block
2582 $mfbsth->execute($binfo->{master_id}, $m_id) if $peertype eq 'mm';
2583 # capture block for return
2584 push @retlist, { block => $peercidr, mdisp => $disp_alloctypes{$peertype}, mtype => $peertype };
2585 }
2586
2587 } elsif ($args{scope} =~ /^clear/) {
2588 # clearpeer and clearall share a starting point
2589 # snag the new parent info for the return list
2590 push @retlist, { block => "$newblock", type => $disp_alloctypes{$args{newtype}}, id => $prime };
2591 # update the primary allocation info
2592 $updsth->execute($newblock, $args{newtype}, $prime);
2593 # Reparent the free blocks in the new block
2594 $fbreparentsth->execute($prime, $binfo->{master_id}, $binfo->{city}, $newcontainerclass, $binfo->{vrf},
2595 $binfo->{parent_id}, $newblock);
2596 # Insert a free block if $prime is a leaf
2597 if ($binfo->{type} =~ /.[enr]/) {
2598 $insfbsth->execute($binfo->{block}, $binfo->{city}, $newcontainerclass, $binfo->{vrf}, $prime,
2599 $binfo->{master_id});
2600 }
2601 # delete the peers.
2602 while (my ($peercidr, $peer_id, $peertype, $m_id) = $peersth->fetchrow_array) {
2603 next if $peer_id == $prime;
2604 # push existing allocations down a level before deleting,
2605 # so that when they're deleted the parent info is correct
2606 $reparentsth->execute($prime, $binfo->{master_id}, $peer_id);
2607 _deleteCascade($dbh, $peer_id);
2608 # insert the freeblock _deleteCascade() (deliberately) didn't when deleting a master block.
2609 # aren't special cases fun?
2610 $dbh->do("INSERT INTO freeblocks (cidr,routed,parent_id,master_id) values (?,?,?,?)",
2611 undef, ($peercidr, 'm', $prime, $prime) ) if $binfo->{type} eq 'mm';
2612 # capture block for return
2613 push @retlist, { block => $peercidr, mdisp => $disp_alloctypes{$peertype}, mtype => $peertype };
2614 }
2615 if ($args{scope} eq 'clearall') {
2616 # delete any subs of $prime as well
2617 my $substh = $dbh->prepare("SELECT cidr,id FROM allocations WHERE parent_id = ?");
2618 $substh->execute($prime);
2619 while (my ($scidr, $s_id) = $substh->fetchrow_array) {
2620 _deleteCascade($dbh, $s_id);
2621 }
2622 } else {
2623 # clearpeer
2624 if ($basetype =~ /[dp]/) {
2625 # Convert active IP pool entries to allocations if the original was an IP pool
2626 _poolToAllocations($dbh, $binfo, $pinfo, newtype => $poolmap{$binfo->{type}});
2627 }
2628 } # clearall or clearpeer
2629
2630 } elsif ($args{scope} eq 'mergepeer') { # should this just be an else?
2631 # Default case. Merge "peer" blocks, but keep all suballocations
2632 # snag the new parent info for the return list
2633 push @retlist, {block => "$newblock", type => $disp_alloctypes{$args{newtype}}, id => $prime};
2634 my $substh = $dbh->prepare("UPDATE allocations SET parent_id = ? WHERE parent_id = ?");
2635 my $delsth = $dbh->prepare("DELETE FROM allocations WHERE id = ?");
2636 # Reparent freeblocks in parent
2637 $fbreparentsth->execute($prime, $binfo->{master_id}, $binfo->{city}, $newcontainerclass, $binfo->{vrf},
2638 $binfo->{parent_id}, $newblock);
2639 # Loop over "peer" allocations to be merged
2640 while (my ($peercidr, $peer_id, $peertype, $m_id) = $peersth->fetchrow_array) {
2641 # Snag existing peer data since we may need it
2642 my $peerfull = getBlockData($dbh, $peer_id);
2643 # Reparent free blocks from existing containers
2644 $fbreparentsth->execute($prime, $binfo->{master_id}, $binfo->{city}, $newcontainerclass,
2645 $binfo->{vrf}, $peer_id, $newblock);
2646 # Reparent any subblocks from existing containers
2647 $substh->execute($prime, $peer_id);
2648 # Delete the old container
2649 $delsth->execute($peer_id) unless $peer_id == $prime;
2650 # Add new freeblocks for merged leaf blocks
2651 $insfbsth->execute($peercidr, $binfo->{city}, $newcontainerclass, $binfo->{vrf}, $binfo->{id},
2652 $binfo->{master_id}) if $peertype =~ /.[enr]/;
2653 # Convert pool IPs into allocations or aggregated free blocks
2654 _poolToAllocations($dbh, $peerfull, $pinfo, newparent => $prime) if $peertype =~ /.[dp]/;
2655 # Fix up master_id on free blocks if we're merging a master block
2656 $mfbsth->execute($binfo->{master_id}, $m_id) if $peertype eq 'mm';
2657 # capture block for return
2658 push @retlist, { block => $peercidr, mdisp => $disp_alloctypes{$peertype}, mtype => $peertype };
2659 } # merge peers
2660 # update the primary allocation info. Do this last so we don't stomp extra data-retrieval in the loop above
2661 $updsth->execute($newblock, $args{newtype}, $prime);
2662
2663 } # scope
2664
2665 # Clean up free blocks
2666 _compactFree($dbh, $prime);
2667
2668 } elsif ($args{newtype} =~ /.[dp]/) {
2669 ## Pool
2670 # Snag the new parent info for the return list
2671 push @retlist, { block => "$newblock", type => $disp_alloctypes{$args{newtype}}, id => $prime };
2672
2673 if ($args{scope} eq 'keepall') {
2674 # Convert all mergeable allocations and subs to chunks of pool IP assignments
2675 push @retlist, @{ _toPool($dbh, $prime, $newblock, $args{newtype}, 1) };
2676
2677 } elsif ($args{scope} =~ /^clear/) {
2678 # Clear it all out for a fresh (mostly?) empty IP pool
2679 while (my ($peercidr, $peer_id, $peertype, $m_id) = $peersth->fetchrow_array) {
2680 next if $peer_id == $prime;
2681 # Push existing allocations down a level before deleting,
2682 # so that when they're deleted the parent info is correct
2683 $reparentsth->execute($prime, $binfo->{master_id}, $peer_id);
2684 _deleteCascade($dbh, $peer_id, 0);
2685 # Capture block for return
2686 push @retlist, { block => $peercidr, mdisp => $disp_alloctypes{$peertype}, mtype => $peertype };
2687 }
2688 if ($args{scope} eq 'clearall') {
2689 # Delete any subs of $prime as well
2690 my $substh = $dbh->prepare("SELECT cidr,id FROM allocations WHERE parent_id = ?");
2691 $substh->execute($prime);
2692 while (my ($scidr, $s_id) = $substh->fetchrow_array) {
2693 _deleteCascade($dbh, $s_id);
2694 }
2695 } else {
2696 # Convert (subs of) self if not a leaf.
2697 push @retlist, @{ _toPool($dbh, $prime, $newblock, $args{newtype}, 1) }
2698 unless $binfo->{type} =~ /.[enr]/;
2699 } # scope ne 'clearall'
2700
2701 } elsif ($args{scope} eq 'mergepeer') {
2702 # Try to match behaviour from (target type == container) by deleting immediate peer leaf allocations
2703 while (my ($peercidr, $peer_id, $peertype, $m_id) = $peersth->fetchrow_array) {
2704 next if $peer_id == $prime; # don't delete the block we're turning into the pool allocation
2705 # Capture block for return
2706 push @retlist, { block => $peercidr, mdisp => $disp_alloctypes{$peertype}, mtype => $peertype };
2707 next unless $peertype =~ /.[enr]/;
2708 # Don't need _deleteCascade(), since we'll just be deleting the freshly
2709 # added free block a little later anyway
2710 $delsth->execute($peer_id);
2711 }
2712 # Convert self if not a leaf, to match behaviour with a container type as target
2713 _toPool($dbh, $prime, $newblock, $args{newtype}) unless $binfo->{type} =~ /.[enr]/;
2714 }
2715 # Update the primary allocation info.
2716 $updsth->execute($newblock, $args{newtype}, $prime);
2717 # Delete any lingering free blocks
2718 $dbh->do("DELETE FROM freeblocks WHERE parent_id = ? AND cidr <<= ?", undef, $binfo->{parent_id}, $newblock);
2719 # Fix up the rest of the pool IPs
2720 my ($code,$msg) = initPool($dbh, $newblock, $args{newtype}, $binfo->{city},
2721 ($args{newtype} =~ /.p/ ? 'all' : 'normal'), $prime);
2722
2723 } elsif ($args{newtype} =~ /.[enr]/) {
2724 ## Leaf
2725 # Merging to a leaf type of any kind is, pretty much be definition, scope == 'clearall'.
2726 # keepall, mergepeer, and clearpeer all imply keeping suballocations, where leaf allocations
2727 # by definition do not have suballocations.
2728 # Update the old allocation
2729 $updsth->execute($newblock, $args{newtype}, $prime);
2730 # Snag the new parent info for the return list
2731 push @retlist, {block => "$newblock", type => $disp_alloctypes{$args{newtype}}, id => $prime};
2732 while (my ($peercidr, $peer_id, $peertype, $m_id) = $peersth->fetchrow_array) {
2733 next if $peer_id == $prime;
2734 # Push existing allocations down a level before deleting,
2735 # so that when they're deleted the parent info is correct
2736 $reparentsth->execute($prime, $binfo->{master_id}, $peer_id);
2737 _deleteCascade($dbh, $peer_id, 0);
2738 # Capture block for return
2739 push @retlist, { block => $peercidr, mdisp => $disp_alloctypes{$peertype}, mtype => $peertype };
2740 }
2741 # Delete any subs of $prime as well
2742 my $substh = $dbh->prepare("SELECT cidr,id FROM allocations WHERE parent_id = ?");
2743 $substh->execute($prime);
2744 while (my ($scidr, $s_id) = $substh->fetchrow_array) {
2745 _deleteCascade($dbh, $s_id);
2746 }
2747 # Clean up lingering free blocks and pool IPs
2748 $dbh->do("DELETE FROM freeblocks WHERE cidr <<= ? AND (parent_id = ? OR parent_id = ?)", undef,
2749 $newblock, $binfo->{parent_id}, $prime);
2750 $dbh->do("DELETE FROM poolips WHERE parent_id = ? AND ip <<= ? ", undef,
2751 $prime, $newblock);
2752
2753 } # $args{newtype} if()
2754
2755 $dbh->commit;
2756 };
2757 if ($@) {
2758 my $msg = $@;
2759 $errstr = $msg;
2760 $dbh->rollback;
2761 return ('FAIL',$msg);
2762 }
2763
2764# Make the assumption that any change crossing /24 or /16 boundaries will not come out right. Reverse DNS
2765# updates for this operation are already complex enough without handling those edge cases.
2766# ... er, how do we detect this?
2767
2768 # Return early if the block wasn't flagged as rDNS-able
2769 return \@retlist unless $binfo->{revavail} || $binfo->{revpartial};
2770
2771 if ($args{newtype} =~ /.[cm]/) {
2772
2773 if ($args{scope} eq 'keepall') {
2774 # Add new rDNS for new container
2775 _rpc('addOrUpdateRevRec', cidr => $binfo->{block}, name => $binfo->{rdns}, rpcuser => $args{user});
2776
2777 } else {
2778 # Resize rDNS template for $prime
2779 _rpc('resizeTemplate', oldcidr => "$binfo->{block}", newcidr => $newblock->network.'', rpcuser => $args{user});
2780
2781 # Assemble a list of blocks to delete...
2782 my $cidrlist;
2783 foreach my $mblock (@retlist) {
2784 $cidrlist .= $mblock->{block}."," unless $mblock->{block} =~ $newblock;
2785 }
2786
2787 # ... then make slight variant batch delete calls depending on the merge scope
2788 if ($args{scope} eq 'mergepeer') {
2789 # Delete separate rDNS for other peers
2790 $cidrlist =~ s/,$//;
2791 _rpc('delRevSet', cidrlist => $cidrlist, rpcuser => $args{user}, delforward => 'y', delsubs => 'n',
2792 parpatt => $pinfo->{rdns});
2793
2794 } elsif ($args{scope} eq 'clearpeer') {
2795 # Delete all rDNS within other peers
2796 $cidrlist =~ s/,$//;
2797 _rpc('delRevSet', cidrlist => $cidrlist, rpcuser => $args{user}, delforward => 'y', delsubs => 'y',
2798 parpatt => $pinfo->{rdns})
2799
2800 } elsif ($args{scope} eq 'clearall') {
2801 # Delete all other records within the new block
2802 $cidrlist .= $binfo->{block};
2803 _rpc('delRevSet', cidrlist => $cidrlist, rpcuser => $args{user}, delforward => 'y', delsubs => 'y',
2804 parpatt => $pinfo->{rdns});
2805
2806 } # scope, second level
2807 } # scope, !keepall
2808
2809 } elsif ($args{newtype} =~ /.[dp]/) {
2810 # Merge to pool
2811
2812 # Resize rDNS template for $prime
2813 _rpc('resizeTemplate', oldcidr => "$binfo->{block}", newcidr => $newblock->network.'', rpcuser => $args{user});
2814
2815 if ($args{scope} eq 'keepall' || $args{scope} eq 'mergepeer') {
2816 # Assemble a list of blocks to convert from template to individual records...
2817 my @convlist;
2818 my @dellist;
2819 foreach my $mblock (@retlist) {
2820 next if $mblock->{block} =~ $newblock;
2821 if ($mblock->{mtype} =~ /.[cmdp]/) {
2822 # Container and pool templates get deleted
2823 push @dellist, $mblock->{block};
2824 } else {
2825 # Not-containers get converted to per-IP reverse records
2826 push @convlist, $mblock->{block};
2827 }
2828 }
2829 # And do the calls.
2830 _rpc('delRevSet', cidrlist => join(',', @dellist), rpcuser => $args{user}, delforward => 'y', delsubs => 'n',
2831 parpatt => $pinfo->{rdns});
2832 _rpc('templatesToRecords', templates => \@convlist, rpcuser => $args{user});
2833
2834 } # scope eq 'keepall' || 'mergepeer'
2835 else {
2836
2837 # Assemble a list of blocks to convert from template to individual records...
2838 my @convlist;
2839 my @dellist;
2840 my @fulldellist;
2841# There may be an impossible edge case that can be optimized away in here...
2842 foreach my $mblock (@retlist) {
2843 my $checkcidr = new NetAddr::IP $mblock->{block};
2844 next if $mblock->{block} =~ $newblock;
2845 if (!$block->contains($checkcidr)) {
2846 # Blocks not within the original get deleted
2847 push @fulldellist, $mblock->{block};
2848 }
2849 elsif ($mblock->{mtype} =~ /.[cmdp]/) {
2850 # Containers and pools get deleted
2851 push @dellist, $mblock->{block};
2852 } else {
2853 # Whatever's left over gets converted
2854 push @convlist, $mblock->{block};
2855 }
2856 } # foreach @retlist
2857 # And do the calls.
2858 if ($args{scope} eq 'clearpeer') {
2859 # Not happy doing this many, but there isn't really a better way.
2860 # We delete ALL EVARYTHING in peer blocks...
2861 _rpc('delRevSet', cidrlist => join(',', @fulldellist), rpcuser => $args{user}, delforward => 'y',
2862 delsubs => 'y', parpatt => $pinfo->{rdns}) if @fulldellist;
2863 # ... and just the template for container or pool templates in $prime...
2864 _rpc('delRevSet', cidrlist => join(',', @dellist), rpcuser => $args{user}, delforward => 'y',
2865 delsubs => 'n', parpatt => $pinfo->{rdns}) if @dellist;
2866 # ... and convert a few to record groups
2867 _rpc('templatesToRecords', templates => \@convlist, rpcuser => $args{user}) if @convlist;
2868 }
2869 if ($args{scope} eq 'clearall') {
2870# consider just doing join(',',$newblock->split($newblock->masklen+1))?
2871 _rpc('delRevSet', cidrlist => join(',', @fulldellist, @dellist, @convlist, $binfo->{block}),
2872 rpcuser => $args{user}, delforward => 'y', delsubs => 'y', parpatt => $pinfo->{rdns});
2873 }
2874
2875 } # scope eq 'clearpeer' || 'clearall'
2876
2877 } elsif ($args{newtype} =~ /.[enr]/) {
2878 # Merge to leaf type
2879
2880 # Resize rDNS template for $prime
2881 _rpc('resizeTemplate', oldcidr => "$binfo->{block}", newcidr => $newblock->network.'', rpcuser => $args{user});
2882
2883 # Assemble a list of blocks to delete...
2884 my $cidrlist;
2885 foreach my $mblock (@retlist) {
2886 $cidrlist .= $mblock->{block}."," unless $mblock->{block} =~ $newblock;
2887 }
2888 # Delete all other records within the new block
2889 $cidrlist .= $binfo->{block};
2890 _rpc('delRevSet', cidrlist => $cidrlist, rpcuser => $args{user}, delforward => 'y', delsubs => 'y',
2891 parpatt => $pinfo->{rdns});
2892
2893 } # type grouping for rDNS calls
2894
2895 return \@retlist;
2896
2897} # end mergeBlocks()
2898
2899
2900## IPDB::deleteBlock()
2901# Removes an allocation from the database, including deleting IPs
2902# from poolips and recombining entries in freeblocks if possible
2903# Also handles "deleting" a static IP allocation, and removal of a master
2904# Requires a database handle, the block to delete, the routing depth (if applicable),
2905# the VRF ID, and a flag to indicate whether to delete associated forward DNS entries
2906# as well as the reverse entry
2907sub deleteBlock {
2908 my ($dbh,$id,$basetype,$delfwd,$user) = @_;
2909
2910 # reset $basetype so caller can just pass the complete allocation type
2911 if ($basetype =~ /^.?i$/) {
2912 $basetype = 'i';
2913 } else {
2914 $basetype = 'b';
2915 }
2916
2917 # Collect info about the block we're going to delete
2918 my $binfo = getBlockData($dbh, $id, $basetype);
2919 my $cidr = new NetAddr::IP $binfo->{block};
2920
2921# For possible auto-VRF-ignoring (since public IPs shouldn't usually be present in more than one VRF)
2922# is_rfc1918 requires NetAddr::IP >= 4.059
2923# rather than doing this over and over and over.....
2924 my $tmpnum = $cidr->numeric;
2925# 192.168.0.0/16 -> 192.168.255.255 => 3232235520 -> 3232301055
2926# 172.16.0.0/12 -> 172.31.255.255 => 2886729728 -> 2887778303
2927# 10.0.0.0/8 -> 10.255.255.255 => 167772160 -> 184549375
2928 my $isprivnet = (3232235520 <= $tmpnum && $tmpnum <= 3232301055) ||
2929 (2886729728 <= $tmpnum && $tmpnum <= 2887778303) ||
2930 (167772160 <= $tmpnum && $tmpnum <= 184549375);
2931
2932 my $sth;
2933
2934 # Magic variables used for odd allocation cases.
2935 my $container;
2936 my $con_type;
2937
2938
2939 # temporarily forced null, until a sane UI for VRF tracking can be found.
2940# $vrf = '';# if !$vrf; # as with SQL, the null value is not equal to ''. *sigh*
2941
2942 # To contain the error message, if any.
2943 my $msg = "Unknown error deallocating $binfo->{type} $cidr";
2944 my $goback; # to put the parent in so we can link back where the deallocate started
2945
2946 # Enable transactions and exception-on-errors... but only for this sub
2947 local $dbh->{AutoCommit} = 0;
2948 local $dbh->{RaiseError} = 1;
2949
2950 if ($binfo->{type} =~ /^.i$/) {
2951 # First case. The "block" is a static IP
2952 # Note that we still need some additional code in the odd case
2953 # of a netblock-aligned contiguous group of static IPs
2954 my $pinfo;
2955
2956 eval {
2957 $msg = "Unable to deallocate $disp_alloctypes{$binfo->{type}} $cidr";
2958 $pinfo = getBlockData($dbh, $binfo->{parent_id}, 'b');
2959 $dbh->do("UPDATE poolips SET custid = ?, available = 'y',".
2960 "city = (SELECT city FROM allocations WHERE id = ?),".
2961 "description = '', notes = '', circuitid = '', vrf = ?, backup_id = 0".
2962 " WHERE id = ?", undef,
2963 ($pinfo->{custid}, $binfo->{parent_id}, $pinfo->{vrf}, $id) );
2964 $dbh->do("DELETE FROM backuplist WHERE backup_id = ?", undef, $binfo->{hasbk})
2965 if $binfo->{hasbk};
2966 $dbh->commit;
2967 };
2968 if ($@) {
2969 $msg .= ": $@";
2970 eval { $dbh->rollback; };
2971 return ('FAIL',$msg);
2972 }
2973
2974##fixme: RPC return code?
2975 _rpc('delByCIDR', cidr => "$cidr", user => $user, delforward => $delfwd, rpcuser => $user,
2976 location => $binfo->{location})
2977 if ($pinfo->{revavail} || $pinfo->{revpartial});
2978
2979 return ('OK',"OK");
2980
2981 } elsif ($binfo->{type} eq 'mm') { # end alloctype =~ /.i/
2982 # Second case. The block is a full master block
2983
2984##fixme: VRF limit
2985 $msg = "Unable to delete master block $cidr";
2986 eval {
2987 $dbh->do("DELETE FROM allocations WHERE cidr <<= ? AND master_id = ?", undef, ($cidr, $binfo->{master_id}) );
2988 $dbh->do("DELETE FROM freeblocks WHERE cidr <<= ? AND master_id = ?", undef, ($cidr, $binfo->{master_id}) );
2989 $dbh->do("DELETE FROM backuplist WHERE backup_id = ?", undef, $binfo->{hasbk})
2990 if $binfo->{hasbk};
2991 $dbh->commit;
2992 };
2993 if ($@) {
2994 $msg .= ": $@";
2995 eval { $dbh->rollback; };
2996 return ('FAIL', $msg);
2997 }
2998
2999 # Have to handle potentially split reverse zones. Assume they *are* split,
3000 # since if we added them here, they would have been added split.
3001# allow splitting reverse zones to be disabled, maybe, someday
3002#if ($splitrevzones && !$cidr->{isv6}) {
3003 my @zonelist;
3004 if (1 && !$cidr->{isv6}) {
3005 my $splitpoint = ($cidr->masklen <= 16 ? 16 : 24); # hack pthui
3006 @zonelist = $cidr->split($splitpoint);
3007 } else {
3008 @zonelist = ($cidr);
3009 }
3010 my @fails;
3011 foreach my $subzone (@zonelist) {
3012 # We don't wrap this call tighter, since there isn't an inherent allocation to check for rDNS-ability.
3013 if ($rpc_url && !_rpc('delZone', zone => "$subzone", revrec => 'y', rpcuser => $user, delforward => $delfwd) ) {
3014 push @fails, ("$subzone" => $errstr);
3015 }
3016 }
3017 if (@fails) {
3018 return ('WARN',"Warning(s) deleting $cidr from reverse DNS:\n".join("\n", @fails));
3019 }
3020 return ('OK','OK');
3021
3022 } else { # end alloctype master block case
3023
3024 ## This is a big block; but it HAS to be done in a chunk. Any removal
3025 ## of a netblock allocation may result in a larger chunk of free
3026 ## contiguous IP space - which may in turn be combined into a single
3027 ## netblock rather than a number of smaller netblocks.
3028
3029 my $retcode = 'OK';
3030 my ($ptype,$pcity,$ppatt,$p_id);
3031
3032 eval {
3033
3034##fixme: add recursive flag to allow "YES DAMMIT DELETE ALL EVARYTHING!!1!!" without
3035# explicitly deleting any suballocations of the block to be deleted.
3036
3037 # get parent info of the block we're deleting
3038 my $pinfo = getBlockData($dbh, $binfo->{parent_id});
3039 $ptype = $pinfo->{type};
3040 $pcity = $pinfo->{city};
3041 $ppatt = $pinfo->{rdns};
3042 $p_id = $binfo->{parent_id};
3043
3044 # Delete the block
3045 $dbh->do("DELETE FROM allocations WHERE id = ?", undef, ($id) );
3046
3047 # munge the parent type a little
3048 $ptype = (split //, $ptype)[1];
3049
3050##fixme: you can't... CAN NOT.... assign the same public IP to multiple things.
3051# 'Net don't work like that, homey. Restrict VRF-uniqueness to private IPs?
3052# -> $isprivnet flag from start of sub
3053
3054 # check to see if any container allocations could be the "true" parent
3055 my ($tparent,$tpar_id,$trtype,$tcity);
3056 $tpar_id = 0;
3057
3058##fixme: this is far simpler in the strict VRF case; we "know" that any allocation
3059# contained by a container is a part of the same allocation tree when the VRF fields are equal.
3060
3061# logic:
3062# For each possible container of $cidr
3063# note the parent id
3064# walk the chain up the parents
3065# if we intersect $cidr's current parent, break
3066# if we've intersected $cidr's current parent
3067# set some variables to track that block
3068# break
3069
3070# Set up part of "is it in the middle of a pool?" check
3071 my $wuzpool = $dbh->selectrow_hashref("SELECT cidr,parent_id,type,city,custid,id FROM allocations ".
3072 "WHERE (type LIKE '_d' OR type LIKE '_p') AND cidr >> ? AND master_id = ?", { Slice => {} },
3073 ($cidr, $binfo->{master_id}) );
3074
3075##fixme?
3076# edge cases not handled, or handled badly:
3077# -> $cidr managed to get to be the entirety of an IP pool
3078
3079 if ($wuzpool && $wuzpool->{id} != $id) {
3080 # we have legacy goo to be purified
3081 # going to ignore nested pools; not possible to create them via API and no current legacy data includes any.
3082
3083 # for convenience
3084 my $poolid = $wuzpool->{id};
3085 my $pool = $wuzpool->{cidr};
3086 my $poolcity = $wuzpool->{city};
3087 my $pooltype = $wuzpool->{type};
3088 my $poolcustid = $wuzpool->{custid};
3089
3090 $retcode = 'WARNPOOL';
3091 $goback = "$poolid,$pool";
3092 # We've already deleted the block, now we have to stuff its IPs into the pool.
3093 $pooltype =~ s/[dp]$/i/; # change type to static IP
3094 my $sth2 = $dbh->prepare("INSERT INTO poolips (ip,city,type,custid,parent_id) VALUES ".
3095 "(?,'$poolcity','$pooltype','$poolcustid',$poolid)");
3096
3097##fixme: need to not insert net, gateway, and bcast on "real netblock" pools (DHCPish)
3098 # don't insert .0
3099 $sth2->execute($cidr->addr) unless $cidr->addr =~ m|\.0$|;
3100 $cidr++;
3101 my $bcast = $cidr->broadcast;
3102 while ($cidr != $bcast) {
3103 $sth2->execute($cidr->addr);
3104 $cidr++;
3105 }
3106 # don't insert .255
3107 $sth2->execute($cidr->addr) unless $cidr->addr =~ m|\.255$|;
3108
3109# Weirdness Happens. $cidr goes read-only somewhere (this is a thing?!?),
3110# causing ->split, ->hostenum, and related methods to explode. O_o
3111# foreach my $ip ($cidr->hostenum) {
3112# $sth2->execute($ip);
3113# }
3114
3115 }
3116
3117## important!
3118# ... or IS IT?
3119# we may have undef'ed $wuzpool above, if the allocation tree $cidr is in doesn't intersect the pool we found
3120#if (!$wuzpool) {
3121
3122 else {
3123
3124# Edge case: Block is the same size as more than one parent level. Should be rare.
3125# - mainly master + first routing. Sorting on parent_id hides the problem pretty well,
3126# but it's likely still possible to fail in particularly well-mangled databases.
3127# The ultimate fix for this may be to resurrect the "routing depth" atrocity. :/
3128 # Get all possible (and probably a number of impossible) containers for $cidr
3129 $sth = $dbh->prepare("SELECT cidr,parent_id,type,city,id FROM allocations ".
3130 "WHERE (type LIKE '_m' OR type LIKE '_c') AND cidr >>= ? AND master_id = ? ".
3131 "ORDER BY masklen(cidr) DESC,parent_id DESC");
3132 $sth->execute($cidr, $binfo->{master_id});
3133
3134 # Quickly get certain fields (simpler than getBlockData()
3135 my $sth2 = $dbh->prepare("SELECT cidr,parent_id,type,city FROM allocations ".
3136 "WHERE (type LIKE '_m' OR type LIKE '_c') AND id = ? AND master_id = ?");
3137
3138 # For each possible container of $cidr...
3139 while (my @data = $sth->fetchrow_array) {
3140 my $i = 0;
3141 # Save some state and set a start point - parent ID of container we're checking
3142 $tparent = $data[0];
3143 my $ppid = $data[1];
3144 $trtype = $data[2];
3145 $tcity = $data[3];
3146 $tpar_id = $data[4];
3147 last if $data[4] == $binfo->{parent_id}; # Preemptively break if we're already in the right place
3148 last if $ppid == $binfo->{parent_id}; # ... or if the parent of the container is the block's parent
3149 while (1) {
3150 # Retrieve bits on that parent ID
3151 $sth2->execute($ppid, $binfo->{master_id});
3152 my @container = $sth2->fetchrow_array;
3153 $ppid = $container[1];
3154 last if $container[1] == 0; # Break if we've hit a master block
3155 last if $ppid == $binfo->{parent_id}; # Break if we've reached the block $cidr is currently in
3156 }
3157 last if $ppid == $binfo->{parent_id};
3158 }
3159
3160 # found an alternate parent; reset some parent-info bits
3161 if ($tpar_id != $binfo->{parent_id}) {
3162 $ptype = (split //, $trtype)[1];
3163 $pcity = $tcity;
3164 $retcode = 'WARNMERGE'; # may be redundant
3165 $p_id = $tpar_id;
3166 }
3167
3168 $goback = "$p_id,$tparent"; # breadcrumb, currently only used in case of live-parent-is-not-true-parent
3169
3170 # Special case - delete pool IPs
3171 if ($binfo->{type} =~ /^.[pd]$/) {
3172 # We have to delete the IPs from the pool listing.
3173##fixme: rdepth? vrf?
3174 $dbh->do("DELETE FROM poolips WHERE parent_id = ?", undef, ($id) );
3175 }
3176
3177 $pinfo = getBlockData($dbh, $p_id);
3178
3179 # If the block wasn't legacy goo embedded in a static pool, we check the
3180 # freeblocks in the identified parent to see if we can combine any of them.
3181
3182 # if the block to be deleted is a container, move its freeblock(s) up a level, and reset their parenting info
3183 if ($binfo->{type} =~ /^.[mc]/) {
3184 # move the freeblocks into the parent
3185 # we don't insert a new freeblock because there could be a live reparented sub.
3186 $dbh->do("UPDATE freeblocks SET parent_id = ?, routed = ?, city = ? WHERE parent_id = ?", undef,
3187 ($p_id, $ptype, $pcity, $id) );
3188 } else {
3189 # ... otherwise, add the freeblock
3190 $dbh->do("INSERT INTO freeblocks (cidr, city, routed, parent_id, master_id) VALUES (?,?,?,?,?)", undef,
3191 ($cidr, $pcity, $ptype, $p_id, $binfo->{master_id}) );
3192 }
3193
3194 # Walk the free blocks in the parent and reduce them to the minimal set of CIDR ranges necessary
3195 _compactFree($dbh, $p_id);
3196
3197 } # done returning IPs to the appropriate place
3198
3199 # If we got here, we've succeeded. Whew!
3200 $dbh->commit;
3201 }; # end eval
3202 if ($@) {
3203 $msg .= ": $@";
3204 eval { $dbh->rollback; };
3205 return ('FAIL', $msg);
3206 }
3207
3208##fixme: RPC return code?
3209 _rpc('delByCIDR', cidr => "$cidr", rpcuser => $user, delforward => $delfwd, delsubs => 'y',
3210 parpatt => $ppatt, location => $binfo->{location})
3211 if ($binfo->{revavail} || $binfo->{revpartial});
3212
3213 return ($retcode, $goback);
3214
3215 } # end alloctype != netblock
3216
3217} # end deleteBlock()
3218
3219
3220## IPDB::getBlockData()
3221# Get CIDR or IP, custid, type, city, circuit ID, description, notes, modification time,
3222# private/restricted data, and backup fields, for a CIDR block or pool IP
3223# Also returns SWIP status flag for CIDR blocks or pool netblock for IPs
3224# Takes the block ID or IP to look up and an optional flag to indicate a pool IP lookup
3225# instead of a netblock.
3226# Returns a hashref to the block data
3227sub getBlockData {
3228 my $dbh = shift;
3229 my $id = shift;
3230 my $type = shift || 'b'; # default to netblock for lazy callers
3231
3232 # reset $type so caller can just pass the complete allocation type
3233 if ($type =~ /^.?i$/) {
3234 $type = 'i';
3235 } else {
3236 $type = 'b';
3237 }
3238
3239# catch some errors, someday
3240# if (!$id || $id !~ /^\d+$/) {
3241# $errstr = "Allocation ID must be numeric
3242# }
3243
3244 # Note city, vrf, parent_id and master_id removed due to JOIN uncertainty for block allocations
3245 my $commonfields = q(a.custid, a.type, a.circuitid, a.description, a.notes, a.modifystamp AS lastmod,
3246 a.privdata, a.vlan, a.rdns);
3247 my $bkfields = q(b.backup_id AS hasbk, b.bkbrand, b.bkmodel, b.bktype, b.bkport, b.bksrc,
3248 b.bkuser, b.bkvpass, b.bkepass, b.bkip);
3249
3250 if ($type eq 'i') {
3251 my $binfo = $dbh->selectrow_hashref(qq(
3252 SELECT a.id, a.ip AS block, a.city, a.vrf, a.parent_id, a.master_id, $commonfields,
3253 d.zone >> a.ip AS revavail, d.location,
3254 $bkfields,
3255 v.location AS vrfloc
3256 FROM poolips a
3257 LEFT JOIN dnsavail d ON a.master_id = d.parent_alloc AND a.ip << d.zone
3258 LEFT JOIN backuplist b ON a.backup_id = b.backup_id
3259 JOIN allocations m ON a.master_id = m.id JOIN vrfs v ON m.vrf = v.vrf
3260 WHERE a.id = ?
3261 ), undef, ($id) );
3262 return $binfo;
3263 } else {
3264 my $binfo = $dbh->selectrow_hashref(qq(
3265 SELECT a.id, a.cidr AS block, a.city, a.vrf, a.parent_id, a.master_id, a.swip, $commonfields,
3266 f.cidr AS reserve, f.id as reserve_id,
3267 d.zone >>= a.cidr AS revavail, d.zone << a.cidr AS revpartial, d.location,
3268 $bkfields,
3269 v.location AS vrfloc
3270 FROM allocations a
3271 LEFT JOIN freeblocks f ON a.id=f.reserve_for
3272 LEFT JOIN dnsavail d ON a.master_id = d.parent_alloc AND (a.cidr <<= d.zone OR a.cidr >> d.zone)
3273 LEFT JOIN backuplist b ON a.backup_id = b.backup_id
3274 JOIN allocations m ON a.master_id = m.id JOIN vrfs v ON m.vrf = v.vrf
3275 WHERE a.id = ?
3276 ), undef, ($id) );
3277
3278 return $binfo;
3279 }
3280} # end getBlockData()
3281
3282
3283## IPDB::getBlockRDNS()
3284# Gets reverse DNS pattern for a block or IP. Note that this will also
3285# retrieve any default pattern following the parent chain up, and check via
3286# RPC (if available) to see what the narrowest pattern for the requested block is
3287# Returns the current pattern for the block or IP.
3288sub getBlockRDNS {
3289 my $dbh = shift;
3290 my %args = @_;
3291
3292 $args{type} = 'b' if !$args{type};
3293 my $cached = 1;
3294
3295 # snag entry from database
3296 my ($rdns,$rfrom,$pid,$mid);
3297 if ($args{type} =~ /.i/) {
3298 ($rdns, $rfrom, $pid, $mid) = $dbh->selectrow_array("SELECT rdns,ip,parent_id,master_id FROM poolips WHERE id = ?",
3299 undef, ($args{id}) );
3300 } else {
3301 ($rdns, $rfrom, $pid, $mid) = $dbh->selectrow_array("SELECT rdns,cidr,parent_id,master_id FROM allocations WHERE id = ?",
3302 undef, ($args{id}) );
3303 }
3304
3305 # Can't see a way this could end up empty, for any case I care about. If the caller
3306 # doesn't know an allocation ID to request, then they don't know anything else anyway.
3307 my $selfblock = $rfrom;
3308
3309 my $type;
3310 while (!$rdns && $pid) {
3311 ($rdns, $rfrom, $pid, $type) = $dbh->selectrow_array(
3312 "SELECT rdns,cidr,parent_id,type FROM allocations WHERE id = ?",
3313 undef, ($pid) );
3314 last if $type eq 'mm'; # break loops in unfortunate legacy data
3315 }
3316
3317 # use the actual allocation to check against the DNS utility; we don't want
3318 # to always go chasing up the chain to the master... which may (usually won't)
3319 # be present directly in DNS anyway
3320 my $cidr = new NetAddr::IP $selfblock;
3321
3322 if ($rpc_url) {
3323 # Use the first /16 or /24, rather than dithering over which sub-/14 /16
3324 # or sub-/19 /24 to retrieve - it's the least-wrong way to do things.
3325
3326 my ($rpcblock) = ($cidr->masklen <= 24 ? $cidr->split( ($cidr->masklen <= 16 ? 16 : 24) ) : $cidr);
3327 my %rpcargs = (
3328 rpcuser => $args{user},
3329 group => $revgroup, # not sure how this could sanely be exposed, tbh...
3330 cidr => "$rpcblock",
3331 );
3332
3333# # Retrieve the VRF's location by way of the master block
3334# ($rpcargs{location}) = $dbh->selectrow_array("SELECT v.location FROM vrfs v".
3335# " JOIN allocations a ON a.vrf = v.vrf".
3336# " WHERE a.id = ?", undef, $mid);
3337
3338## ... is there something more needed here?
3339# order by so that we get the narrowest entry
3340 ($rpcargs{location}) = $dbh->selectrow_array("SELECT d.location FROM dnsavail d".
3341 " WHERE d.parent_alloc = ? ORDER BY zone DESC", undef, $mid);
3342
3343 $errstr = '';
3344 my $remote_rdns = _rpc('getRevPattern', %rpcargs);
3345 if ($remote_rdns) {
3346 $rdns = $remote_rdns;
3347 $cached = 0;
3348 } else {
3349 if (!$errstr) {
3350 # no error, but no data
3351 $cached = 0;
3352 }
3353 }
3354 }
3355
3356 # hmm. do we care about where it actually came from?
3357 return $rdns, $cached;
3358} # end getBlockRDNS()
3359
3360
3361## IPDB::getRDNSbyIP()
3362# Get individual reverse entries for the IP or CIDR IP range passed. Sort of looking the
3363# opposite direction down the netblock tree compared to getBlockRDNS() above.
3364sub getRDNSbyIP {
3365 my $dbh = shift;
3366 my %args = @_; # We want to accept a variety of call types
3367
3368 # key arguments: allocation ID, type
3369 unless ($args{id} || $args{type}) {
3370 $errstr = 'Missing allocation ID or type';
3371 return;
3372 }
3373
3374 my $binfo = getBlockData($dbh, $args{id}, $args{type});
3375
3376 my @ret = ();
3377 # special case: single IP. Check if it's an allocation or in a pool, then do the RPC call for fresh data.
3378 if ($args{type} =~ /^.i$/) {
3379 my ($ip, $localrev) = $dbh->selectrow_array("SELECT ip, rdns FROM poolips WHERE id = ?", undef, ($args{id}) );
3380 push @ret, { 'r_ip' => $ip, 'iphost' => $localrev };
3381##fixme: rpc call?
3382 } else {
3383 if ($rpc_url) {
3384 my %rpcargs = (
3385 rpcuser => $args{user},
3386 group => $revgroup, # not sure how this could sanely be exposed, tbh...
3387 cidr => $args{range},
3388 );
3389
3390# # Retrieve the VRF's DNS location by way of the master block
3391# ($rpcargs{location}) = $dbh->selectrow_array("SELECT v.location FROM vrfs v".
3392# " JOIN allocations a ON a.vrf = v.vrf JOIN allocations b ON a.id = b.master_id".
3393# " WHERE b.id = ?", undef, $args{id});
3394
3395## ... is there something more needed here?
3396# order by so that we get the narrowest entry
3397 ($rpcargs{location}) = $dbh->selectrow_array("SELECT d.location FROM dnsavail d".
3398 " WHERE d.parent_alloc = ? ORDER BY zone DESC", undef, $binfo->{master_id});
3399
3400 my $remote_rdns = _rpc('getRevSet', %rpcargs);
3401 return $remote_rdns;
3402# $rdns = $remote_rdns if $remote_rdns;
3403# $cached = 0;
3404 }
3405 }
3406 return \@ret;
3407} # end getRDNSbyIP()
3408
3409
3410## IPDB::getRevID()
3411# Get the reverse zone ID(s) for an allocation
3412# Takes a hash with cidr, location and user elements
3413# Returns a hashref to a list of zones and zone IDs (in case of large
3414# allocations effectively split across multiple DNS zones)
3415##fixme: arguably should be integrated in some other related sub that
3416# does RPC to minimize the number of RPC calls somehow
3417sub getRevID {
3418 my $dbh = shift;
3419 my %args = @_;
3420
3421##fixme: build a local cache for mapping allocations to DNS zone IDs
3422# my ($revlocal) = $dbh->selectrow_array("SELECT revzones[0] AS zone,revzones[1] AS revid FROM dnsavail WHERE
3423#zone >>= ? AND location = ?", undef, $args{cidr}, $args{location});
3424#use Data::Dumper;
3425#print "rezone array?<pre>".Dumper($revlocal)."</pre>\n";
3426
3427 my $revzones = _rpc('getZonesByCIDR', rpcuser => $args{user},
3428 cidr => $args{cidr},
3429 return_location => 0,
3430 location => $args{location},
3431 );
3432 return $revzones;
3433} # end getRevID()
3434
3435
3436## IPDB::getNodeList()
3437# Gets a list of node ID+name pairs as an arrayref to a list of hashrefs
3438sub getNodeList {
3439 my $dbh = shift;
3440
3441 my $ret = $dbh->selectall_arrayref("SELECT node_id, node_name FROM nodes ORDER BY node_type,node_id",
3442 { Slice => {} });
3443 return $ret;
3444} # end getNodeList()
3445
3446
3447## IPDB::getNodeName()
3448# Get node name from the ID
3449sub getNodeName {
3450 my $dbh = shift;
3451 my $nid = shift;
3452
3453 my ($nname) = $dbh->selectrow_array("SELECT node_name FROM nodes WHERE node_id = ?", undef, ($nid) );
3454 return $nname;
3455} # end getNodeName()
3456
3457
3458## IPDB::getNodeInfo()
3459# Get node name and ID associated with a block
3460sub getNodeInfo {
3461 my $dbh = shift;
3462 my $block = shift;
3463
3464 my ($nid, $nname) = $dbh->selectrow_array("SELECT nodes.node_id,node_name FROM nodes INNER JOIN noderef".
3465 " ON nodes.node_id=noderef.node_id WHERE noderef.block = ?", undef, ($block) );
3466 return ($nid, $nname);
3467} # end getNodeInfo()
3468
3469
3470## IPDB::mailNotify()
3471# Sends notification mail to recipients regarding an IPDB operation
3472sub mailNotify {
3473 my $dbh = shift;
3474 my ($action,$subj,$message) = @_;
3475
3476 return if $smtphost eq 'smtp.example.com'; # do nothing if still using default SMTP host.
3477
3478##fixme: need to redesign the breakdown/processing for $action for proper handling of all cases
3479
3480# split action into parts for fiddlement. nb: there are almost certainly better ways to do this.
3481 my @actionbits = split //, $action;
3482
3483 # want to notify anyone who has specifically requested notify on *this* type ($action as passed),
3484 # on "all static IP types" or "all pool types" (and other last-char-in-type groupings), on eg "all DSL types",
3485 # and "all events with this action"
3486 my @actionsets = ($action);
3487##fixme: ick, eww. really gotta find a better way to handle this...
3488 push @actionsets, ($actionbits[0].'.'.$actionbits[2],
3489 $actionbits[0].$actionbits[1].'.', $actionbits[0].'a') if $action =~ /^.{3}$/;
3490
3491 my $mailer = Net::SMTP->new($smtphost, Hello => "ipdb.$domain");
3492
3493 # get recip list from db
3494 my $sth = $dbh->prepare("SELECT reciplist FROM notify WHERE action=?");
3495
3496 my %reciplist;
3497 foreach (@actionsets) {
3498 $sth->execute($_);
3499##fixme - need to handle db errors
3500 my ($recipsub) = $sth->fetchrow_array;
3501 next if !$recipsub;
3502 foreach (split(/,/, $recipsub)) {
3503 $reciplist{$_}++;
3504 }
3505 }
3506
3507 return if !%reciplist;
3508
3509 # dodge a bullet with module version "numbers"
3510 my ($ver) = ($IPDB::VERSION =~ /^([\d.]+)(?:^\d|$)/);
3511
3512 foreach my $recip (keys %reciplist) {
3513 $mailer->mail($smtpsender);
3514 $mailer->to($recip);
3515 $mailer->data("From: \"$org_name IP Database\" <$smtpsender>\n",
3516 "To: $recip\n",
3517 "Date: ".strftime("%a, %d %b %Y %H:%M:%S %z",localtime)."\n",
3518 "Subject: {IPDB} $subj\n",
3519 "X-Mailer: IPDB Notify v".sprintf("%.1d",$ver)."\n",
3520 "Organization: $org_name\n",
3521 "\n$message\n");
3522 }
3523 $mailer->quit;
3524}
3525
3526# Indicates module loaded OK. Required by Perl.
35271;
Note: See TracBrowser for help on using the repository browser.