[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: 2015-01-20 21:57:05 +0000 (Tue, 20 Jan 2015) $
|
---|
| 6 | # SVN revision $Rev: 682 $
|
---|
| 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;
|
---|
[573] | 18 | use NetAddr::IP qw(:lower Compact );
|
---|
[582] | 19 | use Frontier::Client;
|
---|
[68] | 20 | use POSIX;
|
---|
[4] | 21 | use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
|
---|
| 22 |
|
---|
[417] | 23 | $VERSION = 2; ##VERSION##
|
---|
[4] | 24 | @ISA = qw(Exporter);
|
---|
[106] | 25 | @EXPORT_OK = qw(
|
---|
[541] | 26 | %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist
|
---|
[661] | 27 | %IPDBacl %aclmsg %rpcacl $maxfcgi
|
---|
[660] | 28 | $errstr
|
---|
[523] | 29 | &initIPDBGlobals &connectDB &finish &checkDBSanity
|
---|
[547] | 30 | &addMaster &touchMaster
|
---|
[663] | 31 | &listSummary &listSubs &listContainers &listAllocations &listFree &listPool
|
---|
[541] | 32 | &getMasterList &getTypeList &getPoolSelect &findAllocateFrom
|
---|
[536] | 33 | &ipParent &subParent &blockParent &getRoutedCity
|
---|
[675] | 34 | &allocateBlock &updateBlock &deleteBlock &getBlockData &getBlockRDNS &getRDNSbyIP
|
---|
[530] | 35 | &getNodeList &getNodeName &getNodeInfo
|
---|
[519] | 36 | &mailNotify
|
---|
[106] | 37 | );
|
---|
[4] | 38 |
|
---|
| 39 | @EXPORT = (); # Export nothing by default.
|
---|
[106] | 40 | %EXPORT_TAGS = ( ALL => [qw(
|
---|
[167] | 41 | %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist
|
---|
[661] | 42 | %IPDBacl %aclmsg %rpcacl $maxfcgi
|
---|
[660] | 43 | $errstr
|
---|
[523] | 44 | &initIPDBGlobals &connectDB &finish &checkDBSanity
|
---|
[547] | 45 | &addMaster &touchMaster
|
---|
[663] | 46 | &listSummary &listSubs &listContainers &listAllocations &listFree &listPool
|
---|
[541] | 47 | &getMasterList &getTypeList &getPoolSelect &findAllocateFrom
|
---|
[536] | 48 | &ipParent &subParent &blockParent &getRoutedCity
|
---|
[675] | 49 | &allocateBlock &updateBlock &deleteBlock &getBlockData &getBlockRDNS &getRDNSbyIP
|
---|
[530] | 50 | &getNodeList &getNodeName &getNodeInfo
|
---|
[519] | 51 | &mailNotify
|
---|
[106] | 52 | )]
|
---|
| 53 | );
|
---|
[4] | 54 |
|
---|
[77] | 55 | ##
|
---|
| 56 | ## Global variables
|
---|
| 57 | ##
|
---|
| 58 | our %disp_alloctypes;
|
---|
| 59 | our %list_alloctypes;
|
---|
[167] | 60 | our %def_custids;
|
---|
[96] | 61 | our @citylist;
|
---|
| 62 | our @poplist;
|
---|
[233] | 63 | our %IPDBacl;
|
---|
[66] | 64 |
|
---|
[517] | 65 | # mapping table for functional-area => error message
|
---|
| 66 | our %aclmsg = (
|
---|
| 67 | addmaster => 'add a master block',
|
---|
| 68 | addblock => 'add an allocation',
|
---|
| 69 | updateblock => 'update a block',
|
---|
| 70 | delblock => 'delete an allocation',
|
---|
| 71 | );
|
---|
| 72 |
|
---|
[660] | 73 | our %rpcacl;
|
---|
[661] | 74 | our $maxfcgi = 3;
|
---|
[660] | 75 |
|
---|
[585] | 76 | # error reporting
|
---|
| 77 | our $errstr = '';
|
---|
| 78 |
|
---|
[417] | 79 | our $org_name = 'Example Corp';
|
---|
[416] | 80 | our $smtphost = 'smtp.example.com';
|
---|
| 81 | our $domain = 'example.com';
|
---|
[417] | 82 | our $defcustid = '5554242';
|
---|
[681] | 83 | our $smtpsender = 'ipdb@example.com';
|
---|
[417] | 84 | # mostly for rwhois
|
---|
| 85 | ##fixme: leave these blank by default?
|
---|
[420] | 86 | our $rwhoisDataPath = '/usr/local/rwhoisd/etc/rwhoisd'; # to match ./configure defaults from rwhoisd-1.5.9.6
|
---|
[417] | 87 | our $org_street = '123 4th Street';
|
---|
| 88 | our $org_city = 'Anytown';
|
---|
| 89 | our $org_prov_state = 'ON';
|
---|
| 90 | our $org_pocode = 'H0H 0H0';
|
---|
| 91 | our $org_country = 'CA';
|
---|
| 92 | our $org_phone = '000-555-1234';
|
---|
| 93 | our $org_techhandle = 'ISP-ARIN-HANDLE';
|
---|
[434] | 94 | our $org_email = 'noc@example.com';
|
---|
[437] | 95 | our $hostmaster = 'dns@example.com';
|
---|
[416] | 96 |
|
---|
[417] | 97 | our $syslog_facility = 'local2';
|
---|
| 98 |
|
---|
[582] | 99 | our $rpc_url = '';
|
---|
[585] | 100 | our $revgroup = 1; # should probably be configurable somewhere
|
---|
| 101 | our $rpccount = 0;
|
---|
[582] | 102 |
|
---|
[674] | 103 | # Largest inverse CIDR mask length to show per-IP rDNS list
|
---|
| 104 | # (eg, NetAddr::IP->bits - NetAddr::IP->masklen)
|
---|
| 105 | our $maxrevlist = 5; # /27
|
---|
| 106 |
|
---|
[682] | 107 | # UI layout for subblocks/containers
|
---|
| 108 | our $sublistlayout = 1;
|
---|
| 109 |
|
---|
[585] | 110 | ##
|
---|
| 111 | ## Internal utility functions
|
---|
| 112 | ##
|
---|
| 113 |
|
---|
| 114 | ## IPDB::_rpc
|
---|
| 115 | # Make an RPC call for DNS changes
|
---|
| 116 | sub _rpc {
|
---|
| 117 | return if !$rpc_url; # Just In Case
|
---|
| 118 | my $rpcsub = shift;
|
---|
| 119 | my %args = @_;
|
---|
| 120 |
|
---|
| 121 | # Make an object to represent the XML-RPC server.
|
---|
| 122 | my $server = Frontier::Client->new(url => $rpc_url, debug => 0);
|
---|
| 123 | my $result;
|
---|
| 124 |
|
---|
| 125 | my %rpcargs = (
|
---|
| 126 | rpcsystem => 'ipdb',
|
---|
[640] | 127 | # must be provided by caller's caller
|
---|
| 128 | # rpcuser => $args{user},
|
---|
| 129 | %args,
|
---|
[585] | 130 | );
|
---|
| 131 |
|
---|
| 132 | eval {
|
---|
[640] | 133 | $result = $server->call("dnsdb.$rpcsub", %rpcargs);
|
---|
[585] | 134 | };
|
---|
| 135 | if ($@) {
|
---|
| 136 | $errstr = $@;
|
---|
[678] | 137 | $errstr =~ s/\s*$//;
|
---|
[585] | 138 | $errstr =~ s/Fault returned from XML RPC Server, fault code 4: error executing RPC `dnsdb.$rpcsub'\.\s//;
|
---|
| 139 | }
|
---|
| 140 | $rpccount++;
|
---|
| 141 |
|
---|
| 142 | return $result if $result;
|
---|
| 143 | } # end _rpc()
|
---|
| 144 |
|
---|
| 145 |
|
---|
[77] | 146 | # Let's initialize the globals.
|
---|
| 147 | ## IPDB::initIPDBGlobals()
|
---|
| 148 | # Initialize all globals. Takes a database handle, returns a success or error code
|
---|
| 149 | sub initIPDBGlobals {
|
---|
| 150 | my $dbh = $_[0];
|
---|
| 151 | my $sth;
|
---|
| 152 |
|
---|
[106] | 153 | # Initialize alloctypes hashes
|
---|
[167] | 154 | $sth = $dbh->prepare("select type,listname,dispname,listorder,def_custid from alloctypes order by listorder");
|
---|
[77] | 155 | $sth->execute;
|
---|
| 156 | while (my @data = $sth->fetchrow_array) {
|
---|
[106] | 157 | $disp_alloctypes{$data[0]} = $data[2];
|
---|
[167] | 158 | $def_custids{$data[0]} = $data[4];
|
---|
[106] | 159 | if ($data[3] < 900) {
|
---|
| 160 | $list_alloctypes{$data[0]} = $data[1];
|
---|
| 161 | }
|
---|
[77] | 162 | }
|
---|
[96] | 163 |
|
---|
| 164 | # City and POP listings
|
---|
[157] | 165 | $sth = $dbh->prepare("select city,routing from cities order by city");
|
---|
[96] | 166 | $sth->execute;
|
---|
| 167 | return (undef,$sth->errstr) if $sth->err;
|
---|
| 168 | while (my @data = $sth->fetchrow_array) {
|
---|
[106] | 169 | push @citylist, $data[0];
|
---|
[96] | 170 | if ($data[1] eq 'y') {
|
---|
[106] | 171 | push @poplist, $data[0];
|
---|
[96] | 172 | }
|
---|
| 173 | }
|
---|
| 174 |
|
---|
[233] | 175 | # Load ACL data. Specific username checks are done at a different level.
|
---|
| 176 | $sth = $dbh->prepare("select username,acl from users");
|
---|
| 177 | $sth->execute;
|
---|
[106] | 178 | return (undef,$sth->errstr) if $sth->err;
|
---|
[233] | 179 | while (my @data = $sth->fetchrow_array) {
|
---|
| 180 | $IPDBacl{$data[0]} = $data[1];
|
---|
| 181 | }
|
---|
[106] | 182 |
|
---|
[517] | 183 | ##fixme: initialize HTML::Template env var for template path
|
---|
| 184 | # something like $self->path().'/templates' ?
|
---|
| 185 | # $ENV{HTML_TEMPLATE_ROOT} = 'foo/bar';
|
---|
| 186 |
|
---|
[77] | 187 | return (1,"OK");
|
---|
| 188 | } # end initIPDBGlobals
|
---|
| 189 |
|
---|
| 190 |
|
---|
| 191 | ## IPDB::connectDB()
|
---|
[4] | 192 | # Creates connection to IPDB.
|
---|
[77] | 193 | # Requires the database name, username, and password.
|
---|
[4] | 194 | # Returns a handle to the db.
|
---|
[77] | 195 | # Set up for a PostgreSQL db; could be any transactional DBMS with the
|
---|
| 196 | # right changes.
|
---|
[4] | 197 | sub connectDB {
|
---|
[432] | 198 | my $dbname = shift;
|
---|
| 199 | my $user = shift;
|
---|
| 200 | my $pass = shift;
|
---|
| 201 | my $dbhost = shift;
|
---|
| 202 |
|
---|
[4] | 203 | my $dbh;
|
---|
[432] | 204 | my $DSN = "DBI:Pg:".($dbhost ? "host=$dbhost;" : '')."dbname=$dbname";
|
---|
[4] | 205 |
|
---|
| 206 | # Note that we want to autocommit by default, and we will turn it off locally as necessary.
|
---|
[77] | 207 | # We may not want to print gobbledygook errors; YMMV. Have to ponder that further.
|
---|
| 208 | $dbh = DBI->connect($DSN, $user, $pass, {
|
---|
| 209 | AutoCommit => 1,
|
---|
| 210 | PrintError => 0
|
---|
| 211 | })
|
---|
| 212 | or return (undef, $DBI::errstr) if(!$dbh);
|
---|
[4] | 213 |
|
---|
[77] | 214 | # Return here if we can't select. Note that this indicates a
|
---|
| 215 | # problem executing the select.
|
---|
[183] | 216 | my $sth = $dbh->prepare("select type from alloctypes");
|
---|
[77] | 217 | $sth->execute();
|
---|
| 218 | return (undef,$DBI::errstr) if ($sth->err);
|
---|
| 219 |
|
---|
| 220 | # See if the select returned anything (or null data). This should
|
---|
| 221 | # succeed if the select executed, but...
|
---|
| 222 | $sth->fetchrow();
|
---|
| 223 | return (undef,$DBI::errstr) if ($sth->err);
|
---|
| 224 |
|
---|
| 225 | # If we get here, we should be OK.
|
---|
| 226 | return ($dbh,"DB connection OK");
|
---|
[4] | 227 | } # end connectDB
|
---|
| 228 |
|
---|
[77] | 229 |
|
---|
| 230 | ## IPDB::finish()
|
---|
| 231 | # Cleans up after database handles and so on.
|
---|
| 232 | # Requires a database handle
|
---|
| 233 | sub finish {
|
---|
| 234 | my $dbh = $_[0];
|
---|
[517] | 235 | $dbh->disconnect if $dbh;
|
---|
[77] | 236 | } # end finish
|
---|
| 237 |
|
---|
| 238 |
|
---|
[106] | 239 | ## IPDB::checkDBSanity()
|
---|
[4] | 240 | # Quick check to see if the db is responding. A full integrity
|
---|
| 241 | # check will have to be a separate tool to walk the IP allocation trees.
|
---|
| 242 | sub checkDBSanity {
|
---|
[106] | 243 | my ($dbh) = $_[0];
|
---|
[4] | 244 |
|
---|
| 245 | if (!$dbh) {
|
---|
[106] | 246 | print "No database handle, or connection has been closed.";
|
---|
| 247 | return -1;
|
---|
[4] | 248 | } else {
|
---|
| 249 | # it connects, try a stmt.
|
---|
[184] | 250 | my $sth = $dbh->prepare("select type from alloctypes");
|
---|
[4] | 251 | my $err = $sth->execute();
|
---|
| 252 |
|
---|
| 253 | if ($sth->fetchrow()) {
|
---|
| 254 | # all is well.
|
---|
| 255 | return 1;
|
---|
| 256 | } else {
|
---|
[16] | 257 | print "Connected to the database, but could not execute test statement. ".$sth->errstr();
|
---|
[106] | 258 | return -1;
|
---|
[4] | 259 | }
|
---|
| 260 | }
|
---|
| 261 | # Clean up after ourselves.
|
---|
[106] | 262 | # $dbh->disconnect;
|
---|
[4] | 263 | } # end checkDBSanity
|
---|
| 264 |
|
---|
[66] | 265 |
|
---|
[371] | 266 | ## IPDB::addMaster()
|
---|
| 267 | # Does all the magic necessary to sucessfully add a master block
|
---|
| 268 | # Requires database handle, block to add
|
---|
| 269 | # Returns failure code and error message or success code and "message"
|
---|
| 270 | sub addMaster {
|
---|
| 271 | my $dbh = shift;
|
---|
[591] | 272 | # warning! during testing, this somehow generated a "Bad file descriptor" error. O_o
|
---|
[371] | 273 | my $cidr = new NetAddr::IP shift;
|
---|
[582] | 274 | my %args = @_;
|
---|
[371] | 275 |
|
---|
[582] | 276 | $args{vrf} = '' if !$args{vrf};
|
---|
| 277 | $args{rdns} = '' if !$args{rdns};
|
---|
| 278 | $args{defloc} = '' if !$args{defloc};
|
---|
| 279 | $args{rwhois} = 'n' if !$args{rwhois}; # fail "safe", sort of.
|
---|
| 280 | $args{rwhois} = 'n' if $args{rwhois} ne 'n' and $args{rwhois} ne 'y';
|
---|
| 281 |
|
---|
[629] | 282 | my $mid;
|
---|
| 283 |
|
---|
[371] | 284 | # Allow transactions, and raise an exception on errors so we can catch it later.
|
---|
| 285 | # Use local to make sure these get "reset" properly on exiting this block
|
---|
| 286 | local $dbh->{AutoCommit} = 0;
|
---|
| 287 | local $dbh->{RaiseError} = 1;
|
---|
| 288 |
|
---|
| 289 | # Wrap all the SQL in a transaction
|
---|
| 290 | eval {
|
---|
[628] | 291 | # First check - does the master exist? Ignore VRFs until we can see a sane UI
|
---|
| 292 | my ($mcontained) = $dbh->selectrow_array("SELECT cidr FROM allocations WHERE cidr >>= ? AND type = 'mm'",
|
---|
| 293 | undef, ($cidr) );
|
---|
| 294 | die "Master block $mcontained already exists and entirely contains $cidr\n"
|
---|
| 295 | if $mcontained;
|
---|
[371] | 296 |
|
---|
[628] | 297 | # Second check - does the new master contain an existing one or ones?
|
---|
| 298 | my ($mexist) = $dbh->selectrow_array("SELECT cidr FROM allocations WHERE cidr <<= ? AND type = 'mm'",
|
---|
| 299 | undef, ($cidr) );
|
---|
| 300 |
|
---|
[518] | 301 | if (!$mexist) {
|
---|
[371] | 302 | # First case - master is brand-spanking-new.
|
---|
| 303 | ##fixme: rwhois should be globally-flagable somewhere, much like a number of other things
|
---|
| 304 | ## maybe a db table called "config"?
|
---|
[628] | 305 | $dbh->do("INSERT INTO allocations (cidr,type,swip,vrf,rdns) VALUES (?,?,?,?,?)", undef,
|
---|
| 306 | ($cidr, 'mm', 'y', $args{vrf}, $args{rdns}) );
|
---|
| 307 | ($mid) = $dbh->selectrow_array("SELECT currval('allocations_id_seq')");
|
---|
[371] | 308 |
|
---|
| 309 | # Unrouted blocks aren't associated with a city (yet). We don't rely on this
|
---|
| 310 | # elsewhere though; legacy data may have traps and pitfalls in it to break this.
|
---|
| 311 | # Thus the "routed" flag.
|
---|
[628] | 312 | $dbh->do("INSERT INTO freeblocks (cidr,city,routed,parent_id,vrf,master_id) VALUES (?,?,?,?,?,?)", undef,
|
---|
| 313 | ($cidr, '<NULL>', 'm', $mid, $args{vrf}, $mid) );
|
---|
[371] | 314 |
|
---|
[628] | 315 | # master should be its own master, so deletes directly at the master level work
|
---|
| 316 | $dbh->do("UPDATE allocations SET master_id = ? WHERE id = ?", undef, ($mid, $mid) );
|
---|
| 317 |
|
---|
[371] | 318 | # If we get here, everything is happy. Commit changes.
|
---|
| 319 | $dbh->commit;
|
---|
| 320 |
|
---|
[518] | 321 | } # done new master does not contain existing master(s)
|
---|
[371] | 322 | else {
|
---|
| 323 |
|
---|
| 324 | # collect the master(s) we're going to absorb, and snag the longest netmask while we're at it.
|
---|
| 325 | my $smallmask = $cidr->masklen;
|
---|
[628] | 326 | my $sth = $dbh->prepare("SELECT cidr,id FROM allocations WHERE cidr <<= ? AND type='mm' AND parent_id=0");
|
---|
[518] | 327 | $sth->execute($cidr);
|
---|
[371] | 328 | my @cmasters;
|
---|
[628] | 329 | my @oldmids;
|
---|
[371] | 330 | while (my @data = $sth->fetchrow_array) {
|
---|
| 331 | my $master = new NetAddr::IP $data[0];
|
---|
| 332 | push @cmasters, $master;
|
---|
[628] | 333 | push @oldmids, $data[1];
|
---|
[371] | 334 | $smallmask = $master->masklen if $master->masklen > $smallmask;
|
---|
| 335 | }
|
---|
| 336 |
|
---|
| 337 | # split the new master, and keep only those blocks not part of an existing master
|
---|
| 338 | my @blocklist;
|
---|
| 339 | foreach my $seg ($cidr->split($smallmask)) {
|
---|
| 340 | my $contained = 0;
|
---|
| 341 | foreach my $master (@cmasters) {
|
---|
| 342 | $contained = 1 if $master->contains($seg);
|
---|
| 343 | }
|
---|
| 344 | push @blocklist, $seg if !$contained;
|
---|
| 345 | }
|
---|
| 346 |
|
---|
[628] | 347 | ##fixme: master_id
|
---|
[371] | 348 | # collect the unrouted free blocks within the new master
|
---|
[556] | 349 | $sth = $dbh->prepare("SELECT cidr FROM freeblocks WHERE masklen(cidr) <= ? AND cidr <<= ? AND routed = 'm'");
|
---|
[518] | 350 | $sth->execute($smallmask, $cidr);
|
---|
[371] | 351 | while (my @data = $sth->fetchrow_array) {
|
---|
| 352 | my $freeblock = new NetAddr::IP $data[0];
|
---|
| 353 | push @blocklist, $freeblock;
|
---|
| 354 | }
|
---|
| 355 |
|
---|
| 356 | # combine the set of free blocks we should have now.
|
---|
| 357 | @blocklist = Compact(@blocklist);
|
---|
| 358 |
|
---|
[628] | 359 | # master
|
---|
| 360 | $dbh->do("INSERT INTO allocations (cidr,type,swip,vrf,rdns) VALUES (?,?,?,?,?)", undef,
|
---|
| 361 | ($cidr, 'mm', 'y', $args{vrf}, $args{rdns}) );
|
---|
| 362 | ($mid) = $dbh->selectrow_array("SELECT currval('allocations_id_seq')");
|
---|
| 363 |
|
---|
| 364 | # master should be its own master, so deletes directly at the master level work
|
---|
| 365 | $dbh->do("UPDATE allocations SET master_id = ? WHERE id = ?", undef, ($mid, $mid) );
|
---|
| 366 |
|
---|
[371] | 367 | # and now insert the new data. Make sure to delete old masters too.
|
---|
| 368 |
|
---|
| 369 | # freeblocks
|
---|
[628] | 370 | $sth = $dbh->prepare("DELETE FROM freeblocks WHERE cidr <<= ? AND parent_id IN (".join(',', @oldmids).")");
|
---|
| 371 | my $sth2 = $dbh->prepare("INSERT INTO freeblocks (cidr,city,routed,parent_id,vrf,master_id)".
|
---|
| 372 | " VALUES (?,'<NULL>','m',?,?,?)");
|
---|
[371] | 373 | foreach my $newblock (@blocklist) {
|
---|
[518] | 374 | $sth->execute($newblock);
|
---|
[628] | 375 | $sth2->execute($newblock, $mid, $args{vrf}, $mid);
|
---|
[371] | 376 | }
|
---|
| 377 |
|
---|
[628] | 378 | # Update immediate allocations, and remove the old parents
|
---|
| 379 | $sth = $dbh->prepare("UPDATE allocations SET parent_id = ? WHERE parent_id = ?");
|
---|
| 380 | $sth2 = $dbh->prepare("DELETE FROM allocations WHERE id = ?");
|
---|
| 381 | foreach my $old (@oldmids) {
|
---|
| 382 | $sth->execute($mid, $old);
|
---|
| 383 | $sth2->execute($old);
|
---|
| 384 | }
|
---|
[556] | 385 |
|
---|
[371] | 386 | # *whew* If we got here, we likely suceeded.
|
---|
| 387 | $dbh->commit;
|
---|
[628] | 388 |
|
---|
[371] | 389 | } # new master contained existing master(s)
|
---|
| 390 | }; # end eval
|
---|
| 391 |
|
---|
| 392 | if ($@) {
|
---|
| 393 | my $msg = $@;
|
---|
| 394 | eval { $dbh->rollback; };
|
---|
| 395 | return ('FAIL',$msg);
|
---|
| 396 | } else {
|
---|
[582] | 397 |
|
---|
| 398 | # Only attempt rDNS if the IPDB side succeeded
|
---|
| 399 | if ($rpc_url) {
|
---|
| 400 |
|
---|
| 401 | # Note *not* splitting reverse zones negates any benefit from caching the exported data.
|
---|
| 402 | # IPv6 address space is far too large to split usefully, and in any case (also due to
|
---|
| 403 | # the large address space) doesn't support the iterated template records v4 zones do
|
---|
| 404 | # that causes the bulk of the slowdown that needs the cache anyway.
|
---|
| 405 |
|
---|
| 406 | my @zonelist;
|
---|
| 407 | # allow splitting reverse zones to be disabled, maybe, someday
|
---|
| 408 | #if ($splitrevzones && !$cidr->{isv6}) {
|
---|
| 409 | if (1 && !$cidr->{isv6}) {
|
---|
| 410 | my $splitpoint = ($cidr->masklen <= 16 ? 16 : 24); # hack pthui
|
---|
| 411 | @zonelist = $cidr->split($splitpoint);
|
---|
| 412 | } else {
|
---|
| 413 | @zonelist = ($cidr);
|
---|
| 414 | }
|
---|
| 415 | my @fails;
|
---|
| 416 | ##fixme: remove hardcoding where possible
|
---|
| 417 | foreach my $subzone (@zonelist) {
|
---|
| 418 | my %rpcargs = (
|
---|
| 419 | rpcuser => $args{user},
|
---|
| 420 | revzone => "$subzone",
|
---|
| 421 | revpatt => $args{rdns},
|
---|
| 422 | defloc => $args{defloc},
|
---|
[585] | 423 | group => $revgroup, # not sure how these two could sanely be exposed, tbh...
|
---|
[582] | 424 | state => 1, # could make them globally configurable maybe
|
---|
| 425 | );
|
---|
[587] | 426 | if ($rpc_url && !_rpc('addRDNS', %rpcargs)) {
|
---|
[585] | 427 | push @fails, ("$subzone" => $errstr);
|
---|
[582] | 428 | }
|
---|
| 429 | }
|
---|
| 430 | if (@fails) {
|
---|
[628] | 431 | $errstr = "Warning(s) adding $cidr to reverse DNS:\n".join("\n", @fails);
|
---|
| 432 | return ('WARN',$mid);
|
---|
[582] | 433 | }
|
---|
| 434 | }
|
---|
[628] | 435 | return ('OK',$mid);
|
---|
[371] | 436 | }
|
---|
| 437 | } # end addMaster
|
---|
| 438 |
|
---|
| 439 |
|
---|
[547] | 440 | ## IPDB::touchMaster()
|
---|
| 441 | # Update last-changed timestamp on a master block.
|
---|
| 442 | sub touchMaster {
|
---|
| 443 | my $dbh = shift;
|
---|
| 444 | my $master = shift;
|
---|
| 445 |
|
---|
| 446 | local $dbh->{AutoCommit} = 0;
|
---|
| 447 | local $dbh->{RaiseError} = 1;
|
---|
| 448 |
|
---|
| 449 | eval {
|
---|
[652] | 450 | $dbh->do("UPDATE allocations SET modifystamp=now() WHERE id = ?", undef, ($master));
|
---|
[547] | 451 | $dbh->commit;
|
---|
| 452 | };
|
---|
| 453 |
|
---|
| 454 | if ($@) {
|
---|
| 455 | my $msg = $@;
|
---|
| 456 | eval { $dbh->rollback; };
|
---|
| 457 | return ('FAIL',$msg);
|
---|
| 458 | }
|
---|
| 459 | return ('OK','OK');
|
---|
| 460 | } # end touchMaster()
|
---|
| 461 |
|
---|
| 462 |
|
---|
[523] | 463 | ## IPDB::listSummary()
|
---|
| 464 | # Get summary list of all master blocks
|
---|
| 465 | # Returns an arrayref to a list of hashrefs containing the master block, routed count,
|
---|
| 466 | # allocated count, free count, and largest free block masklength
|
---|
| 467 | sub listSummary {
|
---|
| 468 | my $dbh = shift;
|
---|
| 469 |
|
---|
[625] | 470 | my $mlist = $dbh->selectall_arrayref("SELECT cidr AS master,id,vrf FROM allocations ".
|
---|
| 471 | "WHERE type='mm' ORDER BY cidr",
|
---|
| 472 | { Slice => {} });
|
---|
[523] | 473 |
|
---|
| 474 | foreach (@{$mlist}) {
|
---|
[625] | 475 | my ($rcnt) = $dbh->selectrow_array("SELECT count(*) FROM allocations WHERE cidr <<= ? AND type='rm' AND master_id = ?",
|
---|
| 476 | undef, ($$_{master}, $$_{id}));
|
---|
[523] | 477 | $$_{routed} = $rcnt;
|
---|
[625] | 478 | my ($acnt) = $dbh->selectrow_array("SELECT count(*) FROM allocations WHERE cidr <<= ? ".
|
---|
| 479 | "AND NOT type='rm' AND NOT type='mm' AND master_id = ?",
|
---|
| 480 | undef, ($$_{master}, $$_{id}));
|
---|
[523] | 481 | $$_{allocated} = $acnt;
|
---|
[625] | 482 | my ($fcnt) = $dbh->selectrow_array("SELECT count(*) FROM freeblocks WHERE cidr <<= ? AND master_id = ?",
|
---|
| 483 | undef, ($$_{master}, $$_{id}));
|
---|
[523] | 484 | $$_{free} = $fcnt;
|
---|
[560] | 485 | my ($bigfree) = $dbh->selectrow_array("SELECT masklen(cidr) AS maskbits FROM freeblocks WHERE cidr <<= ?".
|
---|
[625] | 486 | " AND master_id = ? ORDER BY masklen(cidr) LIMIT 1", undef, ($$_{master}, $$_{id}));
|
---|
[523] | 487 | ##fixme: should find a way to do this without having to HTMLize the <>
|
---|
| 488 | $bigfree = "/$bigfree" if $bigfree;
|
---|
[525] | 489 | $bigfree = '<NONE>' if !$bigfree;
|
---|
[523] | 490 | $$_{bigfree} = $bigfree;
|
---|
| 491 | }
|
---|
| 492 | return $mlist;
|
---|
| 493 | } # end listSummary()
|
---|
| 494 |
|
---|
| 495 |
|
---|
[561] | 496 | ## IPDB::listSubs()
|
---|
| 497 | # Get list of subnets within a specified CIDR block, on a specified VRF.
|
---|
| 498 | # Returns an arrayref to a list of hashrefs containing the CIDR block, customer location or
|
---|
| 499 | # city it's routed to, block type, SWIP status, and description
|
---|
| 500 | sub listSubs {
|
---|
| 501 | my $dbh = shift;
|
---|
| 502 | my %args = @_;
|
---|
| 503 |
|
---|
| 504 | # Just In Case
|
---|
| 505 | $args{vrf} = '' if !$args{vrf};
|
---|
| 506 |
|
---|
| 507 | # Snag the allocations for this block
|
---|
[627] | 508 | my $sth = $dbh->prepare("SELECT cidr,city,type,custid,swip,description,id,master_id".
|
---|
| 509 | " FROM allocations WHERE parent_id = ? ORDER BY cidr");
|
---|
| 510 | $sth->execute($args{parent});
|
---|
[561] | 511 |
|
---|
| 512 | # hack hack hack
|
---|
| 513 | # set up to flag swip=y records if they don't actually have supporting data in the customers table
|
---|
| 514 | my $custsth = $dbh->prepare("SELECT count(*) FROM customers WHERE custid = ?");
|
---|
| 515 |
|
---|
[653] | 516 | # snag some more details
|
---|
[664] | 517 | my $substh = $dbh->prepare("SELECT count(*) FROM allocations WHERE cidr <<= ? ".
|
---|
[663] | 518 | "AND type ~ '[mc]\$' AND master_id = ? AND NOT cidr = ? ");
|
---|
[653] | 519 | my $alsth = $dbh->prepare("SELECT count(*) FROM allocations WHERE cidr <<= ? ".
|
---|
| 520 | "AND NOT type='rm' AND NOT type='mm' AND master_id = ?");
|
---|
| 521 | my $freesth = $dbh->prepare("SELECT count(*) FROM freeblocks WHERE cidr <<= ? AND master_id = ?");
|
---|
| 522 | my $lfreesth = $dbh->prepare("SELECT masklen(cidr) AS maskbits FROM freeblocks WHERE cidr <<= ?".
|
---|
| 523 | " AND master_id = ? ORDER BY masklen(cidr) LIMIT 1");
|
---|
| 524 |
|
---|
[561] | 525 | my @blocklist;
|
---|
[653] | 526 | while (my ($cidr,$city,$type,$custid,$swip,$desc,$id,$mid) = $sth->fetchrow_array()) {
|
---|
[561] | 527 | $custsth->execute($custid);
|
---|
| 528 | my ($ncust) = $custsth->fetchrow_array();
|
---|
[653] | 529 | $substh->execute($cidr, $mid, $cidr);
|
---|
| 530 | my ($cont) = $substh->fetchrow_array();
|
---|
| 531 | $alsth->execute($cidr, $mid);
|
---|
| 532 | my ($alloc) = $alsth->fetchrow_array();
|
---|
| 533 | $freesth->execute($cidr, $mid);
|
---|
| 534 | my ($free) = $freesth->fetchrow_array();
|
---|
| 535 | $lfreesth->execute($cidr, $mid);
|
---|
| 536 | my ($lfree) = $lfreesth->fetchrow_array();
|
---|
| 537 | $lfree = "/$lfree" if $lfree;
|
---|
| 538 | $lfree = '<NONE>' if !$lfree;
|
---|
[561] | 539 | my %row = (
|
---|
| 540 | block => $cidr,
|
---|
[653] | 541 | subcontainers => $cont,
|
---|
| 542 | suballocs => $alloc,
|
---|
| 543 | subfree => $free,
|
---|
| 544 | lfree => $lfree,
|
---|
[561] | 545 | city => $city,
|
---|
| 546 | type => $disp_alloctypes{$type},
|
---|
| 547 | custid => $custid,
|
---|
| 548 | swip => ($swip eq 'y' ? 'Yes' : 'No'),
|
---|
| 549 | partswip => ($swip eq 'y' && $ncust == 0 ? 1 : 0),
|
---|
| 550 | desc => $desc,
|
---|
| 551 | hassubs => ($type eq 'rm' || $type =~ /.c/ ? 1 : 0),
|
---|
[627] | 552 | id => $id,
|
---|
[561] | 553 | );
|
---|
| 554 | # $row{subblock} = ($type =~ /^.r$/); # hmf. wonder why these won't work in the hash declaration...
|
---|
| 555 | $row{listpool} = ($type =~ /^.[pd]$/);
|
---|
| 556 | push (@blocklist, \%row);
|
---|
| 557 | }
|
---|
| 558 | return \@blocklist;
|
---|
| 559 | } # end listSubs()
|
---|
| 560 |
|
---|
| 561 |
|
---|
[663] | 562 | ## IPDB::listContainers()
|
---|
| 563 | # List all container-type allocations in a given parent
|
---|
| 564 | # Takes a database handle and a hash:
|
---|
| 565 | # - parent is the ID of the parent block
|
---|
| 566 | # Returns an arrayref to a list of hashrefs with the CIDR block, location, type,
|
---|
| 567 | # description, block ID, and counts for the nmber uf suballocations (all types),
|
---|
| 568 | # free blocks, and the CIDR size of the largest free block
|
---|
| 569 | sub listContainers {
|
---|
| 570 | my $dbh = shift;
|
---|
| 571 | my %args = @_;
|
---|
| 572 |
|
---|
| 573 | # Just In Case
|
---|
| 574 | $args{vrf} = '' if !$args{vrf};
|
---|
| 575 |
|
---|
| 576 | # Snag the allocations for this block
|
---|
| 577 | my $sth = $dbh->prepare("SELECT cidr,city,type,custid,swip,description,id,master_id".
|
---|
| 578 | " FROM allocations WHERE parent_id = ? AND type ~ '[mc]\$' ORDER BY cidr");
|
---|
| 579 | $sth->execute($args{parent});
|
---|
| 580 |
|
---|
| 581 | my $alsth = $dbh->prepare("SELECT count(*) FROM allocations WHERE cidr <<= ? ".
|
---|
| 582 | "AND NOT type='rm' AND NOT type='mm' AND master_id = ?");
|
---|
| 583 | my $freesth = $dbh->prepare("SELECT count(*) FROM freeblocks WHERE cidr <<= ? AND master_id = ?");
|
---|
| 584 | my $lfreesth = $dbh->prepare("SELECT masklen(cidr) AS maskbits FROM freeblocks WHERE cidr <<= ?".
|
---|
| 585 | " AND master_id = ? ORDER BY masklen(cidr) LIMIT 1");
|
---|
| 586 |
|
---|
| 587 | my @blocklist;
|
---|
| 588 | while (my ($cidr,$city,$type,$custid,$swip,$desc,$id,$mid) = $sth->fetchrow_array()) {
|
---|
| 589 | $alsth->execute($cidr, $mid);
|
---|
| 590 | my ($alloc) = $alsth->fetchrow_array();
|
---|
| 591 | $freesth->execute($cidr, $mid);
|
---|
| 592 | my ($free) = $freesth->fetchrow_array();
|
---|
| 593 | $lfreesth->execute($cidr, $mid);
|
---|
| 594 | my ($lfree) = $lfreesth->fetchrow_array();
|
---|
| 595 | $lfree = "/$lfree" if $lfree;
|
---|
| 596 | $lfree = '<NONE>' if !$lfree;
|
---|
| 597 | my %row = (
|
---|
| 598 | block => $cidr,
|
---|
| 599 | suballocs => $alloc,
|
---|
| 600 | subfree => $free,
|
---|
| 601 | lfree => $lfree,
|
---|
| 602 | city => $city,
|
---|
| 603 | type => $disp_alloctypes{$type},
|
---|
| 604 | desc => $desc,
|
---|
| 605 | id => $id,
|
---|
| 606 | );
|
---|
| 607 | push (@blocklist, \%row);
|
---|
| 608 | }
|
---|
| 609 | return \@blocklist;
|
---|
| 610 | } # end listContainers()
|
---|
| 611 |
|
---|
| 612 |
|
---|
| 613 | ## IPDB::listAllocations()
|
---|
| 614 | # List all end-use allocations in a given parent
|
---|
| 615 | # Takes a database handle and a hash:
|
---|
| 616 | # - parent is the ID of the parent block
|
---|
| 617 | # Returns an arrayref to a list of hashrefs with the CIDR block, location, type,
|
---|
| 618 | # custID, SWIP flag, description, block ID, and master ID
|
---|
| 619 | sub listAllocations {
|
---|
| 620 | my $dbh = shift;
|
---|
| 621 | my %args = @_;
|
---|
| 622 |
|
---|
| 623 | # Snag the allocations for this block
|
---|
| 624 | my $sth = $dbh->prepare("SELECT cidr,city,type,custid,swip,description,id,master_id".
|
---|
| 625 | " FROM allocations WHERE parent_id = ? AND type !~ '[mc]\$' ORDER BY cidr");
|
---|
| 626 | $sth->execute($args{parent});
|
---|
| 627 |
|
---|
| 628 | # hack hack hack
|
---|
| 629 | # set up to flag swip=y records if they don't actually have supporting data in the customers table
|
---|
| 630 | my $custsth = $dbh->prepare("SELECT count(*) FROM customers WHERE custid = ?");
|
---|
| 631 |
|
---|
| 632 | my @blocklist;
|
---|
| 633 | while (my ($cidr,$city,$type,$custid,$swip,$desc,$id,$mid) = $sth->fetchrow_array()) {
|
---|
| 634 | $custsth->execute($custid);
|
---|
| 635 | my ($ncust) = $custsth->fetchrow_array();
|
---|
| 636 | my %row = (
|
---|
| 637 | block => $cidr,
|
---|
| 638 | city => $city,
|
---|
| 639 | type => $disp_alloctypes{$type},
|
---|
| 640 | custid => $custid,
|
---|
| 641 | swip => ($swip eq 'y' ? 'Yes' : 'No'),
|
---|
| 642 | partswip => ($swip eq 'y' && $ncust == 0 ? 1 : 0),
|
---|
| 643 | desc => $desc,
|
---|
| 644 | id => $id,
|
---|
| 645 | );
|
---|
| 646 | # $row{subblock} = ($type =~ /^.r$/); # hmf. wonder why these won't work in the hash declaration...
|
---|
| 647 | $row{listpool} = ($type =~ /^.[pd]$/);
|
---|
| 648 | push (@blocklist, \%row);
|
---|
| 649 | }
|
---|
| 650 | return \@blocklist;
|
---|
| 651 | } # end listAllocations()
|
---|
| 652 |
|
---|
| 653 |
|
---|
[524] | 654 | ## IPDB::listFree()
|
---|
[562] | 655 | # Gets a list of free blocks in the requested parent/master and VRF instance in both CIDR and range notation
|
---|
[630] | 656 | # Takes a parent/master ID and an optional VRF specifier that defaults to empty.
|
---|
[524] | 657 | # Returns an arrayref to a list of hashrefs containing the CIDR and range-notation blocks
|
---|
[527] | 658 | # Returns some extra flags in the hashrefs for routed blocks, since those can have several subtypes
|
---|
[524] | 659 | sub listFree {
|
---|
| 660 | my $dbh = shift;
|
---|
| 661 |
|
---|
[562] | 662 | my %args = @_;
|
---|
| 663 | # Just In Case
|
---|
| 664 | $args{vrf} = '' if !$args{vrf};
|
---|
| 665 |
|
---|
[630] | 666 | my $sth = $dbh->prepare("SELECT cidr,id FROM freeblocks WHERE parent_id = ? ORDER BY cidr");
|
---|
| 667 | # $sth->execute($args{parent}, $args{vrf});
|
---|
| 668 | $sth->execute($args{parent});
|
---|
[524] | 669 | my @flist;
|
---|
[630] | 670 | while (my ($cidr,$id) = $sth->fetchrow_array()) {
|
---|
[524] | 671 | $cidr = new NetAddr::IP $cidr;
|
---|
[527] | 672 | my %row = (
|
---|
| 673 | fblock => "$cidr",
|
---|
| 674 | frange => $cidr->range,
|
---|
[630] | 675 | fbid => $id,
|
---|
| 676 | fbparent => $args{parent},
|
---|
[527] | 677 | );
|
---|
[524] | 678 | push @flist, \%row;
|
---|
| 679 | }
|
---|
| 680 | return \@flist;
|
---|
[527] | 681 | } # end listFree()
|
---|
[524] | 682 |
|
---|
| 683 |
|
---|
[528] | 684 | ## IPDB::listPool()
|
---|
| 685 | #
|
---|
| 686 | sub listPool {
|
---|
| 687 | my $dbh = shift;
|
---|
| 688 | my $pool = shift;
|
---|
| 689 |
|
---|
[630] | 690 | my $sth = $dbh->prepare("SELECT ip,custid,available,description,type,id".
|
---|
| 691 | " FROM poolips WHERE parent_id = ? ORDER BY ip");
|
---|
[528] | 692 | $sth->execute($pool);
|
---|
| 693 | my @poolips;
|
---|
[630] | 694 | while (my ($ip,$custid,$available,$desc,$type,$id) = $sth->fetchrow_array) {
|
---|
[528] | 695 | my %row = (
|
---|
| 696 | ip => $ip,
|
---|
| 697 | custid => $custid,
|
---|
| 698 | available => $available,
|
---|
| 699 | desc => $desc,
|
---|
[563] | 700 | delme => $available eq 'n',
|
---|
[630] | 701 | parent => $pool,
|
---|
| 702 | id => $id,
|
---|
[528] | 703 | );
|
---|
| 704 | push @poolips, \%row;
|
---|
| 705 | }
|
---|
| 706 | return \@poolips;
|
---|
| 707 | } # end listPool()
|
---|
| 708 |
|
---|
| 709 |
|
---|
[541] | 710 | ## IPDB::getMasterList()
|
---|
| 711 | # Get a list of master blocks, optionally including last-modified timestamps
|
---|
| 712 | # Takes an optional flag to indicate whether to include timestamps;
|
---|
| 713 | # 'm' includes ctime, all others (suggest 'c') do not.
|
---|
| 714 | # Returns an arrayref to a list of hashrefs
|
---|
| 715 | sub getMasterList {
|
---|
| 716 | my $dbh = shift;
|
---|
| 717 | my $stampme = shift || 'm'; # optional but should be set by caller for clarity
|
---|
| 718 |
|
---|
[632] | 719 | my $mlist = $dbh->selectall_arrayref("SELECT id,vrf,cidr AS master".($stampme eq 'm' ? ',modifystamp AS mtime' : '').
|
---|
| 720 | " FROM allocations WHERE type='mm' ORDER BY cidr", { Slice => {} });
|
---|
[541] | 721 | return $mlist;
|
---|
| 722 | } # end getMasterList()
|
---|
| 723 |
|
---|
| 724 |
|
---|
[529] | 725 | ## IPDB::getTypeList()
|
---|
| 726 | # Get an alloctype/description pair list suitable for dropdowns
|
---|
| 727 | # Takes a flag to determine which general groups of types are returned
|
---|
| 728 | # Returns an reference to an array of hashrefs
|
---|
| 729 | sub getTypeList {
|
---|
| 730 | my $dbh = shift;
|
---|
| 731 | my $tgroup = shift || 'a'; # technically optional, like this, but should
|
---|
| 732 | # really be specified in the call for clarity
|
---|
| 733 | my $tlist;
|
---|
[564] | 734 | if ($tgroup eq 'n') {
|
---|
| 735 | # grouping 'p' - all netblock types. These include routed blocks, containers (_c)
|
---|
| 736 | # and contained (_r) types, dynamic-allocation ranges (_e), static IP pools (_d and _p),
|
---|
| 737 | # and the "miscellaneous" cn, in, and en types.
|
---|
| 738 | $tlist = $dbh->selectall_arrayref("SELECT type,listname FROM alloctypes WHERE listorder <= 500 ".
|
---|
| 739 | "AND type NOT LIKE '_i' ORDER BY listorder", { Slice => {} });
|
---|
| 740 | } elsif ($tgroup eq 'p') {
|
---|
| 741 | # grouping 'p' - primary allocation types. As with 'n' above but without the _r contained types.
|
---|
| 742 | $tlist = $dbh->selectall_arrayref("SELECT type,listname FROM alloctypes WHERE listorder <= 500 ".
|
---|
[529] | 743 | "AND type NOT LIKE '_i' AND type NOT LIKE '_r' ORDER BY listorder", { Slice => {} });
|
---|
| 744 | } elsif ($tgroup eq 'c') {
|
---|
| 745 | # grouping 'c' - contained types. These include all static IPs and all _r types.
|
---|
| 746 | $tlist = $dbh->selectall_arrayref("SELECT type,listname FROM alloctypes WHERE listorder <= 500 ".
|
---|
| 747 | " AND (type LIKE '_i' OR type LIKE '_r') ORDER BY listorder", { Slice => {} });
|
---|
[632] | 748 | } elsif ($tgroup eq 'i') {
|
---|
| 749 | # grouping 'i' - static IP types.
|
---|
| 750 | $tlist = $dbh->selectall_arrayref("SELECT type,listname FROM alloctypes WHERE listorder <= 500 ".
|
---|
| 751 | " AND type LIKE '_i' ORDER BY listorder", { Slice => {} });
|
---|
[529] | 752 | } else {
|
---|
| 753 | # grouping 'a' - all standard allocation types. This includes everything
|
---|
| 754 | # but mm (present only as a formality). Make this the default.
|
---|
| 755 | $tlist = $dbh->selectall_arrayref("SELECT type,listname FROM alloctypes WHERE listorder <= 500 ".
|
---|
| 756 | " ORDER BY listorder", { Slice => {} });
|
---|
| 757 | }
|
---|
| 758 | return $tlist;
|
---|
| 759 | }
|
---|
| 760 |
|
---|
| 761 |
|
---|
[532] | 762 | ## IPDB::getPoolSelect()
|
---|
| 763 | # Get a list of pools matching the passed city and type that have 1 or more free IPs
|
---|
[533] | 764 | # Returns an arrayref to a list of hashrefs
|
---|
[532] | 765 | sub getPoolSelect {
|
---|
| 766 | my $dbh = shift;
|
---|
| 767 | my $iptype = shift;
|
---|
| 768 | my $pcity = shift;
|
---|
| 769 |
|
---|
| 770 | my ($ptype) = ($iptype =~ /^(.)i$/);
|
---|
| 771 | return if !$ptype;
|
---|
| 772 | $ptype .= '_';
|
---|
| 773 |
|
---|
[663] | 774 | my $plist = $dbh->selectall_arrayref( q(
|
---|
| 775 | SELECT count(*) AS poolfree,p.pool AS poolblock, a.city AS poolcit
|
---|
| 776 | FROM poolips p
|
---|
| 777 | JOIN allocations a ON p.parent_id=a.id
|
---|
| 778 | WHERE p.available='y' AND a.city = ? AND p.type LIKE ?
|
---|
| 779 | GROUP BY p.pool,a.city
|
---|
| 780 | ),
|
---|
[572] | 781 | { Slice => {} }, ($pcity, $ptype) );
|
---|
[532] | 782 | return $plist;
|
---|
| 783 | } # end getPoolSelect()
|
---|
| 784 |
|
---|
| 785 |
|
---|
[533] | 786 | ## IPDB::findAllocateFrom()
|
---|
| 787 | # Find free block to add a new allocation from. (CIDR block version of pool select above, more or less)
|
---|
| 788 | # Takes
|
---|
| 789 | # - mask length
|
---|
| 790 | # - allocation type
|
---|
| 791 | # - POP city "parent"
|
---|
| 792 | # - optional master-block restriction
|
---|
| 793 | # - optional flag to allow automatic pick-from-private-network-ranges
|
---|
| 794 | # Returns a string with the first CIDR block matching the criteria, if any
|
---|
| 795 | sub findAllocateFrom {
|
---|
| 796 | my $dbh = shift;
|
---|
| 797 | my $maskbits = shift;
|
---|
| 798 | my $type = shift;
|
---|
| 799 | my $city = shift;
|
---|
| 800 | my $pop = shift;
|
---|
| 801 | my %optargs = @_;
|
---|
| 802 |
|
---|
| 803 | my $failmsg = "No suitable free block found\n";
|
---|
| 804 |
|
---|
[633] | 805 | my @vallist;
|
---|
| 806 | my $sql;
|
---|
| 807 |
|
---|
| 808 | # Free pool IPs should be easy.
|
---|
| 809 | if ($type =~ /^.i$/) {
|
---|
| 810 | # User may get an IP from the wrong VRF. User should not be using admin tools to allocate static IPs.
|
---|
| 811 | $sql = "SELECT id, ip, parent_id FROM poolips WHERE ip = ?";
|
---|
| 812 | @vallist = ($optargs{gimme});
|
---|
| 813 | } else {
|
---|
| 814 |
|
---|
[533] | 815 | ## Set up the SQL to find out what freeblock we can (probably) use for an allocation.
|
---|
| 816 | ## Very large systems will require development of a reserve system (possibly an extension
|
---|
| 817 | ## of the reserve-for-expansion concept in https://secure.deepnet.cx/trac/ipdb/ticket/24?)
|
---|
| 818 | ## Also populate a value list for the DBI call.
|
---|
| 819 |
|
---|
[633] | 820 | @vallist = ($maskbits);
|
---|
| 821 | $sql = "SELECT id,cidr,parent_id FROM freeblocks WHERE masklen(cidr) <= ?";
|
---|
[533] | 822 |
|
---|
[572] | 823 | # cases, strict rules
|
---|
| 824 | # .c -> container type
|
---|
| 825 | # requires a routing container, fbtype r
|
---|
| 826 | # .d -> DHCP/"normal-routing" static pool
|
---|
| 827 | # requires a routing container, fbtype r
|
---|
| 828 | # .e -> Dynamic-assignment connectivity
|
---|
| 829 | # requires a routing container, fbtype r
|
---|
| 830 | # .i -> error, can't allocate static IPs this way?
|
---|
| 831 | # mm -> error, master block
|
---|
| 832 | # rm -> routed block
|
---|
| 833 | # requires master block, fbtype m
|
---|
| 834 | # .n -> Miscellaneous usage
|
---|
| 835 | # requires a routing container, fbtype r
|
---|
| 836 | # .p -> PPP(oE) static pool
|
---|
| 837 | # requires a routing container, fbtype r
|
---|
| 838 | # .r -> contained type
|
---|
| 839 | # requires a matching container, fbtype $1
|
---|
| 840 | ##fixme: strict-or-not flag
|
---|
| 841 |
|
---|
[633] | 842 | ##fixme: config or UI flag for "Strict" mode
|
---|
| 843 | # if ($strictmode) {
|
---|
| 844 | if (0) {
|
---|
[572] | 845 | if ($type =~ /^(.)r$/) {
|
---|
| 846 | push @vallist, $1;
|
---|
| 847 | $sql .= " AND routed = ?";
|
---|
| 848 | } elsif ($type eq 'rm') {
|
---|
| 849 | $sql .= " AND routed = 'm'";
|
---|
| 850 | } else {
|
---|
| 851 | $sql .= " AND routed = 'r'";
|
---|
| 852 | }
|
---|
[633] | 853 | }
|
---|
[572] | 854 |
|
---|
[633] | 855 | # for PPP(oE) and container types, the POP city is the one attached to the pool.
|
---|
| 856 | # individual allocations get listed with the customer city site.
|
---|
| 857 | ##fixme: chain cities to align roughly with a full layer-2 node graph
|
---|
| 858 | $city = $pop if $type !~ /^.[pc]$/;
|
---|
| 859 | if ($type ne 'rm' && $city) {
|
---|
| 860 | $sql .= " AND city = ?";
|
---|
| 861 | push @vallist, $city;
|
---|
[533] | 862 | }
|
---|
[633] | 863 | # Allow specifying an arbitrary full block, instead of a master
|
---|
| 864 | if ($optargs{gimme}) {
|
---|
| 865 | $sql .= " AND cidr >>= ?";
|
---|
| 866 | push @vallist, $optargs{gimme};
|
---|
| 867 | }
|
---|
| 868 | # if a specific master was requested, allow the requestor to self->shoot(foot)
|
---|
| 869 | if ($optargs{master} && $optargs{master} ne '-') {
|
---|
| 870 | $sql .= " AND master_id = ?";
|
---|
| 871 | # if $optargs{master} ne '-';
|
---|
| 872 | push @vallist, $optargs{master};
|
---|
| 873 | } else {
|
---|
| 874 | # if a specific master was NOT requested, filter out the RFC 1918 private networks
|
---|
| 875 | if (!$optargs{allowpriv}) {
|
---|
| 876 | $sql .= " AND NOT (cidr <<= '192.168.0.0/16' OR cidr <<= '10.0.0.0/8' OR cidr <<= '172.16.0.0/12')";
|
---|
| 877 | }
|
---|
| 878 | }
|
---|
| 879 | # Sorting and limiting, since we don't (currently) care to provide a selection of
|
---|
| 880 | # blocks to carve up. This preserves something resembling optimal usage of the IP
|
---|
| 881 | # space by forcing contiguous allocations and free blocks as much as possible.
|
---|
| 882 | $sql .= " ORDER BY masklen(cidr) DESC,cidr LIMIT 1";
|
---|
| 883 | } # done setting up SQL for free CIDR block
|
---|
[533] | 884 |
|
---|
[633] | 885 | my ($fbid,$fbfound,$fbparent) = $dbh->selectrow_array($sql, undef, @vallist);
|
---|
| 886 | return $fbid,$fbfound,$fbparent;
|
---|
[533] | 887 | } # end findAllocateFrom()
|
---|
| 888 |
|
---|
| 889 |
|
---|
[536] | 890 | ## IPDB::ipParent()
|
---|
| 891 | # Get an IP's parent pool's details
|
---|
| 892 | # Takes a database handle and IP
|
---|
| 893 | # Returns a hashref to the parent pool block, if any
|
---|
| 894 | sub ipParent {
|
---|
| 895 | my $dbh = shift;
|
---|
| 896 | my $block = shift;
|
---|
| 897 |
|
---|
| 898 | my $pinfo = $dbh->selectrow_hashref("SELECT cidr,custid,type,city,description FROM allocations".
|
---|
[565] | 899 | " WHERE cidr >>= ? AND (type LIKE '_p' OR type LIKE '_d')", undef, ($block) );
|
---|
[536] | 900 | return $pinfo;
|
---|
| 901 | } # end ipParent()
|
---|
| 902 |
|
---|
| 903 |
|
---|
| 904 | ## IPDB::subParent()
|
---|
[529] | 905 | # Get a block's parent's details
|
---|
| 906 | # Takes a database handle and CIDR block
|
---|
[536] | 907 | # Returns a hashref to the parent container block, if any
|
---|
| 908 | sub subParent {
|
---|
[529] | 909 | my $dbh = shift;
|
---|
| 910 | my $block = shift;
|
---|
| 911 |
|
---|
| 912 | my $pinfo = $dbh->selectrow_hashref("SELECT cidr,custid,type,city,description FROM allocations".
|
---|
| 913 | " WHERE cidr >>= ?", undef, ($block) );
|
---|
| 914 | return $pinfo;
|
---|
[536] | 915 | } # end subParent()
|
---|
[529] | 916 |
|
---|
| 917 |
|
---|
[536] | 918 | ## IPDB::blockParent()
|
---|
| 919 | # Get a block's parent's details
|
---|
| 920 | # Takes a database handle and CIDR block
|
---|
| 921 | # Returns a hashref to the parent container block, if any
|
---|
| 922 | sub blockParent {
|
---|
| 923 | my $dbh = shift;
|
---|
| 924 | my $block = shift;
|
---|
| 925 |
|
---|
| 926 | my $pinfo = $dbh->selectrow_hashref("SELECT cidr,city FROM routed".
|
---|
| 927 | " WHERE cidr >>= ?", undef, ($block) );
|
---|
| 928 | return $pinfo;
|
---|
| 929 | } # end blockParent()
|
---|
| 930 |
|
---|
| 931 |
|
---|
[527] | 932 | ## IPDB::getRoutedCity()
|
---|
| 933 | # Get the city for a routed block.
|
---|
| 934 | sub getRoutedCity {
|
---|
| 935 | my $dbh = shift;
|
---|
| 936 | my $block = shift;
|
---|
| 937 |
|
---|
| 938 | my ($rcity) = $dbh->selectrow_array("SELECT city FROM routed WHERE cidr = ?", undef, ($block) );
|
---|
| 939 | return $rcity;
|
---|
| 940 | } # end getRoutedCity()
|
---|
| 941 |
|
---|
| 942 |
|
---|
[77] | 943 | ## IPDB::allocateBlock()
|
---|
[66] | 944 | # Does all of the magic of actually allocating a netblock
|
---|
[554] | 945 | # Requires a database handle, and a hash containing the block to allocate, routing depth, custid,
|
---|
| 946 | # type, city, block to allocate from, and optionally a description, notes, circuit ID,
|
---|
| 947 | # and private data
|
---|
[77] | 948 | # Returns a success code and optional error message.
|
---|
| 949 | sub allocateBlock {
|
---|
[554] | 950 | my $dbh = shift;
|
---|
[284] | 951 |
|
---|
[554] | 952 | my %args = @_;
|
---|
| 953 |
|
---|
| 954 | $args{cidr} = new NetAddr::IP $args{cidr};
|
---|
| 955 |
|
---|
| 956 | $args{desc} = '' if !$args{desc};
|
---|
| 957 | $args{notes} = '' if !$args{notes};
|
---|
| 958 | $args{circid} = '' if !$args{circid};
|
---|
| 959 | $args{privdata} = '' if !$args{privdata};
|
---|
| 960 | $args{vrf} = '' if !$args{vrf};
|
---|
[585] | 961 | $args{rdns} = '' if !$args{rdns};
|
---|
[554] | 962 |
|
---|
[77] | 963 | my $sth;
|
---|
[66] | 964 |
|
---|
[633] | 965 | # Snag the "type" of the freeblock and its CIDR
|
---|
| 966 | my ($alloc_from_type, $alloc_from, $fbparent, $fcity, $fbmaster) =
|
---|
| 967 | $dbh->selectrow_array("SELECT routed,cidr,parent_id,city,master_id FROM freeblocks WHERE id = ?",
|
---|
| 968 | undef, $args{fbid});
|
---|
| 969 | $alloc_from = new NetAddr::IP $alloc_from;
|
---|
[349] | 970 |
|
---|
[79] | 971 | # To contain the error message, if any.
|
---|
[554] | 972 | my $msg = "Unknown error allocating $args{cidr} as '$disp_alloctypes{$args{type}}'";
|
---|
[79] | 973 |
|
---|
[77] | 974 | # Enable transactions and error handling
|
---|
| 975 | local $dbh->{AutoCommit} = 0; # These need to be local so we don't
|
---|
| 976 | local $dbh->{RaiseError} = 1; # step on our toes by accident.
|
---|
[66] | 977 |
|
---|
[554] | 978 | if ($args{type} =~ /^.i$/) {
|
---|
| 979 | $msg = "Unable to assign static IP $args{cidr} to $args{custid}";
|
---|
[77] | 980 | eval {
|
---|
[554] | 981 | if ($args{cidr}) { # IP specified
|
---|
| 982 | my ($isavail) = $dbh->selectrow_array("SELECT available FROM poolips WHERE ip=?", undef, ($args{cidr}) );
|
---|
| 983 | die "IP is not in an IP pool.\n"
|
---|
| 984 | if !$isavail;
|
---|
| 985 | die "IP already allocated. Deallocate and reallocate, or update the entry\n"
|
---|
| 986 | if $isavail eq 'n';
|
---|
| 987 | } else { # IP not specified, take first available
|
---|
| 988 | ($args{cidr}) = $dbh->selectrow_array("SELECT ip FROM poolips WHERE pool=? AND available='y' ORDER BY ip",
|
---|
| 989 | undef, ($args{alloc_from}) );
|
---|
[545] | 990 | }
|
---|
[633] | 991 | $dbh->do("UPDATE poolips SET custid = ?, city = ?,available='n', description = ?, notes = ?, ".
|
---|
| 992 | "circuitid = ?, privdata = ?, vrf = ?, rdns = ? ".
|
---|
| 993 | "WHERE ip = ? AND parent_id = ?", undef,
|
---|
| 994 | ($args{custid}, $args{city}, $args{desc}, $args{notes},
|
---|
| 995 | $args{circid}, $args{privdata}, $args{vrf}, $args{rdns},
|
---|
| 996 | $args{cidr}, $args{parent}) );
|
---|
[157] | 997 |
|
---|
[397] | 998 | # node hack
|
---|
[554] | 999 | if ($args{nodeid} && $args{nodeid} ne '') {
|
---|
| 1000 | $dbh->do("INSERT INTO noderef (block,node_id) VALUES (?,?)", undef, ($args{cidr}, $args{nodeid}) );
|
---|
[397] | 1001 | }
|
---|
| 1002 | # end node hack
|
---|
[545] | 1003 |
|
---|
[79] | 1004 | $dbh->commit;
|
---|
[77] | 1005 | };
|
---|
| 1006 | if ($@) {
|
---|
[545] | 1007 | $msg .= ": $@";
|
---|
[78] | 1008 | eval { $dbh->rollback; };
|
---|
[578] | 1009 | return ('FAIL', $msg);
|
---|
[77] | 1010 | } else {
|
---|
[585] | 1011 | _rpc('addOrUpdateRevRec', cidr => "$args{cidr}", name => $args{rdns}, rpcuser => $args{user});
|
---|
[578] | 1012 | return ('OK', $args{cidr});
|
---|
[77] | 1013 | }
|
---|
| 1014 |
|
---|
| 1015 | } else { # end IP-from-pool allocation
|
---|
| 1016 |
|
---|
[633] | 1017 | if ($args{cidr} == $alloc_from) {
|
---|
[77] | 1018 | # Easiest case- insert in one table, delete in the other, and go home. More or less.
|
---|
| 1019 | # insert into allocations values (cidr,custid,type,city,desc) and
|
---|
| 1020 | # delete from freeblocks where cidr='cidr'
|
---|
| 1021 | # For data safety on non-transaction DBs, we delete first.
|
---|
| 1022 |
|
---|
| 1023 | eval {
|
---|
[554] | 1024 | $msg = "Unable to allocate $args{cidr} as '$disp_alloctypes{$args{type}}'";
|
---|
| 1025 |
|
---|
[633] | 1026 | # Insert the allocations entry
|
---|
| 1027 | $dbh->do("INSERT INTO allocations ".
|
---|
| 1028 | "(cidr,parent_id,master_id,vrf,custid,type,city,description,notes,circuitid,privdata,rdns)".
|
---|
| 1029 | " VALUES (?,?,?,?,?,?,?,?,?,?,?,?)", undef,
|
---|
| 1030 | ($args{cidr}, $fbparent, $fbmaster, $args{vrf}, $args{custid}, $args{type}, $args{city},
|
---|
| 1031 | $args{desc}, $args{notes}, $args{circid}, $args{privdata}, $args{rdns}) );
|
---|
| 1032 | my ($bid) = $dbh->selectrow_array("SELECT currval('allocations_id_seq')");
|
---|
[555] | 1033 |
|
---|
[554] | 1034 | # Munge freeblocks
|
---|
| 1035 | if ($args{type} =~ /^(.)[mc]$/) {
|
---|
| 1036 | # special case - block is a routed or container/"reserve" block
|
---|
| 1037 | my $rtype = $1;
|
---|
[633] | 1038 | $dbh->do("UPDATE freeblocks SET routed = ?,city = ?,parent_id = ? WHERE id = ?",
|
---|
| 1039 | undef, ($rtype, $args{city}, $bid, $args{fbid}) );
|
---|
[77] | 1040 | } else {
|
---|
[554] | 1041 | # "normal" case
|
---|
[633] | 1042 | $dbh->do("DELETE FROM freeblocks WHERE id = ?", undef, ($args{fbid}) );
|
---|
[554] | 1043 | }
|
---|
[77] | 1044 |
|
---|
[554] | 1045 | # And initialize the pool, if necessary
|
---|
| 1046 | # PPPoE pools (currently dialup, DSL, and WiFi) get all IPs made available
|
---|
| 1047 | # "DHCP" or "real-subnet" pools have the net, gw, and bcast IPs removed.
|
---|
| 1048 | if ($args{type} =~ /^.p$/) {
|
---|
| 1049 | $msg = "Could not initialize IPs in new $disp_alloctypes{$args{type}} $args{cidr}";
|
---|
[633] | 1050 | my ($code,$rmsg) = initPool($dbh, $args{cidr}, $args{type}, $args{city}, "all", $bid);
|
---|
[554] | 1051 | die $rmsg if $code eq 'FAIL';
|
---|
| 1052 | } elsif ($args{type} =~ /^.d$/) {
|
---|
| 1053 | $msg = "Could not initialize IPs in new $disp_alloctypes{$args{type}} $args{cidr}";
|
---|
[633] | 1054 | my ($code,$rmsg) = initPool($dbh, $args{cidr}, $args{type}, $args{city}, "normal", $bid);
|
---|
[554] | 1055 | die $rmsg if $code eq 'FAIL';
|
---|
| 1056 | }
|
---|
[79] | 1057 |
|
---|
[397] | 1058 | # node hack
|
---|
[554] | 1059 | if ($args{nodeid} && $args{nodeid} ne '') {
|
---|
| 1060 | $dbh->do("INSERT INTO noderef (block,node_id) VALUES (?,?)", undef, ($args{cidr}, $args{nodeid}) );
|
---|
[397] | 1061 | }
|
---|
| 1062 | # end node hack
|
---|
[574] | 1063 |
|
---|
[77] | 1064 | $dbh->commit;
|
---|
[78] | 1065 | }; # end of eval
|
---|
[77] | 1066 | if ($@) {
|
---|
[157] | 1067 | $msg .= ": ".$@;
|
---|
[77] | 1068 | eval { $dbh->rollback; };
|
---|
[157] | 1069 | return ('FAIL',$msg);
|
---|
[78] | 1070 | }
|
---|
[77] | 1071 |
|
---|
| 1072 | } else { # cidr != alloc_from
|
---|
| 1073 |
|
---|
| 1074 | # Hard case. Allocation is smaller than free block.
|
---|
[633] | 1075 |
|
---|
| 1076 | # make sure new allocation is in fact within freeblock. *sigh*
|
---|
| 1077 | return ('FAIL',"Requested allocation $args{cidr} is not within $alloc_from")
|
---|
| 1078 | if !$alloc_from->contains($args{cidr});
|
---|
[554] | 1079 | my $wantmaskbits = $args{cidr}->masklen;
|
---|
[633] | 1080 | my $maskbits = $alloc_from->masklen;
|
---|
[77] | 1081 |
|
---|
| 1082 | my @newfreeblocks; # Holds free blocks generated from splitting the source freeblock.
|
---|
| 1083 |
|
---|
| 1084 | # This determines which blocks will be left "free" after allocation. We take the
|
---|
| 1085 | # block we're allocating from, and split it in half. We see which half the wanted
|
---|
| 1086 | # block is in, and repeat until the wanted block is equal to one of the halves.
|
---|
| 1087 | my $i=0;
|
---|
[633] | 1088 | my $tmp_from = $alloc_from; # So we don't munge $args{alloc_from}
|
---|
[77] | 1089 | while ($maskbits++ < $wantmaskbits) {
|
---|
| 1090 | my @subblocks = $tmp_from->split($maskbits);
|
---|
[554] | 1091 | $newfreeblocks[$i++] = (($args{cidr}->within($subblocks[0])) ? $subblocks[1] : $subblocks[0]);
|
---|
| 1092 | $tmp_from = ( ($args{cidr}->within($subblocks[0])) ? $subblocks[0] : $subblocks[1] );
|
---|
[77] | 1093 | } # while
|
---|
| 1094 |
|
---|
| 1095 | # Begin SQL transaction block
|
---|
| 1096 | eval {
|
---|
[554] | 1097 | $msg = "Unable to allocate $args{cidr} as '$disp_alloctypes{$args{type}}'";
|
---|
[79] | 1098 |
|
---|
[77] | 1099 | # Delete old freeblocks entry
|
---|
[633] | 1100 | $dbh->do("DELETE FROM freeblocks WHERE id = ?", undef, ($args{fbid}) );
|
---|
[77] | 1101 |
|
---|
[554] | 1102 | # Insert new list of smaller free blocks left over
|
---|
[633] | 1103 | $sth = $dbh->prepare("INSERT INTO freeblocks (cidr,city,routed,vrf,parent_id,master_id) VALUES (?,?,?,?,?,?)");
|
---|
[554] | 1104 | foreach my $block (@newfreeblocks) {
|
---|
[633] | 1105 | $sth->execute($block, $fcity, $alloc_from_type, $args{vrf}, $fbparent, $fbmaster);
|
---|
[554] | 1106 | }
|
---|
[79] | 1107 |
|
---|
[633] | 1108 | # Insert the allocations entry
|
---|
| 1109 | $dbh->do("INSERT INTO allocations ".
|
---|
| 1110 | "(cidr,parent_id,master_id,vrf,custid,type,city,description,notes,circuitid,privdata,rdns)".
|
---|
| 1111 | " VALUES (?,?,?,?,?,?,?,?,?,?,?,?)", undef,
|
---|
| 1112 | ($args{cidr}, $fbparent, $fbmaster, $args{vrf}, $args{custid}, $args{type}, $args{city},
|
---|
| 1113 | $args{desc}, $args{notes}, $args{circid}, $args{privdata}, $args{rdns}) );
|
---|
| 1114 | my ($bid) = $dbh->selectrow_array("SELECT currval('allocations_id_seq')");
|
---|
| 1115 |
|
---|
[554] | 1116 | # For routed/container types, add a freeblock within the allocated block so we can subdivide it further
|
---|
| 1117 | if ($args{type} =~ /(.)[mc]/) { # rm and .c types - containers
|
---|
| 1118 | my $rtype = $1;
|
---|
[633] | 1119 | $sth->execute($args{cidr}, $args{city}, $rtype, $args{vrf}, $bid, $fbmaster);
|
---|
[554] | 1120 | }
|
---|
[79] | 1121 |
|
---|
[554] | 1122 | # And initialize the pool, if necessary
|
---|
| 1123 | # PPPoE pools (currently dialup, DSL, and WiFi) get all IPs made available
|
---|
| 1124 | # "DHCP" or "real-subnet" pools have the net, gw, and bcast IPs removed.
|
---|
| 1125 | if ($args{type} =~ /^.p$/) {
|
---|
| 1126 | $msg = "Could not initialize IPs in new $disp_alloctypes{$args{type}} $args{cidr}";
|
---|
[633] | 1127 | my ($code,$rmsg) = initPool($dbh, $args{cidr}, $args{type}, $args{city}, "all", $bid);
|
---|
[554] | 1128 | die $rmsg if $code eq 'FAIL';
|
---|
| 1129 | } elsif ($args{type} =~ /^.d$/) {
|
---|
| 1130 | $msg = "Could not initialize IPs in new $disp_alloctypes{$args{type}} $args{cidr}";
|
---|
[633] | 1131 | my ($code,$rmsg) = initPool($dbh, $args{cidr}, $args{type}, $args{city}, "normal", $bid);
|
---|
[554] | 1132 | die $rmsg if $code eq 'FAIL';
|
---|
| 1133 | }
|
---|
[77] | 1134 |
|
---|
[397] | 1135 | # node hack
|
---|
[554] | 1136 | if ($args{nodeid} && $args{nodeid} ne '') {
|
---|
| 1137 | $dbh->do("INSERT INTO noderef (block,node_id) VALUES (?,?)", undef, ($args{cidr}, $args{nodeid}) );
|
---|
[397] | 1138 | }
|
---|
| 1139 | # end node hack
|
---|
[554] | 1140 |
|
---|
[77] | 1141 | $dbh->commit;
|
---|
| 1142 | }; # end eval
|
---|
| 1143 | if ($@) {
|
---|
[256] | 1144 | $msg .= ": ".$@;
|
---|
[77] | 1145 | eval { $dbh->rollback; };
|
---|
[78] | 1146 | return ('FAIL',$msg);
|
---|
[77] | 1147 | }
|
---|
| 1148 |
|
---|
| 1149 | } # end fullcidr != alloc_from
|
---|
| 1150 |
|
---|
[590] | 1151 | # now we do the DNS dance for netblocks, if we have an RPC server to do it with and a pattern to use.
|
---|
| 1152 | _rpc('addOrUpdateRevRec', cidr => "$args{cidr}", name => $args{rdns}, rpcuser => $args{user})
|
---|
| 1153 | if $args{rdns};
|
---|
[585] | 1154 |
|
---|
[677] | 1155 | # and the per-IP set, if there is one.
|
---|
| 1156 | _rpc('updateRevSet', %{$args{iprev}}, rpcuser => $args{user});
|
---|
| 1157 |
|
---|
[585] | 1158 | return ('OK', 'OK');
|
---|
| 1159 |
|
---|
[77] | 1160 | } # end static-IP vs netblock allocation
|
---|
| 1161 |
|
---|
| 1162 | } # end allocateBlock()
|
---|
| 1163 |
|
---|
| 1164 |
|
---|
| 1165 | ## IPDB::initPool()
|
---|
| 1166 | # Initializes a pool
|
---|
| 1167 | # Requires a database handle, the pool CIDR, type, city, and a parameter
|
---|
| 1168 | # indicating whether the pool should allow allocation of literally every
|
---|
| 1169 | # IP, or if it should reserve network/gateway/broadcast IPs
|
---|
[78] | 1170 | # Note that this is NOT done in a transaction, that's why it's a private
|
---|
| 1171 | # function and should ONLY EVER get called from allocateBlock()
|
---|
[77] | 1172 | sub initPool {
|
---|
[633] | 1173 | my ($dbh,undef,$type,$city,$class,$parent) = @_;
|
---|
[77] | 1174 | my $pool = new NetAddr::IP $_[1];
|
---|
| 1175 |
|
---|
[574] | 1176 | # IPv6 does not lend itself to IP pools as supported
|
---|
| 1177 | return ('FAIL',"Refusing to create IPv6 static IP pool") if $pool->{isv6};
|
---|
| 1178 | # IPv4 pools don't make much sense beyond even /24. Allow up to 4096-host footshooting anyway.
|
---|
| 1179 | # NetAddr::IP won't allow more than a /16 (65k hosts).
|
---|
| 1180 | return ('FAIL',"Refusing to create oversized static IP pool") if $pool->masklen <= 20;
|
---|
| 1181 |
|
---|
[633] | 1182 | my ($pcustid) = $dbh->selectrow_array("SELECT def_custid FROM alloctypes WHERE type=?", undef, ($type) );
|
---|
[157] | 1183 | $type =~ s/[pd]$/i/;
|
---|
[77] | 1184 | my $sth;
|
---|
[157] | 1185 | my $msg;
|
---|
[77] | 1186 |
|
---|
[157] | 1187 | # Trap errors so we can pass them back to the caller. Even if the
|
---|
| 1188 | # caller is only ever supposed to be local, and therefore already
|
---|
| 1189 | # trapping errors. >:(
|
---|
| 1190 | local $dbh->{AutoCommit} = 0; # These need to be local so we don't
|
---|
| 1191 | local $dbh->{RaiseError} = 1; # step on our toes by accident.
|
---|
| 1192 |
|
---|
| 1193 | eval {
|
---|
| 1194 | # have to insert all pool IPs into poolips table as "unallocated".
|
---|
[633] | 1195 | $sth = $dbh->prepare("INSERT INTO poolips (ip,custid,city,type,parent_id) VALUES (?,?,?,?,?)");
|
---|
[157] | 1196 | my @poolip_list = $pool->hostenum;
|
---|
| 1197 | if ($class eq 'all') { # (DSL-ish block - *all* IPs available
|
---|
[246] | 1198 | if ($pool->addr !~ /\.0$/) { # .0 causes weirdness.
|
---|
[633] | 1199 | $sth->execute($pool->addr, $pcustid, $city, $type, $parent);
|
---|
[246] | 1200 | }
|
---|
[157] | 1201 | for (my $i=0; $i<=$#poolip_list; $i++) {
|
---|
[633] | 1202 | $sth->execute($poolip_list[$i]->addr, $pcustid, $city, $type, $parent);
|
---|
[157] | 1203 | }
|
---|
| 1204 | $pool--;
|
---|
[246] | 1205 | if ($pool->addr !~ /\.255$/) { # .255 can cause weirdness.
|
---|
[633] | 1206 | $sth->execute($pool->addr, $pcustid, $city, $type, $parent);
|
---|
[246] | 1207 | }
|
---|
[157] | 1208 | } else { # (real netblock)
|
---|
| 1209 | for (my $i=1; $i<=$#poolip_list; $i++) {
|
---|
[633] | 1210 | $sth->execute($poolip_list[$i]->addr, $pcustid, $city, $type, $parent);
|
---|
[157] | 1211 | }
|
---|
[77] | 1212 | }
|
---|
[633] | 1213 | # don't commit here! the caller may not be done.
|
---|
| 1214 | # $dbh->commit;
|
---|
[157] | 1215 | };
|
---|
| 1216 | if ($@) {
|
---|
[574] | 1217 | $msg = $@;
|
---|
[633] | 1218 | # Don't roll back! It's up to the caller to handle this.
|
---|
| 1219 | # eval { $dbh->rollback; };
|
---|
[157] | 1220 | return ('FAIL',$msg);
|
---|
| 1221 | } else {
|
---|
| 1222 | return ('OK',"OK");
|
---|
[77] | 1223 | }
|
---|
| 1224 | } # end initPool()
|
---|
| 1225 |
|
---|
| 1226 |
|
---|
[531] | 1227 | ## IPDB::updateBlock()
|
---|
| 1228 | # Update an allocation
|
---|
| 1229 | # Takes all allocation fields in a hash
|
---|
| 1230 | sub updateBlock {
|
---|
| 1231 | my $dbh = shift;
|
---|
| 1232 | my %args = @_;
|
---|
| 1233 |
|
---|
| 1234 | return ('FAIL', 'Missing block to update') if !$args{block};
|
---|
| 1235 |
|
---|
[634] | 1236 | # Spaces don't show up well in lots of places. Make sure they don't get into the DB.
|
---|
| 1237 | $args{custid} =~ s/^\s+//;
|
---|
| 1238 | $args{custid} =~ s/\s+$//;
|
---|
| 1239 |
|
---|
[531] | 1240 | # do it all in a transaction
|
---|
| 1241 | local $dbh->{AutoCommit} = 0;
|
---|
| 1242 | local $dbh->{RaiseError} = 1;
|
---|
| 1243 |
|
---|
| 1244 | my @fieldlist;
|
---|
| 1245 | my @vallist;
|
---|
[588] | 1246 | foreach ('custid', 'city', 'description', 'notes', 'circuitid', 'privdata', 'rdns') {
|
---|
[531] | 1247 | if ($args{$_}) {
|
---|
| 1248 | push @fieldlist, $_;
|
---|
| 1249 | push @vallist, $args{$_};
|
---|
| 1250 | }
|
---|
| 1251 | }
|
---|
| 1252 |
|
---|
[634] | 1253 | my $binfo;
|
---|
[531] | 1254 | my $updtable = 'allocations';
|
---|
[634] | 1255 | my $keyfield = 'id';
|
---|
[535] | 1256 | if ($args{type} =~ /^(.)i$/) {
|
---|
[531] | 1257 | $updtable = 'poolips';
|
---|
[634] | 1258 | $binfo = getBlockData($dbh, $args{block}, 'i');
|
---|
[531] | 1259 | } else {
|
---|
| 1260 | ## fixme: there's got to be a better way...
|
---|
[634] | 1261 | $binfo = getBlockData($dbh, $args{block});
|
---|
[531] | 1262 | if ($args{swip}) {
|
---|
| 1263 | if ($args{swip} eq 'on' || $args{swip} eq '1' || $args{swip} eq 'y') {
|
---|
| 1264 | $args{swip} = 'y';
|
---|
| 1265 | } else {
|
---|
| 1266 | $args{swip} = 'n';
|
---|
| 1267 | }
|
---|
| 1268 | }
|
---|
| 1269 | foreach ('type', 'swip') {
|
---|
| 1270 | if ($args{$_}) {
|
---|
| 1271 | push @fieldlist, $_;
|
---|
| 1272 | push @vallist, $args{$_};
|
---|
| 1273 | }
|
---|
| 1274 | }
|
---|
| 1275 | }
|
---|
| 1276 |
|
---|
| 1277 | return ('FAIL', 'No fields to update') if !@fieldlist;
|
---|
| 1278 |
|
---|
[634] | 1279 | push @vallist, $args{block};
|
---|
[531] | 1280 | my $sql = "UPDATE $updtable SET ";
|
---|
| 1281 | $sql .= join " = ?, ", @fieldlist;
|
---|
[634] | 1282 | $sql .= " = ? WHERE $keyfield = ?";
|
---|
[531] | 1283 |
|
---|
| 1284 | eval {
|
---|
| 1285 | # do the update
|
---|
| 1286 | $dbh->do($sql, undef, @vallist);
|
---|
| 1287 |
|
---|
| 1288 | if ($args{node}) {
|
---|
| 1289 | # done with delete/insert so we don't have to worry about funkyness updating a node ref that isn't there
|
---|
[634] | 1290 | $dbh->do("DELETE FROM noderef WHERE block = ?", undef, ($binfo->{block}) );
|
---|
| 1291 | $dbh->do("INSERT INTO noderef (block,node_id) VALUES (?,?)", undef, ($binfo->{block}, $args{node}) )
|
---|
| 1292 | if $args{node} ne '--';
|
---|
[531] | 1293 | }
|
---|
| 1294 |
|
---|
| 1295 | $dbh->commit;
|
---|
| 1296 | };
|
---|
| 1297 | if ($@) {
|
---|
| 1298 | my $msg = $@;
|
---|
| 1299 | $dbh->rollback;
|
---|
| 1300 | return ('FAIL', $msg);
|
---|
| 1301 | }
|
---|
[588] | 1302 |
|
---|
[634] | 1303 | $binfo->{block} =~ s|/32$||;
|
---|
| 1304 | _rpc('addOrUpdateRevRec', cidr => $binfo->{block}, name => $args{rdns}, rpcuser => $args{user});
|
---|
[677] | 1305 |
|
---|
| 1306 | # and the per-IP set, if there is one.
|
---|
| 1307 | _rpc('updateRevSet', %{$args{iprev}}, rpcuser => $args{user});
|
---|
| 1308 |
|
---|
[588] | 1309 | return ('OK','OK');
|
---|
[531] | 1310 | } # end updateBlock()
|
---|
| 1311 |
|
---|
| 1312 |
|
---|
[93] | 1313 | ## IPDB::deleteBlock()
|
---|
| 1314 | # Removes an allocation from the database, including deleting IPs
|
---|
| 1315 | # from poolips and recombining entries in freeblocks if possible
|
---|
| 1316 | # Also handles "deleting" a static IP allocation, and removal of a master
|
---|
[558] | 1317 | # Requires a database handle, the block to delete, the routing depth (if applicable),
|
---|
[590] | 1318 | # the VRF ID, and a flag to indicate whether to delete associated forward DNS entries
|
---|
| 1319 | # as well as the reverse entry
|
---|
[93] | 1320 | sub deleteBlock {
|
---|
[638] | 1321 | my ($dbh,$id,$basetype,$delfwd,$user) = @_;
|
---|
[93] | 1322 |
|
---|
[638] | 1323 | # Collect info about the block we're going to delete
|
---|
| 1324 | my $binfo = getBlockData($dbh, $id, $basetype);
|
---|
| 1325 | my $cidr = new NetAddr::IP $binfo->{block};
|
---|
| 1326 |
|
---|
[558] | 1327 | # For possible auto-VRF-ignoring (since public IPs shouldn't usually be present in more than one VRF)
|
---|
| 1328 | # is_rfc1918 requires NetAddr::IP >= 4.059
|
---|
| 1329 | # rather than doing this over and over and over.....
|
---|
| 1330 | my $tmpnum = $cidr->numeric;
|
---|
| 1331 | # 192.168.0.0/16 -> 192.168.255.255 => 3232235520 -> 3232301055
|
---|
| 1332 | # 172.16.0.0/12 -> 172.31.255.255 => 2886729728 -> 2887778303
|
---|
| 1333 | # 10.0.0.0/8 -> 10.255.255.255 => 167772160 -> 184549375
|
---|
| 1334 | my $isprivnet = (3232235520 <= $tmpnum && $tmpnum <= 3232301055) ||
|
---|
| 1335 | (2886729728 <= $tmpnum && $tmpnum <= 2887778303) ||
|
---|
| 1336 | (167772160 <= $tmpnum && $tmpnum <= 184549375);
|
---|
| 1337 |
|
---|
[93] | 1338 | my $sth;
|
---|
| 1339 |
|
---|
[349] | 1340 | # Magic variables used for odd allocation cases.
|
---|
| 1341 | my $container;
|
---|
| 1342 | my $con_type;
|
---|
| 1343 |
|
---|
[558] | 1344 |
|
---|
| 1345 | # temporarily forced null, until a sane UI for VRF tracking can be found.
|
---|
[638] | 1346 | # $vrf = '';# if !$vrf; # as with SQL, the null value is not equal to ''. *sigh*
|
---|
[558] | 1347 |
|
---|
[93] | 1348 | # To contain the error message, if any.
|
---|
[558] | 1349 | my $msg = "Unknown error deallocating $binfo->{type} $cidr";
|
---|
| 1350 | my $goback; # to put the parent in so we can link back where the deallocate started
|
---|
| 1351 |
|
---|
[93] | 1352 | # Enable transactions and exception-on-errors... but only for this sub
|
---|
| 1353 | local $dbh->{AutoCommit} = 0;
|
---|
| 1354 | local $dbh->{RaiseError} = 1;
|
---|
| 1355 |
|
---|
[558] | 1356 | if ($binfo->{type} =~ /^.i$/) {
|
---|
[638] | 1357 | # First case. The "block" is a static IP
|
---|
| 1358 | # Note that we still need some additional code in the odd case
|
---|
| 1359 | # of a netblock-aligned contiguous group of static IPs
|
---|
[93] | 1360 |
|
---|
| 1361 | eval {
|
---|
[558] | 1362 | $msg = "Unable to deallocate $disp_alloctypes{$binfo->{type}} $cidr";
|
---|
[638] | 1363 | my $pinfo = getBlockData($dbh, $binfo->{parent_id}, 'b');
|
---|
[558] | 1364 | ##fixme: VRF and rdepth
|
---|
[638] | 1365 | $dbh->do("UPDATE poolips SET custid = ?, available = 'y',".
|
---|
| 1366 | "city = (SELECT city FROM allocations WHERE id = ?),".
|
---|
| 1367 | "description = '', notes = '', circuitid = '', vrf = ? WHERE id = ?", undef,
|
---|
| 1368 | ($pinfo->{custid}, $binfo->{parent_id}, $pinfo->{vrf}, $id) );
|
---|
[93] | 1369 | $dbh->commit;
|
---|
| 1370 | };
|
---|
| 1371 | if ($@) {
|
---|
[558] | 1372 | $msg .= ": $@";
|
---|
[93] | 1373 | eval { $dbh->rollback; };
|
---|
| 1374 | return ('FAIL',$msg);
|
---|
| 1375 | } else {
|
---|
[590] | 1376 | ##fixme: RPC return code?
|
---|
[638] | 1377 | _rpc('delByCIDR', cidr => "$cidr", user => $user, delforward => $delfwd, rpcuser => $user);
|
---|
[93] | 1378 | return ('OK',"OK");
|
---|
| 1379 | }
|
---|
| 1380 |
|
---|
[558] | 1381 | } elsif ($binfo->{type} eq 'mm') { # end alloctype =~ /.i/
|
---|
[638] | 1382 | # Second case. The block is a full master block
|
---|
[93] | 1383 |
|
---|
[558] | 1384 | ##fixme: VRF limit
|
---|
[93] | 1385 | $msg = "Unable to delete master block $cidr";
|
---|
| 1386 | eval {
|
---|
[638] | 1387 | $dbh->do("DELETE FROM allocations WHERE cidr <<= ? AND master_id = ?", undef, ($cidr, $binfo->{master_id}) );
|
---|
| 1388 | $dbh->do("DELETE FROM freeblocks WHERE cidr <<= ? AND master_id = ?", undef, ($cidr, $binfo->{master_id}) );
|
---|
[93] | 1389 | $dbh->commit;
|
---|
| 1390 | };
|
---|
| 1391 | if ($@) {
|
---|
[558] | 1392 | $msg .= ": $@";
|
---|
[93] | 1393 | eval { $dbh->rollback; };
|
---|
| 1394 | return ('FAIL', $msg);
|
---|
[591] | 1395 | }
|
---|
| 1396 |
|
---|
| 1397 | # Have to handle potentially split reverse zones. Assume they *are* split,
|
---|
| 1398 | # since if we added them here, they would have been added split.
|
---|
| 1399 | # allow splitting reverse zones to be disabled, maybe, someday
|
---|
| 1400 | #if ($splitrevzones && !$cidr->{isv6}) {
|
---|
| 1401 | my @zonelist;
|
---|
| 1402 | if (1 && !$cidr->{isv6}) {
|
---|
| 1403 | my $splitpoint = ($cidr->masklen <= 16 ? 16 : 24); # hack pthui
|
---|
| 1404 | @zonelist = $cidr->split($splitpoint);
|
---|
[93] | 1405 | } else {
|
---|
[591] | 1406 | @zonelist = ($cidr);
|
---|
[93] | 1407 | }
|
---|
[591] | 1408 | my @fails;
|
---|
| 1409 | foreach my $subzone (@zonelist) {
|
---|
[638] | 1410 | if ($rpc_url && !_rpc('delZone', zone => "$subzone", revrec => 'y', rpcuser => $user, delforward => $delfwd) ) {
|
---|
[591] | 1411 | push @fails, ("$subzone" => $errstr);
|
---|
| 1412 | }
|
---|
| 1413 | }
|
---|
| 1414 | if (@fails) {
|
---|
| 1415 | return ('WARN',"Warning(s) deleting $cidr from reverse DNS:\n".join("\n", @fails));
|
---|
| 1416 | }
|
---|
| 1417 | return ('OK','OK');
|
---|
[93] | 1418 |
|
---|
| 1419 | } else { # end alloctype master block case
|
---|
| 1420 |
|
---|
| 1421 | ## This is a big block; but it HAS to be done in a chunk. Any removal
|
---|
| 1422 | ## of a netblock allocation may result in a larger chunk of free
|
---|
| 1423 | ## contiguous IP space - which may in turn be combined into a single
|
---|
| 1424 | ## netblock rather than a number of smaller netblocks.
|
---|
| 1425 |
|
---|
[558] | 1426 | my $retcode = 'OK';
|
---|
[638] | 1427 | my ($ptype,$pcity,$ppatt,$p_id);
|
---|
[558] | 1428 |
|
---|
[93] | 1429 | eval {
|
---|
| 1430 |
|
---|
[558] | 1431 | ##fixme: add recursive flag to allow "YES DAMMIT DELETE ALL EVARYTHING!!1!!" without
|
---|
| 1432 | # explicitly deleting any suballocations of the block to be deleted.
|
---|
[93] | 1433 |
|
---|
[638] | 1434 | # get parent info of the block we're deleting
|
---|
| 1435 | my $pinfo = getBlockData($dbh, $binfo->{parent_id});
|
---|
| 1436 | $ptype = $pinfo->{type};
|
---|
| 1437 | $pcity = $pinfo->{city};
|
---|
| 1438 | $ppatt = $pinfo->{rdns};
|
---|
| 1439 | $p_id = $binfo->{parent_id};
|
---|
[93] | 1440 |
|
---|
[558] | 1441 | # Delete the block
|
---|
[638] | 1442 | $dbh->do("DELETE FROM allocations WHERE id = ?", undef, ($id) );
|
---|
[349] | 1443 |
|
---|
[558] | 1444 | # munge the parent type a little
|
---|
[638] | 1445 | $ptype = (split //, $ptype)[1];
|
---|
[93] | 1446 |
|
---|
[558] | 1447 | ##fixme: you can't... CAN NOT.... assign the same public IP to multiple things.
|
---|
| 1448 | # 'Net don't work like that, homey. Restrict VRF-uniqueness to private IPs?
|
---|
| 1449 | # -> $isprivnet flag from start of sub
|
---|
[93] | 1450 |
|
---|
[558] | 1451 | # check to see if any container allocations could be the "true" parent
|
---|
[638] | 1452 | my ($tparent,$tpar_id,$trtype,$tcity);
|
---|
| 1453 | $tpar_id = 0;
|
---|
[404] | 1454 |
|
---|
[638] | 1455 | ##fixme: this is far simpler in the strict VRF case; we "know" that any allocation
|
---|
| 1456 | # contained by a container is a part of the same allocation tree when the VRF fields are equal.
|
---|
[558] | 1457 |
|
---|
[638] | 1458 | # logic:
|
---|
| 1459 | # For each possible container of $cidr
|
---|
| 1460 | # note the parent id
|
---|
| 1461 | # walk the chain up the parents
|
---|
| 1462 | # if we intersect $cidr's current parent, break
|
---|
| 1463 | # if we've intersected $cidr's current parent
|
---|
| 1464 | # set some variables to track that block
|
---|
| 1465 | # break
|
---|
[558] | 1466 |
|
---|
[638] | 1467 | # Set up part of "is it in the middle of a pool?" check
|
---|
| 1468 | my $wuzpool = $dbh->selectrow_hashref("SELECT cidr,parent_id,type,city,custid,id FROM allocations ".
|
---|
| 1469 | "WHERE (type LIKE '_d' OR type LIKE '_p') AND cidr >> ? AND master_id = ?", { Slice => {} },
|
---|
| 1470 | ($cidr, $binfo->{master_id}) );
|
---|
[558] | 1471 |
|
---|
[638] | 1472 | ##fixme?
|
---|
| 1473 | # edge cases not handled, or handled badly:
|
---|
| 1474 | # -> $cidr managed to get to be the entirety of an IP pool
|
---|
[558] | 1475 |
|
---|
[638] | 1476 | if ($wuzpool && $wuzpool->{id} != $id) {
|
---|
| 1477 | # we have legacy goo to be purified
|
---|
| 1478 | # going to ignore nested pools; not possible to create them via API and no current legacy data includes any.
|
---|
| 1479 |
|
---|
| 1480 | # for convenience
|
---|
| 1481 | my $poolid = $wuzpool->{id};
|
---|
| 1482 | my $pool = $wuzpool->{cidr};
|
---|
| 1483 | my $poolcity = $wuzpool->{city};
|
---|
| 1484 | my $pooltype = $wuzpool->{type};
|
---|
| 1485 | my $poolcustid = $wuzpool->{custid};
|
---|
| 1486 |
|
---|
| 1487 | $retcode = 'WARNPOOL';
|
---|
| 1488 | $goback = "$poolid,$pool";
|
---|
| 1489 | # We've already deleted the block, now we have to stuff its IPs into the pool.
|
---|
| 1490 | $pooltype =~ s/[dp]$/i/; # change type to static IP
|
---|
| 1491 | my $sth2 = $dbh->prepare("INSERT INTO poolips (ip,city,type,custid,parent_id) VALUES ".
|
---|
| 1492 | "(?,'$poolcity','$pooltype','$poolcustid',$poolid)");
|
---|
[655] | 1493 |
|
---|
[429] | 1494 | ##fixme: need to not insert net, gateway, and bcast on "real netblock" pools (DHCPish)
|
---|
[638] | 1495 | # don't insert .0
|
---|
| 1496 | $sth2->execute($cidr->addr) unless $cidr->addr =~ m|\.0$|;
|
---|
[655] | 1497 | $cidr++;
|
---|
| 1498 | my $bcast = $cidr->broadcast;
|
---|
| 1499 | while ($cidr != $bcast) {
|
---|
| 1500 | $sth2->execute($cidr->addr);
|
---|
| 1501 | $cidr++;
|
---|
[638] | 1502 | }
|
---|
| 1503 | # don't insert .255
|
---|
| 1504 | $sth2->execute($cidr->addr) unless $cidr->addr =~ m|\.255$|;
|
---|
[655] | 1505 |
|
---|
| 1506 | # Weirdness Happens. $cidr goes read-only somewhere (this is a thing?!?),
|
---|
| 1507 | # causing ->split, ->hostenum, and related methods to explode. O_o
|
---|
| 1508 | # foreach my $ip ($cidr->hostenum) {
|
---|
| 1509 | # $sth2->execute($ip);
|
---|
| 1510 | # }
|
---|
| 1511 |
|
---|
[638] | 1512 | }
|
---|
[93] | 1513 |
|
---|
[638] | 1514 | ## important!
|
---|
| 1515 | # ... or IS IT?
|
---|
| 1516 | # we may have undef'ed $wuzpool above, if the allocation tree $cidr is in doesn't intersect the pool we found
|
---|
| 1517 | #if (!$wuzpool) {
|
---|
| 1518 |
|
---|
| 1519 | else {
|
---|
| 1520 |
|
---|
[655] | 1521 | # Edge case: Block is the same size as more than one parent level. Should be rare.
|
---|
| 1522 | # - mainly master + first routing. Sorting on parent_id hides the problem pretty well,
|
---|
| 1523 | # but it's likely still possible to fail in particularly well-mangled databases.
|
---|
| 1524 | # The ultimate fix for this may be to resurrect the "routing depth" atrocity. :/
|
---|
[638] | 1525 | # Get all possible (and probably a number of impossible) containers for $cidr
|
---|
| 1526 | $sth = $dbh->prepare("SELECT cidr,parent_id,type,city,id FROM allocations ".
|
---|
| 1527 | "WHERE (type LIKE '_m' OR type LIKE '_c') AND cidr >>= ? AND master_id = ? ".
|
---|
[655] | 1528 | "ORDER BY masklen(cidr) DESC,parent_id DESC");
|
---|
[638] | 1529 | $sth->execute($cidr, $binfo->{master_id});
|
---|
| 1530 |
|
---|
| 1531 | # Quickly get certain fields (simpler than getBlockData()
|
---|
| 1532 | my $sth2 = $dbh->prepare("SELECT cidr,parent_id,type,city FROM allocations ".
|
---|
| 1533 | "WHERE (type LIKE '_m' OR type LIKE '_c') AND id = ? AND master_id = ?");
|
---|
| 1534 |
|
---|
| 1535 | # For each possible container of $cidr...
|
---|
| 1536 | while (my @data = $sth->fetchrow_array) {
|
---|
| 1537 | my $i = 0;
|
---|
| 1538 | # Save some state and set a start point - parent ID of container we're checking
|
---|
| 1539 | $tparent = $data[0];
|
---|
| 1540 | my $ppid = $data[1];
|
---|
| 1541 | $trtype = $data[2];
|
---|
| 1542 | $tcity = $data[3];
|
---|
| 1543 | $tpar_id = $data[4];
|
---|
| 1544 | last if $data[4] == $binfo->{parent_id}; # Preemptively break if we're already in the right place
|
---|
| 1545 | last if $ppid == $binfo->{parent_id}; # ... or if the parent of the container is the block's parent
|
---|
| 1546 | while (1) {
|
---|
| 1547 | # Retrieve bits on that parent ID
|
---|
| 1548 | $sth2->execute($ppid, $binfo->{master_id});
|
---|
| 1549 | my @container = $sth2->fetchrow_array;
|
---|
| 1550 | $ppid = $container[1];
|
---|
| 1551 | last if $container[1] == 0; # Break if we've hit a master block
|
---|
| 1552 | last if $ppid == $binfo->{parent_id}; # Break if we've reached the block $cidr is currently in
|
---|
| 1553 | }
|
---|
| 1554 | last if $ppid == $binfo->{parent_id};
|
---|
| 1555 | }
|
---|
| 1556 |
|
---|
| 1557 | # found an alternate parent; reset some parent-info bits
|
---|
| 1558 | if ($tpar_id != $binfo->{parent_id}) {
|
---|
| 1559 | $ptype = (split //, $trtype)[1];
|
---|
| 1560 | $pcity = $tcity;
|
---|
| 1561 | $retcode = 'WARNMERGE'; # may be redundant
|
---|
| 1562 | $p_id = $tpar_id;
|
---|
| 1563 | }
|
---|
| 1564 |
|
---|
| 1565 | $goback = "$p_id,$tparent"; # breadcrumb, currently only used in case of live-parent-is-not-true-parent
|
---|
| 1566 |
|
---|
| 1567 | # Special case - delete pool IPs
|
---|
| 1568 | if ($binfo->{type} =~ /^.[pd]$/) {
|
---|
[655] | 1569 | # We have to delete the IPs from the pool listing.
|
---|
| 1570 | ##fixme: rdepth? vrf?
|
---|
[638] | 1571 | $dbh->do("DELETE FROM poolips WHERE parent_id = ?", undef, ($id) );
|
---|
| 1572 | }
|
---|
| 1573 |
|
---|
| 1574 | $pinfo = getBlockData($dbh, $p_id);
|
---|
| 1575 |
|
---|
[558] | 1576 | # If the block wasn't legacy goo embedded in a static pool, we check the
|
---|
| 1577 | # freeblocks in the identified parent to see if we can combine any of them.
|
---|
[93] | 1578 |
|
---|
[559] | 1579 | # if the block to be deleted is a container, move its freeblock(s) up a level, and reset their parenting info
|
---|
| 1580 | if ($binfo->{type} =~ /^.[mc]/) {
|
---|
| 1581 | # move the freeblocks into the parent
|
---|
| 1582 | # we don't insert a new freeblock because there could be a live reparented sub.
|
---|
[638] | 1583 | $dbh->do("UPDATE freeblocks SET parent_id = ?, routed = ?, city = ? WHERE parent_id = ?", undef,
|
---|
| 1584 | ($p_id, $ptype, $pcity, $id) );
|
---|
[559] | 1585 | } else {
|
---|
| 1586 | # ... otherwise, add the freeblock
|
---|
[638] | 1587 | $dbh->do("INSERT INTO freeblocks (cidr, city, routed, parent_id, master_id) VALUES (?,?,?,?,?)", undef,
|
---|
| 1588 | ($cidr, $pcity, $ptype, $p_id, $binfo->{master_id}) );
|
---|
[559] | 1589 | }
|
---|
| 1590 |
|
---|
[558] | 1591 | ##fixme: vrf
|
---|
[638] | 1592 | ##fixme: simplify since all containers now represent different "layers"/"levels"?
|
---|
[558] | 1593 | # set up the query to get the list of blocks to try to merge.
|
---|
[638] | 1594 | $sth = $dbh->prepare("SELECT cidr,id FROM freeblocks ".
|
---|
| 1595 | "WHERE parent_id = ? ".
|
---|
[558] | 1596 | "ORDER BY masklen(cidr) DESC");
|
---|
[428] | 1597 |
|
---|
[638] | 1598 | $sth->execute($p_id);
|
---|
[558] | 1599 |
|
---|
[93] | 1600 | # NetAddr::IP->compact() attempts to produce the smallest inclusive block
|
---|
| 1601 | # from the caller and the passed terms.
|
---|
| 1602 | # EG: if you call $cidr->compact($ip1,$ip2,$ip3) when $cidr, $ip1, $ip2,
|
---|
| 1603 | # and $ip3 are consecutive /27's starting on .0 (.0-.31, .32-.63,
|
---|
| 1604 | # .64-.95, and .96-.128), you will get an array containing a single
|
---|
| 1605 | # /25 as element 0 (.0-.127). Order is not important; you could have
|
---|
| 1606 | # $cidr=.32/27, $ip1=.96/27, $ip2=.0/27, and $ip3=.64/27.
|
---|
| 1607 |
|
---|
[638] | 1608 | my (@rawfb, @combinelist, %rawid);
|
---|
[428] | 1609 | my $i=0;
|
---|
[558] | 1610 | # for each free block under $parent, push a NetAddr::IP object into one list, and
|
---|
| 1611 | # continuously use NetAddr::IP->compact to automagically merge netblocks as possible.
|
---|
[428] | 1612 | while (my @data = $sth->fetchrow_array) {
|
---|
| 1613 | my $testIP = new NetAddr::IP $data[0];
|
---|
[558] | 1614 | push @rawfb, $testIP;
|
---|
[671] | 1615 | $rawid{"$testIP"} = $data[1]; # $data[0] vs "$testIP" *does* make a difference for v6
|
---|
[558] | 1616 | @combinelist = $testIP->compact(@combinelist);
|
---|
[93] | 1617 | }
|
---|
| 1618 |
|
---|
[558] | 1619 | # now that we have the full list of "compacted" freeblocks, go back over
|
---|
| 1620 | # the list of raw freeblocks, and delete the ones that got merged.
|
---|
[638] | 1621 | $sth = $dbh->prepare("DELETE FROM freeblocks WHERE id = ?");
|
---|
[558] | 1622 | foreach my $rawfree (@rawfb) {
|
---|
| 1623 | next if grep { $rawfree == $_ } @combinelist; # skip if the raw block is in the compacted list
|
---|
[638] | 1624 | $sth->execute($rawid{$rawfree});
|
---|
[558] | 1625 | }
|
---|
[93] | 1626 |
|
---|
[558] | 1627 | # now we walk the new list of compacted blocks, and see which ones we need to insert
|
---|
[638] | 1628 | $sth = $dbh->prepare("INSERT INTO freeblocks (cidr,city,routed,parent_id,master_id) VALUES (?,?,?,?,?)");
|
---|
[558] | 1629 | foreach my $cme (@combinelist) {
|
---|
| 1630 | next if grep { $cme == $_ } @rawfb; # skip if the combined block was in the raw list
|
---|
[638] | 1631 | $sth->execute($cme, $pcity, $ptype, $p_id, $binfo->{master_id});
|
---|
[428] | 1632 | }
|
---|
[93] | 1633 |
|
---|
[428] | 1634 | } # done returning IPs to the appropriate place
|
---|
[404] | 1635 |
|
---|
[93] | 1636 | # If we got here, we've succeeded. Whew!
|
---|
| 1637 | $dbh->commit;
|
---|
| 1638 | }; # end eval
|
---|
| 1639 | if ($@) {
|
---|
[558] | 1640 | $msg .= ": $@";
|
---|
[93] | 1641 | eval { $dbh->rollback; };
|
---|
| 1642 | return ('FAIL', $msg);
|
---|
| 1643 | } else {
|
---|
[590] | 1644 | ##fixme: RPC return code?
|
---|
[638] | 1645 | _rpc('delByCIDR', cidr => "$cidr", rpcuser => $user, delforward => $delfwd, delsubs => 'y', parpatt => $ppatt);
|
---|
[558] | 1646 | return ($retcode, $goback);
|
---|
[93] | 1647 | }
|
---|
| 1648 |
|
---|
| 1649 | } # end alloctype != netblock
|
---|
| 1650 |
|
---|
| 1651 | } # end deleteBlock()
|
---|
| 1652 |
|
---|
| 1653 |
|
---|
[370] | 1654 | ## IPDB::getBlockData()
|
---|
[557] | 1655 | # Get CIDR or IP, custid, type, city, circuit ID, description, notes, modification time,
|
---|
| 1656 | # private/restricted data, for a CIDR block or pool IP
|
---|
| 1657 | # Also returns SWIP status flag for CIDR blocks or pool netblock for IPs
|
---|
[636] | 1658 | # Takes the block ID or IP to look up and an optional flag to indicate a pool IP lookup
|
---|
| 1659 | # instead of a netblock.
|
---|
[557] | 1660 | # Returns a hashref to the block data
|
---|
[370] | 1661 | sub getBlockData {
|
---|
| 1662 | my $dbh = shift;
|
---|
[636] | 1663 | my $id = shift;
|
---|
| 1664 | my $type = shift || 'b'; # default to netblock for lazy callers
|
---|
[370] | 1665 |
|
---|
[636] | 1666 | # netblocks are in the allocations table; pool IPs are in the poolips table.
|
---|
| 1667 | # If we try to look up a CIDR in an integer field we should just get back nothing.
|
---|
| 1668 | my ($btype) = $dbh->selectrow_array("SELECT type FROM allocations WHERE id=?", undef, ($id) );
|
---|
[534] | 1669 |
|
---|
[636] | 1670 | if ($type eq 'i') {
|
---|
[557] | 1671 | my $binfo = $dbh->selectrow_hashref("SELECT ip AS block, custid, type, city, circuitid, description,".
|
---|
[636] | 1672 | " notes, modifystamp AS lastmod, privdata, vrf, rdns, parent_id, master_id".
|
---|
| 1673 | " FROM poolips WHERE id = ?", undef, ($id) );
|
---|
[557] | 1674 | return $binfo;
|
---|
| 1675 | } else {
|
---|
[636] | 1676 | my $binfo = $dbh->selectrow_hashref("SELECT cidr AS block, custid, type, city, circuitid, ".
|
---|
| 1677 | "description, notes, modifystamp AS lastmod, privdata, vrf, swip, rdns, parent_id, master_id".
|
---|
| 1678 | " FROM allocations WHERE id = ?", undef, ($id) );
|
---|
[557] | 1679 | return $binfo;
|
---|
[534] | 1680 | }
|
---|
[370] | 1681 | } # end getBlockData()
|
---|
| 1682 |
|
---|
| 1683 |
|
---|
[585] | 1684 | ## IPDB::getBlockRDNS()
|
---|
| 1685 | # Gets reverse DNS pattern for a block or IP. Note that this will also
|
---|
| 1686 | # retrieve any default pattern following the parent chain up, and check via
|
---|
| 1687 | # RPC (if available) to see what the narrowest pattern for the requested block is
|
---|
| 1688 | # Returns the current pattern for the block or IP.
|
---|
| 1689 | sub getBlockRDNS {
|
---|
| 1690 | my $dbh = shift;
|
---|
| 1691 | my %args = @_;
|
---|
| 1692 |
|
---|
[637] | 1693 | $args{type} = 'b' if !$args{type};
|
---|
[675] | 1694 | my $cached = 1;
|
---|
[585] | 1695 |
|
---|
[637] | 1696 | # snag entry from database
|
---|
| 1697 | my ($rdns,$rfrom,$pid);
|
---|
| 1698 | if ($args{type} =~ /.i/) {
|
---|
| 1699 | ($rdns, $rfrom, $pid) = $dbh->selectrow_array("SELECT rdns,ip,parent_id FROM poolips WHERE id = ?",
|
---|
| 1700 | undef, ($args{id}) );
|
---|
| 1701 | } else {
|
---|
| 1702 | ($rdns, $rfrom, $pid) = $dbh->selectrow_array("SELECT rdns,cidr,parent_id FROM allocations WHERE id = ?",
|
---|
| 1703 | undef, ($args{id}) );
|
---|
| 1704 | }
|
---|
[585] | 1705 |
|
---|
[637] | 1706 | # Can't see a way this could end up empty, for any case I care about. If the caller
|
---|
| 1707 | # doesn't know an allocation ID to request, then they don't know anything else anyway.
|
---|
| 1708 | my $selfblock = $rfrom;
|
---|
[585] | 1709 |
|
---|
[637] | 1710 | my $type;
|
---|
| 1711 | while (!$rdns && $pid) {
|
---|
| 1712 | ($rdns, $rfrom, $pid, $type) = $dbh->selectrow_array(
|
---|
| 1713 | "SELECT rdns,cidr,parent_id,type FROM allocations WHERE id = ?",
|
---|
| 1714 | undef, ($pid) );
|
---|
| 1715 | last if $type eq 'mm'; # break loops in unfortunate legacy data
|
---|
| 1716 | }
|
---|
| 1717 |
|
---|
| 1718 | # use the actual allocation to check against the DNS utility; we don't want
|
---|
| 1719 | # to always go chasing up the chain to the master... which may (usually won't)
|
---|
| 1720 | # be present directly in DNS anyway
|
---|
| 1721 | my $cidr = new NetAddr::IP $selfblock;
|
---|
| 1722 |
|
---|
[585] | 1723 | if ($rpc_url) {
|
---|
| 1724 | # Use the first /16 or /24, rather than dithering over which sub-/14 /16
|
---|
| 1725 | # or sub-/19 /24 to retrieve - it's the least-wrong way to do things.
|
---|
| 1726 |
|
---|
[586] | 1727 | my ($rpcblock) = ($cidr->masklen <= 24 ? $cidr->split( ($cidr->masklen <= 16 ? 16 : 24) ) : $cidr);
|
---|
[585] | 1728 | my %rpcargs = (
|
---|
| 1729 | rpcuser => $args{user},
|
---|
| 1730 | group => $revgroup, # not sure how this could sanely be exposed, tbh...
|
---|
| 1731 | cidr => "$rpcblock",
|
---|
| 1732 | );
|
---|
| 1733 |
|
---|
[637] | 1734 | my $remote_rdns = _rpc('getRevPattern', %rpcargs);
|
---|
| 1735 | $rdns = $remote_rdns if $remote_rdns;
|
---|
[675] | 1736 | $cached = 0;
|
---|
[585] | 1737 | }
|
---|
| 1738 |
|
---|
| 1739 | # hmm. do we care about where it actually came from?
|
---|
[675] | 1740 | return $rdns, $cached;
|
---|
[585] | 1741 | } # end getBlockRDNS()
|
---|
| 1742 |
|
---|
| 1743 |
|
---|
[675] | 1744 | ## IPDB::getRDNSbyIP()
|
---|
| 1745 | # Get individual reverse entries for the IP or CIDR IP range passed. Sort of looking the
|
---|
| 1746 | # opposite direction down the netblock tree compared to getBlockRDNS() above.
|
---|
| 1747 | sub getRDNSbyIP {
|
---|
| 1748 | my $dbh = shift;
|
---|
| 1749 | my %args = @_; # We want to accept a variety of call types
|
---|
| 1750 |
|
---|
| 1751 | # key arguments: allocation ID, type
|
---|
| 1752 | unless ($args{id} || $args{type}) {
|
---|
| 1753 | $errstr = 'Missing allocation ID or type';
|
---|
| 1754 | return;
|
---|
| 1755 | }
|
---|
| 1756 |
|
---|
| 1757 | my @ret = ();
|
---|
| 1758 | # special case: single IP. Check if it's an allocation or in a pool, then do the RPC call for fresh data.
|
---|
| 1759 | if ($args{type} =~ /^.i$/) {
|
---|
| 1760 | my ($ip, $localrev) = $dbh->selectrow_array("SELECT ip, rdns FROM poolips WHERE id = ?", undef, ($args{id}) );
|
---|
| 1761 | push @ret, { 'r_ip' => $ip, 'iphost' => $localrev };
|
---|
| 1762 | } else {
|
---|
| 1763 | if ($rpc_url) {
|
---|
| 1764 | my %rpcargs = (
|
---|
| 1765 | rpcuser => $args{user},
|
---|
| 1766 | group => $revgroup, # not sure how this could sanely be exposed, tbh...
|
---|
| 1767 | cidr => $args{range},
|
---|
| 1768 | );
|
---|
| 1769 |
|
---|
| 1770 | my $remote_rdns = _rpc('getRevSet', %rpcargs);
|
---|
| 1771 | return $remote_rdns;
|
---|
| 1772 | # $rdns = $remote_rdns if $remote_rdns;
|
---|
| 1773 | # $cached = 0;
|
---|
| 1774 | }
|
---|
| 1775 | }
|
---|
| 1776 | return \@ret;
|
---|
| 1777 | } # end getRDNSbyIP()
|
---|
| 1778 |
|
---|
| 1779 |
|
---|
[519] | 1780 | ## IPDB::getNodeList()
|
---|
| 1781 | # Gets a list of node ID+name pairs as an arrayref to a list of hashrefs
|
---|
| 1782 | sub getNodeList {
|
---|
| 1783 | my $dbh = shift;
|
---|
| 1784 |
|
---|
| 1785 | my $ret = $dbh->selectall_arrayref("SELECT node_id, node_name FROM nodes ORDER BY node_type,node_id",
|
---|
| 1786 | { Slice => {} });
|
---|
| 1787 | return $ret;
|
---|
| 1788 | } # end getNodeList()
|
---|
| 1789 |
|
---|
| 1790 |
|
---|
[530] | 1791 | ## IPDB::getNodeName()
|
---|
| 1792 | # Get node name from the ID
|
---|
| 1793 | sub getNodeName {
|
---|
| 1794 | my $dbh = shift;
|
---|
| 1795 | my $nid = shift;
|
---|
| 1796 |
|
---|
| 1797 | my ($nname) = $dbh->selectrow_array("SELECT node_name FROM nodes WHERE node_id = ?", undef, ($nid) );
|
---|
| 1798 | return $nname;
|
---|
| 1799 | } # end getNodeName()
|
---|
| 1800 |
|
---|
| 1801 |
|
---|
| 1802 | ## IPDB::getNodeInfo()
|
---|
| 1803 | # Get node name and ID associated with a block
|
---|
| 1804 | sub getNodeInfo {
|
---|
| 1805 | my $dbh = shift;
|
---|
| 1806 | my $block = shift;
|
---|
| 1807 |
|
---|
| 1808 | my ($nid, $nname) = $dbh->selectrow_array("SELECT nodes.node_id,node_name FROM nodes INNER JOIN noderef".
|
---|
| 1809 | " ON nodes.node_id=noderef.node_id WHERE noderef.block = ?", undef, ($block) );
|
---|
| 1810 | return ($nid, $nname);
|
---|
| 1811 | } # end getNodeInfo()
|
---|
| 1812 |
|
---|
| 1813 |
|
---|
[77] | 1814 | ## IPDB::mailNotify()
|
---|
[66] | 1815 | # Sends notification mail to recipients regarding an IPDB operation
|
---|
[416] | 1816 | sub mailNotify {
|
---|
| 1817 | my $dbh = shift;
|
---|
| 1818 | my ($action,$subj,$message) = @_;
|
---|
[66] | 1819 |
|
---|
[462] | 1820 | return if $smtphost eq 'smtp.example.com'; # do nothing if still using default SMTP host.
|
---|
| 1821 |
|
---|
[422] | 1822 | ##fixme: need to redesign the breakdown/processing for $action for proper handling of all cases
|
---|
| 1823 |
|
---|
[416] | 1824 | # split action into parts for fiddlement. nb: there are almost certainly better ways to do this.
|
---|
[422] | 1825 | my @actionbits = split //, $action;
|
---|
[416] | 1826 |
|
---|
| 1827 | # want to notify anyone who has specifically requested notify on *this* type ($action as passed),
|
---|
| 1828 | # on "all static IP types" or "all pool types" (and other last-char-in-type groupings), on eg "all DSL types",
|
---|
| 1829 | # and "all events with this action"
|
---|
| 1830 | my @actionsets = ($action);
|
---|
| 1831 | ##fixme: ick, eww. really gotta find a better way to handle this...
|
---|
| 1832 | push @actionsets, ($actionbits[0].'.'.$actionbits[2],
|
---|
| 1833 | $actionbits[0].$actionbits[1].'.', $actionbits[0].'a') if $action =~ /^.{3}$/;
|
---|
| 1834 |
|
---|
| 1835 | my $mailer = Net::SMTP->new($smtphost, Hello => "ipdb.$domain");
|
---|
| 1836 |
|
---|
| 1837 | # get recip list from db
|
---|
| 1838 | my $sth = $dbh->prepare("SELECT reciplist FROM notify WHERE action=?");
|
---|
| 1839 |
|
---|
[443] | 1840 | my %reciplist;
|
---|
[416] | 1841 | foreach (@actionsets) {
|
---|
[426] | 1842 | $sth->execute($_);
|
---|
[416] | 1843 | ##fixme - need to handle db errors
|
---|
| 1844 | my ($recipsub) = $sth->fetchrow_array;
|
---|
| 1845 | next if !$recipsub;
|
---|
| 1846 | foreach (split(/,/, $recipsub)) {
|
---|
[443] | 1847 | $reciplist{$_}++;
|
---|
[416] | 1848 | }
|
---|
| 1849 | }
|
---|
| 1850 |
|
---|
[443] | 1851 | return if !%reciplist;
|
---|
[420] | 1852 |
|
---|
[443] | 1853 | foreach my $recip (keys %reciplist) {
|
---|
[681] | 1854 | $mailer->mail($smtpsender);
|
---|
[416] | 1855 | $mailer->to($recip);
|
---|
[681] | 1856 | $mailer->data("From: \"$org_name IP Database\" <$smtpsender>\n",
|
---|
[135] | 1857 | "To: $recip\n",
|
---|
[69] | 1858 | "Date: ".strftime("%a, %d %b %Y %H:%M:%S %z",localtime)."\n",
|
---|
| 1859 | "Subject: {IPDB} $subj\n",
|
---|
| 1860 | "X-Mailer: IPDB Notify v".sprintf("%.1d",$IPDB::VERSION)."\n",
|
---|
[417] | 1861 | "Organization: $org_name\n",
|
---|
[69] | 1862 | "\n$message\n");
|
---|
[416] | 1863 | }
|
---|
[66] | 1864 | $mailer->quit;
|
---|
| 1865 | }
|
---|
| 1866 |
|
---|
[4] | 1867 | # Indicates module loaded OK. Required by Perl.
|
---|
| 1868 | 1;
|
---|