#!/usr/bin/perl # ipdb/cgi-bin/main.cgi # Started munging from noc.vianet's old IPDB 04/22/2004 ### # SVN revision info # $Date: 2004-12-03 19:39:31 +0000 (Fri, 03 Dec 2004) $ # SVN revision $Rev: 99 $ # Last update by $Author: kdeugau $ ### use strict; use warnings; use CGI::Carp qw(fatalsToBrowser); use DBI; use CommonWeb qw(:ALL); use IPDB qw(:ALL); use CustIDCK; use POSIX qw(ceil); use NetAddr::IP; use Sys::Syslog; openlog "IPDB","pid","local2"; # Collect the username from HTTP auth. If undefined, we're in a test environment. my $authuser; if (!defined($ENV{'REMOTE_USER'})) { $authuser = '__temptest'; } else { $authuser = $ENV{'REMOTE_USER'}; } syslog "debug", "$authuser active"; checkDBSanity(); #prototypes sub viewBy($$); # feed it the category and query sub queryResults($$$); # args is the sql, the page# and the rowCount # Needs rewrite/rename sub countRows($); # returns first element of first row of passed SQL # Only usage passes "select count(*) ..." # Global variables my $RESULTS_PER_PAGE = 50; my %webvar = parse_post(); cleanInput(\%webvar); # Stuff that gets loaded from the database my @masterblocks; my @citylist; my @poplist; my %disp_alloctypes; my %list_alloctypes; my %allocated; # Count for allocated blocks in a master block my %free; # Count for free blocks (routed and unrouted) in a master block my %bigfree; # Tracking largest free block in a master block my %routed; # Number of routed blocks in a master block # Why not a global DB handle? (And a global statement handle, as well...) # We already know the DB is happy, (checkDBSanity) otherwise we wouldn't be here. # Use the connectDB function, otherwise we end up confusing ourselves my $ip_dbh = connectDB; my $sth; # Slurp up the master block list - we need this several places # While we're at it, initialize the related hashes. $sth = $ip_dbh->prepare("select * from masterblocks order by cidr"); $sth->execute; for (my $i=0; my @data = $sth->fetchrow_array(); $i++) { $masterblocks[$i] = new NetAddr::IP $data[0]; $allocated{"$masterblocks[$i]"} = 0; $free{"$masterblocks[$i]"} = 0; $bigfree{"$masterblocks[$i]"} = 128; # Larger number means smaller block. # Set to 128 to prepare for IPv6 $routed{"$masterblocks[$i]"} = 0; } # Initialize the city and poplist arrays $sth = $ip_dbh->prepare("select * from cities order by city"); $sth->execute; my $i = 0; my $j = 0; while (my @data = $sth->fetchrow_array) { $citylist[$i++] = $data[0]; if ($data[1] eq 'y') { $poplist[$j++] = $data[0]; } } # Initialize alloctypes hashes $sth = $ip_dbh->prepare("select * from alloctypes order by listorder"); $sth->execute; while (my @data = $sth->fetchrow_array) { $disp_alloctypes{$data[0]} = $data[2]; if ($data[3] < 900) { $list_alloctypes{$data[0]} = $data[1]; } } #main() if(!defined($webvar{action})) { $webvar{action} = ""; #shuts up the warnings. } if($webvar{action} eq 'index') { showSummary(); } elsif ($webvar{action} eq 'newmaster') { printHeader(''); my $cidr = new NetAddr::IP $webvar{cidr}; print "
Adding $cidr as master block....\n"; # Allow transactions, and raise an exception on errors so we can catch it later. # Use local to make sure these get "reset" properly on exiting this block local $ip_dbh->{AutoCommit} = 0; local $ip_dbh->{RaiseError} = 1; # Wrap the SQL in a transaction eval { $sth = $ip_dbh->prepare("insert into masterblocks values ('$webvar{cidr}')"); $sth->execute; # Unrouted blocks aren't associated with a city (yet). We don't rely on this # elsewhere though; legacy data may have traps and pitfalls in it to break this. # Thus the "routed" flag. $sth = $ip_dbh->prepare("insert into freeblocks values ('$webvar{cidr}',". $cidr->masklen.",'','n')"); $sth->execute; # If we get here, everything is happy. Commit changes. $ip_dbh->commit; }; # end eval if ($@) { carp "Transaction aborted because $@"; eval { $ip_dbh->rollback; }; syslog "err", "Could not add master block '$webvar{cidr}' to database: '$@'"; printAndExit("Could not add master block $webvar{cidr} to database: $@"); } print "Success!
\n"; printFooter; } # end add new master elsif($webvar{action} eq 'showmaster') { showMaster(); } elsif($webvar{action} eq 'showrouted') { showRBlock(); } elsif($webvar{action} eq 'listpool') { listPool(); } elsif($webvar{action} eq 'search') { printHeader(''); if (!$webvar{input}) { # No search term. Display everything. viewBy('all', ''); } else { # Search term entered. Display matches. # We should really sanitize $webvar{input}, no? viewBy($webvar{searchfor}, $webvar{input}); } printFooter(); } # Not modified or added; just shuffled elsif($webvar{action} eq 'assign') { assignBlock(); } elsif($webvar{action} eq 'confirm') { confirmAssign(); } elsif($webvar{action} eq 'insert') { insertAssign(); } elsif($webvar{action} eq 'edit') { edit(); } elsif($webvar{action} eq 'update') { update(); } elsif($webvar{action} eq 'delete') { remove(); } elsif($webvar{action} eq 'finaldelete') { finalDelete(); } # Default is an error. It shouldn't be possible to easily get here. # The only way I can think of offhand is to just call main.cgi bare- # which is not in any way guaranteed to provide anything useful. else { printHeader(''); my $rnd = rand 500; my $boing = sprintf("%.2f", rand 500); my @excuses = ("Aether cloudy. Ask again later.","The gods are unhappy with your sacrifice.", "Because one of it's legs are both the same", "*wibble*", "Hey! Stop pushing my buttons!", "I ain't done nuttin'", "9", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17"); printAndExit("Error $boing: ".$excuses[$rnd/30.0]); } #end main() # Shut up error log warning about not disconnecting. Maybe. $ip_dbh->disconnect; # Just in case something waaaayyy down isn't in place properly... exit 0; sub viewBy($$) { my ($category,$query) = @_; # Local variables my $sql; #print "
\n";

#print "start querysub: query '$query'\n";
# this may happen with more than one subcategory.  Unlikely, but possible.

  # Calculate start point for LIMIT clause
  my $offset = ($webvar{page}-1)*$RESULTS_PER_PAGE;

# Possible cases:
# 1) Partial IP/subnet.  Treated as "first-three-octets-match" in old IPDB,
#    I should be able to handle it similarly here.
# 2a) CIDR subnet.  Treated more or less as such in old IPDB.
# 2b) CIDR netmask.  Not sure how it's treated.
# 3) Customer ID.  Not handled in old IPDB
# 4) Description.
# 5) Invalid data which might be interpretable as an IP or something, but
#    which probably shouldn't be for reasons of sanity.

  if ($category eq 'all') {

    print qq(
Showing all netblock and static-IP allocations

\n); $sql = "select * from searchme"; my $count = countRows("select count(*) from ($sql) foo"); $sql .= " order by cidr limit $RESULTS_PER_PAGE offset $offset"; queryResults($sql, $webvar{page}, $count); } elsif ($category eq 'cust') { print qq(
Searching for Customer IDs containing '$query'

\n); # Query for a customer ID. Note that we can't restrict to "numeric-only" # as we have non-numeric custIDs in the legacy data. :/ $sql = "select * from searchme where custid ilike '%$query%'"; my $count = countRows("select count(*) from ($sql) foo"); $sql .= " order by cidr limit $RESULTS_PER_PAGE offset $offset"; queryResults($sql, $webvar{page}, $count); } elsif ($category eq 'desc') { print qq(
Searching for descriptions containing '$query'

\n); # Query based on description (includes "name" from old DB). $sql = "select * from searchme where description ilike '%$query%'"; my $count = countRows("select count(*) from ($sql) foo"); $sql .= " order by cidr limit $RESULTS_PER_PAGE offset $offset"; queryResults($sql, $webvar{page}, $count); } elsif ($category =~ /ipblock/) { # Query is for a partial IP, a CIDR block in some form, or a flat IP. print qq(
Searching for IP-based matches on '$query'

\n); $query =~ s/\s+//g; if ($query =~ /\//) { # 209.91.179/26 should show all /26 subnets in 209.91.179 my ($net,$maskbits) = split /\//, $query; if ($query =~ /^(\d{1,3}\.){3}\d{1,3}\/\d{2}$/) { # /0->/9 are silly to worry about right now. I don't think # we'll be getting a class A anytime soon. $sql = "select * from searchme where cidr='$query'"; queryResults($sql, $webvar{page}, 1); } else { print "Finding all blocks with netmask /$maskbits, leading octet(s) $net
\n"; # Partial match; beginning of subnet and maskbits are provided $sql = "select * from searchme where text(cidr) like '$net%' and ". "text(cidr) like '%$maskbits'"; my $count = countRows("select count(*) from ($sql) foo"); $sql .= " order by cidr limit $RESULTS_PER_PAGE offset $offset"; queryResults($sql, $webvar{page}, $count); } } elsif ($query =~ /^(\d{1,3}\.){3}\d{1,3}$/) { # Specific IP address match print "4-octet pattern found; finding netblock containing IP $query
\n"; my ($net,$ip) = ($query =~ /(\d{1,3}\.\d{1,3}\.\d{1,3}\.)(\d{1,3})/); my $sfor = new NetAddr::IP $query; $sth = $ip_dbh->prepare("select * from searchme where text(cidr) like '$net%'"); $sth->execute; while (my @data = $sth->fetchrow_array()) { my $cidr = new NetAddr::IP $data[0]; if ($cidr->contains($sfor)) { queryResults("select * from searchme where cidr='$cidr'", $webvar{page}, 1); } } } elsif ($query =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.?$/) { print "Finding matches where the first three octets are $query
\n"; $sql = "select * from searchme where text(cidr) like '$query%'"; my $count = countRows("select count(*) from ($sql) foo"); $sql .= " order by cidr limit $RESULTS_PER_PAGE offset $offset"; queryResults($sql, $webvar{page}, $count); } else { # This shouldn't happen, but if it does, whoever gets it deserves what they get... printAndExit("Invalid query."); } } else { # This shouldn't happen, but if it does, whoever gets it deserves what they get... printAndExit("Invalid searchfor."); } } # viewBy # args are: a reference to an array with the row to be printed and the # class(stylesheet) to use for formatting. # if ommitting the class - call the sub as &printRow(\@array) sub printRow { my ($rowRef,$class) = @_; if (!$class) { print "\n"; } else { print "\n"; } foreach my $element (@$rowRef) { print "" if (!defined($element)); $element =~ s|\n|
|g; print "$element\n"; } print ""; } # printRow # Display certain types of search query. Note that this can't be # cleanly reused much of anywhere else as the data isn't neatly tabulated. # This is tied to the search sub tightly enough I may just gut it and provide # more appropriate tables directly as needed. sub queryResults($$$) { my ($sql, $pageNo, $rowCount) = @_; my $offset = 0; $offset = $1 if($sql =~ m/.*limit\s+(.*),.*/); my $sth = $ip_dbh->prepare($sql); $sth->execute(); startTable('Allocation','CustID','Type','City','Description/Name'); my $count = 0; while (my @data = $sth->fetchrow_array) { # cidr,custid,type,city,description,notes # Fix up types from pools (which are single-char) # Fixing the database would be... painful. :( if ($data[2] =~ /^[cdsmw]$/) { $data[2] .= 'i'; } my @row = (qq($data[0]), $data[1], $disp_alloctypes{$data[2]}, $data[3], $data[4]); # Allow listing of pool if desired/required. if ($data[2] =~ /^[cdsmw]p$/) { $row[0] .= '   List IPs"; } printRow(\@row, 'color1', 1) if ($count%2==0); printRow(\@row, 'color2', 1) if ($count%2!=0); $count++; } # Have to think on this call, it's primarily to clean up unfetched rows from a select. # In this context it's probably a good idea. $sth->finish(); my $upper = $offset+$count; print "Records found: $rowCount
Displaying: $offset - $upper\n"; print "\n"; # print the page thing.. if ($rowCount > $RESULTS_PER_PAGE) { my $pages = ceil($rowCount/$RESULTS_PER_PAGE); print qq(
Page: ); for (my $i = 1; $i <= $pages; $i++) { if ($i == $pageNo) { print "$i \n"; } else { print qq($i \n); } } print "
"; } } # queryResults # Prints table headings. Accepts any number of arguments; # each argument is a table heading. sub startTable { print qq(
); foreach(@_) { print qq(); } print "\n"; } # startTable # Return first element of passed SQL query sub countRows($) { my $sth = $ip_dbh->prepare($_[0]); $sth->execute(); my @a = $sth->fetchrow_array(); $sth->finish(); return $a[0]; } # Initial display: Show master blocks with total allocated subnets, total free subnets sub showSummary { print "Content-type: text/html\n\n"; startTable('Master netblock', 'Routed netblocks', 'Allocated netblocks', 'Free netblocks', 'Largest free block'); # Snag the allocations. # I think it's too confusing to leave out internal allocations. $sth = $ip_dbh->prepare("select * from allocations"); $sth->execute(); while (my @data = $sth->fetchrow_array()) { # cidr,custid,type,city,description # We only need the cidr my $cidr = new NetAddr::IP $data[0]; foreach my $master (@masterblocks) { if ($master->contains($cidr)) { $allocated{"$master"}++; } } } # Snag routed blocks $sth = $ip_dbh->prepare("select * from routed"); $sth->execute(); while (my @data = $sth->fetchrow_array()) { # cidr,maskbits,city # We only need the cidr my $cidr = new NetAddr::IP $data[0]; foreach my $master (@masterblocks) { if ($master->contains($cidr)) { $routed{"$master"}++; } } } # Snag the free blocks. $sth = $ip_dbh->prepare("select * from freeblocks"); $sth->execute(); while (my @data = $sth->fetchrow_array()) { # cidr,maskbits,city # We only need the cidr my $cidr = new NetAddr::IP $data[0]; foreach my $master (@masterblocks) { if ($master->contains($cidr)) { $free{"$master"}++; if ($cidr->masklen < $bigfree{"$master"}) { $bigfree{"$master"} = $cidr->masklen; } } } } # Print the data. my $count=0; foreach my $master (@masterblocks) { my @row = ("$master", $routed{"$master"}, $allocated{"$master"}, $free{"$master"}, ( ($bigfree{"$master"} eq 128) ? ("<NONE>") : ("/".$bigfree{"$master"}) ) ); printRow(\@row, 'color1' ) if($count%2==0); printRow(\@row, 'color2' ) if($count%2!=0); $count++; } print "
$_
\n"; print qq(Add new master block

\n); print "Note: Free blocks noted here include both routed and unrouted blocks.\n"; # Because of the way this sub gets called, we don't need to print the footer here. # (index.shtml makes an SSI #include call to cgi-bin/main.cgi?action=index) # If we do, the footer comes in twice... #printFooter; } # showSummary # Display detail on master # Alrighty then! We're showing routed blocks within a single master this time. # We should be able to steal code from showSummary(), and if I'm really smart # I'll figger a way to munge the two together. (Once I've done that, everything # else should follow. YMMV.) sub showMaster { printHeader(''); print qq(
Summarizing routed blocks for ). qq($webvar{block}:

\n); my $master = new NetAddr::IP $webvar{block}; my @localmasters; $sth = $ip_dbh->prepare("select * from routed order by cidr"); $sth->execute(); my $i=0; while (my @data = $sth->fetchrow_array()) { my $cidr = new NetAddr::IP $data[0]; if ($master->contains($cidr)) { $localmasters[$i++] = $cidr; $free{"$cidr"} = 0; $allocated{"$cidr"} = 0; # Retain the routing destination $routed{"$cidr"} = $data[2]; } } # Check if there were actually any blocks routed from this master if ($i > 0) { startTable('Routed block','Routed to','Allocated blocks', 'Free blocks','Largest free block'); # Count the allocations $sth = $ip_dbh->prepare("select * from allocations"); $sth->execute(); while (my @data = $sth->fetchrow_array()) { # cidr,custid,type,city,description # We only need the cidr my $cidr = new NetAddr::IP $data[0]; foreach my $master (@localmasters) { if ($master->contains($cidr)) { $allocated{"$master"}++; } } } # initialize bigfree base points foreach my $lmaster (@localmasters) { $bigfree{"$lmaster"} = 128; } # Snag the free blocks. $sth = $ip_dbh->prepare("select * from freeblocks"); $sth->execute(); while (my @data = $sth->fetchrow_array()) { # cidr,maskbits,city # We only need the cidr my $cidr = new NetAddr::IP $data[0]; foreach my $lmaster (@localmasters) { if ($lmaster->contains($cidr)) { $free{"$lmaster"}++; if ($cidr->masklen < $bigfree{"$lmaster"}) { $bigfree{"$lmaster"} = $cidr->masklen; } } # check for largest free block } } # Print the data. my $count=0; foreach my $master (@localmasters) { my @row = ("$master", $routed{"$master"}, $allocated{"$master"}, $free{"$master"}, ( ($bigfree{"$master"} eq 128) ? ("<NONE>") : ("/".$bigfree{"$master"}) ) ); printRow(\@row, 'color1' ) if($count%2==0); printRow(\@row, 'color2' ) if($count%2!=0); $count++; } } else { # If a master block has no routed blocks, then by definition it has no # allocations, and can be deleted. print qq(
No allocations in ). qq($master.
\n). qq(
\n). qq(\n). qq(\n). qq(\n). qq(\n). qq(
\n); } # end check for existence of routed blocks in master print qq(\n
\n). qq(
Unrouted blocks in $master:

\n); startTable('Netblock','Range'); # Snag the free blocks. my $count = 0; $sth = $ip_dbh->prepare("select * from freeblocks where routed='n' order by cidr"); $sth->execute(); while (my @data = $sth->fetchrow_array()) { # cidr,maskbits,city # We only need the cidr my $cidr = new NetAddr::IP $data[0]; if ($master->contains($cidr)) { my @row = ("$cidr", $cidr->range); printRow(\@row, 'color1' ) if($count%2==0); printRow(\@row, 'color2' ) if($count%2!=0); $count++; } } print "\n"; printFooter; } # showMaster # Display details of a routed block # Alrighty then! We're showing allocations within a routed block this time. # We should be able to steal code from showSummary() and showMaster(), and if # I'm really smart I'll figger a way to munge all three together. (Once I've # done that, everything else should follow. YMMV. # This time, we check the database before spewing, because we may # not have anything useful to spew. sub showRBlock { printHeader(''); my $master = new NetAddr::IP $webvar{block}; $sth = $ip_dbh->prepare("select * from routed where cidr='$master'"); $sth->execute; my @data = $sth->fetchrow_array; print qq(
Summarizing allocated blocks for ). qq($master ($data[2]):

\n); $sth = $ip_dbh->prepare("select * from allocations order by cidr"); $sth->execute(); startTable('CIDR allocation','Customer Location','Type','CustID','Description/Name'); my $count=0; while (my @data = $sth->fetchrow_array()) { # cidr,custid,type,city,description,notes,maskbits my $cidr = new NetAddr::IP $data[0]; if (!$master->contains($cidr)) { next; } # Clean up extra spaces that are borking things. $data[2] =~ s/\s+//g; my @row = ("$data[0]", $data[3], $disp_alloctypes{$data[2]}, $data[1], $data[4]); # If the allocation is a pool, allow listing of the IPs in the pool. if ($data[2] =~ /^[cdsmw]p$/) { $row[0] .= '   List IPs"; } printRow(\@row, 'color1') if ($count%2 == 0); printRow(\@row, 'color2') if ($count%2 != 0); $count++; } print "\n"; # If the routed block has no allocations, by definition it only has # one free block, and therefore may be deleted. if ($count == 0) { print qq(
No allocations in ). qq($master.
\n). qq(
\n). qq(\n). qq(\n). qq(\n). qq(\n). qq(
\n); } print qq(
\n
Free blocks within routed ). qq(submaster $master
\n); startTable('CIDR block','Range'); # Snag the free blocks. We don't really *need* to be pedantic about avoiding # unrouted free blocks, but it's better to let the database do the work if we can. $count = 0; $sth = $ip_dbh->prepare("select * from freeblocks where routed='y' order by cidr"); $sth->execute(); while (my @data = $sth->fetchrow_array()) { # cidr,maskbits,city my $cidr = new NetAddr::IP $data[0]; if ($master->contains($cidr)) { my @row = ("$cidr", $cidr->range); printRow(\@row, 'color1') if ($count%2 == 0); printRow(\@row, 'color2') if ($count%2 != 0); $count++; } } print "\n"; printFooter; } # showRBlock # List the IPs used in a pool sub listPool { printHeader(''); my $cidr = new NetAddr::IP $webvar{pool}; # Snag pool info for heading $sth = $ip_dbh->prepare("select * from allocations where cidr='$cidr'"); $sth->execute; my @data = $sth->fetchrow_array; my $type = $data[2]; # We'll need this later. print qq(
Listing pool IPs for $cidr
\n). qq(($disp_alloctypes{$type} in $data[3])

\n); print qq(
Reserved IPs:
\n); print qq(
\n"; $cidr++; print "\n"; $cidr--; $cidr--; print "\n". "\n". "
Network IP:). $cidr->addr."
Gateway:".$cidr->addr."
Broadcast:".$cidr->addr."
Netmask:".$cidr->mask."
\n"; # probably have to add an "edit IP allocation" link here somewhere. startTable('IP','Customer ID','Available?','Description',''); $sth = $ip_dbh->prepare("select * from poolips where pool='$webvar{pool}' order by ip"); $sth->execute; my $count = 0; while (my @data = $sth->fetchrow_array) { # pool,ip,custid,city,ptype,available,notes,description,circuitid # If desc is null, make it not null. if ($data[7] eq '') { $data[7] = ' '; } # Some nice hairy Perl to decide whether to allow unassigning each IP # -> if $data[5] (aka poolips.available) == 'n' then we print the unassign link # else we print a blank space my @row = ( qq($data[1]), $data[2],$data[5],$data[7], ( ($data[5] eq 'n') ? ("Unassign this IP") : (" ") ) ); printRow(\@row, 'color1') if($count%2==0); printRow(\@row, 'color2') if($count%2!=0); $count++; } print "\n"; printFooter; } # end listPool # Should this maybe just be a full static page? It just spews out some predefined HTML. sub assignBlock { printHeader(''); my $html; # New special case- block to assign is specified if ($webvar{block} ne '') { open HTML, "../fb-assign.html" or croak "Could not open fb-assign.html: $!"; $html = join('',); close HTML; my $block = new NetAddr::IP $webvar{block}; $html =~ s|\$\$BLOCK\$\$|$block|g; $html =~ s|\$\$MASKBITS\$\$|$block->masklen|; my $typelist = ''; $sth = $ip_dbh->prepare("select type,listname from alloctypes where listorder < 500 and type not like '_i' order by listorder"); $sth->execute; my @data = $sth->fetchrow_array; $typelist .= "\n"; while (my @data = $sth->fetchrow_array) { $typelist .= "\n"; } $html =~ s|\$\$TYPELIST\$\$|$typelist|g; } else { open HTML, "../assign.html" or croak "Could not open assign.html: $!"; $html = join('',); close HTML; my $masterlist = "\n"; $html =~ s|\$\$MASTERLIST\$\$|$masterlist|g; my $pops = ''; foreach my $pop (@poplist) { $pops .= "\n"; } $html =~ s|\$\$POPLIST\$\$|$pops|g; my $typelist = ''; $sth = $ip_dbh->prepare("select type,listname from alloctypes where listorder < 900 order by listorder"); $sth->execute; my @data = $sth->fetchrow_array; $typelist .= "\n"; while (my @data = $sth->fetchrow_array) { $typelist .= "\n"; } $html =~ s|\$\$TYPELIST\$\$|$typelist|g; } my $cities = ''; foreach my $city (@citylist) { $cities .= "\n"; } $html =~ s|\$\$ALLCITIES\$\$|$cities|g; print $html; printFooter(); } # assignBlock # Take info on requested IP assignment and see what we can provide. sub confirmAssign { printHeader(''); my $cidr; my $alloc_from; # Going to manually validate some items. # custid and city are automagic. validateInput(); # This isn't always useful. # if (!$webvar{maskbits}) { # printAndExit("Please enter a CIDR block length."); # } # Several different cases here. # Static IP vs netblock # + Different flavours of static IP # + Different flavours of netblock if ($webvar{alloctype} =~ /^[cdsmw]i$/) { my ($base,undef) = split //, $webvar{alloctype}; # split into individual chars my $sql; # Check for pools in Subury or North Bay if DSL or server pool. Anywhere else is # invalid and shouldn't be in the db in the first place. # ... aside from #^%#$%#@#^%^^!!!! legacy data. GRRR. # Note that we want to retain the requested city to relate to customer info. if ($base =~ /^[ds]$/) { $sql = "select * from poolips where available='y' and". " ptype='$base' and (city='Sudbury' or city='North Bay')"; } else { ## $city doesn't seem to get defined here. my $city; # Shut up Perl's "strict" scoping/usage check. $sql = "select * from poolips where available='y' and". " ptype='$base' and city='$webvar{pop}'"; } # Now that we know where we're looking, we can list the pools with free IPs. $sth = $ip_dbh->prepare($sql); $sth->execute; my %ipcount; my $optionlist; while (my @data = $sth->fetchrow_array) { $ipcount{$data[0]}++; } $sth = $ip_dbh->prepare("select city from allocations where cidr=?"); foreach my $key (keys %ipcount) { $sth->execute($key); my @data = $sth->fetchrow_array; $optionlist .= "\n"; } $cidr = "Single static IP"; $alloc_from = "\n"; } else { # end show pool options if ($webvar{fbassign} eq 'y') { $cidr = new NetAddr::IP $webvar{block}; $webvar{maskbits} = $cidr->masklen; } else { # done with direct freeblocks assignment if (!$webvar{maskbits}) { printAndExit("Please specify a CIDR mask length."); } my $sql; my $city; my $failmsg; if ($webvar{alloctype} eq 'rr') { if ($webvar{allocfrom} ne '-') { $sql = "select * from freeblocks where maskbits<=$webvar{maskbits} and routed='n'". " and cidr <<= '$webvar{allocfrom}' order by maskbits desc"; } else { $sql = "select * from freeblocks where maskbits<=$webvar{maskbits} and routed='n'". " order by maskbits desc"; } $failmsg = "No suitable free block found.
\nWe do not have a free". " routeable block of that size.
\nYou will have to either route". " a set of smaller netblocks or a single smaller netblock."; } else { if ($webvar{alloctype} =~ /^[cdsmw]p$/) { if (($webvar{city} !~ /^(Sudbury|North Bay)$/) && ($webvar{alloctype} eq 'dp')) { printAndExit("You must chose Sudbury or North Bay for DSL pools."); } $city = $webvar{city}; $failmsg = "No suitable free block found.
\nYou will have to route another". " superblock
\nfrom one of the master blocks in Sudbury or chose a smaller". " block size for the pool."; } else { $city = $webvar{pop}; $failmsg = "No suitable free block found.
\nYou will have to route another". " superblock to $webvar{city}
\nfrom one of the master blocks in Sudbury or". " chose a smaller blocksize."; } if ($webvar{allocfrom} ne '-') { $sql = "select * from freeblocks where city='$city' and maskbits<=$webvar{maskbits}". " and cidr <<= '$webvar{allocfrom}' and routed='y' order by cidr,maskbits desc"; } else { $sql = "select * from freeblocks where city='$city' and maskbits<=$webvar{maskbits}". " and routed='y' order by cidr,maskbits desc"; } } $sth = $ip_dbh->prepare($sql); $sth->execute; my @data = $sth->fetchrow_array(); if ($data[0] eq "") { printAndExit($failmsg); } $cidr = new NetAddr::IP $data[0]; } # check for freeblocks assignment or IPDB-controlled assignment $alloc_from = qq($cidr); # If the block to be allocated is smaller than the one we found, # figure out the "real" block to be allocated. if ($cidr->masklen() ne $webvar{maskbits}) { my $maskbits = $cidr->masklen(); my @subblocks; while ($maskbits++ < $webvar{maskbits}) { @subblocks = $cidr->split($maskbits); } $cidr = $subblocks[0]; } } # if ($webvar{alloctype} =~ /^[cdsmw]i$/) open HTML, "../confirm.html" or croak "Could not open confirm.html: $!"; my $html = join '', ; close HTML; ### gotta fix this in final # Stick in customer info as necessary - if it's blank, it just ends # up as blank lines ignored in the rendering of the page my $custbits; $html =~ s|\$\$CUSTBITS\$\$|$custbits|g; ### # Stick in the allocation data $html =~ s|\$\$ALLOC_TYPE\$\$|$webvar{alloctype}|g; $html =~ s|\$\$TYPEFULL\$\$|$disp_alloctypes{$webvar{alloctype}}|g; $html =~ s|\$\$ALLOC_FROM\$\$|$alloc_from|g; $html =~ s|\$\$CIDR\$\$|$cidr|g; $webvar{city} = desanitize($webvar{city}); $html =~ s|\$\$CITY\$\$|$webvar{city}|g; $html =~ s|\$\$CUSTID\$\$|$webvar{custid}|g; $webvar{circid} = desanitize($webvar{circid}); $html =~ s|\$\$CIRCID\$\$|$webvar{circid}|g; $webvar{desc} = desanitize($webvar{desc}); $html =~ s|\$\$DESC\$\$|$webvar{desc}|g; $webvar{notes} = desanitize($webvar{notes}); $html =~ s|\$\$NOTES\$\$|$webvar{notes}|g; $html =~ s|\$\$ACTION\$\$|insert|g; print $html; printFooter; } # end confirmAssign # Do the work of actually inserting a block in the database. sub insertAssign { # Some things are done more than once. printHeader(''); validateInput(); # Set some things that may be needed # Don't set $cidr here as it may not even be a valid IP address. my $alloc_from = new NetAddr::IP $webvar{alloc_from}; # dynDSL (dy), sIP DSL(dp), and server pools (sp) are nominally allocated to Sudbury # no matter what else happens. # if ($webvar{alloctype} =~ /^([sd]p|dy)$/) { $webvar{city} = "Sudbury"; } # OOPS. forgot about North Bay DSL. #### Gotta make this cleaner and more accurate # if ($webvar{alloctype} eq "sp") { $webvar{city} = "Sudbury"; } # Same ordering as confirmation page if ($webvar{alloctype} =~ /^[cdsmw]i$/) { my ($base,$tmp) = split //, $webvar{alloctype}; # split into individual chars # We'll just have to put up with the oddities caused by SQL (un)sort order $sth = $ip_dbh->prepare("select * from poolips where pool='$webvar{alloc_from}'". " and available='y' order by ip"); $sth->execute; my @data = $sth->fetchrow_array; my $cidr = $data[1]; $sth = $ip_dbh->prepare("update poolips set custid='$webvar{custid}',". "city='$webvar{city}',available='n',description='$webvar{desc}',". "circuitid='$webvar{circid}'". " where ip='$cidr'"); $sth->execute; if ($sth->err) { syslog "err", "Allocation of $cidr to $webvar{custid} by $authuser failed: ". "'".$sth->errstr."'"; printAndExit("Allocation of $cidr to $webvar{custid} failed: '".$sth->errstr."'"); } print qq(
The IP $cidr has been allocated to customer $webvar{custid}
); syslog "notice", "$authuser allocated $cidr to $webvar{custid}"; # Notify tech@example.com mailNotify('tech@example.com',"$disp_alloctypes{$webvar{alloctype}} allocation", "$disp_alloctypes{$webvar{alloctype}} $cidr allocated to customer $webvar{custid}"); } else { # end IP-from-pool allocation # Set $cidr here as it may not be a valid IP address elsewhere. my $cidr = new NetAddr::IP $webvar{fullcidr}; # Allow transactions, and make errors much easier to catch. # Much as I would like to error-track specifically on each ->execute, # that's a LOT of code, and some SQL blocks MUST be atomic at a # multi-statement level. :/ local $ip_dbh->{AutoCommit} = 0; # These need to be local so we don't local $ip_dbh->{RaiseError} = 1; # step on our toes by accident. if ($webvar{fullcidr} eq $webvar{alloc_from}) { # Easiest case- insert in one table, delete in the other, and go home. More or less. # insert into allocations values (cidr,custid,type,city,desc) and # delete from freeblocks where cidr='cidr' # For data safety on non-transaction DBs, we delete first. eval { if ($webvar{alloctype} eq 'rr') { $sth = $ip_dbh->prepare("update freeblocks set routed='y',city='$webvar{city}'". " where cidr='$webvar{fullcidr}'"); $sth->execute; $sth = $ip_dbh->prepare("insert into routed values ('$webvar{fullcidr}',". $cidr->masklen.",'$webvar{city}')"); $sth->execute; } else { # common stuff for end-use, dialup, dynDSL, pools, etc, etc. # city has to be reset for DSL/server pools; nominally to Sudbury. ## Gotta rethink this; DSL pools can be in North Bay as well. :/ #if ($webvar{alloctype} =~ /^[sd]p$/) { $webvar{city} = 'Sudbury'; } $sth = $ip_dbh->prepare("delete from freeblocks where cidr='$webvar{fullcidr}'"); $sth->execute; $sth = $ip_dbh->prepare("insert into allocations values ('$webvar{fullcidr}',". "'$webvar{custid}','$webvar{alloctype}','$webvar{city}','$webvar{desc}',". "'$webvar{notes}',".$cidr->masklen.",'$webvar{circid}')"); $sth->execute; } # routing vs non-routing netblock $ip_dbh->commit; }; # end of eval if ($@) { carp "Transaction aborted because $@"; eval { $ip_dbh->rollback; }; syslog "err", "Allocation of '$webvar{fullcidr}' to '$webvar{custid}' as ". "'$webvar{alloctype}' by $authuser failed: '$@'"; printAndExit("Allocation of $cidr as $disp_alloctypes{$webvar{alloctype}} failed.\n"); } # If we get here, the DB transaction has succeeded. syslog "notice", "$authuser allocated '$webvar{fullcidr}' to '$webvar{custid}' as '$webvar{alloctype}'"; # How to log SQL without munging too many error-checking wrappers in? # syslog "info", " # We don't. GRRR. } else { # webvar{fullcidr} != webvar{alloc_from} # Hard case. Allocation is smaller than free block. my $wantmaskbits = $cidr->masklen; my $maskbits = $alloc_from->masklen; my @newfreeblocks; # Holds free blocks generated from splitting the source freeblock. my $i=0; while ($maskbits++ < $wantmaskbits) { my @subblocks = $alloc_from->split($maskbits); $newfreeblocks[$i++] = $subblocks[1]; } # while # Begin SQL transaction block eval { # Delete old freeblocks entry $sth = $ip_dbh->prepare("delete from freeblocks where cidr='$webvar{alloc_from}'"); $sth->execute(); # now we have to do some magic for routing blocks if ($webvar{alloctype} eq 'rr') { # Insert the new freeblocks entries # Note that non-routed blocks are assigned to $sth = $ip_dbh->prepare("insert into freeblocks values (?, ?, '','n')"); foreach my $block (@newfreeblocks) { $sth->execute("$block", $block->masklen); } # Insert the entry in the routed table $sth = $ip_dbh->prepare("insert into routed values ('$cidr',". $cidr->masklen.",'$webvar{city}')"); $sth->execute; # Insert the (almost) same entry in the freeblocks table $sth = $ip_dbh->prepare("insert into freeblocks values ('$cidr',". $cidr->masklen.",'$webvar{city}','y')"); $sth->execute; } else { # done with alloctype == rr # Insert the new freeblocks entries $sth = $ip_dbh->prepare("insert into freeblocks values (?, ?, ?,'y')"); foreach my $block (@newfreeblocks) { $sth->execute("$block", $block->masklen, $webvar{city}); } # Insert the allocations entry $sth = $ip_dbh->prepare("insert into allocations values ('$webvar{fullcidr}',". "'$webvar{custid}','$webvar{alloctype}','$webvar{city}',". "'$webvar{desc}','$webvar{notes}',".$cidr->masklen.",'$webvar{circid}')"); $sth->execute; } # done with netblock alloctype != rr $ip_dbh->commit; }; # end eval if ($@) { carp "Transaction aborted because $@"; eval { $ip_dbh->rollback; }; syslog "err", "Allocation of '$webvar{fullcidr}' to '$webvar{custid}' as ". "'$webvar{alloctype}' by $authuser failed: '$@'"; printAndExit("Allocation of $cidr as $disp_alloctypes{$webvar{alloctype}} failed.\n"); } syslog "notice", "$authuser allocated '$webvar{fullcidr}' to '$webvar{custid}' as '$webvar{alloctype}'"; } # end fullcidr != alloc_from # Begin SQL transaction block eval { # special extra handling for pools. # Note that this must be done for ANY pool allocation! if ( my ($pooltype) = ($webvar{alloctype} =~ /^([cdsmw])p$/) ) { # have to insert all pool IPs into poolips table as "unallocated". $sth = $ip_dbh->prepare("insert into poolips values ('$webvar{fullcidr}',". " ?, '6750400', '$webvar{city}', '$pooltype', 'y', '', '', '')"); my @poolip_list = $cidr->hostenum; for (my $i=1; $i<=$#poolip_list; $i++) { $sth->execute($poolip_list[$i]->addr); } } # end pool special $ip_dbh->commit; }; # end eval if ($@) { carp "Transaction aborted because $@"; eval { $ip_dbh->rollback; }; syslog "err", "Initialization of pool '$webvar{fullcidr}' by $authuser failed: '$@'"; printAndExit("$disp_alloctypes{$webvar{alloctype}} $webvar{fullcidr} not completely initialized."); } syslog "notice", "$disp_alloctypes{$webvar{alloctype}} '$webvar{fullcidr}' successfully initialized by $authuser"; print qq(
The block $webvar{fullcidr} was sucessfully added as type '$webvar{alloctype}' ($disp_alloctypes{$webvar{alloctype}})
); } # end static-IP vs netblock allocation printFooter(); } # end insertAssign() # Does some basic checks on common input data to make sure nothing # *really* weird gets in to the database through this script. # Does NOT do complete input validation!!! sub validateInput { if ($webvar{city} eq '-') { printAndExit("Please choose a city."); } chomp $webvar{alloctype}; # We have different handling for customer allocations and "internal" or "our" allocations if ($webvar{alloctype} =~ /^(ci|di|cn|mi)$/) { if (!$webvar{custid}) { printAndExit("Please enter a customer ID."); } if ($webvar{custid} !~ /^(?:\d{10}|\d{7}|STAFF|TEMP)(?:-\d\d?)?$/) { # Force uppercase for now... $webvar{custid} =~ tr/a-z/A-Z/; # Crosscheck with ... er... something. my $status = CustIDCK->custid_exist($webvar{custid}); printAndExit("Error verifying customer ID: ".$CustIDCK::ErrMsg) if $CustIDCK::Error; printAndExit("Customer ID not valid. Make sure the Customer ID ". "is correct.
\nUse STAFF for staff static IPs, and 6750400 for any other ". "non-customer assignments.") if !$status; #"Please enter a valid customer ID- this must be a 7- or 10-digit number, or STAFF for #static IPs for staff."); } # print "\n"; } elsif ($webvar{alloctype} =~ /^([cdsmw]p|si|dn|dy|dc|ee|rr|ii)$/){ # All non-customer allocations MUST be entered with "our" customer ID. # I have Defined this as 6750400 for consistency. # STAFF is also acceptable. if ((!$webvar{custid}) || ($webvar{custid} ne 'STAFF')) { $webvar{custid} = "6750400"; } if ($webvar{alloctype} eq 'rr') { if ($webvar{city} !~ /^(?:Huntsville|North Bay|Ottawa|Pembroke|Sault Ste. Marie|Sudbury|Timmins|Thunder Bay|Toronto)$/) { printAndExit("Please choose a valid POP location for a routed netblock. Valid ". "POP locations are currently:
\n Elliot Lake - Huntsville - North Bay -". " Ottawa -". " Pembroke - Sault Ste. Marie - Sudbury - Timmins - Thunder Bay - Toronto"); } } } else { # Danger! Danger! alloctype should ALWAYS be set by a dropdown. Anyone # managing to call things in such a way as to cause this deserves a cryptic error. printAndExit("Invalid alloctype"); } return 0; } # end validateInput # Displays details of a specific allocation in a form # Allows update/delete # action=edit sub edit { printHeader(''); my $sql; # Two cases: block is a netblock, or block is a static IP from a pool # because I'm lazy, we'll try to make the SELECT's bring out identical)ish) data if ($webvar{block} =~ /\/32$/) { $sql = "select ip,custid,ptype,city,circuitid,description,notes from poolips where ip='$webvar{block}'"; } else { $sql = "select cidr,custid,type,city,circuitid,description,notes from allocations where cidr='$webvar{block}'" } # gotta snag block info from db $sth = $ip_dbh->prepare($sql); $sth->execute; my @data = $sth->fetchrow_array; # Clean up extra whitespace on alloc type $data[2] =~ s/\s//; # Postfix "i" on pool IP types if ($data[2] =~ /^[cdsmw]$/) { $data[2] .= "i"; } open (HTML, "../editDisplay.html") or croak "Could not open editDisplay.html :$!"; my $html = join('', ); # We can't let the city be changed here; this block is a part of # a larger routed allocation and therefore by definition can't be moved. # block and city are static. ##fixme # Needs thinking. Have to allow changes to city to correct errors, no? $html =~ s/\$\$BLOCK\$\$/$webvar{block}/g; $html =~ s/\$\$CITY\$\$/$data[3]/g; # Screw it. Changing allocation types gets very ugly VERY quickly- especially # with the much longer list of allocation types. # We'll just show what type of block it is. # this has now been Requested, so here goes. if ($data[2] =~ /^d[nyc]|cn|ee|ii$/) { # Block that can be changed my $blockoptions = "\n"; $html =~ s/\$\$TYPESELECT\$\$/$blockoptions/g; } else { $html =~ s/\$\$TYPESELECT\$\$/$disp_alloctypes{$data[2]}/g; } # These can be modified, although CustID changes may get ignored. $html =~ s/\$\$CUSTID\$\$/$data[1]/g; $html =~ s/\$\$TYPE\$\$/$data[2]/g; $html =~ s/\$\$CIRCID\$\$/$data[4]/g; $html =~ s/\$\$DESC\$\$/$data[5]/g; $html =~ s/\$\$NOTES\$\$/$data[6]/g; print $html; printFooter(); } # edit() # Stuff new info about a block into the db # action=update sub update { printHeader(''); # Make sure incoming data is in correct format - custID among other things. validateInput; # SQL transaction wrapper eval { # Relatively simple SQL transaction here. my $sql; if (my $pooltype = ($webvar{alloctype} =~ /^([cdsmw])i$/) ) { $sql = "update poolips set custid='$webvar{custid}',notes='$webvar{notes}',". "circuitid='$webvar{circid}',description='$webvar{desc}' ". "where ip='$webvar{block}'"; } else { $sql = "update allocations set custid='$webvar{custid}',". "description='$webvar{desc}',notes='$webvar{notes}',city='$webvar{city}',". "type='$webvar{alloctype}',circuitid='$webvar{circid}' where cidr='$webvar{block}'"; } syslog "debug", $sql; $sth = $ip_dbh->prepare($sql); $sth->execute; $ip_dbh->commit; }; if ($@) { carp "Transaction aborted because $@"; eval { $ip_dbh->rollback; }; syslog "err", "$authuser could not update block/IP '$webvar{block}': '$@'"; printAndExit("Could not update block/IP $webvar{block}: $@"); } # If we get here, the operation succeeded. syslog "notice", "$authuser updated $webvar{block}"; open (HTML, "../updated.html") or croak "Could not open updated.html :$!"; my $html = join('', ); $html =~ s/\$\$BLOCK\$\$/$webvar{block}/g; $webvar{city} = desanitize($webvar{city}); $html =~ s/\$\$CITY\$\$/$webvar{city}/g; $html =~ s/\$\$ALLOCTYPE\$\$/$webvar{alloctype}/g; $html =~ s/\$\$TYPEFULL\$\$/$disp_alloctypes{$webvar{alloctype}}/g; $html =~ s/\$\$CUSTID\$\$/$webvar{custid}/g; $webvar{circid} = desanitize($webvar{circid}); $html =~ s/\$\$CIRCID\$\$/$webvar{circid}/g; $webvar{desc} = desanitize($webvar{desc}); $html =~ s/\$\$DESC\$\$/$webvar{desc}/g; $webvar{notes} = desanitize($webvar{notes}); $html =~ s/\$\$NOTES\$\$/$webvar{notes}/g; print $html; printFooter; } # update() # Delete an allocation. sub remove { printHeader(''); #show confirm screen. open HTML, "../confirmRemove.html" or croak "Could not open confirmRemove.html :$!"; my $html = join('', ); close HTML; # Serves'em right for getting here... if (!defined($webvar{block})) { printAndExit("Error 332"); } my ($cidr, $custid, $type, $city, $circid, $desc, $notes, $alloctype); if ($webvar{alloctype} eq 'rr') { $sth = $ip_dbh->prepare("select cidr,city from routed where cidr='$webvar{block}'"); $sth->execute(); # This feels... extreme. croak $sth->errstr() if($sth->errstr()); $sth->bind_columns(\$cidr,\$city); $sth->execute(); $sth->fetch || croak $sth->errstr(); $custid = "N/A"; $alloctype = $webvar{alloctype}; $circid = "N/A"; $desc = "N/A"; $notes = "N/A"; } elsif ($webvar{alloctype} eq 'mm') { $cidr = $webvar{block}; $city = "N/A"; $custid = "N/A"; $alloctype = $webvar{alloctype}; $circid = "N/A"; $desc = "N/A"; $notes = "N/A"; } elsif ($webvar{alloctype} =~ /^[cdsmw]i$/) { # done with alloctype=rr # Unassigning a static IP my $sth = $ip_dbh->prepare("select ip,custid,city,ptype,notes,circuitid from poolips". " where ip='$webvar{block}'"); $sth->execute(); # croak $sth->errstr() if($sth->errstr()); $sth->bind_columns(\$cidr, \$custid, \$city, \$alloctype, \$notes, \$circid); $sth->fetch() || croak $sth->errstr; $alloctype .="i"; } else { # done with alloctype=[cdsmw]i my $sth = $ip_dbh->prepare("select cidr,custid,type,city,circuitid,description,notes from ". "allocations where cidr='$webvar{block}'"); $sth->execute(); # croak $sth->errstr() if($sth->errstr()); $sth->bind_columns(\$cidr, \$custid, \$alloctype, \$city, \$circid, \$desc, \$notes); $sth->fetch() || carp $sth->errstr; } # end cases for different alloctypes # Munge everything into HTML $html =~ s|Please confirm|Please confirm removal of|; $html =~ s|\$\$BLOCK\$\$|$cidr|g; $html =~ s|\$\$TYPEFULL\$\$|$disp_alloctypes{$alloctype}|g; $html =~ s|\$\$ALLOCTYPE\$\$|$alloctype|g; $html =~ s|\$\$CITY\$\$|$city|g; $html =~ s|\$\$CUSTID\$\$|$custid|g; $html =~ s|\$\$CIRCID\$\$|$circid|g; $html =~ s|\$\$DESC\$\$|$desc|g; $html =~ s|\$\$NOTES\$\$|$notes|g; $html =~ s|\$\$ACTION\$\$|finaldelete|g; # Set the warning text. if ($alloctype =~ /^[cdsmw]p$/) { $html =~ s||
Warning: clicking confirm will remove this record entirely.
Any IPs allocated from this pool will also be removed!
|; } else { $html =~ s||
Warning: clicking confirm will remove this record entirely.
|; } print $html; printFooter; } # end edit() # Delete an allocation. Return it to the freeblocks table; munge # data as necessary to keep as few records as possible in freeblocks # to prevent weirdness when allocating blocks later. # Remove IPs from pool listing if necessary sub finalDelete { printHeader(''); # Enable transactions and exception-on-errors... but only for this sub local $ip_dbh->{AutoCommit} = 0; local $ip_dbh->{RaiseError} = 1; if ($webvar{alloctype} =~ /^[cdsmw]i$/) { eval { $sth = $ip_dbh->prepare("select * from poolips where ip='$webvar{block}'"); $sth->execute; my @data = $sth->fetchrow_array; $sth = $ip_dbh->prepare("select city from allocations where cidr='$data[0]'"); $sth->execute; @data = $sth->fetchrow_array; $sth = $ip_dbh->prepare("update poolips set custid='6750400', available='y',". " city='$data[0]', description='' where ip='$webvar{block}'"); $sth->execute; $ip_dbh->commit; }; if ($@) { carp "Transaction aborted because $@"; eval { $ip_dbh->rollback; }; syslog "err", "$authuser could not deallocate static IP '$webvar{block}': '$@'"; printAndExit("Could not deallocate static IP $webvar{block}: $@"); } print "
Success! $webvar{block} deallocated.
\n"; syslog "notice", "$authuser deallocated static IP $webvar{block}"; } elsif ($webvar{alloctype} eq 'mm') { # end alloctype = [cdsmw]i eval { $sth = $ip_dbh->prepare("delete from masterblocks where cidr='$webvar{block}'"); $sth->execute; $sth = $ip_dbh->prepare("delete from freeblocks where cidr='$webvar{block}'"); $sth->execute; $ip_dbh->commit; }; if ($@) { carp "Transaction aborted because $@"; eval { $ip_dbh->rollback; }; syslog "err", "$authuser could not remove master block '$webvar{block}': '$@'"; printAndExit("Could not remove master block $webvar{block}: $@"); } print "
Success! Master $webvar{block} removed.
\n"; syslog "notice", "$authuser removed master block $webvar{block}"; } else { # end alloctype master block case ## This is a big block; but it HAS to be done in a chunk. Any removal ## of a netblock allocation may result in a larger chunk of free ## contiguous IP space - which may in turn be combined into a single ## netblock rather than a number of smaller netblocks. eval { my $cidr = new NetAddr::IP $webvar{block}; if ($webvar{alloctype} eq 'rr') { $sth = $ip_dbh->prepare("delete from routed where cidr='$webvar{block}'"); $sth->execute; # Make sure block getting deleted is properly accounted for. $sth = $ip_dbh->prepare("update freeblocks set routed='n',city=''". " where cidr='$webvar{block}'"); $sth->execute; # Set up query to start compacting free blocks. $sth = $ip_dbh->prepare("select * from freeblocks where ". "maskbits<=".$cidr->masklen." and routed='n' order by maskbits desc"); } else { # end alloctype routing case $sth = $ip_dbh->prepare("delete from allocations where cidr='$webvar{block}'"); $sth->execute; # Special case - delete pool IPs if ($webvar{alloctype} =~ /^[cdsmw]p$/) { # We have to delete the IPs from the pool listing. $sth = $ip_dbh->prepare("delete from poolips where pool='$webvar{block}'"); $sth->execute; } # Set up query for compacting free blocks. $sth = $ip_dbh->prepare("select * from freeblocks where cidr << ". "(select cidr from routed where cidr >> '$cidr') ". " and maskbits<=".$cidr->masklen." and routed='y' order by maskbits desc"); } # end alloctype general case # Now we look for larger-or-equal-sized free blocks in the same master (routed) # (super)block. If there aren't any, we can't combine blocks anyway. If there # are, we check to see if we can combine blocks. # Execute the statement prepared in the if-else above. $sth->execute; # NetAddr::IP->compact() attempts to produce the smallest inclusive block # from the caller and the passed terms. # EG: if you call $cidr->compact($ip1,$ip2,$ip3) when $cidr, $ip1, $ip2, # and $ip3 are consecutive /27's starting on .0 (.0-.31, .32-.63, # .64-.95, and .96-.128), you will get an array containing a single # /25 as element 0 (.0-.127). Order is not important; you could have # $cidr=.32/27, $ip1=.96/27, $ip2=.0/27, and $ip3=.64/27. my (@together, @combinelist); my $i=0; while (my @data = $sth->fetchrow_array) { my $testIP = new NetAddr::IP $data[0]; @together = $testIP->compact($cidr); my $num = @together; if ($num == 1) { $cidr = $together[0]; $combinelist[$i++] = $testIP; } } # Clear old freeblocks entries - if any. $i==0 if not. if ($i>0) { $sth = $ip_dbh->prepare("delete from freeblocks where cidr=?"); foreach my $block (@combinelist) { $sth->execute("$block"); } } # insert "new" freeblocks entry if ($webvar{alloctype} eq 'rr') { $sth = $ip_dbh->prepare("insert into freeblocks values ('$cidr',".$cidr->masklen. ",'','n')"); } else { $sth = $ip_dbh->prepare("insert into freeblocks values ('$cidr',".$cidr->masklen. ",(select city from routed where cidr >>= '$cidr'),'y')"); } $sth->execute; # If we got here, we've succeeded. Whew! $ip_dbh->commit; }; # end eval if ($@) { carp "Transaction aborted because $@"; eval { $ip_dbh->rollback; }; syslog "err", "$authuser could not deallocate netblock '$webvar{block}': '$@'"; printAndExit("Could not deallocate netblock $webvar{block}: $@"); } print "
Success! $webvar{block} deleted.
\n"; syslog "notice", "$authuser deallocated '$webvar{alloctype}'-type netblock $webvar{block}"; } # end alloctype != netblock printFooter; } # finalDelete # Just in case we manage to get here. exit 0;