source: branches/stable/cgi-bin/IPDB.pm@ 508

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

/branches/stable

Prep-for-release cleanup of buglets found making sure the demo
install works

  • Clean up instructions for creating the database. Apparently the PL/pgSQL "language" module required for the last-modified triggers can't be installed by a regular user, and isn't available by default. O_o
  • Fix a missed $IPDB::webpath-in-single-quotes
  • Add a quick hack to allow automagical allocation from private net ranges. See #38.
  • Partially convert some critical bits to use bound parameters in SQL for new allocations. See #34, mostly cleaned up already on /trunk or /branches/htmlform
  • Set $privdata = internally so that an allocation via admin tools doesn't error out
  • Property svn:keywords set to Date Rev Author
File size: 29.4 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: 2011-11-16 21:28:37 +0000 (Wed, 16 Nov 2011) $
6# SVN revision $Rev: 508 $
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# Allow allocations to come from private IP ranges by default?
75# Set to 'y' or 'on' to enable.
76our $allowprivrange = '';
77
78# Let's initialize the globals.
79## IPDB::initIPDBGlobals()
80# Initialize all globals. Takes a database handle, returns a success or error code
81sub initIPDBGlobals {
82 my $dbh = $_[0];
83 my $sth;
84
85 # Initialize alloctypes hashes
86 $sth = $dbh->prepare("select type,listname,dispname,listorder,def_custid from alloctypes order by listorder");
87 $sth->execute;
88 while (my @data = $sth->fetchrow_array) {
89 $disp_alloctypes{$data[0]} = $data[2];
90 $def_custids{$data[0]} = $data[4];
91 if ($data[3] < 900) {
92 $list_alloctypes{$data[0]} = $data[1];
93 }
94 }
95
96 # City and POP listings
97 $sth = $dbh->prepare("select city,routing from cities order by city");
98 $sth->execute;
99 return (undef,$sth->errstr) if $sth->err;
100 while (my @data = $sth->fetchrow_array) {
101 push @citylist, $data[0];
102 if ($data[1] eq 'y') {
103 push @poplist, $data[0];
104 }
105 }
106
107 # Master block list
108 $sth = $dbh->prepare("select cidr from masterblocks order by cidr");
109 $sth->execute;
110 return (undef,$sth->errstr) if $sth->err;
111 for (my $i=0; my @data = $sth->fetchrow_array(); $i++) {
112 $masterblocks[$i] = new NetAddr::IP $data[0];
113 $allocated{"$masterblocks[$i]"} = 0;
114 $free{"$masterblocks[$i]"} = 0;
115 $bigfree{"$masterblocks[$i]"} = 128; # Larger number means smaller block.
116 # Set to 128 to prepare for IPv6
117 $routed{"$masterblocks[$i]"} = 0;
118 }
119
120 # Load ACL data. Specific username checks are done at a different level.
121 $sth = $dbh->prepare("select username,acl from users");
122 $sth->execute;
123 return (undef,$sth->errstr) if $sth->err;
124 while (my @data = $sth->fetchrow_array) {
125 $IPDBacl{$data[0]} = $data[1];
126 }
127
128 return (1,"OK");
129} # end initIPDBGlobals
130
131
132## IPDB::connectDB()
133# Creates connection to IPDB.
134# Requires the database name, username, and password.
135# Returns a handle to the db.
136# Set up for a PostgreSQL db; could be any transactional DBMS with the
137# right changes.
138sub connectDB {
139 my $dbname = shift;
140 my $user = shift;
141 my $pass = shift;
142 my $dbhost = shift;
143
144 my $dbh;
145 my $DSN = "DBI:Pg:".($dbhost ? "host=$dbhost;" : '')."dbname=$dbname";
146
147# Note that we want to autocommit by default, and we will turn it off locally as necessary.
148# We may not want to print gobbledygook errors; YMMV. Have to ponder that further.
149 $dbh = DBI->connect($DSN, $user, $pass, {
150 AutoCommit => 1,
151 PrintError => 0
152 })
153 or return (undef, $DBI::errstr) if(!$dbh);
154
155# Return here if we can't select. Note that this indicates a
156# problem executing the select.
157 my $sth = $dbh->prepare("select type from alloctypes");
158 $sth->execute();
159 return (undef,$DBI::errstr) if ($sth->err);
160
161# See if the select returned anything (or null data). This should
162# succeed if the select executed, but...
163 $sth->fetchrow();
164 return (undef,$DBI::errstr) if ($sth->err);
165
166# If we get here, we should be OK.
167 return ($dbh,"DB connection OK");
168} # end connectDB
169
170
171## IPDB::finish()
172# Cleans up after database handles and so on.
173# Requires a database handle
174sub finish {
175 my $dbh = $_[0];
176 $dbh->disconnect;
177} # end finish
178
179
180## IPDB::checkDBSanity()
181# Quick check to see if the db is responding. A full integrity
182# check will have to be a separate tool to walk the IP allocation trees.
183sub checkDBSanity {
184 my ($dbh) = $_[0];
185
186 if (!$dbh) {
187 print "No database handle, or connection has been closed.";
188 return -1;
189 } else {
190 # it connects, try a stmt.
191 my $sth = $dbh->prepare("select type from alloctypes");
192 my $err = $sth->execute();
193
194 if ($sth->fetchrow()) {
195 # all is well.
196 return 1;
197 } else {
198 print "Connected to the database, but could not execute test statement. ".$sth->errstr();
199 return -1;
200 }
201 }
202 # Clean up after ourselves.
203# $dbh->disconnect;
204} # end checkDBSanity
205
206
207## IPDB::addMaster()
208# Does all the magic necessary to sucessfully add a master block
209# Requires database handle, block to add
210# Returns failure code and error message or success code and "message"
211sub addMaster {
212 my $dbh = shift;
213 my $cidr = new NetAddr::IP shift;
214
215 # Allow transactions, and raise an exception on errors so we can catch it later.
216 # Use local to make sure these get "reset" properly on exiting this block
217 local $dbh->{AutoCommit} = 0;
218 local $dbh->{RaiseError} = 1;
219
220 # Wrap all the SQL in a transaction
221 eval {
222 my $sth = $dbh->prepare("select count(*) from masterblocks where cidr <<= '$cidr'");
223 $sth->execute;
224 my @data = $sth->fetchrow_array;
225
226 if ($data[0] eq 0) {
227 # First case - master is brand-spanking-new.
228##fixme: rwhois should be globally-flagable somewhere, much like a number of other things
229## maybe a db table called "config"?
230 $sth = $dbh->prepare("insert into masterblocks (cidr,rwhois) values ('$cidr','y')");
231 $sth->execute;
232
233# Unrouted blocks aren't associated with a city (yet). We don't rely on this
234# elsewhere though; legacy data may have traps and pitfalls in it to break this.
235# Thus the "routed" flag.
236
237 $sth = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed)".
238 " values ('$cidr',".$cidr->masklen.",'<NULL>','n')");
239 $sth->execute;
240
241 # If we get here, everything is happy. Commit changes.
242 $dbh->commit;
243
244 } # new master does not contain existing master(s)
245 else {
246
247 # collect the master(s) we're going to absorb, and snag the longest netmask while we're at it.
248 my $smallmask = $cidr->masklen;
249 $sth = $dbh->prepare("select cidr as mask from masterblocks where cidr <<= '$cidr'");
250 $sth->execute;
251 my @cmasters;
252 while (my @data = $sth->fetchrow_array) {
253 my $master = new NetAddr::IP $data[0];
254 push @cmasters, $master;
255 $smallmask = $master->masklen if $master->masklen > $smallmask;
256 }
257
258 # split the new master, and keep only those blocks not part of an existing master
259 my @blocklist;
260 foreach my $seg ($cidr->split($smallmask)) {
261 my $contained = 0;
262 foreach my $master (@cmasters) {
263 $contained = 1 if $master->contains($seg);
264 }
265 push @blocklist, $seg if !$contained;
266 }
267
268 # collect the unrouted free blocks within the new master
269 $sth = $dbh->prepare("select cidr from freeblocks where ".
270 "maskbits>=$smallmask and cidr <<= '$cidr' and routed='n'");
271 $sth->execute;
272 while (my @data = $sth->fetchrow_array) {
273 my $freeblock = new NetAddr::IP $data[0];
274 push @blocklist, $freeblock;
275 }
276
277 # combine the set of free blocks we should have now.
278 @blocklist = Compact(@blocklist);
279
280 # and now insert the new data. Make sure to delete old masters too.
281
282 # freeblocks
283 $sth = $dbh->prepare("delete from freeblocks where cidr <<= ?");
284 my $sth2 = $dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed) values (?,?,'<NULL>','n')");
285 foreach my $newblock (@blocklist) {
286 $sth->execute("$newblock");
287 $sth2->execute("$newblock", $newblock->masklen);
288 }
289
290 # master
291 $sth = $dbh->prepare("delete from masterblocks where cidr <<= '$cidr'");
292 $sth->execute;
293 $sth = $dbh->prepare("insert into masterblocks (cidr,rwhois) values ('$cidr','y')");
294 $sth->execute;
295
296 # *whew* If we got here, we likely suceeded.
297 $dbh->commit;
298 } # new master contained existing master(s)
299 }; # end eval
300
301 if ($@) {
302 my $msg = $@;
303 eval { $dbh->rollback; };
304 return ('FAIL',$msg);
305 } else {
306 return ('OK','OK');
307 }
308} # end addMaster
309
310
311## IPDB::allocateBlock()
312# Does all of the magic of actually allocating a netblock
313# Requires database handle, block to allocate, custid, type, city,
314# description, notes, circuit ID, block to allocate from, private data
315# Returns a success code and optional error message.
316sub allocateBlock {
317 my ($dbh,undef,undef,$custid,$type,$city,$desc,$notes,$circid,$privdata,$nodeid) = @_;
318 $privdata = '' if !defined($privdata);
319
320 my $cidr = new NetAddr::IP $_[1];
321 my $alloc_from = new NetAddr::IP $_[2];
322 my $sth;
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',?,?,".
407 $cidr->masklen.",?,?)");
408 $sth->execute($desc,$notes,$circid,$privdata);
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',?,?,".
517 $cidr->masklen.",?,?)");
518 $sth->execute($desc,$notes,$circid,$privdata);
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', '$city', '$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);
588 }
589 for (my $i=0; $i<=$#poolip_list; $i++) {
590 $sth->execute($poolip_list[$i]->addr);
591 }
592 $pool--;
593 if ($pool->addr !~ /\.255$/) { # .255 can cause weirdness.
594 $sth->execute($pool->addr);
595 }
596 } else { # (real netblock)
597 for (my $i=1; $i<=$#poolip_list; $i++) {
598 $sth->execute($poolip_list[$i]->addr);
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##fixme: need to redesign the breakdown/processing for $action for proper handling of all cases
840
841# split action into parts for fiddlement. nb: there are almost certainly better ways to do this.
842 my @actionbits = split //, $action;
843
844 # want to notify anyone who has specifically requested notify on *this* type ($action as passed),
845 # on "all static IP types" or "all pool types" (and other last-char-in-type groupings), on eg "all DSL types",
846 # and "all events with this action"
847 my @actionsets = ($action);
848##fixme: ick, eww. really gotta find a better way to handle this...
849 push @actionsets, ($actionbits[0].'.'.$actionbits[2],
850 $actionbits[0].$actionbits[1].'.', $actionbits[0].'a') if $action =~ /^.{3}$/;
851
852 my $mailer = Net::SMTP->new($smtphost, Hello => "ipdb.$domain");
853
854 # get recip list from db
855 my $sth = $dbh->prepare("SELECT reciplist FROM notify WHERE action=?");
856
857 my %reciplist;
858 foreach (@actionsets) {
859 $sth->execute($_);
860##fixme - need to handle db errors
861 my ($recipsub) = $sth->fetchrow_array;
862 next if !$recipsub;
863 foreach (split(/,/, $recipsub)) {
864 $reciplist{$_}++;
865 }
866 }
867
868 return if !%reciplist;
869
870 foreach my $recip (keys %reciplist) {
871 $mailer->mail("ipdb\@$domain");
872 $mailer->to($recip);
873 $mailer->data("From: \"$org_name IP Database\" <ipdb\@$domain>\n",
874 "To: $recip\n",
875 "Date: ".strftime("%a, %d %b %Y %H:%M:%S %z",localtime)."\n",
876 "Subject: {IPDB} $subj\n",
877 "X-Mailer: IPDB Notify v".sprintf("%.1d",$IPDB::VERSION)."\n",
878 "Organization: $org_name\n",
879 "\n$message\n");
880 }
881 $mailer->quit;
882}
883
884# Indicates module loaded OK. Required by Perl.
8851;
Note: See TracBrowser for help on using the repository browser.