source: branches/dns/cgi-bin/IPDB.pm@ 275

Last change on this file since 275 was 275, checked in by Kris Deugau, 19 years ago

/branches/dns

Remove unused/unusable (?) parameter $domain from initPool()

  • Property svn:keywords set to Date Rev Author
File size: 21.5 KB
RevLine 
[8]1# ipdb/cgi-bin/IPDB.pm
[66]2# Contains functions for IPDB - database access, subnet mangling, block allocation, etc
[8]3###
4# SVN revision info
5# $Date: 2005-08-10 17:45:18 +0000 (Wed, 10 Aug 2005) $
6# SVN revision $Rev: 275 $
7# Last update by $Author: kdeugau $
8###
[146]9# Copyright (C) 2004,2005 - Kris Deugau
[8]10
[4]11package IPDB;
12
13use strict;
14use warnings;
15use Exporter;
[77]16use DBI;
[66]17use Net::SMTP;
[68]18use POSIX;
[4]19use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
20
[77]21$VERSION = 2.0;
[4]22@ISA = qw(Exporter);
[106]23@EXPORT_OK = qw(
[167]24 %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist @masterblocks
[262]25 %allocated %free %routed %bigfree %IPDBacl
[106]26 &initIPDBGlobals &connectDB &finish &checkDBSanity &allocateBlock &deleteBlock
27 &mailNotify
28 );
[4]29
30@EXPORT = (); # Export nothing by default.
[106]31%EXPORT_TAGS = ( ALL => [qw(
[167]32 %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist
[262]33 @masterblocks %allocated %free %routed %bigfree %IPDBacl
[106]34 &initIPDBGlobals &connectDB &finish &checkDBSanity &allocateBlock
35 &deleteBlock &mailNotify
36 )]
37 );
[4]38
[77]39##
40## Global variables
41##
42our %disp_alloctypes;
43our %list_alloctypes;
[167]44our %def_custids;
[96]45our @citylist;
46our @poplist;
[106]47our @masterblocks;
[118]48our %allocated;
49our %free;
50our %routed;
51our %bigfree;
[262]52our %IPDBacl;
[66]53
[77]54# Let's initialize the globals.
55## IPDB::initIPDBGlobals()
56# Initialize all globals. Takes a database handle, returns a success or error code
57sub initIPDBGlobals {
58 my $dbh = $_[0];
59 my $sth;
60
[106]61 # Initialize alloctypes hashes
[167]62 $sth = $dbh->prepare("select type,listname,dispname,listorder,def_custid from alloctypes order by listorder");
[77]63 $sth->execute;
64 while (my @data = $sth->fetchrow_array) {
[106]65 $disp_alloctypes{$data[0]} = $data[2];
[167]66 $def_custids{$data[0]} = $data[4];
[106]67 if ($data[3] < 900) {
68 $list_alloctypes{$data[0]} = $data[1];
69 }
[77]70 }
[96]71
72 # City and POP listings
[157]73 $sth = $dbh->prepare("select city,routing from cities order by city");
[96]74 $sth->execute;
75 return (undef,$sth->errstr) if $sth->err;
76 while (my @data = $sth->fetchrow_array) {
[106]77 push @citylist, $data[0];
[96]78 if ($data[1] eq 'y') {
[106]79 push @poplist, $data[0];
[96]80 }
81 }
82
[106]83 # Master block list
[157]84 $sth = $dbh->prepare("select cidr from masterblocks order by cidr");
[106]85 $sth->execute;
[262]86 return (undef,$sth->errstr) if $sth->err;
[106]87 for (my $i=0; my @data = $sth->fetchrow_array(); $i++) {
88 $masterblocks[$i] = new NetAddr::IP $data[0];
[118]89 $allocated{"$masterblocks[$i]"} = 0;
90 $free{"$masterblocks[$i]"} = 0;
91 $bigfree{"$masterblocks[$i]"} = 128; # Larger number means smaller block.
92 # Set to 128 to prepare for IPv6
93 $routed{"$masterblocks[$i]"} = 0;
[106]94 }
[262]95
96 # Load ACL data. Specific username checks are done at a different level.
97 $sth = $dbh->prepare("select username,acl from users");
98 $sth->execute;
[106]99 return (undef,$sth->errstr) if $sth->err;
[262]100 while (my @data = $sth->fetchrow_array) {
101 $IPDBacl{$data[0]} = $data[1];
102 }
[106]103
[77]104 return (1,"OK");
105} # end initIPDBGlobals
106
107
108## IPDB::connectDB()
[4]109# Creates connection to IPDB.
[77]110# Requires the database name, username, and password.
[4]111# Returns a handle to the db.
[77]112# Set up for a PostgreSQL db; could be any transactional DBMS with the
113# right changes.
114# This definition should be sub connectDB($$$) to be technically correct,
115# but this breaks. GRR.
[4]116sub connectDB {
[77]117 my ($dbname,$user,$pass) = @_;
[4]118 my $dbh;
[77]119 my $DSN = "DBI:Pg:dbname=$dbname";
120# my $user = 'ipdb';
121# my $pw = 'ipdbpwd';
[4]122
123# Note that we want to autocommit by default, and we will turn it off locally as necessary.
[77]124# We may not want to print gobbledygook errors; YMMV. Have to ponder that further.
125 $dbh = DBI->connect($DSN, $user, $pass, {
126 AutoCommit => 1,
127 PrintError => 0
128 })
129 or return (undef, $DBI::errstr) if(!$dbh);
[4]130
[77]131# Return here if we can't select. Note that this indicates a
132# problem executing the select.
[183]133 my $sth = $dbh->prepare("select type from alloctypes");
[77]134 $sth->execute();
135 return (undef,$DBI::errstr) if ($sth->err);
136
137# See if the select returned anything (or null data). This should
138# succeed if the select executed, but...
139 $sth->fetchrow();
140 return (undef,$DBI::errstr) if ($sth->err);
141
142# If we get here, we should be OK.
143 return ($dbh,"DB connection OK");
[4]144} # end connectDB
145
[77]146
147## IPDB::finish()
148# Cleans up after database handles and so on.
149# Requires a database handle
150sub finish {
151 my $dbh = $_[0];
152 $dbh->disconnect;
153} # end finish
154
155
[106]156## IPDB::checkDBSanity()
[4]157# Quick check to see if the db is responding. A full integrity
158# check will have to be a separate tool to walk the IP allocation trees.
159sub checkDBSanity {
[106]160 my ($dbh) = $_[0];
[4]161
162 if (!$dbh) {
[106]163 print "No database handle, or connection has been closed.";
164 return -1;
[4]165 } else {
166 # it connects, try a stmt.
[184]167 my $sth = $dbh->prepare("select type from alloctypes");
[4]168 my $err = $sth->execute();
169
170 if ($sth->fetchrow()) {
171 # all is well.
172 return 1;
173 } else {
[16]174 print "Connected to the database, but could not execute test statement. ".$sth->errstr();
[106]175 return -1;
[4]176 }
177 }
178 # Clean up after ourselves.
[106]179# $dbh->disconnect;
[4]180} # end checkDBSanity
181
[66]182
[77]183## IPDB::allocateBlock()
[66]184# Does all of the magic of actually allocating a netblock
[77]185# Requires database handle, block to allocate, custid, type, city,
[273]186# description, notes, circuit ID, block to allocate from,
187# rDNS for the block/IP
[77]188# Returns a success code and optional error message.
189sub allocateBlock {
[273]190 my ($dbh,undef,undef,$custid,$type,$city,$desc,$notes,$circid,$rdns) = @_;
[77]191
192 my $cidr = new NetAddr::IP $_[1];
193 my $alloc_from = new NetAddr::IP $_[2];
194 my $sth;
[66]195
[79]196 # To contain the error message, if any.
197 my $msg = "Unknown error allocating $cidr as '$type'";
198
[77]199 # Enable transactions and error handling
200 local $dbh->{AutoCommit} = 0; # These need to be local so we don't
201 local $dbh->{RaiseError} = 1; # step on our toes by accident.
[66]202
[157]203 if ($type =~ /^.i$/) {
[79]204 $msg = "Unable to assign static IP $cidr to $custid";
[77]205 eval {
[157]206 # We have to do this in two parts because otherwise we lose
207 # the ability to return the IP assigned. Should that change,
208 # the commented SQL statement below may become usable.
[77]209# update poolips set custid='$custid',city='$city',available='n',
210# description='$desc',notes='$notes',circuitid='$circid'
211# where ip=(select ip from poolips where pool='$alloc_from'
212# and available='y' order by ip limit 1);
[157]213
214 $sth = $dbh->prepare("select ip from poolips where pool='$alloc_from'".
215 " and available='y' order by ip");
216 $sth->execute;
217
[77]218 my @data = $sth->fetchrow_array;
[157]219 $cidr = $data[0]; # $cidr is already declared when we get here!
[77]220
221 $sth = $dbh->prepare("update poolips set custid='$custid',".
[108]222 "city='$city',available='n',description='$desc',notes='$notes',".
[77]223 "circuitid='$circid'".
224 " where ip='$cidr'");
225 $sth->execute;
[273]226
227 # rDNS change is an update as the pool should have set "unassigned..."
228 # rDNS on all IPs already.
229 $msg = "Unable to update rDNS assigning $cidr to $custid";
230 $sth = $dbh->prepare("update dns set hostname='$rdns',auto='n' where ip='$cidr'");
231 $sth->execute;
232
[79]233 $dbh->commit;
[77]234 };
235 if ($@) {
[107]236 $msg .= ": '".$sth->errstr."'";
[78]237 eval { $dbh->rollback; };
238 return ('FAIL',$msg);
[77]239 } else {
[106]240 return ('OK',"$cidr");
[77]241 }
242
243 } else { # end IP-from-pool allocation
244
245 if ($cidr == $alloc_from) {
246 # Easiest case- insert in one table, delete in the other, and go home. More or less.
247 # insert into allocations values (cidr,custid,type,city,desc) and
248 # delete from freeblocks where cidr='cidr'
249 # For data safety on non-transaction DBs, we delete first.
250
251 eval {
[79]252 $msg = "Unable to allocate $cidr as '$disp_alloctypes{$type}'";
[187]253 if ($type eq 'rm') {
[77]254 $sth = $dbh->prepare("update freeblocks set routed='y',city='$city'".
255 " where cidr='$cidr'");
256 $sth->execute;
[157]257 $sth = $dbh->prepare("insert into routed (cidr,maskbits,city)".
258 " values ('$cidr',".$cidr->masklen.",'$city')");
[77]259 $sth->execute;
260 } else {
261 # common stuff for end-use, dialup, dynDSL, pools, etc, etc.
262
[187]263 # special case - block is a container/"reserve" block
264 if ($type =~ /^(.)c$/) {
265 $sth = $dbh->prepare("update freeblocks set routed='$1' where cidr='$cidr'");
[186]266 $sth->execute;
267 } else {
268 # "normal" case
269 $sth = $dbh->prepare("delete from freeblocks where cidr='$cidr'");
270 $sth->execute;
271 }
[157]272 $sth = $dbh->prepare("insert into allocations".
273 " (cidr,custid,type,city,description,notes,maskbits,circuitid)".
274 " values ('$cidr','$custid','$type','$city','$desc','$notes',".
[77]275 $cidr->masklen.",'$circid')");
276 $sth->execute;
[78]277
278 # And initialize the pool, if necessary
[157]279 # PPPoE pools (currently dialup, DSL, and WiFi) get all IPs made available
280 # "DHCP" or "real-subnet" pools have the net, gw, and bcast IPs removed.
[78]281 if ($type =~ /^.p$/) {
[157]282 $msg = "Could not initialize IPs in new $disp_alloctypes{$type} $cidr";
283 my ($code,$rmsg) = initPool($dbh,$cidr,$type,$city,"all");
284 die $rmsg if $code eq 'FAIL';
285 } elsif ($type =~ /^.d$/) {
286 $msg = "Could not initialize IPs in new $disp_alloctypes{$type} $cidr";
287 my ($code,$rmsg) = initPool($dbh,$cidr,$type,$city,"normal");
288 die $rmsg if $code eq 'FAIL';
[79]289 }
290
[77]291 } # routing vs non-routing netblock
[79]292
[77]293 $dbh->commit;
[78]294 }; # end of eval
[77]295 if ($@) {
[157]296 $msg .= ": ".$@;
[77]297 eval { $dbh->rollback; };
[157]298 return ('FAIL',$msg);
[77]299 } else {
[78]300 return ('OK',"OK");
301 }
[77]302
303 } else { # cidr != alloc_from
304
305 # Hard case. Allocation is smaller than free block.
306 my $wantmaskbits = $cidr->masklen;
307 my $maskbits = $alloc_from->masklen;
308
309 my @newfreeblocks; # Holds free blocks generated from splitting the source freeblock.
310
311 # This determines which blocks will be left "free" after allocation. We take the
312 # block we're allocating from, and split it in half. We see which half the wanted
313 # block is in, and repeat until the wanted block is equal to one of the halves.
314 my $i=0;
315 my $tmp_from = $alloc_from; # So we don't munge $alloc_from
316 while ($maskbits++ < $wantmaskbits) {
317 my @subblocks = $tmp_from->split($maskbits);
318 $newfreeblocks[$i++] = (($cidr->within($subblocks[0])) ? $subblocks[1] : $subblocks[0]);
319 $tmp_from = ( ($cidr->within($subblocks[0])) ? $subblocks[0] : $subblocks[1] );
320 } # while
321
322 # Begin SQL transaction block
323 eval {
[79]324 $msg = "Unable to allocate $cidr as '$disp_alloctypes{$type}'";
325
[77]326 # Delete old freeblocks entry
327 $sth = $dbh->prepare("delete from freeblocks where cidr='$alloc_from'");
328 $sth->execute();
329
330 # now we have to do some magic for routing blocks
[187]331 if ($type eq 'rm') {
[79]332
[77]333 # Insert the new freeblocks entries
334 # Note that non-routed blocks are assigned to <NULL>
[157]335 # and use the default value for the routed column ('n')
336 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city)".
337 " values (?, ?, '<NULL>')");
[77]338 foreach my $block (@newfreeblocks) {
339 $sth->execute("$block", $block->masklen);
340 }
[79]341
[77]342 # Insert the entry in the routed table
[157]343 $sth = $dbh->prepare("insert into routed (cidr,maskbits,city)".
344 " values ('$cidr',".$cidr->masklen.",'$city')");
[77]345 $sth->execute;
346 # Insert the (almost) same entry in the freeblocks table
[157]347 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed)".
348 " values ('$cidr',".$cidr->masklen.",'$city','y')");
[77]349 $sth->execute;
350
[189]351 } else { # done with alloctype == rm
[77]352
353 # Insert the new freeblocks entries
[186]354 # Along with some more HairyPerl(TM) in case we're inserting a
[187]355 # subblock (.r) allocation
[157]356 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed)".
[186]357 " values (?, ?, (select city from routed where cidr >>= '$cidr'),'".
[189]358 (($type =~ /^(.)r$/) ? "$1" : 'y')."')");
[77]359 foreach my $block (@newfreeblocks) {
360 $sth->execute("$block", $block->masklen);
361 }
[187]362 # Special-case for reserve/"container" blocks - generate
363 # the "extra" freeblocks entry for the container
364 if ($type =~ /^(.)c$/) {
[186]365 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed)".
[187]366 " values ('$cidr',".$cidr->masklen.",'$city','$1')");
[186]367 $sth->execute;
368 }
[77]369 # Insert the allocations entry
[157]370 $sth = $dbh->prepare("insert into allocations (cidr,custid,type,city,".
371 "description,notes,maskbits,circuitid)".
372 " values ('$cidr','$custid','$type','$city','$desc','$notes',".
373 $cidr->masklen.",'$circid')");
[77]374 $sth->execute;
[78]375
376 # And initialize the pool, if necessary
[157]377 # PPPoE pools (currently dialup, DSL, and WiFi) get all IPs made available
378 # "DHCP" or "real-subnet" pools have the net, gw, and bcast IPs removed.
[78]379 if ($type =~ /^.p$/) {
[79]380 $msg = "Could not initialize IPs in new $disp_alloctypes{$type} $cidr";
[157]381 my ($code,$rmsg) = initPool($dbh,$cidr,$type,$city,"all");
382 die $rmsg if $code eq 'FAIL';
383 } elsif ($type =~ /^.d$/) {
384 $msg = "Could not initialize IPs in new $disp_alloctypes{$type} $cidr";
385 my ($code,$rmsg) = initPool($dbh,$cidr,$type,$city,"normal");
386 die $rmsg if $code eq 'FAIL';
[79]387 }
388
[189]389 } # done with netblock alloctype != rm
[79]390
[77]391 $dbh->commit;
392 }; # end eval
393 if ($@) {
[262]394 $msg .= ": ".$@;
[77]395 eval { $dbh->rollback; };
[78]396 return ('FAIL',$msg);
[77]397 } else {
[78]398 return ('OK',"OK");
[77]399 }
400
401 } # end fullcidr != alloc_from
402
403 } # end static-IP vs netblock allocation
404
405} # end allocateBlock()
406
407
408## IPDB::initPool()
409# Initializes a pool
410# Requires a database handle, the pool CIDR, type, city, and a parameter
411# indicating whether the pool should allow allocation of literally every
412# IP, or if it should reserve network/gateway/broadcast IPs
[78]413# Note that this is NOT done in a transaction, that's why it's a private
414# function and should ONLY EVER get called from allocateBlock()
[273]415# We also do the rDNS for the pool here to save some sanity.
[77]416sub initPool {
[275]417 my ($dbh,undef,$type,$city,$class,$rdns) = @_;
[77]418 my $pool = new NetAddr::IP $_[1];
419
[157]420##fixme Need to just replace 2nd char of type with i rather than capturing 1st char of type
421 $type =~ s/[pd]$/i/;
[77]422 my $sth;
[157]423 my $msg;
[77]424
[157]425 # Trap errors so we can pass them back to the caller. Even if the
426 # caller is only ever supposed to be local, and therefore already
427 # trapping errors. >:(
428 local $dbh->{AutoCommit} = 0; # These need to be local so we don't
429 local $dbh->{RaiseError} = 1; # step on our toes by accident.
430
431 eval {
432 # have to insert all pool IPs into poolips table as "unallocated".
433 $sth = $dbh->prepare("insert into poolips (pool,ip,custid,city,type)".
434 " values ('$pool', ?, '6750400', '$city', '$type')");
[273]435 my $sth2 = $dbh->prepare("insert into dns (ip,hostname) values (?, ?)");
[157]436 my @poolip_list = $pool->hostenum;
437 if ($class eq 'all') { # (DSL-ish block - *all* IPs available
[262]438 if ($pool->addr !~ /\.0$/) { # .0 causes weirdness.
439 $sth->execute($pool->addr);
[273]440 # Insert rDNS entry
[275]441 $sth2->execute($pool->addr,subst_rDNS($rdns,$pool->addr));
[262]442 }
[157]443 for (my $i=0; $i<=$#poolip_list; $i++) {
444 $sth->execute($poolip_list[$i]->addr);
[273]445 # Insert rDNS entry
[275]446 $sth2->execute($poolip_list[$i]->addr,subst_rDNS($rdns,$poolip_list[$i]->addr));
[157]447 }
448 $pool--;
[262]449 if ($pool->addr !~ /\.255$/) { # .255 can cause weirdness.
450 $sth->execute($pool->addr);
[273]451 # Insert rDNS entry
[275]452 $sth2->execute($pool->addr,subst_rDNS($rdns,$pool->addr));
[262]453 }
[157]454 } else { # (real netblock)
455 for (my $i=1; $i<=$#poolip_list; $i++) {
456 $sth->execute($poolip_list[$i]->addr);
[273]457 # Insert rDNS entry
458 $sth2->execute($poolip_list[$i]->addr,
[275]459 subst_rDNS($rdns,$poolip_list[$i]->addr));
[157]460 }
[77]461 }
[157]462 };
463 if ($@) {
464 $msg = "'".$sth->errstr."'";
465 eval { $dbh->rollback; };
466 return ('FAIL',$msg);
467 } else {
468 return ('OK',"OK");
[77]469 }
470} # end initPool()
471
472
[93]473## IPDB::deleteBlock()
474# Removes an allocation from the database, including deleting IPs
475# from poolips and recombining entries in freeblocks if possible
476# Also handles "deleting" a static IP allocation, and removal of a master
477# Requires a database handle, the block to delete, and the type of block
478sub deleteBlock {
479 my ($dbh,undef,$type) = @_;
480 my $cidr = new NetAddr::IP $_[1];
481
482 my $sth;
483
484 # To contain the error message, if any.
485 my $msg = "Unknown error deallocating $type $cidr";
486 # Enable transactions and exception-on-errors... but only for this sub
487 local $dbh->{AutoCommit} = 0;
488 local $dbh->{RaiseError} = 1;
489
490 # First case. The "block" is a static IP
491 # Note that we still need some additional code in the odd case
492 # of a netblock-aligned contiguous group of static IPs
493 if ($type =~ /^.i$/) {
494
495 eval {
[157]496 $msg = "Unable to deallocate $disp_alloctypes{$type} $cidr";
[93]497 $sth = $dbh->prepare("update poolips set custid='6750400',available='y',".
[120]498 "city=(select city from allocations where cidr >>= '$cidr'),".
[93]499 "description='',notes='',circuitid='' where ip='$cidr'");
500 $sth->execute;
501 $dbh->commit;
502 };
503 if ($@) {
504 eval { $dbh->rollback; };
505 return ('FAIL',$msg);
506 } else {
507 return ('OK',"OK");
508 }
509
510 } elsif ($type eq 'mm') { # end alloctype =~ /.i/
511
512 $msg = "Unable to delete master block $cidr";
513 eval {
514 $sth = $dbh->prepare("delete from masterblocks where cidr='$cidr'");
515 $sth->execute;
516 $sth = $dbh->prepare("delete from freeblocks where cidr='$cidr'");
517 $sth->execute;
518 $dbh->commit;
519 };
520 if ($@) {
521 eval { $dbh->rollback; };
522 return ('FAIL', $msg);
523 } else {
524 return ('OK',"OK");
525 }
526
527 } else { # end alloctype master block case
528
529 ## This is a big block; but it HAS to be done in a chunk. Any removal
530 ## of a netblock allocation may result in a larger chunk of free
531 ## contiguous IP space - which may in turn be combined into a single
532 ## netblock rather than a number of smaller netblocks.
533
534 eval {
535
[187]536 if ($type eq 'rm') {
[93]537 $msg = "Unable to remove routing allocation $cidr";
538 $sth = $dbh->prepare("delete from routed where cidr='$cidr'");
539 $sth->execute;
540 # Make sure block getting deleted is properly accounted for.
541 $sth = $dbh->prepare("update freeblocks set routed='n',city='<NULL>'".
542 " where cidr='$cidr'");
543 $sth->execute;
544 # Set up query to start compacting free blocks.
[157]545 $sth = $dbh->prepare("select cidr from freeblocks where ".
[93]546 "maskbits<=".$cidr->masklen." and routed='n' order by maskbits desc");
547
548 } else { # end alloctype routing case
549
[186]550 # Delete all allocations within the block being deleted. This is
551 # deliberate and correct, and removes the need to special-case
552 # removal of "container" blocks.
553 $sth = $dbh->prepare("delete from allocations where cidr <<='$cidr'");
[93]554 $sth->execute;
[186]555
[93]556 # Special case - delete pool IPs
[157]557 if ($type =~ /^.[pd]$/) {
[93]558 # We have to delete the IPs from the pool listing.
559 $sth = $dbh->prepare("delete from poolips where pool='$cidr'");
560 $sth->execute;
561 }
562
563 # Set up query for compacting free blocks.
[157]564 $sth = $dbh->prepare("select cidr from freeblocks where cidr <<= ".
[120]565 "(select cidr from routed where cidr >>= '$cidr') ".
[186]566 " and maskbits<=".$cidr->masklen.
[187]567 " and routed='".(($type =~ /^(.)r$/) ? '$1' : 'y').
[186]568 "' order by maskbits desc");
[93]569
570 } # end alloctype general case
571
572 # Now we look for larger-or-equal-sized free blocks in the same master (routed)
573 # (super)block. If there aren't any, we can't combine blocks anyway. If there
574 # are, we check to see if we can combine blocks.
575 # Execute the statement prepared in the if-else above.
576
577 $sth->execute;
578
579# NetAddr::IP->compact() attempts to produce the smallest inclusive block
580# from the caller and the passed terms.
581# EG: if you call $cidr->compact($ip1,$ip2,$ip3) when $cidr, $ip1, $ip2,
582# and $ip3 are consecutive /27's starting on .0 (.0-.31, .32-.63,
583# .64-.95, and .96-.128), you will get an array containing a single
584# /25 as element 0 (.0-.127). Order is not important; you could have
585# $cidr=.32/27, $ip1=.96/27, $ip2=.0/27, and $ip3=.64/27.
586
587 my (@together, @combinelist);
588 my $i=0;
589 while (my @data = $sth->fetchrow_array) {
590 my $testIP = new NetAddr::IP $data[0];
591 @together = $testIP->compact($cidr);
592 my $num = @together;
593 if ($num == 1) {
594 $cidr = $together[0];
595 $combinelist[$i++] = $testIP;
596 }
597 }
598
[186]599 # Clear old freeblocks entries - if any. They should all be within
600 # the $cidr determined above.
601 $sth = $dbh->prepare("delete from freeblocks where cidr <<='$cidr'");
602 $sth->execute;
[93]603
604 # insert "new" freeblocks entry
[187]605 if ($type eq 'rm') {
[157]606 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city)".
607 " values ('$cidr',".$cidr->masklen.",'<NULL>')");
[93]608 } else {
[157]609 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed)".
610 " values ('$cidr',".$cidr->masklen.
[186]611 ",(select city from routed where cidr >>= '$cidr'),'".
[189]612 (($type =~ /^(.)r$/) ? "$1" : 'y')."')");
[93]613 }
614 $sth->execute;
615
616 # If we got here, we've succeeded. Whew!
617 $dbh->commit;
618 }; # end eval
619 if ($@) {
620 eval { $dbh->rollback; };
621 return ('FAIL', $msg);
622 } else {
623 return ('OK',"OK");
624 }
625
626 } # end alloctype != netblock
627
628} # end deleteBlock()
629
630
[77]631## IPDB::mailNotify()
[66]632# Sends notification mail to recipients regarding an IPDB operation
633sub mailNotify ($$$) {
634 my ($recip,$subj,$message) = @_;
[69]635 my $mailer = Net::SMTP->new("smtp.example.com", Hello => "ipdb.example.com");
[66]636
637 $mailer->mail('ipdb@example.com');
638 $mailer->to($recip);
[69]639 $mailer->data("From: \"IP Database\" <ipdb\@example.com>\n",
[135]640 "To: $recip\n",
[69]641 "Date: ".strftime("%a, %d %b %Y %H:%M:%S %z",localtime)."\n",
642 "Subject: {IPDB} $subj\n",
643 "X-Mailer: IPDB Notify v".sprintf("%.1d",$IPDB::VERSION)."\n",
644 "Organization: Example Corp\n",
645 "\n$message\n");
[66]646 $mailer->quit;
647}
648
[273]649
650## IPDB::subst_rDNS()
651# Substitute tokens in a template string for rDNS entries
652sub subst_rDNS {
653 my ($template,$ip) = $@;
654
655 my ($o1,$o2,$o3,$o4) = ($ip =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)/);
[274]656 $template =~ s/\%o1\%/$o1/;
657 $template =~ s/\%o2\%/$o2/;
658 $template =~ s/\%o3\%/$o3/;
659 $template =~ s/\%o4\%/$o4/;
660 $template =~ s/\%d\%/$o1$-o2-$o3-$o4/;
[273]661
[274]662 return $template;
[273]663} # end subst_rDNS()
664
[4]665# Indicates module loaded OK. Required by Perl.
6661;
Note: See TracBrowser for help on using the repository browser.