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

Last change on this file since 486 was 486, checked in by Kris Deugau, 14 years ago

/trunk

Bugfix to prevent bizarre errors in admin.cgi - force desc, notes, circid, and
privdata to if they're not defined. (Or "Perl false", at least.)

  • Property svn:keywords set to Date Rev Author
File size: 29.5 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: 2010-09-23 04:56:57 +0000 (Thu, 23 Sep 2010) $
6# SVN revision $Rev: 486 $
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( Compact );
19use POSIX;
20use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
21
22$VERSION = 2; ##VERSION##
23@ISA = qw(Exporter);
24@EXPORT_OK = qw(
25 %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist @masterblocks
26 %allocated %free %routed %bigfree %IPDBacl
27 &initIPDBGlobals &connectDB &finish &checkDBSanity &allocateBlock &addMaster
28 &deleteBlock &getBlockData &mailNotify
29 );
30
31@EXPORT = (); # Export nothing by default.
32%EXPORT_TAGS = ( ALL => [qw(
33 %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist
34 @masterblocks %allocated %free %routed %bigfree %IPDBacl
35 &initIPDBGlobals &connectDB &finish &checkDBSanity &allocateBlock
36 &addMaster &deleteBlock &getBlockData &mailNotify
37 )]
38 );
39
40##
41## Global variables
42##
43our %disp_alloctypes;
44our %list_alloctypes;
45our %def_custids;
46our @citylist;
47our @poplist;
48our @masterblocks;
49our %allocated;
50our %free;
51our %routed;
52our %bigfree;
53our %IPDBacl;
54
55our $org_name = 'Example Corp';
56our $smtphost = 'smtp.example.com';
57our $domain = 'example.com';
58our $defcustid = '5554242';
59# mostly for rwhois
60##fixme: leave these blank by default?
61our $rwhoisDataPath = '/usr/local/rwhoisd/etc/rwhoisd'; # to match ./configure defaults from rwhoisd-1.5.9.6
62our $org_street = '123 4th Street';
63our $org_city = 'Anytown';
64our $org_prov_state = 'ON';
65our $org_pocode = 'H0H 0H0';
66our $org_country = 'CA';
67our $org_phone = '000-555-1234';
68our $org_techhandle = 'ISP-ARIN-HANDLE';
69our $org_email = 'noc@example.com';
70our $hostmaster = 'dns@example.com';
71
72our $syslog_facility = 'local2';
73
74# Let's initialize the globals.
75## IPDB::initIPDBGlobals()
76# Initialize all globals. Takes a database handle, returns a success or error code
77sub initIPDBGlobals {
78 my $dbh = $_[0];
79 my $sth;
80
81 # Initialize alloctypes hashes
82 $sth = $dbh->prepare("select type,listname,dispname,listorder,def_custid from alloctypes order by listorder");
83 $sth->execute;
84 while (my @data = $sth->fetchrow_array) {
85 $disp_alloctypes{$data[0]} = $data[2];
86 $def_custids{$data[0]} = $data[4];
87 if ($data[3] < 900) {
88 $list_alloctypes{$data[0]} = $data[1];
89 }
90 }
91
92 # City and POP listings
93 $sth = $dbh->prepare("select city,routing from cities order by city");
94 $sth->execute;
95 return (undef,$sth->errstr) if $sth->err;
96 while (my @data = $sth->fetchrow_array) {
97 push @citylist, $data[0];
98 if ($data[1] eq 'y') {
99 push @poplist, $data[0];
100 }
101 }
102
103 # Master block list
104 $sth = $dbh->prepare("select cidr from masterblocks order by cidr");
105 $sth->execute;
106 return (undef,$sth->errstr) if $sth->err;
107 for (my $i=0; my @data = $sth->fetchrow_array(); $i++) {
108 $masterblocks[$i] = new NetAddr::IP $data[0];
109 $allocated{"$masterblocks[$i]"} = 0;
110 $free{"$masterblocks[$i]"} = 0;
111 $bigfree{"$masterblocks[$i]"} = 128; # Larger number means smaller block.
112 # Set to 128 to prepare for IPv6
113 $routed{"$masterblocks[$i]"} = 0;
114 }
115
116 # Load ACL data. Specific username checks are done at a different level.
117 $sth = $dbh->prepare("select username,acl from users");
118 $sth->execute;
119 return (undef,$sth->errstr) if $sth->err;
120 while (my @data = $sth->fetchrow_array) {
121 $IPDBacl{$data[0]} = $data[1];
122 }
123
124 return (1,"OK");
125} # end initIPDBGlobals
126
127
128## IPDB::connectDB()
129# Creates connection to IPDB.
130# Requires the database name, username, and password.
131# Returns a handle to the db.
132# Set up for a PostgreSQL db; could be any transactional DBMS with the
133# right changes.
134sub connectDB {
135 my $dbname = shift;
136 my $user = shift;
137 my $pass = shift;
138 my $dbhost = shift;
139
140 my $dbh;
141 my $DSN = "DBI:Pg:".($dbhost ? "host=$dbhost;" : '')."dbname=$dbname";
142
143# Note that we want to autocommit by default, and we will turn it off locally as necessary.
144# We may not want to print gobbledygook errors; YMMV. Have to ponder that further.
145 $dbh = DBI->connect($DSN, $user, $pass, {
146 AutoCommit => 1,
147 PrintError => 0
148 })
149 or return (undef, $DBI::errstr) if(!$dbh);
150
151# Return here if we can't select. Note that this indicates a
152# problem executing the select.
153 my $sth = $dbh->prepare("select type from alloctypes");
154 $sth->execute();
155 return (undef,$DBI::errstr) if ($sth->err);
156
157# See if the select returned anything (or null data). This should
158# succeed if the select executed, but...
159 $sth->fetchrow();
160 return (undef,$DBI::errstr) if ($sth->err);
161
162# If we get here, we should be OK.
163 return ($dbh,"DB connection OK");
164} # end connectDB
165
166
167## IPDB::finish()
168# Cleans up after database handles and so on.
169# Requires a database handle
170sub finish {
171 my $dbh = $_[0];
172 $dbh->disconnect;
173} # end finish
174
175
176## IPDB::checkDBSanity()
177# Quick check to see if the db is responding. A full integrity
178# check will have to be a separate tool to walk the IP allocation trees.
179sub checkDBSanity {
180 my ($dbh) = $_[0];
181
182 if (!$dbh) {
183 print "No database handle, or connection has been closed.";
184 return -1;
185 } else {
186 # it connects, try a stmt.
187 my $sth = $dbh->prepare("select type from alloctypes");
188 my $err = $sth->execute();
189
190 if ($sth->fetchrow()) {
191 # all is well.
192 return 1;
193 } else {
194 print "Connected to the database, but could not execute test statement. ".$sth->errstr();
195 return -1;
196 }
197 }
198 # Clean up after ourselves.
199# $dbh->disconnect;
200} # end checkDBSanity
201
202
203## IPDB::addMaster()
204# Does all the magic necessary to sucessfully add a master block
205# Requires database handle, block to add
206# Returns failure code and error message or success code and "message"
207sub addMaster {
208 my $dbh = shift;
209 my $cidr = new NetAddr::IP shift;
210
211 # Allow transactions, and raise an exception on errors so we can catch it later.
212 # Use local to make sure these get "reset" properly on exiting this block
213 local $dbh->{AutoCommit} = 0;
214 local $dbh->{RaiseError} = 1;
215
216 # Wrap all the SQL in a transaction
217 eval {
218 my $sth = $dbh->prepare("select count(*) from masterblocks where cidr <<= '$cidr'");
219 $sth->execute;
220 my @data = $sth->fetchrow_array;
221
222 if ($data[0] eq 0) {
223 # First case - master is brand-spanking-new.
224##fixme: rwhois should be globally-flagable somewhere, much like a number of other things
225## maybe a db table called "config"?
226 $sth = $dbh->prepare("insert into masterblocks (cidr,rwhois) values ('$cidr','y')");
227 $sth->execute;
228
229# Unrouted blocks aren't associated with a city (yet). We don't rely on this
230# elsewhere though; legacy data may have traps and pitfalls in it to break this.
231# Thus the "routed" flag.
232
233 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed)".
234 " values ('$cidr',".$cidr->masklen.",'<NULL>','n')");
235 $sth->execute;
236
237 # If we get here, everything is happy. Commit changes.
238 $dbh->commit;
239
240 } # new master does not contain existing master(s)
241 else {
242
243 # collect the master(s) we're going to absorb, and snag the longest netmask while we're at it.
244 my $smallmask = $cidr->masklen;
245 $sth = $dbh->prepare("select cidr as mask from masterblocks where cidr <<= '$cidr'");
246 $sth->execute;
247 my @cmasters;
248 while (my @data = $sth->fetchrow_array) {
249 my $master = new NetAddr::IP $data[0];
250 push @cmasters, $master;
251 $smallmask = $master->masklen if $master->masklen > $smallmask;
252 }
253
254 # split the new master, and keep only those blocks not part of an existing master
255 my @blocklist;
256 foreach my $seg ($cidr->split($smallmask)) {
257 my $contained = 0;
258 foreach my $master (@cmasters) {
259 $contained = 1 if $master->contains($seg);
260 }
261 push @blocklist, $seg if !$contained;
262 }
263
264 # collect the unrouted free blocks within the new master
265 $sth = $dbh->prepare("select cidr from freeblocks where ".
266 "maskbits>=$smallmask and cidr <<= '$cidr' and routed='n'");
267 $sth->execute;
268 while (my @data = $sth->fetchrow_array) {
269 my $freeblock = new NetAddr::IP $data[0];
270 push @blocklist, $freeblock;
271 }
272
273 # combine the set of free blocks we should have now.
274 @blocklist = Compact(@blocklist);
275
276 # and now insert the new data. Make sure to delete old masters too.
277
278 # freeblocks
279 $sth = $dbh->prepare("delete from freeblocks where cidr <<= ?");
280 my $sth2 = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed) values (?,?,'<NULL>','n')");
281 foreach my $newblock (@blocklist) {
282 $sth->execute("$newblock");
283 $sth2->execute("$newblock", $newblock->masklen);
284 }
285
286 # master
287 $sth = $dbh->prepare("delete from masterblocks where cidr <<= '$cidr'");
288 $sth->execute;
289 $sth = $dbh->prepare("insert into masterblocks (cidr,rwhois) values ('$cidr','y')");
290 $sth->execute;
291
292 # *whew* If we got here, we likely suceeded.
293 $dbh->commit;
294 } # new master contained existing master(s)
295 }; # end eval
296
297 if ($@) {
298 my $msg = $@;
299 eval { $dbh->rollback; };
300 return ('FAIL',$msg);
301 } else {
302 return ('OK','OK');
303 }
304} # end addMaster
305
306
307## IPDB::allocateBlock()
308# Does all of the magic of actually allocating a netblock
309# Requires database handle, block to allocate, custid, type, city,
310# description, notes, circuit ID, block to allocate from, private data
311# Returns a success code and optional error message.
312sub allocateBlock {
313 my ($dbh,undef,undef,$custid,$type,$city,$desc,$notes,$circid,$privdata,$nodeid) = @_;
314
315 my $cidr = new NetAddr::IP $_[1];
316 my $alloc_from = new NetAddr::IP $_[2];
317 my $sth;
318
319 $desc = '' if !$desc;
320 $notes = '' if !$notes;
321 $circid = '' if !$circid;
322 $privdata = '' if !$privdata;
323
324 # Snag the "type" of the freeblock (alloc_from) "just in case"
325 $sth = $dbh->prepare("select routed from freeblocks where cidr='$alloc_from'");
326 $sth->execute;
327 my ($alloc_from_type) = $sth->fetchrow_array;
328
329 # To contain the error message, if any.
330 my $msg = "Unknown error allocating $cidr as '$type'";
331
332 # Enable transactions and error handling
333 local $dbh->{AutoCommit} = 0; # These need to be local so we don't
334 local $dbh->{RaiseError} = 1; # step on our toes by accident.
335
336 if ($type =~ /^.i$/) {
337 $msg = "Unable to assign static IP $cidr to $custid";
338 eval {
339 # We have to do this in two parts because otherwise we lose
340 # the ability to return the IP assigned. Should that change,
341 # the commented SQL statement below may become usable.
342# update poolips set custid='$custid',city='$city',available='n',
343# description='$desc',notes='$notes',circuitid='$circid'
344# where ip=(select ip from poolips where pool='$alloc_from'
345# and available='y' order by ip limit 1);
346
347 $sth = $dbh->prepare("select ip from poolips where pool='$alloc_from'".
348 " and available='y' order by ip");
349 $sth->execute;
350
351 my @data = $sth->fetchrow_array;
352 $cidr = $data[0]; # $cidr is already declared when we get here!
353
354 $sth = $dbh->prepare("update poolips set custid='$custid',".
355 "city='$city',available='n',description='$desc',notes='$notes',".
356 "circuitid='$circid',privdata='$privdata'".
357 " where ip='$cidr'");
358 $sth->execute;
359# node hack
360 if ($nodeid && $nodeid ne '') {
361 $sth = $dbh->prepare("INSERT INTO noderef (block,node_id) VALUES (?,?)");
362 $sth->execute("$cidr",$nodeid);
363 }
364# end node hack
365 $dbh->commit;
366 };
367 if ($@) {
368 $msg .= ": '".$sth->errstr."'";
369 eval { $dbh->rollback; };
370 return ('FAIL',$msg);
371 } else {
372 return ('OK',"$cidr");
373 }
374
375 } else { # end IP-from-pool allocation
376
377 if ($cidr == $alloc_from) {
378 # Easiest case- insert in one table, delete in the other, and go home. More or less.
379 # insert into allocations values (cidr,custid,type,city,desc) and
380 # delete from freeblocks where cidr='cidr'
381 # For data safety on non-transaction DBs, we delete first.
382
383 eval {
384 $msg = "Unable to allocate $cidr as '$disp_alloctypes{$type}'";
385 if ($type eq 'rm') {
386 $sth = $dbh->prepare("update freeblocks set routed='y',city='$city'".
387 " where cidr='$cidr'");
388 $sth->execute;
389 $sth = $dbh->prepare("insert into routed (cidr,maskbits,city)".
390 " values ('$cidr',".$cidr->masklen.",'$city')");
391 $sth->execute;
392 } else {
393 # common stuff for end-use, dialup, dynDSL, pools, etc, etc.
394
395 # special case - block is a container/"reserve" block
396 if ($type =~ /^(.)c$/) {
397 $sth = $dbh->prepare("update freeblocks set routed='$1' where cidr='$cidr'");
398 $sth->execute;
399 } else {
400 # "normal" case
401 $sth = $dbh->prepare("delete from freeblocks where cidr='$cidr'");
402 $sth->execute;
403 }
404 $sth = $dbh->prepare("insert into allocations".
405 " (cidr,custid,type,city,description,notes,maskbits,circuitid,privdata)".
406 " values ('$cidr','$custid','$type','$city','$desc','$notes',".
407 $cidr->masklen.",'$circid','$privdata')");
408 $sth->execute;
409
410 # And initialize the pool, if necessary
411 # PPPoE pools (currently dialup, DSL, and WiFi) get all IPs made available
412 # "DHCP" or "real-subnet" pools have the net, gw, and bcast IPs removed.
413 if ($type =~ /^.p$/) {
414 $msg = "Could not initialize IPs in new $disp_alloctypes{$type} $cidr";
415 my ($code,$rmsg) = initPool($dbh,$cidr,$type,$city,"all");
416 die $rmsg if $code eq 'FAIL';
417 } elsif ($type =~ /^.d$/) {
418 $msg = "Could not initialize IPs in new $disp_alloctypes{$type} $cidr";
419 my ($code,$rmsg) = initPool($dbh,$cidr,$type,$city,"normal");
420 die $rmsg if $code eq 'FAIL';
421 }
422
423 } # routing vs non-routing netblock
424
425# node hack
426 if ($nodeid && $nodeid ne '') {
427 $sth = $dbh->prepare("INSERT INTO noderef (block,node_id) VALUES (?,?)");
428 $sth->execute("$cidr",$nodeid);
429 }
430# end node hack
431 $dbh->commit;
432 }; # end of eval
433 if ($@) {
434 $msg .= ": ".$@;
435 eval { $dbh->rollback; };
436 return ('FAIL',$msg);
437 } else {
438 return ('OK',"OK");
439 }
440
441 } else { # cidr != alloc_from
442
443 # Hard case. Allocation is smaller than free block.
444 my $wantmaskbits = $cidr->masklen;
445 my $maskbits = $alloc_from->masklen;
446
447 my @newfreeblocks; # Holds free blocks generated from splitting the source freeblock.
448
449 # This determines which blocks will be left "free" after allocation. We take the
450 # block we're allocating from, and split it in half. We see which half the wanted
451 # block is in, and repeat until the wanted block is equal to one of the halves.
452 my $i=0;
453 my $tmp_from = $alloc_from; # So we don't munge $alloc_from
454 while ($maskbits++ < $wantmaskbits) {
455 my @subblocks = $tmp_from->split($maskbits);
456 $newfreeblocks[$i++] = (($cidr->within($subblocks[0])) ? $subblocks[1] : $subblocks[0]);
457 $tmp_from = ( ($cidr->within($subblocks[0])) ? $subblocks[0] : $subblocks[1] );
458 } # while
459
460 # Begin SQL transaction block
461 eval {
462 $msg = "Unable to allocate $cidr as '$disp_alloctypes{$type}'";
463
464 # Delete old freeblocks entry
465 $sth = $dbh->prepare("delete from freeblocks where cidr='$alloc_from'");
466 $sth->execute();
467
468 # now we have to do some magic for routing blocks
469 if ($type eq 'rm') {
470
471 # Insert the new freeblocks entries
472 # Note that non-routed blocks are assigned to <NULL>
473 # and use the default value for the routed column ('n')
474 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city)".
475 " values (?, ?, '<NULL>')");
476 foreach my $block (@newfreeblocks) {
477 $sth->execute("$block", $block->masklen);
478 }
479
480 # Insert the entry in the routed table
481 $sth = $dbh->prepare("insert into routed (cidr,maskbits,city)".
482 " values ('$cidr',".$cidr->masklen.",'$city')");
483 $sth->execute;
484 # Insert the (almost) same entry in the freeblocks table
485 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed)".
486 " values ('$cidr',".$cidr->masklen.",'$city','y')");
487 $sth->execute;
488
489 } else { # done with alloctype == rm
490
491 # Insert the new freeblocks entries
492 # Along with some more HairyPerl(TM):
493 # if $alloc_type_from is p
494 # OR
495 # $type matches /^(.)r$/
496 # inserted value for routed column should match.
497 # This solves the case of inserting an arbitrary block into a
498 # "Reserve-for-routed-DSL" block. Which you really shouldn't
499 # do in the first place, but anyway...
500 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed)".
501 " values (?, ?, (select city from routed where cidr >>= '$cidr'),'".
502 ( ( ($alloc_from_type =~ /^(p)$/) || ($type =~ /^(.)r$/) ) ? "$1" : 'y')."')");
503 foreach my $block (@newfreeblocks) {
504 $sth->execute("$block", $block->masklen);
505 }
506 # Special-case for reserve/"container" blocks - generate
507 # the "extra" freeblocks entry for the container
508 if ($type =~ /^(.)c$/) {
509 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed)".
510 " values ('$cidr',".$cidr->masklen.",'$city','$1')");
511 $sth->execute;
512 }
513 # Insert the allocations entry
514 $sth = $dbh->prepare("insert into allocations (cidr,custid,type,city,".
515 "description,notes,maskbits,circuitid,privdata)".
516 " values ('$cidr','$custid','$type','$city','$desc','$notes',".
517 $cidr->masklen.",'$circid','$privdata')");
518 $sth->execute;
519
520 # And initialize the pool, if necessary
521 # PPPoE pools (currently dialup, DSL, and WiFi) get all IPs made available
522 # "DHCP" or "real-subnet" pools have the net, gw, and bcast IPs removed.
523 if ($type =~ /^.p$/) {
524 $msg = "Could not initialize IPs in new $disp_alloctypes{$type} $cidr";
525 my ($code,$rmsg) = initPool($dbh,$cidr,$type,$city,"all");
526 die $rmsg if $code eq 'FAIL';
527 } elsif ($type =~ /^.d$/) {
528 $msg = "Could not initialize IPs in new $disp_alloctypes{$type} $cidr";
529 my ($code,$rmsg) = initPool($dbh,$cidr,$type,$city,"normal");
530 die $rmsg if $code eq 'FAIL';
531 }
532
533 } # done with netblock alloctype != rm
534
535# node hack
536 if ($nodeid && $nodeid ne '') {
537 $sth = $dbh->prepare("INSERT INTO noderef (block,node_id) VALUES (?,?)");
538 $sth->execute("$cidr",$nodeid);
539 }
540# end node hack
541 $dbh->commit;
542 }; # end eval
543 if ($@) {
544 $msg .= ": ".$@;
545 eval { $dbh->rollback; };
546 return ('FAIL',$msg);
547 } else {
548 return ('OK',"OK");
549 }
550
551 } # end fullcidr != alloc_from
552
553 } # end static-IP vs netblock allocation
554
555} # end allocateBlock()
556
557
558## IPDB::initPool()
559# Initializes a pool
560# Requires a database handle, the pool CIDR, type, city, and a parameter
561# indicating whether the pool should allow allocation of literally every
562# IP, or if it should reserve network/gateway/broadcast IPs
563# Note that this is NOT done in a transaction, that's why it's a private
564# function and should ONLY EVER get called from allocateBlock()
565sub initPool {
566 my ($dbh,undef,$type,$city,$class) = @_;
567 my $pool = new NetAddr::IP $_[1];
568
569##fixme Need to just replace 2nd char of type with i rather than capturing 1st char of type
570 $type =~ s/[pd]$/i/;
571 my $sth;
572 my $msg;
573
574 # Trap errors so we can pass them back to the caller. Even if the
575 # caller is only ever supposed to be local, and therefore already
576 # trapping errors. >:(
577 local $dbh->{AutoCommit} = 0; # These need to be local so we don't
578 local $dbh->{RaiseError} = 1; # step on our toes by accident.
579
580 eval {
581 # have to insert all pool IPs into poolips table as "unallocated".
582 $sth = $dbh->prepare("insert into poolips (pool,ip,custid,city,type)".
583 " values ('$pool', ?, '$defcustid', ?, '$type')");
584 my @poolip_list = $pool->hostenum;
585 if ($class eq 'all') { # (DSL-ish block - *all* IPs available
586 if ($pool->addr !~ /\.0$/) { # .0 causes weirdness.
587 $sth->execute($pool->addr, $city);
588 }
589 for (my $i=0; $i<=$#poolip_list; $i++) {
590 $sth->execute($poolip_list[$i]->addr, $city);
591 }
592 $pool--;
593 if ($pool->addr !~ /\.255$/) { # .255 can cause weirdness.
594 $sth->execute($pool->addr, $city);
595 }
596 } else { # (real netblock)
597 for (my $i=1; $i<=$#poolip_list; $i++) {
598 $sth->execute($poolip_list[$i]->addr, $city);
599 }
600 }
601 };
602 if ($@) {
603 $msg = $@." '".$sth->errstr."'";
604 eval { $dbh->rollback; };
605 return ('FAIL',$msg);
606 } else {
607 return ('OK',"OK");
608 }
609} # end initPool()
610
611
612## IPDB::deleteBlock()
613# Removes an allocation from the database, including deleting IPs
614# from poolips and recombining entries in freeblocks if possible
615# Also handles "deleting" a static IP allocation, and removal of a master
616# Requires a database handle, the block to delete, and the type of block
617sub deleteBlock {
618 my ($dbh,undef,$type) = @_;
619 my $cidr = new NetAddr::IP $_[1];
620
621 my $sth;
622
623 # Magic variables used for odd allocation cases.
624 my $container;
625 my $con_type;
626
627 # To contain the error message, if any.
628 my $msg = "Unknown error deallocating $type $cidr";
629 # Enable transactions and exception-on-errors... but only for this sub
630 local $dbh->{AutoCommit} = 0;
631 local $dbh->{RaiseError} = 1;
632
633 # First case. The "block" is a static IP
634 # Note that we still need some additional code in the odd case
635 # of a netblock-aligned contiguous group of static IPs
636 if ($type =~ /^.i$/) {
637
638 eval {
639 $msg = "Unable to deallocate $disp_alloctypes{$type} $cidr";
640 $sth = $dbh->prepare("update poolips set custid='$defcustid',available='y',".
641 "city=(select city from allocations where cidr >>= '$cidr'".
642 " order by masklen(cidr) desc limit 1),".
643 "description='',notes='',circuitid='' where ip='$cidr'");
644 $sth->execute;
645 $dbh->commit;
646 };
647 if ($@) {
648 eval { $dbh->rollback; };
649 return ('FAIL',$msg);
650 } else {
651 return ('OK',"OK");
652 }
653
654 } elsif ($type eq 'mm') { # end alloctype =~ /.i/
655
656 $msg = "Unable to delete master block $cidr";
657 eval {
658 $sth = $dbh->prepare("delete from masterblocks where cidr='$cidr'");
659 $sth->execute;
660 $sth = $dbh->prepare("delete from freeblocks where cidr <<= '$cidr'");
661 $sth->execute;
662 $dbh->commit;
663 };
664 if ($@) {
665 eval { $dbh->rollback; };
666 return ('FAIL', $msg);
667 } else {
668 return ('OK',"OK");
669 }
670
671 } else { # end alloctype master block case
672
673 ## This is a big block; but it HAS to be done in a chunk. Any removal
674 ## of a netblock allocation may result in a larger chunk of free
675 ## contiguous IP space - which may in turn be combined into a single
676 ## netblock rather than a number of smaller netblocks.
677
678 eval {
679
680 if ($type eq 'rm') {
681 $msg = "Unable to remove routing allocation $cidr";
682 $sth = $dbh->prepare("delete from routed where cidr='$cidr'");
683 $sth->execute;
684 # Make sure block getting deleted is properly accounted for.
685 $sth = $dbh->prepare("update freeblocks set routed='n',city='<NULL>'".
686 " where cidr='$cidr'");
687 $sth->execute;
688 # Set up query to start compacting free blocks.
689 $sth = $dbh->prepare("select cidr from freeblocks where ".
690 "maskbits<=".$cidr->masklen." and routed='n' order by maskbits desc");
691
692 } else { # end alloctype routing case
693
694 # Magic. We need to get information about the containing block (if any)
695 # so as to make sure that the freeblocks we insert get the correct "type".
696 $sth = $dbh->prepare("select cidr,type from allocations where cidr >> '$cidr'");
697 $sth->execute;
698 ($container, $con_type) = $sth->fetchrow_array;
699
700 # Delete all allocations within the block being deleted. This is
701 # deliberate and correct, and removes the need to special-case
702 # removal of "container" blocks.
703 $sth = $dbh->prepare("delete from allocations where cidr <<='$cidr'");
704 $sth->execute;
705
706 # Special case - delete pool IPs
707 if ($type =~ /^.[pd]$/) {
708 # We have to delete the IPs from the pool listing.
709 $sth = $dbh->prepare("delete from poolips where pool='$cidr'");
710 $sth->execute;
711 }
712
713 # Set up query for compacting free blocks.
714 if ($con_type && $con_type eq 'pc') {
715 # Clean up after "bad" allocations (blocks that are not formally
716 # contained which have nevertheless been allocated from a container block)
717 # We want to make certain that the freeblocks are properly "labelled"
718 $sth = $dbh->prepare("select cidr from freeblocks where cidr <<= '$container' order by maskbits desc");
719 } else {
720 # Standard deallocation.
721 $sth = $dbh->prepare("select cidr from freeblocks where cidr <<= ".
722 "(select cidr from routed where cidr >>= '$cidr') ".
723 " and maskbits<=".$cidr->masklen.
724 " and routed='".(($type =~ /^(.)r$/) ? "$1" : 'y').
725 "' order by maskbits desc");
726 }
727
728 } # end alloctype general case
729
730 ## Deallocate legacy blocks stashed in the middle of a static IP pool
731 ## This may be expandable to an even more general case of contained netblock, or other pool types.
732
733 # Find out if the block we're deallocating is within a DSL pool
734 my $sth2 = $dbh->prepare("SELECT cidr,city,type FROM allocations WHERE type LIKE '_p' AND cidr >>= ?");
735 $sth2->execute("$cidr");
736 my ($pool,$poolcity,$pooltype) = $sth2->fetchrow_array;
737
738 if ($pool || $sth2->rows) {
739 # We've already deleted the block, now we have to stuff its IPs into the pool.
740 $pooltype =~ s/p$/i/; # change type to static IP
741 $sth2 = $dbh->prepare("INSERT INTO poolips (pool,ip,city,type,custid) values ".
742 "('$pool',?,'$poolcity','$pooltype','$defcustid')");
743##fixme: need to not insert net, gateway, and bcast on "real netblock" pools (DHCPish)
744 # don't insert .0
745 $sth2->execute($cidr->addr) unless $cidr->addr =~ m|\.0$|;
746 foreach my $ip ($cidr->hostenum) {
747 $sth2->execute("$ip");
748 }
749 $cidr--;
750 # don't insert .255
751 $sth2->execute($cidr->addr) unless $cidr->addr =~ m|\.255$|;
752 } else { # done returning IPs from a block to a static DSL pool
753
754 # Now we look for larger-or-equal-sized free blocks in the same master (routed)
755 # (super)block. If there aren't any, we can't combine blocks anyway. If there
756 # are, we check to see if we can combine blocks.
757 # Execute the statement prepared in the if-else above.
758
759 $sth->execute;
760
761# NetAddr::IP->compact() attempts to produce the smallest inclusive block
762# from the caller and the passed terms.
763# EG: if you call $cidr->compact($ip1,$ip2,$ip3) when $cidr, $ip1, $ip2,
764# and $ip3 are consecutive /27's starting on .0 (.0-.31, .32-.63,
765# .64-.95, and .96-.128), you will get an array containing a single
766# /25 as element 0 (.0-.127). Order is not important; you could have
767# $cidr=.32/27, $ip1=.96/27, $ip2=.0/27, and $ip3=.64/27.
768
769 my (@together, @combinelist);
770 my $i=0;
771 while (my @data = $sth->fetchrow_array) {
772 my $testIP = new NetAddr::IP $data[0];
773 @together = $testIP->compact($cidr);
774 my $num = @together;
775 if ($num == 1) {
776 $cidr = $together[0];
777 $combinelist[$i++] = $testIP;
778 }
779 }
780
781 # Clear old freeblocks entries - if any. They should all be within
782 # the $cidr determined above.
783 $sth = $dbh->prepare("delete from freeblocks where cidr <<='$cidr'");
784 $sth->execute;
785
786 # insert "new" freeblocks entry
787 if ($type eq 'rm') {
788 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city)".
789 " values ('$cidr',".$cidr->masklen.",'<NULL>')");
790 } else {
791 # Magic hackery to insert "correct" data for deallocation of
792 # non-contained blocks allocated from within a container.
793 $type = 'pr' if $con_type && $con_type eq 'pc';
794
795 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed)".
796 " values ('$cidr',".$cidr->masklen.
797 ",(select city from routed where cidr >>= '$cidr'),'".
798 (($type =~ /^(.)r$/) ? "$1" : 'y')."')");
799 }
800 $sth->execute;
801
802 } # done returning IPs to the appropriate place
803
804 # If we got here, we've succeeded. Whew!
805 $dbh->commit;
806 }; # end eval
807 if ($@) {
808 $msg = $@;
809 eval { $dbh->rollback; };
810 return ('FAIL', $msg);
811 } else {
812 return ('OK',"OK");
813 }
814
815 } # end alloctype != netblock
816
817} # end deleteBlock()
818
819
820## IPDB::getBlockData()
821# Return custid, type, city, and description for a block
822sub getBlockData {
823 my $dbh = shift;
824 my $block = shift;
825
826 my $sth = $dbh->prepare("select cidr,custid,type,city,description from searchme".
827 " where cidr='$block'");
828 $sth->execute();
829 return $sth->fetchrow_array();
830} # end getBlockData()
831
832
833## IPDB::mailNotify()
834# Sends notification mail to recipients regarding an IPDB operation
835sub mailNotify {
836 my $dbh = shift;
837 my ($action,$subj,$message) = @_;
838
839 return if $smtphost eq 'smtp.example.com'; # do nothing if still using default SMTP host.
840
841##fixme: need to redesign the breakdown/processing for $action for proper handling of all cases
842
843# split action into parts for fiddlement. nb: there are almost certainly better ways to do this.
844 my @actionbits = split //, $action;
845
846 # want to notify anyone who has specifically requested notify on *this* type ($action as passed),
847 # on "all static IP types" or "all pool types" (and other last-char-in-type groupings), on eg "all DSL types",
848 # and "all events with this action"
849 my @actionsets = ($action);
850##fixme: ick, eww. really gotta find a better way to handle this...
851 push @actionsets, ($actionbits[0].'.'.$actionbits[2],
852 $actionbits[0].$actionbits[1].'.', $actionbits[0].'a') if $action =~ /^.{3}$/;
853
854 my $mailer = Net::SMTP->new($smtphost, Hello => "ipdb.$domain");
855
856 # get recip list from db
857 my $sth = $dbh->prepare("SELECT reciplist FROM notify WHERE action=?");
858
859 my %reciplist;
860 foreach (@actionsets) {
861 $sth->execute($_);
862##fixme - need to handle db errors
863 my ($recipsub) = $sth->fetchrow_array;
864 next if !$recipsub;
865 foreach (split(/,/, $recipsub)) {
866 $reciplist{$_}++;
867 }
868 }
869
870 return if !%reciplist;
871
872 foreach my $recip (keys %reciplist) {
873 $mailer->mail("ipdb\@$domain");
874 $mailer->to($recip);
875 $mailer->data("From: \"$org_name IP Database\" <ipdb\@$domain>\n",
876 "To: $recip\n",
877 "Date: ".strftime("%a, %d %b %Y %H:%M:%S %z",localtime)."\n",
878 "Subject: {IPDB} $subj\n",
879 "X-Mailer: IPDB Notify v".sprintf("%.1d",$IPDB::VERSION)."\n",
880 "Organization: $org_name\n",
881 "\n$message\n");
882 }
883 $mailer->quit;
884}
885
886# Indicates module loaded OK. Required by Perl.
8871;
Note: See TracBrowser for help on using the repository browser.