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