[4] | 1 | #!/usr/bin/perl
|
---|
| 2 | # ipdb/cgi-bin/main.cgi
|
---|
[8] | 3 | ###
|
---|
| 4 | # SVN revision info
|
---|
| 5 | # $Date: 2015-12-10 21:49:01 +0000 (Thu, 10 Dec 2015) $
|
---|
| 6 | # SVN revision $Rev: 789 $
|
---|
| 7 | # Last update by $Author: kdeugau $
|
---|
| 8 | ###
|
---|
[417] | 9 | # Copyright (C) 2004-2010 - Kris Deugau
|
---|
[4] | 10 |
|
---|
| 11 | use strict;
|
---|
| 12 | use warnings;
|
---|
| 13 | use CGI::Carp qw(fatalsToBrowser);
|
---|
[517] | 14 | use CGI::Simple;
|
---|
| 15 | use HTML::Template;
|
---|
[4] | 16 | use DBI;
|
---|
| 17 | use POSIX qw(ceil);
|
---|
| 18 | use NetAddr::IP;
|
---|
[582] | 19 | use Frontier::Client;
|
---|
[4] | 20 |
|
---|
| 21 | use Sys::Syslog;
|
---|
| 22 |
|
---|
[417] | 23 | # don't remove! required for GNU/FHS-ish install from tarball
|
---|
| 24 | ##uselib##
|
---|
| 25 |
|
---|
[515] | 26 | use CustIDCK;
|
---|
[417] | 27 | use MyIPDB;
|
---|
| 28 |
|
---|
[431] | 29 | openlog "IPDB","pid","$IPDB::syslog_facility";
|
---|
[4] | 30 |
|
---|
[517] | 31 | ## Environment. Collect some things, process some things, set some things...
|
---|
| 32 |
|
---|
[233] | 33 | # Collect the username from HTTP auth. If undefined, we're in
|
---|
| 34 | # a test environment, or called without a username.
|
---|
[4] | 35 | my $authuser;
|
---|
| 36 | if (!defined($ENV{'REMOTE_USER'})) {
|
---|
| 37 | $authuser = '__temptest';
|
---|
| 38 | } else {
|
---|
| 39 | $authuser = $ENV{'REMOTE_USER'};
|
---|
| 40 | }
|
---|
| 41 |
|
---|
[517] | 42 | # anyone got a better name? :P
|
---|
| 43 | my $thingroot = $ENV{SCRIPT_FILENAME};
|
---|
| 44 | $thingroot =~ s|cgi-bin/main.cgi||;
|
---|
| 45 |
|
---|
[402] | 46 | syslog "debug", "$authuser active, $ENV{'REMOTE_ADDR'}";
|
---|
[4] | 47 |
|
---|
[517] | 48 | ##fixme there *must* be a better order to do things in so this can go back where it was
|
---|
| 49 | # CGI fiddling done here so we can declare %webvar so we can alter $webvar{action}
|
---|
| 50 | # to show the right page on DB errors.
|
---|
| 51 | # Set up the CGI object...
|
---|
| 52 | my $q = new CGI::Simple;
|
---|
| 53 | # ... and get query-string params as well as POST params if necessary
|
---|
| 54 | $q->parse_query_string;
|
---|
| 55 |
|
---|
| 56 | # Convenience; saves changing all references to %webvar
|
---|
| 57 | ##fixme: tweak for handling <select multiple='y' size=3> (list with multiple selection)
|
---|
| 58 | my %webvar = $q->Vars;
|
---|
| 59 |
|
---|
[106] | 60 | # Why not a global DB handle? (And a global statement handle, as well...)
|
---|
| 61 | # Use the connectDB function, otherwise we end up confusing ourselves
|
---|
| 62 | my $ip_dbh;
|
---|
| 63 | my $errstr;
|
---|
[142] | 64 | ($ip_dbh,$errstr) = connectDB_My;
|
---|
[106] | 65 | if (!$ip_dbh) {
|
---|
[517] | 66 | $webvar{action} = "dberr";
|
---|
| 67 | } else {
|
---|
| 68 | initIPDBGlobals($ip_dbh);
|
---|
[106] | 69 | }
|
---|
[4] | 70 |
|
---|
[517] | 71 | # Set up some globals
|
---|
| 72 | $ENV{HTML_TEMPLATE_ROOT} = $thingroot."templates";
|
---|
[233] | 73 |
|
---|
[517] | 74 | my $header = HTML::Template->new(filename => "header.tmpl");
|
---|
| 75 | my $footer = HTML::Template->new(filename => "footer.tmpl");
|
---|
[697] | 76 | my $utilbar = HTML::Template->new(filename => "utilbar.tmpl", loop_context_vars => 1, global_vars => 1);
|
---|
[233] | 77 |
|
---|
[697] | 78 | print "Content-type: text/html\n\n";
|
---|
| 79 |
|
---|
[517] | 80 | $header->param(version => $IPDB::VERSION);
|
---|
| 81 | $header->param(addperm => $IPDBacl{$authuser} =~ /a/);
|
---|
| 82 | $header->param(webpath => $IPDB::webpath);
|
---|
[4] | 83 |
|
---|
[697] | 84 | $utilbar->param(webpath => $IPDB::webpath);
|
---|
[4] | 85 |
|
---|
[697] | 86 | print $header->output;
|
---|
| 87 |
|
---|
[760] | 88 | ##fixme: whine and complain when the user is not present in the ACL hash above
|
---|
[697] | 89 |
|
---|
[4] | 90 | #main()
|
---|
[517] | 91 | my $aclerr;
|
---|
[4] | 92 |
|
---|
| 93 | if(!defined($webvar{action})) {
|
---|
[517] | 94 | $webvar{action} = "index"; #shuts up the warnings.
|
---|
[4] | 95 | }
|
---|
| 96 |
|
---|
[517] | 97 | my $page;
|
---|
| 98 | if (-e "$ENV{HTML_TEMPLATE_ROOT}/$webvar{action}.tmpl") {
|
---|
[553] | 99 | $page = HTML::Template->new(filename => "$webvar{action}.tmpl", loop_context_vars => 1, global_vars => 1);
|
---|
[517] | 100 | } else {
|
---|
| 101 | $page = HTML::Template->new(filename => "dunno.tmpl");
|
---|
| 102 | }
|
---|
| 103 |
|
---|
[4] | 104 | if($webvar{action} eq 'index') {
|
---|
| 105 | showSummary();
|
---|
[233] | 106 | } elsif ($webvar{action} eq 'addmaster') {
|
---|
| 107 | if ($IPDBacl{$authuser} !~ /a/) {
|
---|
[517] | 108 | $aclerr = 'addmaster';
|
---|
[233] | 109 | }
|
---|
[582] | 110 |
|
---|
| 111 | # Retrieve the list of DNS locations if we've got a place to grab them from
|
---|
| 112 | if ($IPDB::rpc_url) {
|
---|
| 113 | my %rpcargs = (
|
---|
| 114 | rpcuser => $authuser,
|
---|
| 115 | group => 1, # bleh
|
---|
| 116 | defloc => '',
|
---|
| 117 | );
|
---|
[623] | 118 | my $result = IPDB::_rpc('getLocDropdown', %rpcargs);
|
---|
[582] | 119 | $page->param(loclist => $result);
|
---|
| 120 | }
|
---|
| 121 |
|
---|
[4] | 122 | } elsif ($webvar{action} eq 'newmaster') {
|
---|
| 123 |
|
---|
[233] | 124 | if ($IPDBacl{$authuser} !~ /a/) {
|
---|
[517] | 125 | $aclerr = 'addmaster';
|
---|
[233] | 126 | } else {
|
---|
| 127 | my $cidr = new NetAddr::IP $webvar{cidr};
|
---|
[517] | 128 | $page->param(cidr => "$cidr");
|
---|
[4] | 129 |
|
---|
[582] | 130 | my ($code,$msg) = addMaster($ip_dbh, $webvar{cidr}, (vrf => $webvar{vrf}, rdns => $webvar{rdns},
|
---|
| 131 | rwhois => $webvar{rwhois}, defloc => $webvar{loc}, user => $authuser) );
|
---|
[4] | 132 |
|
---|
[371] | 133 | if ($code eq 'FAIL') {
|
---|
[320] | 134 | syslog "err", "Could not add master block '$webvar{cidr}' to database: '$msg'";
|
---|
[517] | 135 | $page->param(err => $msg);
|
---|
[233] | 136 | } else {
|
---|
[624] | 137 | $page->param(parent => $msg);
|
---|
[582] | 138 | if ($code eq 'WARN') {
|
---|
[624] | 139 | $IPDB::errstr =~ s/\n\n/<br>\n/g;
|
---|
| 140 | $IPDB::errstr =~ s/:\n/:<br>\n/g;
|
---|
| 141 | $page->param(warn => $IPDB::errstr);
|
---|
[582] | 142 | }
|
---|
[233] | 143 | syslog "info", "$authuser added master block $webvar{cidr}";
|
---|
| 144 | }
|
---|
[4] | 145 |
|
---|
[233] | 146 | } # ACL check
|
---|
| 147 |
|
---|
[4] | 148 | } # end add new master
|
---|
| 149 |
|
---|
[567] | 150 | elsif ($webvar{action} eq 'showsubs') {
|
---|
| 151 | showSubs();
|
---|
| 152 | }
|
---|
| 153 |
|
---|
[4] | 154 | elsif($webvar{action} eq 'listpool') {
|
---|
[528] | 155 | showPool();
|
---|
[4] | 156 | }
|
---|
| 157 |
|
---|
| 158 | # Not modified or added; just shuffled
|
---|
| 159 | elsif($webvar{action} eq 'assign') {
|
---|
| 160 | assignBlock();
|
---|
| 161 | }
|
---|
| 162 | elsif($webvar{action} eq 'confirm') {
|
---|
| 163 | confirmAssign();
|
---|
| 164 | }
|
---|
| 165 | elsif($webvar{action} eq 'insert') {
|
---|
| 166 | insertAssign();
|
---|
| 167 | }
|
---|
| 168 | elsif($webvar{action} eq 'edit') {
|
---|
| 169 | edit();
|
---|
| 170 | }
|
---|
| 171 | elsif($webvar{action} eq 'update') {
|
---|
| 172 | update();
|
---|
| 173 | }
|
---|
[702] | 174 | elsif($webvar{action} eq 'split') {
|
---|
| 175 | prepSplit();
|
---|
| 176 | }
|
---|
| 177 | elsif($webvar{action} eq 'dosplit') {
|
---|
| 178 | doSplit();
|
---|
| 179 | }
|
---|
[717] | 180 | elsif($webvar{action} eq 'merge') {
|
---|
| 181 | prepMerge();
|
---|
| 182 | }
|
---|
[720] | 183 | elsif($webvar{action} eq 'confmerge') {
|
---|
| 184 | confMerge();
|
---|
| 185 | }
|
---|
[751] | 186 | elsif($webvar{action} eq 'domerge') {
|
---|
| 187 | doMerge();
|
---|
| 188 | }
|
---|
[4] | 189 | elsif($webvar{action} eq 'delete') {
|
---|
| 190 | remove();
|
---|
| 191 | }
|
---|
| 192 | elsif($webvar{action} eq 'finaldelete') {
|
---|
| 193 | finalDelete();
|
---|
| 194 | }
|
---|
[397] | 195 | elsif ($webvar{action} eq 'nodesearch') {
|
---|
[519] | 196 | my $nodelist = getNodeList($ip_dbh);
|
---|
| 197 | $page->param(nodelist => $nodelist);
|
---|
[517] | 198 | }
|
---|
[397] | 199 |
|
---|
[517] | 200 | # DB failure. Can't do much here, really.
|
---|
| 201 | elsif ($webvar{action} eq 'dberr') {
|
---|
| 202 | $page->param(errmsg => $errstr);
|
---|
[397] | 203 | }
|
---|
| 204 |
|
---|
[517] | 205 | # Default is an error. It shouldn't be possible to get here unless you're
|
---|
| 206 | # randomly feeding in values for webvar{action}.
|
---|
[4] | 207 | else {
|
---|
| 208 | my $rnd = rand 500;
|
---|
| 209 | my $boing = sprintf("%.2f", rand 500);
|
---|
[517] | 210 | my @excuses = (
|
---|
| 211 | "Aether cloudy. Ask again later about $webvar{action}.",
|
---|
| 212 | "The gods are unhappy with your sacrificial $webvar{action}.",
|
---|
| 213 | "Because one of $webvar{action}'s legs are both the same",
|
---|
| 214 | "<b>wibble</b><br>Can't $webvar{action}, the grue will get me!<br>Can't $webvar{action}, the grue will get me!",
|
---|
| 215 | "Hey, man, you've had your free $webvar{action}. Next one's gonna... <i>cost</i>....",
|
---|
| 216 | "I ain't done $webvar{action}",
|
---|
| 217 | "Oooo, look! A flying $webvar{action}!",
|
---|
| 218 | "$webvar{action} too evil, avoiding.",
|
---|
| 219 | "Rocks fall, $webvar{action} dies.",
|
---|
| 220 | "Bit bucket must be emptied before I can $webvar{action}..."
|
---|
| 221 | );
|
---|
| 222 | $page->param(dunno => $excuses[$rnd/50.0]);
|
---|
[4] | 223 | }
|
---|
[111] | 224 | ## Finally! Done with that NASTY "case" emulation!
|
---|
[4] | 225 |
|
---|
| 226 |
|
---|
[517] | 227 | # Switch to a different template if we've tripped on an ACL error.
|
---|
| 228 | # Note that this should only be exercised in development, when
|
---|
| 229 | # deeplinked, or when being attacked; normal ACL handling should
|
---|
| 230 | # remove the links a user is not allowed to click on.
|
---|
| 231 | if ($aclerr) {
|
---|
| 232 | $page = HTML::Template->new(filename => "aclerror.tmpl");
|
---|
| 233 | $page->param(ipdbfunc => $aclmsg{$aclerr});
|
---|
| 234 | }
|
---|
[4] | 235 |
|
---|
[106] | 236 | # Clean up IPDB globals, DB handle, etc.
|
---|
[111] | 237 | finish($ip_dbh);
|
---|
[199] | 238 |
|
---|
[517] | 239 | ## Do all our printing here so we can generate errors and stick them into the slots in the templates.
|
---|
[199] | 240 |
|
---|
[517] | 241 | # can't do this yet, too many blowups
|
---|
| 242 | #print "Content-type: text/html\n\n", $header->output;
|
---|
| 243 | $page->param(webpath => $IPDB::webpath);
|
---|
[697] | 244 | print $utilbar->output;
|
---|
[517] | 245 | print $page->output;
|
---|
| 246 |
|
---|
| 247 | # include the admin tools link in the output?
|
---|
| 248 | $footer->param(adminlink => ($IPDBacl{$authuser} =~ /A/));
|
---|
| 249 | $footer->param(webpath => $IPDB::webpath);
|
---|
| 250 | print $footer->output;
|
---|
| 251 |
|
---|
[106] | 252 | # Just in case something waaaayyy down isn't in place
|
---|
| 253 | # properly... we exit explicitly.
|
---|
[517] | 254 | exit 0;
|
---|
[4] | 255 |
|
---|
| 256 |
|
---|
| 257 | # Initial display: Show master blocks with total allocated subnets, total free subnets
|
---|
[118] | 258 | sub showSummary {
|
---|
[523] | 259 | my $masterlist = listSummary($ip_dbh);
|
---|
| 260 | $page->param(masterlist => $masterlist);
|
---|
[106] | 261 |
|
---|
[517] | 262 | $page->param(addmaster => ($IPDBacl{$authuser} =~ /a/) );
|
---|
[4] | 263 | } # showSummary
|
---|
| 264 |
|
---|
| 265 |
|
---|
[566] | 266 | # Display blocks immediately within a given parent
|
---|
| 267 | sub showSubs {
|
---|
[682] | 268 | # Which layout?
|
---|
| 269 | if ($IPDB::sublistlayout == 2) {
|
---|
| 270 |
|
---|
| 271 | # 2-part layout; mixed containers and end-use allocations and free blocks.
|
---|
| 272 | # Containers have a second line for the subblock metadata.
|
---|
| 273 | # We need to load an alternate template for this case.
|
---|
| 274 | $page = HTML::Template->new(filename => "showsubs2.tmpl", loop_context_vars => 1, global_vars => 1);
|
---|
| 275 |
|
---|
| 276 | $page->param(maydel => ($IPDBacl{$authuser} =~ /d/));
|
---|
| 277 |
|
---|
| 278 | my $sublist = listSubs($ip_dbh, parent => $webvar{parent});
|
---|
| 279 | $page->param(sublist => $sublist);
|
---|
| 280 |
|
---|
| 281 | } else {
|
---|
| 282 |
|
---|
[685] | 283 | # 3-part layout; containers, end-use allocations, and free blocks
|
---|
[682] | 284 |
|
---|
| 285 | my $contlist = listContainers($ip_dbh, parent => $webvar{parent});
|
---|
| 286 | $page->param(contlist => $contlist);
|
---|
| 287 |
|
---|
| 288 | my $alloclist = listAllocations($ip_dbh, parent => $webvar{parent});
|
---|
| 289 | $page->param(alloclist => $alloclist);
|
---|
| 290 |
|
---|
| 291 | # only show "delete" button if we have no container or usage allocations
|
---|
| 292 | $page->param(maydel => ($IPDBacl{$authuser} =~ /d/) && !(@$contlist || @$alloclist));
|
---|
| 293 |
|
---|
| 294 | }
|
---|
| 295 |
|
---|
| 296 | # Common elements
|
---|
[627] | 297 | my $pinfo = getBlockData($ip_dbh, $webvar{parent});
|
---|
| 298 |
|
---|
[685] | 299 | ##fixme: do we add a wrapper to not show the edit link for master blocks?
|
---|
| 300 | #$page->param(editme => 1) unless $pinfo->{type} ne 'mm';
|
---|
| 301 |
|
---|
[697] | 302 | my $crumbs = getBreadCrumbs($ip_dbh, $pinfo->{parent_id});
|
---|
| 303 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 304 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 305 |
|
---|
[685] | 306 | $page->param(self_id => $webvar{parent});
|
---|
[627] | 307 | $page->param(block => $pinfo->{block});
|
---|
[566] | 308 | $page->param(mayadd => ($IPDBacl{$authuser} =~ /a/));
|
---|
[4] | 309 |
|
---|
[627] | 310 | my $flist = listFree($ip_dbh, parent => $webvar{parent});
|
---|
[566] | 311 | $page->param(freelist => $flist);
|
---|
| 312 | } # showSubs
|
---|
[4] | 313 |
|
---|
| 314 |
|
---|
| 315 | # List the IPs used in a pool
|
---|
[528] | 316 | sub showPool {
|
---|
[4] | 317 |
|
---|
[631] | 318 | my $poolinfo = getBlockData($ip_dbh, $webvar{pool});
|
---|
| 319 | my $cidr = new NetAddr::IP $poolinfo->{block};
|
---|
[771] | 320 | $page->param(vlan => $poolinfo->{vlan});
|
---|
[4] | 321 |
|
---|
[697] | 322 | # Tree navigation
|
---|
| 323 | my $crumbs = getBreadCrumbs($ip_dbh, $poolinfo->{parent_id});
|
---|
| 324 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 325 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 326 |
|
---|
[631] | 327 | $page->param(block => $cidr);
|
---|
[517] | 328 | $page->param(netip => $cidr->addr);
|
---|
| 329 | $cidr++;
|
---|
| 330 | $page->param(gate => $cidr->addr);
|
---|
| 331 | $cidr--; $cidr--;
|
---|
| 332 | $page->param(bcast => $cidr->addr);
|
---|
| 333 | $page->param(mask => $cidr->mask);
|
---|
[157] | 334 |
|
---|
[528] | 335 | $page->param(disptype => $disp_alloctypes{$poolinfo->{type}});
|
---|
| 336 | $page->param(city => $poolinfo->{city});
|
---|
[517] | 337 |
|
---|
[157] | 338 | # Only display net/gw/bcast if it's a "real" netblock and not a PPP(oE) lunacy
|
---|
[528] | 339 | $page->param(realblock => $poolinfo->{type} =~ /^.d$/);
|
---|
[4] | 340 |
|
---|
| 341 | # probably have to add an "edit IP allocation" link here somewhere.
|
---|
| 342 |
|
---|
[528] | 343 | my $plist = listPool($ip_dbh, $webvar{pool});
|
---|
| 344 | # technically slightly more efficient to check the ACL in an if () once outside the foreach
|
---|
| 345 | foreach (@{$plist}) {
|
---|
| 346 | $$_{maydel} = $IPDBacl{$authuser} =~ /d/;
|
---|
[4] | 347 | }
|
---|
[528] | 348 | $page->param(poolips => $plist);
|
---|
| 349 | } # end showPool
|
---|
[4] | 350 |
|
---|
| 351 |
|
---|
[106] | 352 | # Show "Add new allocation" page. Note that the actual page may
|
---|
| 353 | # be one of two templates, and the lists come from the database.
|
---|
[4] | 354 | sub assignBlock {
|
---|
| 355 |
|
---|
[233] | 356 | if ($IPDBacl{$authuser} !~ /a/) {
|
---|
[517] | 357 | $aclerr = 'addblock';
|
---|
[233] | 358 | return;
|
---|
| 359 | }
|
---|
| 360 |
|
---|
[517] | 361 | # hack pthbttt eww
|
---|
[633] | 362 | $webvar{parent} = 0 if !$webvar{parent};
|
---|
[517] | 363 | $webvar{block} = '' if !$webvar{block};
|
---|
[21] | 364 |
|
---|
[575] | 365 | $page->param(allocfrom => $webvar{block}); # fb-assign flag, if block is set, we're in fb-assign
|
---|
[517] | 366 |
|
---|
[633] | 367 | if ($webvar{fbid} || $webvar{fbtype}) {
|
---|
[575] | 368 |
|
---|
| 369 | # Common case, according to reported usage. Block to assign is specified.
|
---|
[21] | 370 | my $block = new NetAddr::IP $webvar{block};
|
---|
[187] | 371 |
|
---|
[675] | 372 | my ($rdns,$cached) = getBlockRDNS($ip_dbh, id => $webvar{parent}, type => $webvar{fbtype}, user => $authuser);
|
---|
[585] | 373 | $page->param(rdns => $rdns) if $rdns;
|
---|
[633] | 374 | $page->param(parent => $webvar{parent});
|
---|
| 375 | $page->param(fbid => $webvar{fbid});
|
---|
[675] | 376 | # visual flag that we're working IPDB-local, not off more authoritative data in dnsadmin
|
---|
| 377 | $page->param(cached => $cached);
|
---|
[585] | 378 |
|
---|
[691] | 379 | my $pinfo = getBlockData($ip_dbh, $webvar{parent});
|
---|
| 380 | # seems reasonable that a new allocation would share a VRF with its parent
|
---|
| 381 | $page->param(pvrf => $pinfo->{vrf});
|
---|
| 382 |
|
---|
[697] | 383 | # Tree navigation
|
---|
| 384 | my $crumbs = getBreadCrumbs($ip_dbh, $webvar{parent});
|
---|
| 385 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 386 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 387 |
|
---|
[575] | 388 | $webvar{fbtype} = '' if !$webvar{fbtype};
|
---|
| 389 | if ($webvar{fbtype} eq 'i') {
|
---|
[633] | 390 | my $ipinfo = getBlockData($ip_dbh, $webvar{block}, 'i');
|
---|
[575] | 391 | $page->param(
|
---|
| 392 | fbip => 1,
|
---|
[633] | 393 | block => $ipinfo->{block},
|
---|
[575] | 394 | fbdisptype => $list_alloctypes{$ipinfo->{type}},
|
---|
| 395 | type => $ipinfo->{type},
|
---|
[633] | 396 | allocfrom => $pinfo->{block},
|
---|
[575] | 397 | );
|
---|
[187] | 398 | } else {
|
---|
[529] | 399 | # get "primary" alloctypes, since these are all that can correctly be assigned if we're in this branch
|
---|
[575] | 400 | my $tlist = getTypeList($ip_dbh, 'n');
|
---|
[529] | 401 | $tlist->[0]->{sel} = 1;
|
---|
[575] | 402 | $page->param(typelist => $tlist, block => $block);
|
---|
[106] | 403 | }
|
---|
[575] | 404 |
|
---|
[21] | 405 | } else {
|
---|
[575] | 406 |
|
---|
| 407 | # Uncommon case, according to reported usage. Block to assign needs to be found based on criteria.
|
---|
[541] | 408 | my $mlist = getMasterList($ip_dbh, 'c');
|
---|
| 409 | $page->param(masterlist => $mlist);
|
---|
[517] | 410 |
|
---|
| 411 | my @pops;
|
---|
[633] | 412 | foreach my $pop (@citylist) {
|
---|
[517] | 413 | my %row = (pop => $pop);
|
---|
| 414 | push (@pops, \%row);
|
---|
[92] | 415 | }
|
---|
[517] | 416 | $page->param(pops => \@pops);
|
---|
| 417 |
|
---|
[529] | 418 | # get all standard alloctypes
|
---|
| 419 | my $tlist = getTypeList($ip_dbh, 'a');
|
---|
| 420 | $tlist->[0]->{sel} = 1;
|
---|
| 421 | $page->param(typelist => $tlist);
|
---|
[21] | 422 | }
|
---|
[517] | 423 |
|
---|
| 424 | my @cities;
|
---|
[92] | 425 | foreach my $city (@citylist) {
|
---|
[517] | 426 | my %row = (city => $city);
|
---|
| 427 | push (@cities, \%row);
|
---|
[92] | 428 | }
|
---|
[517] | 429 | $page->param(citylist => \@cities);
|
---|
[4] | 430 |
|
---|
[397] | 431 | ## node hack
|
---|
[530] | 432 | my $nlist = getNodeList($ip_dbh);
|
---|
| 433 | $page->param(nodelist => $nlist);
|
---|
[397] | 434 | ## end node hack
|
---|
| 435 |
|
---|
[782] | 436 | $page->param(nocling => $IPDBacl{$authuser} =~ /s/);
|
---|
[284] | 437 |
|
---|
[4] | 438 | } # assignBlock
|
---|
| 439 |
|
---|
| 440 |
|
---|
| 441 | # Take info on requested IP assignment and see what we can provide.
|
---|
| 442 | sub confirmAssign {
|
---|
[233] | 443 | if ($IPDBacl{$authuser} !~ /a/) {
|
---|
[517] | 444 | $aclerr = 'addblock';
|
---|
[233] | 445 | return;
|
---|
| 446 | }
|
---|
[4] | 447 |
|
---|
| 448 | my $cidr;
|
---|
[692] | 449 | my $resv; # Reserved for expansion.
|
---|
[4] | 450 | my $alloc_from;
|
---|
[633] | 451 | my $fbid = $webvar{fbid};
|
---|
| 452 | my $p_id = $webvar{parent};
|
---|
[4] | 453 |
|
---|
| 454 | # Going to manually validate some items.
|
---|
| 455 | # custid and city are automagic.
|
---|
[111] | 456 | return if !validateInput();
|
---|
[4] | 457 |
|
---|
[665] | 458 | # make sure this is defined
|
---|
| 459 | $webvar{fbassign} = 'n' if !$webvar{fbassign};
|
---|
| 460 |
|
---|
[4] | 461 | # Several different cases here.
|
---|
| 462 | # Static IP vs netblock
|
---|
| 463 | # + Different flavours of static IP
|
---|
| 464 | # + Different flavours of netblock
|
---|
| 465 |
|
---|
[575] | 466 | if ($webvar{alloctype} =~ /^.i$/ && $webvar{fbassign} ne 'y') {
|
---|
[665] | 467 | if (!$webvar{pop}) {
|
---|
| 468 | $page->param(err => "Please select a location/POP site to allocate from.");
|
---|
| 469 | return;
|
---|
| 470 | }
|
---|
[532] | 471 | my $plist = getPoolSelect($ip_dbh, $webvar{alloctype}, $webvar{pop});
|
---|
[517] | 472 | $page->param(staticip => 1);
|
---|
[532] | 473 | $page->param(poollist => $plist) if $plist;
|
---|
[4] | 474 | $cidr = "Single static IP";
|
---|
[517] | 475 | ##fixme: need to handle "no available pools"
|
---|
[4] | 476 |
|
---|
| 477 | } else { # end show pool options
|
---|
[21] | 478 |
|
---|
[533] | 479 | if ($webvar{fbassign} && $webvar{fbassign} eq 'y') {
|
---|
[697] | 480 |
|
---|
| 481 | # Tree navigation
|
---|
| 482 | my $crumbs = getBreadCrumbs($ip_dbh, $webvar{parent});
|
---|
| 483 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 484 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 485 |
|
---|
[21] | 486 | $cidr = new NetAddr::IP $webvar{block};
|
---|
[575] | 487 | $alloc_from = new NetAddr::IP $webvar{allocfrom};
|
---|
[21] | 488 | $webvar{maskbits} = $cidr->masklen;
|
---|
[692] | 489 | # Some additional checks are needed for reserving free space
|
---|
| 490 | if ($webvar{reserve}) {
|
---|
| 491 | if ($cidr == $alloc_from) {
|
---|
| 492 | # We could still squirm and fiddle to try to find a way to reserve space, but the storage model for
|
---|
| 493 | # IPDB means that all continguous free space is kept in the smallest number of strict CIDR netblocks
|
---|
| 494 | # possible. (In theory.) If the request and the freeblock are the same, it is theoretically impossible
|
---|
| 495 | # to reserve an equivalent-sized block either ahead or behind the requested one, because the pair
|
---|
| 496 | # together would never be a strict CIDR block.
|
---|
| 497 | $page->param(warning => "Can't reserve space for expansion; free block and requested allocation are the same.");
|
---|
| 498 | delete $webvar{reserve};
|
---|
| 499 | } else {
|
---|
| 500 | # Find which new free block will match the reqested block.
|
---|
| 501 | # Take the requested mask, shift by one
|
---|
| 502 | my $tmpmask = $webvar{maskbits};
|
---|
| 503 | $tmpmask--;
|
---|
| 504 | # find the subnets with that mask in the selected free block
|
---|
| 505 | my @pieces = $alloc_from->split($tmpmask);
|
---|
| 506 | foreach my $slice (@pieces) {
|
---|
| 507 | if ($slice->contains($cidr)) {
|
---|
| 508 | # For the subnet that contains the requested block, split that in two,
|
---|
| 509 | # and flag/cache the one that's not the requested block.
|
---|
| 510 | my @bits = $slice->split($webvar{maskbits});
|
---|
| 511 | if ($bits[0] == $cidr) {
|
---|
| 512 | $resv = $bits[1];
|
---|
| 513 | } else {
|
---|
| 514 | $resv = $bits[0];
|
---|
| 515 | }
|
---|
| 516 | }
|
---|
| 517 | }
|
---|
| 518 | }
|
---|
| 519 | } # reserve block check
|
---|
| 520 |
|
---|
[21] | 521 | } else { # done with direct freeblocks assignment
|
---|
| 522 |
|
---|
| 523 | if (!$webvar{maskbits}) {
|
---|
[517] | 524 | $page->param(err => "Please specify a CIDR mask length.");
|
---|
[111] | 525 | return;
|
---|
[21] | 526 | }
|
---|
[533] | 527 |
|
---|
| 528 | ##fixme ick, ew, bleh. gotta handle the failure message generation better. push it into findAllocateFrom()?
|
---|
| 529 | my $failmsg = "No suitable free block found.<br>\n";
|
---|
[187] | 530 | if ($webvar{alloctype} eq 'rm') {
|
---|
[533] | 531 | $failmsg .= "We do not have a free routeable block of that size.<br>\n".
|
---|
| 532 | "You will have to either route a set of smaller netblocks or a single smaller netblock.";
|
---|
[4] | 533 | } else {
|
---|
[214] | 534 | if ($webvar{alloctype} =~ /^.[pc]$/) {
|
---|
[533] | 535 | $failmsg .= "You will have to route another superblock from one of the<br>\n".
|
---|
| 536 | "master blocks or chose a smaller block size for the pool.";
|
---|
[21] | 537 | } else {
|
---|
[517] | 538 | if (!$webvar{pop}) {
|
---|
| 539 | $page->param(err => 'Please select a POP to route the block from/through.');
|
---|
| 540 | return;
|
---|
| 541 | }
|
---|
[533] | 542 | $failmsg .= "You will have to route another superblock to $webvar{pop}<br>\n".
|
---|
[692] | 543 | "from one of the master blocks";
|
---|
| 544 | if ($webvar{reserve}) {
|
---|
| 545 | $failmsg .= ', choose a smaller blocksize, or uncheck "Reserve space for expansion".';
|
---|
| 546 | } else {
|
---|
| 547 | $failmsg .= " or chose a smaller blocksize.";
|
---|
| 548 | }
|
---|
[21] | 549 | }
|
---|
[4] | 550 | }
|
---|
[533] | 551 |
|
---|
[692] | 552 | # if requesting extra space "reserved for expansion", we need to find a free
|
---|
| 553 | # block at least double the size of the request.
|
---|
| 554 | if ($webvar{reserve}) {
|
---|
| 555 | $webvar{maskbits}--;
|
---|
| 556 | }
|
---|
| 557 |
|
---|
[633] | 558 | ($fbid,$cidr,$p_id) = findAllocateFrom($ip_dbh, $webvar{maskbits}, $webvar{alloctype},
|
---|
| 559 | $webvar{city}, $webvar{pop}, (master => $webvar{allocfrom}, allowpriv => $webvar{allowpriv}) );
|
---|
[533] | 560 | if (!$cidr) {
|
---|
[517] | 561 | $page->param(err => $failmsg);
|
---|
[111] | 562 | return;
|
---|
[21] | 563 | }
|
---|
[533] | 564 | $cidr = new NetAddr::IP $cidr;
|
---|
[575] | 565 |
|
---|
| 566 | $alloc_from = "$cidr";
|
---|
[692] | 567 |
|
---|
| 568 | # when autofinding a block to allocate from, use the first piece of the found
|
---|
| 569 | # block for the allocation, and the next piece for the "reserved for expansion".
|
---|
| 570 | if ($webvar{reserve}) {
|
---|
| 571 | # reset the mask to the real requested one, now that we've got a
|
---|
| 572 | # block large enough for the request plus reserve
|
---|
| 573 | $webvar{maskbits}++;
|
---|
| 574 | ($cidr,$resv) = $cidr->split($webvar{maskbits});
|
---|
| 575 | }
|
---|
| 576 |
|
---|
[575] | 577 | # If the block to be allocated is smaller than the one we found,
|
---|
| 578 | # figure out the "real" block to be allocated.
|
---|
| 579 | if ($cidr->masklen() ne $webvar{maskbits}) {
|
---|
| 580 | my $maskbits = $cidr->masklen();
|
---|
| 581 | my @subblocks;
|
---|
| 582 | while ($maskbits++ < $webvar{maskbits}) {
|
---|
| 583 | @subblocks = $cidr->split($maskbits);
|
---|
| 584 | }
|
---|
| 585 | $cidr = $subblocks[0];
|
---|
| 586 | }
|
---|
[21] | 587 | } # check for freeblocks assignment or IPDB-controlled assignment
|
---|
[4] | 588 |
|
---|
[674] | 589 | # Generate the IP list for the new allocation in case someone wants to set per-IP rDNS right away.
|
---|
| 590 | # We don't do this on the previous page because we don't know how big a block or even what IP range
|
---|
| 591 | # it's for (if following the "normal" allocation process)
|
---|
| 592 | if ($IPDBacl{$authuser} =~ /c/
|
---|
| 593 | && $cidr->masklen != $cidr->bits
|
---|
[780] | 594 | && ($cidr->bits - $cidr->masklen) <= $IPDB::maxrevlist
|
---|
| 595 | # config flag for "all block types" OR "not-a-pool-or-IP type"
|
---|
| 596 | && ($IPDB::revlistalltypes || $webvar{alloctype} !~ /^.[dpi]/)
|
---|
| 597 | # safety against trying to retrieve and display more than 1k (10 bits, /22 v4) worth of individual IPs
|
---|
| 598 | # ever. If you really need to manage a long list of IPs like that all in one place, you can use the DNS
|
---|
| 599 | # management tool. Even a /26 is a bit much, really.
|
---|
| 600 | && ($cidr->bits - $cidr->masklen) <= 10
|
---|
[674] | 601 | # do we want to allow v6 at all?
|
---|
| 602 | #&& ! $cidr->{isv6}
|
---|
| 603 | ) {
|
---|
| 604 | my @list;
|
---|
| 605 | foreach my $ip (@{$cidr->splitref()}) {
|
---|
| 606 | my %row;
|
---|
| 607 | $row{r_ip} = $ip->addr;
|
---|
| 608 | $row{iphost} = '';
|
---|
| 609 | push @list, \%row;
|
---|
| 610 | }
|
---|
| 611 | $page->param(r_iplist => \@list);
|
---|
| 612 | # We don't use this here, because these IPs should already be bare.
|
---|
| 613 | # ... or should we be paranoid? Make it a config option?
|
---|
| 614 | #getRDNSbyIP($ip_dbh, type => $webvar{alloctype}, range => "$cidr", user => $authuser) );
|
---|
| 615 | }
|
---|
[157] | 616 | } # if ($webvar{alloctype} =~ /^.i$/)
|
---|
[4] | 617 |
|
---|
[397] | 618 | ## node hack
|
---|
| 619 | if ($webvar{node} && $webvar{node} ne '-') {
|
---|
[530] | 620 | my $nodename = getNodeName($ip_dbh, $webvar{node});
|
---|
[517] | 621 | $page->param(nodename => $nodename);
|
---|
| 622 | $page->param(nodeid => $webvar{node});
|
---|
[397] | 623 | }
|
---|
| 624 | ## end node hack
|
---|
| 625 |
|
---|
[760] | 626 | # flag DNS info if we can't publish the entry remotely
|
---|
| 627 | my $pinfo = getBlockData($ip_dbh, $webvar{parent});
|
---|
| 628 | $page->param(dnslocal => 1) unless ($pinfo->{revpartial} || $pinfo->{revavail});
|
---|
| 629 |
|
---|
[692] | 630 | # reserve for expansion
|
---|
| 631 | $page->param(reserve => $webvar{reserve});
|
---|
| 632 | # probably just preventing a little log noise doing this; could just set the param
|
---|
| 633 | # all the time since it won't be shown if the reserve param above isn't set.
|
---|
| 634 | # if ($webvar{reserve}) {
|
---|
| 635 | $page->param(resvblock => $resv);
|
---|
| 636 | # }
|
---|
| 637 |
|
---|
[4] | 638 | # Stick in the allocation data
|
---|
[517] | 639 | $page->param(alloc_type => $webvar{alloctype});
|
---|
| 640 | $page->param(typefull => $q->escapeHTML($disp_alloctypes{$webvar{alloctype}}));
|
---|
| 641 | $page->param(alloc_from => $alloc_from);
|
---|
[633] | 642 | $page->param(parent => $p_id);
|
---|
| 643 | $page->param(fbid => $fbid);
|
---|
[517] | 644 | $page->param(cidr => $cidr);
|
---|
[585] | 645 | $page->param(rdns => $webvar{rdns});
|
---|
[691] | 646 | $page->param(vrf => $webvar{vrf});
|
---|
| 647 | $page->param(vlan => $webvar{vlan});
|
---|
[517] | 648 | $page->param(city => $q->escapeHTML($webvar{city}));
|
---|
| 649 | $page->param(custid => $webvar{custid});
|
---|
| 650 | $page->param(circid => $q->escapeHTML($webvar{circid}));
|
---|
| 651 | $page->param(desc => $q->escapeHTML($webvar{desc}));
|
---|
[4] | 652 |
|
---|
[517] | 653 | ##fixme: find a way to have the displayed copy have <br> substitutions
|
---|
| 654 | # for newlines, and the <input> value have either encoded or bare newlines.
|
---|
| 655 | # Also applies to privdata.
|
---|
| 656 | $page->param(notes => $q->escapeHTML($webvar{notes},'y'));
|
---|
| 657 |
|
---|
[284] | 658 | # Check to see if user is allowed to do anything with sensitive data
|
---|
[782] | 659 | if ($IPDBacl{$authuser} =~ /s/) {
|
---|
| 660 | $page->param(nocling => 1);
|
---|
| 661 | $page->param(privdata => $q->escapeHTML($webvar{privdata},'y'));
|
---|
[517] | 662 |
|
---|
[782] | 663 | $page->param(backupfields => $webvar{backupfields});
|
---|
| 664 | $page->param(bkbrand => $webvar{bkbrand});
|
---|
| 665 | $page->param(bkmodel => $webvar{bkmodel});
|
---|
| 666 | $page->param(bktype => $webvar{bktype});
|
---|
| 667 | $page->param(bksrc => $webvar{bksrc});
|
---|
| 668 | $page->param(bkuser => $webvar{bkuser});
|
---|
| 669 | # these two could use virtually any character
|
---|
| 670 | $page->param(bkvpass => $q->escapeHTML($webvar{bkvpass}));
|
---|
| 671 | $page->param(bkepass => $q->escapeHTML($webvar{bkepass}));
|
---|
| 672 | $page->param(bkport => $webvar{bkport});
|
---|
| 673 | }
|
---|
| 674 |
|
---|
[517] | 675 | # Yay! This now has it's very own little home.
|
---|
| 676 | $page->param(billinguser => $webvar{userid})
|
---|
[299] | 677 | if $webvar{userid};
|
---|
[284] | 678 |
|
---|
[517] | 679 | ##fixme: this is only needed iff confirm.tmpl and
|
---|
| 680 | # confirmRemove.tmpl are merged (quite possible, just
|
---|
| 681 | # a little tedious)
|
---|
| 682 | $page->param(action => "insert");
|
---|
[284] | 683 |
|
---|
[4] | 684 | } # end confirmAssign
|
---|
| 685 |
|
---|
| 686 |
|
---|
| 687 | # Do the work of actually inserting a block in the database.
|
---|
| 688 | sub insertAssign {
|
---|
[233] | 689 | if ($IPDBacl{$authuser} !~ /a/) {
|
---|
[517] | 690 | $aclerr = 'addblock';
|
---|
[233] | 691 | return;
|
---|
| 692 | }
|
---|
[4] | 693 | # Some things are done more than once.
|
---|
[111] | 694 | return if !validateInput();
|
---|
[4] | 695 |
|
---|
[782] | 696 | ##fixme: permission check
|
---|
[284] | 697 | if (!defined($webvar{privdata})) {
|
---|
| 698 | $webvar{privdata} = '';
|
---|
| 699 | }
|
---|
[575] | 700 |
|
---|
[106] | 701 | # $code is "success" vs "failure", $msg contains OK for a
|
---|
| 702 | # successful netblock allocation, the IP allocated for static
|
---|
| 703 | # IP, or the error message if an error occurred.
|
---|
[517] | 704 |
|
---|
[677] | 705 | ##fixme: consider just passing \%webvar to allocateBlock()?
|
---|
| 706 | # collect per-IP rDNS fields. only copy over the ones that actually have something in them.
|
---|
| 707 | my %iprev;
|
---|
| 708 | foreach (keys %webvar) {
|
---|
| 709 | $iprev{$_} = $webvar{$_} if /host_[\d.a-fA-F:]+/ && $webvar{$_};
|
---|
| 710 | }
|
---|
| 711 |
|
---|
[691] | 712 | # Easier to see and cosmetically fiddle the list like this
|
---|
| 713 | my %insert_args = (
|
---|
| 714 | cidr => $webvar{fullcidr},
|
---|
| 715 | fbid => $webvar{fbid},
|
---|
[692] | 716 | reserve => $webvar{reserve},
|
---|
[691] | 717 | parent => $webvar{parent},
|
---|
| 718 | custid => $webvar{custid},
|
---|
| 719 | type => $webvar{alloctype},
|
---|
| 720 | city => $webvar{city},
|
---|
| 721 | desc => $webvar{desc},
|
---|
| 722 | notes => $webvar{notes},
|
---|
| 723 | circid => $webvar{circid},
|
---|
| 724 | privdata => $webvar{privdata},
|
---|
| 725 | nodeid => $webvar{node},
|
---|
| 726 | rdns => $webvar{rdns},
|
---|
| 727 | vrf => $webvar{vrf},
|
---|
| 728 | vlan => $webvar{vlan},
|
---|
| 729 | user => $authuser,
|
---|
| 730 | );
|
---|
[4] | 731 |
|
---|
[782] | 732 | ##fixme: permission check
|
---|
| 733 | # fill in backup data, if present/allowed
|
---|
| 734 | if ($webvar{backupfields}) {
|
---|
| 735 | $insert_args{backup} = 1;
|
---|
| 736 | $insert_args{bkbrand} = $webvar{bkbrand};
|
---|
| 737 | $insert_args{bkmodel} = $webvar{bkmodel};
|
---|
| 738 | for my $bkfield (qw(type src user vpass epass port)) {
|
---|
| 739 | $insert_args{"bk$bkfield"} = ($webvar{"bk$bkfield"} ? $webvar{"bk$bkfield"} : '');
|
---|
| 740 | }
|
---|
| 741 | }
|
---|
| 742 |
|
---|
[766] | 743 | my $pinfo = getBlockData($ip_dbh, $webvar{parent});
|
---|
| 744 |
|
---|
| 745 | # clean up a minor mess with guided allocation of static IPs
|
---|
| 746 | if ($webvar{alloctype} =~ /^.i$/) {
|
---|
| 747 | $insert_args{alloc_from} = $pinfo->{block};
|
---|
| 748 | }
|
---|
| 749 |
|
---|
[691] | 750 | my ($code,$msg) = allocateBlock($ip_dbh, %insert_args, iprev => \%iprev);
|
---|
| 751 |
|
---|
[111] | 752 | if ($code eq 'OK') {
|
---|
[766] | 753 | # breadcrumbs lite! provide at least a link to the parent of the block we just allocated.
|
---|
| 754 | $page->param(parentid => $webvar{parent});
|
---|
| 755 | $page->param(parentblock => $pinfo->{block});
|
---|
| 756 |
|
---|
[106] | 757 | if ($webvar{alloctype} =~ /^.i$/) {
|
---|
[300] | 758 | $msg =~ s|/32||;
|
---|
[517] | 759 | $page->param(staticip => $msg);
|
---|
| 760 | $page->param(custid => $webvar{custid});
|
---|
| 761 | $page->param(billinguser => $webvar{billinguser});
|
---|
[416] | 762 | mailNotify($ip_dbh, "a$webvar{alloctype}", "ADDED: $disp_alloctypes{$webvar{alloctype}} allocation",
|
---|
| 763 | "$disp_alloctypes{$webvar{alloctype}} $msg allocated to customer $webvar{custid}\n".
|
---|
| 764 | "Description: $webvar{desc}\n\nAllocated by: $authuser\n");
|
---|
[106] | 765 | } else {
|
---|
[301] | 766 | my $netblock = new NetAddr::IP $webvar{fullcidr};
|
---|
[517] | 767 | $page->param(fullcidr => $webvar{fullcidr});
|
---|
| 768 | $page->param(alloctype => $disp_alloctypes{$webvar{alloctype}});
|
---|
| 769 | $page->param(custid => $webvar{custid});
|
---|
[697] | 770 |
|
---|
| 771 | # Full breadcrumbs
|
---|
| 772 | my $crumbs = getBreadCrumbs($ip_dbh, $webvar{parent});
|
---|
| 773 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 774 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 775 |
|
---|
[517] | 776 | if ($webvar{alloctype} eq 'pr' && $webvar{billinguser}) {
|
---|
| 777 | $page->param(billinguser => $webvar{billinguser});
|
---|
| 778 | $page->param(custid => $webvar{custid});
|
---|
| 779 | $page->param(netaddr => $netblock->addr);
|
---|
| 780 | $page->param(masklen => $netblock->masklen);
|
---|
| 781 | }
|
---|
[416] | 782 | mailNotify($ip_dbh, "a$webvar{alloctype}", "ADDED: $disp_alloctypes{$webvar{alloctype}} allocation",
|
---|
| 783 | "$disp_alloctypes{$webvar{alloctype}} $webvar{fullcidr} allocated to customer $webvar{custid}\n".
|
---|
| 784 | "Description: $webvar{desc}\n\nAllocated by: $authuser\n");
|
---|
[4] | 785 | }
|
---|
[106] | 786 | syslog "notice", "$authuser allocated '$webvar{fullcidr}' to '$webvar{custid}' as ".
|
---|
[256] | 787 | "'$webvar{alloctype}' ($msg)";
|
---|
[111] | 788 | } else {
|
---|
| 789 | syslog "err", "Allocation of '$webvar{fullcidr}' to '$webvar{custid}' as ".
|
---|
| 790 | "'$webvar{alloctype}' by $authuser failed: '$msg'";
|
---|
[766] | 791 | $page->param(err => "Allocation of $webvar{fullcidr} as '$disp_alloctypes{$webvar{alloctype}}' failed:");
|
---|
| 792 | $page->param(errmsg => $msg);
|
---|
[106] | 793 | }
|
---|
[4] | 794 |
|
---|
| 795 | } # end insertAssign()
|
---|
| 796 |
|
---|
| 797 |
|
---|
| 798 | # Does some basic checks on common input data to make sure nothing
|
---|
| 799 | # *really* weird gets in to the database through this script.
|
---|
| 800 | # Does NOT do complete input validation!!!
|
---|
| 801 | sub validateInput {
|
---|
| 802 | if ($webvar{city} eq '-') {
|
---|
[517] | 803 | $page->param(err => 'Please choose a city');
|
---|
[111] | 804 | return;
|
---|
[4] | 805 | }
|
---|
[138] | 806 |
|
---|
| 807 | # Alloctype check.
|
---|
[4] | 808 | chomp $webvar{alloctype};
|
---|
[138] | 809 | if (!grep /$webvar{alloctype}/, keys %disp_alloctypes) {
|
---|
| 810 | # Danger! Danger! alloctype should ALWAYS be set by a dropdown. Anyone
|
---|
| 811 | # managing to call things in such a way as to cause this deserves a cryptic error.
|
---|
[517] | 812 | $page->param(err => 'Invalid alloctype');
|
---|
[138] | 813 | return;
|
---|
| 814 | }
|
---|
| 815 |
|
---|
| 816 | # CustID check
|
---|
[4] | 817 | # We have different handling for customer allocations and "internal" or "our" allocations
|
---|
[214] | 818 | if ($def_custids{$webvar{alloctype}} eq '') {
|
---|
[4] | 819 | if (!$webvar{custid}) {
|
---|
[517] | 820 | $page->param(err => 'Please enter a customer ID.');
|
---|
[111] | 821 | return;
|
---|
[4] | 822 | }
|
---|
[546] | 823 | # Crosscheck with billing.
|
---|
| 824 | my $status = CustIDCK->custid_exist($webvar{custid});
|
---|
| 825 | if ($CustIDCK::Error) {
|
---|
| 826 | $page->param(err => "Error verifying customer ID: ".$CustIDCK::ErrMsg);
|
---|
| 827 | return;
|
---|
[4] | 828 | }
|
---|
[546] | 829 | if (!$status) {
|
---|
| 830 | $page->param(err => "Customer ID not valid. Make sure the Customer ID ".
|
---|
| 831 | "is correct.<br>\nUse STAFF for staff static IPs, and $IPDB::defcustid for any other ".
|
---|
| 832 | "non-customer assignments.");
|
---|
| 833 | return;
|
---|
| 834 | }
|
---|
[400] | 835 | # print "<!-- [ In validateInput(). Insert customer ID cross-check here. ] -->\n";
|
---|
[138] | 836 | } else {
|
---|
[167] | 837 | # New! Improved! And now Loaded From The Database!!
|
---|
[320] | 838 | if ((!$webvar{custid}) || ($webvar{custid} ne 'STAFF')) {
|
---|
| 839 | $webvar{custid} = $def_custids{$webvar{alloctype}};
|
---|
| 840 | }
|
---|
[4] | 841 | }
|
---|
[111] | 842 |
|
---|
[571] | 843 | ## hmmm.... is this even useful?
|
---|
| 844 | if (0) {
|
---|
[111] | 845 | # Check POP location
|
---|
| 846 | my $flag;
|
---|
[187] | 847 | if ($webvar{alloctype} eq 'rm') {
|
---|
[111] | 848 | $flag = 'for a routed netblock';
|
---|
| 849 | foreach (@poplist) {
|
---|
| 850 | if (/^$webvar{city}$/) {
|
---|
| 851 | $flag = 'n';
|
---|
| 852 | last;
|
---|
| 853 | }
|
---|
| 854 | }
|
---|
| 855 | } else {
|
---|
| 856 | $flag = 'n';
|
---|
[442] | 857 | ##fixme: hook to force-set POP or city on certain alloctypes
|
---|
| 858 | # if ($webvar{alloctype =~ /foo,bar,bz/ { $webvar{pop} = 'blah'; }
|
---|
[536] | 859 | if ($webvar{pop} && $webvar{pop} =~ /^-$/) {
|
---|
[111] | 860 | $flag = 'to route the block from/through';
|
---|
| 861 | }
|
---|
| 862 | }
|
---|
[517] | 863 |
|
---|
| 864 | # if the alloctype has a restricted city/POP list as determined above,
|
---|
| 865 | # and the reqested city/POP does not match that list, complain
|
---|
[111] | 866 | if ($flag ne 'n') {
|
---|
[517] | 867 | $page->param(err => "Please choose a valid POP location $flag. Valid ".
|
---|
[111] | 868 | "POP locations are currently:<br>\n".join (" - ", @poplist));
|
---|
| 869 | return;
|
---|
| 870 | }
|
---|
[571] | 871 | }
|
---|
[111] | 872 |
|
---|
[691] | 873 | # VRF. Not a full validity check, just a basic sanity check.
|
---|
| 874 | if ($webvar{vrf}) {
|
---|
| 875 | # Trim leading and trailing whitespace first
|
---|
| 876 | $webvar{vrf} =~ s/^\s+//;
|
---|
| 877 | $webvar{vrf} =~ s/\s+$//;
|
---|
| 878 | if ($webvar{vrf} !~ /^[\w\d_.-]{1,32}$/) {
|
---|
| 879 | $page->param(err => "VRF values may only contain alphanumerics, and may not be more than 32 characters");
|
---|
| 880 | return;
|
---|
| 881 | }
|
---|
| 882 | }
|
---|
| 883 |
|
---|
| 884 | # VLAN. Should we allow/use VLAN names, or just the numeric ID?
|
---|
| 885 | if ($webvar{vlan}) {
|
---|
| 886 | # Trim leading and trailing whitespace first
|
---|
| 887 | $webvar{vlan} =~ s/^\s+//;
|
---|
| 888 | $webvar{vlan} =~ s/\s+$//;
|
---|
| 889 | # ... ve make it ze configurable thingy!
|
---|
| 890 | if ($IPDB::numeric_vlan) {
|
---|
| 891 | if ($webvar{vlan} !~ /^\d+$/) {
|
---|
| 892 | $page->param(err => "VLANs must be numeric");
|
---|
| 893 | return;
|
---|
| 894 | }
|
---|
| 895 | } else {
|
---|
| 896 | if ($webvar{vlan} !~ /^[\w\d_.-]+$/) {
|
---|
| 897 | $page->param(err => "VLANs must be alphanumeric");
|
---|
| 898 | return;
|
---|
| 899 | }
|
---|
| 900 | }
|
---|
| 901 | }
|
---|
| 902 |
|
---|
[782] | 903 | # Backup fields. Minimal sanity checks.
|
---|
| 904 | for my $bkfield (qw(brand model)) {
|
---|
| 905 | if ($webvar{"bk$bkfield"} && $webvar{"bk$bkfield"} !~ /^[a-zA-Z0-9\s_.-]+$/) {
|
---|
| 906 | $page->param(err => "Invalid characters in backup $bkfield");
|
---|
| 907 | return;
|
---|
| 908 | }
|
---|
| 909 | }
|
---|
| 910 | for my $bkfield (qw(type src user)) { # no spaces in these!
|
---|
| 911 | if ($webvar{"bk$bkfield"} && $webvar{"bk$bkfield"} !~ /^[a-zA-Z0-9_.-]+$/) {
|
---|
| 912 | $page->param(err => "Invalid characters in backup $bkfield");
|
---|
| 913 | return;
|
---|
| 914 | }
|
---|
| 915 | }
|
---|
| 916 | if ($webvar{bkport}) {
|
---|
| 917 | $webvar{bkport} =~ s/^\s+//g;
|
---|
| 918 | $webvar{bkport} =~ s/\s+$//g;
|
---|
| 919 | if ($webvar{bkport} !~ /^\d+$/) {
|
---|
| 920 | $page->param(err => "Backup port must be numeric");
|
---|
| 921 | return;
|
---|
| 922 | }
|
---|
| 923 | }
|
---|
| 924 |
|
---|
[111] | 925 | return 'OK';
|
---|
[4] | 926 | } # end validateInput
|
---|
| 927 |
|
---|
| 928 |
|
---|
| 929 | # Displays details of a specific allocation in a form
|
---|
| 930 | # Allows update/delete
|
---|
| 931 | # action=edit
|
---|
| 932 | sub edit {
|
---|
| 933 |
|
---|
[534] | 934 | # snag block info from db
|
---|
[634] | 935 | my $blockinfo = getBlockData($ip_dbh, $webvar{id}, $webvar{basetype});
|
---|
[750] | 936 | my $cidr = new NetAddr::IP $blockinfo->{block};
|
---|
[691] | 937 | $page->param(id => $webvar{id});
|
---|
[634] | 938 | $page->param(basetype => $webvar{basetype});
|
---|
[4] | 939 |
|
---|
[697] | 940 | # Tree navigation
|
---|
| 941 | my $crumbs = getBreadCrumbs($ip_dbh, $blockinfo->{parent_id});
|
---|
| 942 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 943 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 944 |
|
---|
[705] | 945 | # Show link to IP list for pools
|
---|
| 946 | $page->param(ispool => 1) if $blockinfo->{type} =~ /^.[dp]$/;
|
---|
| 947 |
|
---|
[534] | 948 | # Clean up extra whitespace on alloc type. Mainly a legacy-data cleanup.
|
---|
| 949 | $blockinfo->{type} =~ s/\s//;
|
---|
[4] | 950 |
|
---|
[760] | 951 | ##fixme: The case of "allocation larger than a /24" (or any similar case
|
---|
| 952 | # where the allocation is larger than the zone(s) in DNS) doesn't work well.
|
---|
| 953 | # Best solution may just be to add a warning that the entry shown may not be
|
---|
| 954 | # correct/complete.
|
---|
| 955 | if ($blockinfo->{revavail} || $blockinfo->{revpartial}) {
|
---|
| 956 | $page->param(showrev => ($blockinfo->{revavail} || $blockinfo->{revpartial}) );
|
---|
[750] | 957 | my $cached;
|
---|
| 958 | # Get rDNS info; duplicates a bit of getBlockData but also does the RPC call if possible
|
---|
| 959 | ($blockinfo->{rdns},$cached) = getBlockRDNS($ip_dbh, id => $webvar{id}, type => $blockinfo->{type}, user => $authuser);
|
---|
[760] | 960 | $page->param(rdns => $blockinfo->{rdns});
|
---|
[750] | 961 | # visual flag that we're working IPDB-local, not off more authoritative data in dnsadmin
|
---|
| 962 | $page->param(cached => $cached);
|
---|
[586] | 963 |
|
---|
[750] | 964 | # Limit the per-IP rDNS list based on CIDR length; larger ones just take up too much space.
|
---|
| 965 | # Also, don't show on IP pools; the individual IPs will have a space for rDNS
|
---|
| 966 | # Don't show on single IPs; these use the "pattern" field
|
---|
| 967 | if ($IPDBacl{$authuser} =~ /c/
|
---|
| 968 | && $cidr->masklen != $cidr->bits
|
---|
| 969 | && ($cidr->bits - $cidr->masklen) <= $IPDB::maxrevlist
|
---|
[780] | 970 | # config flag for "all block types" OR "not-a-pool-or-IP type"
|
---|
| 971 | && ($IPDB::revlistalltypes || $blockinfo->{type} !~ /^.[dpi]/)
|
---|
| 972 | # safety against trying to retrieve and display more than 1k (10 bits, /22 v4) worth of individual IPs
|
---|
| 973 | # ever. If you really need to manage a long list of IPs like that all in one place, you can use the DNS
|
---|
| 974 | # management tool. Even a /26 is a bit much, really.
|
---|
| 975 | && ($cidr->bits - $cidr->masklen) <= 10
|
---|
[750] | 976 | # do we want to allow v6 at all?
|
---|
| 977 | #&& ! $cidr->{isv6}
|
---|
| 978 | ) {
|
---|
| 979 | $page->param(r_iplist => getRDNSbyIP($ip_dbh, id => $webvar{id}, type => $blockinfo->{type},
|
---|
| 980 | range => $blockinfo->{block}, user => $authuser) );
|
---|
| 981 | }
|
---|
| 982 | } # rDNS availability check
|
---|
[675] | 983 |
|
---|
[786] | 984 | # backup data
|
---|
| 985 | if ($blockinfo->{hasbk}) {
|
---|
| 986 | $page->param(hasbackup => $blockinfo->{hasbk});
|
---|
| 987 | for my $bkfield (qw(brand model src user vpass epass port)) {
|
---|
| 988 | $page->param("bk$bkfield" => $blockinfo->{"bk$bkfield"});
|
---|
| 989 | }
|
---|
| 990 | $page->param(bktelnet => 1) if $blockinfo->{bktype} eq 'telnet';
|
---|
| 991 | $page->param(bkssh => 1) if $blockinfo->{bktype} eq 'SSH';
|
---|
| 992 | }
|
---|
| 993 |
|
---|
[691] | 994 | # consider extending this to show time as well as date
|
---|
| 995 | my ($lastmod,undef) = split /\s+/, $blockinfo->{lastmod};
|
---|
| 996 | $page->param(lastmod => $lastmod);
|
---|
[4] | 997 |
|
---|
[691] | 998 | $page->param(block => $blockinfo->{block});
|
---|
| 999 | $page->param(city => $blockinfo->{city});
|
---|
| 1000 | $page->param(custid => $blockinfo->{custid});
|
---|
[4] | 1001 |
|
---|
[187] | 1002 | ##fixme The check here should be built from the database
|
---|
[517] | 1003 | # Need to expand to support pool types too
|
---|
[534] | 1004 | if ($blockinfo->{type} =~ /^.[ne]$/ && $IPDBacl{$authuser} =~ /c/) {
|
---|
[517] | 1005 | $page->param(changetype => 1);
|
---|
| 1006 | $page->param(alloctype => [
|
---|
[534] | 1007 | { selme => ($blockinfo->{type} eq 'me'), type => "me", disptype => "Dialup netblock" },
|
---|
| 1008 | { selme => ($blockinfo->{type} eq 'de'), type => "de", disptype => "Dynamic DSL netblock" },
|
---|
| 1009 | { selme => ($blockinfo->{type} eq 'ce'), type => "ce", disptype => "Dynamic cable netblock" },
|
---|
| 1010 | { selme => ($blockinfo->{type} eq 'we'), type => "we", disptype => "Dynamic wireless netblock" },
|
---|
| 1011 | { selme => ($blockinfo->{type} eq 'cn'), type => "cn", disptype => "Customer netblock" },
|
---|
| 1012 | { selme => ($blockinfo->{type} eq 'en'), type => "en", disptype => "End-use netblock" },
|
---|
| 1013 | { selme => ($blockinfo->{type} eq 'in'), type => "in", disptype => "Internal netblock" },
|
---|
[517] | 1014 | ]
|
---|
| 1015 | );
|
---|
| 1016 | } else {
|
---|
[534] | 1017 | $page->param(disptype => $disp_alloctypes{$blockinfo->{type}});
|
---|
| 1018 | $page->param(type => $blockinfo->{type});
|
---|
[517] | 1019 | }
|
---|
| 1020 |
|
---|
[397] | 1021 | ## node hack
|
---|
[634] | 1022 | my ($nodeid,$nodename) = getNodeInfo($ip_dbh, $blockinfo->{block});
|
---|
| 1023 | # $page->param(havenodeid => $nodeid);
|
---|
| 1024 | $page->param(nodename => $nodename);
|
---|
[517] | 1025 |
|
---|
| 1026 | ##fixme: this whole hack needs cleanup and generalization for all alloctypes
|
---|
| 1027 | ##fixme: arguably a bug that presence of a nodeid implies it can be changed..
|
---|
[634] | 1028 | if ($IPDBacl{$authuser} =~ /c/) {
|
---|
| 1029 | my $nlist = getNodeList($ip_dbh);
|
---|
| 1030 | if ($nodeid) {
|
---|
[530] | 1031 | foreach (@{$nlist}) {
|
---|
[634] | 1032 | $$_{selme} = ($$_{node_id} == $nodeid);
|
---|
[397] | 1033 | }
|
---|
| 1034 | }
|
---|
[634] | 1035 | $page->param(nodelist => $nlist);
|
---|
[397] | 1036 | }
|
---|
| 1037 | ## end node hack
|
---|
[517] | 1038 |
|
---|
[691] | 1039 | $page->param(vrf => $blockinfo->{vrf});
|
---|
| 1040 | $page->param(vlan => $blockinfo->{vlan});
|
---|
[33] | 1041 |
|
---|
[695] | 1042 | # Reserved-for-expansion
|
---|
| 1043 | $page->param(reserve => $blockinfo->{reserve});
|
---|
| 1044 | $page->param(reserve_id => $blockinfo->{reserve_id});
|
---|
| 1045 | my $newblock = NetAddr::IP->new($cidr->addr, $cidr->masklen - 1)->network;
|
---|
| 1046 | $page->param(newblock => $newblock);
|
---|
| 1047 |
|
---|
[517] | 1048 | # not happy with the upside-down logic, but...
|
---|
[534] | 1049 | $page->param(swipable => $blockinfo->{type} !~ /.i/);
|
---|
[691] | 1050 | $page->param(swip => $blockinfo->{swip} ne 'n') if $blockinfo->{swip};
|
---|
[320] | 1051 |
|
---|
[691] | 1052 | $page->param(circid => $blockinfo->{circuitid});
|
---|
| 1053 | $page->param(desc => $blockinfo->{description});
|
---|
| 1054 | $page->param(notes => $blockinfo->{notes});
|
---|
| 1055 |
|
---|
[284] | 1056 | # Check to see if we can display sensitive data
|
---|
[691] | 1057 | $page->param(nocling => $IPDBacl{$authuser} =~ /s/);
|
---|
[534] | 1058 | $page->param(privdata => $blockinfo->{privdata});
|
---|
[284] | 1059 |
|
---|
[517] | 1060 | # ACL trickery - these two template booleans control the presence of all form/input tags
|
---|
| 1061 | $page->param(maychange => $IPDBacl{$authuser} =~ /c/);
|
---|
| 1062 | $page->param(maydel => $IPDBacl{$authuser} =~ /d/);
|
---|
[4] | 1063 |
|
---|
[702] | 1064 | # Need to find internal knobs to twist to actually vary these. (Ab)use "change" flag for now
|
---|
[789] | 1065 | $page->param(maymerge => ($IPDBacl{$authuser} =~ /m/ && $blockinfo->{type} !~ /^.i$/));
|
---|
| 1066 |
|
---|
[702] | 1067 | if ($IPDBacl{$authuser} =~ /c/ && $blockinfo->{type} !~ /^.i$/) {
|
---|
| 1068 | if ($blockinfo->{type} =~ /^.p$/) {
|
---|
| 1069 | # PPP pools
|
---|
| 1070 | $page->param(maysplit => 1) if $cidr->masklen+1 < $cidr->bits;
|
---|
| 1071 | } elsif ($blockinfo->{type} =~ /.d/) {
|
---|
| 1072 | # Non-PPP pools
|
---|
| 1073 | $page->param(maysplit => 1) if $cidr->masklen+2 < $cidr->bits;
|
---|
| 1074 | } else {
|
---|
| 1075 | # Standard netblocks. Arguably allowing splitting these down to single IPs
|
---|
| 1076 | # doesn't make much sense, but forcing users to apply allocation types
|
---|
| 1077 | # "properly" is worse than herding cats.
|
---|
| 1078 | $page->param(maysplit => 1) if $cidr->masklen < $cidr->bits;
|
---|
| 1079 | }
|
---|
| 1080 | }
|
---|
| 1081 |
|
---|
[4] | 1082 | } # edit()
|
---|
| 1083 |
|
---|
| 1084 |
|
---|
| 1085 | # Stuff new info about a block into the db
|
---|
| 1086 | # action=update
|
---|
| 1087 | sub update {
|
---|
[284] | 1088 | if ($IPDBacl{$authuser} !~ /c/) {
|
---|
[517] | 1089 | $aclerr = 'updateblock';
|
---|
[284] | 1090 | return;
|
---|
| 1091 | }
|
---|
[4] | 1092 |
|
---|
[706] | 1093 | # Collect existing block info here, since we need it for the breadcrumb nav
|
---|
| 1094 | my $binfo = getBlockData($ip_dbh, $webvar{block}, $webvar{basetype});
|
---|
| 1095 | my $crumbs = getBreadCrumbs($ip_dbh, $binfo->{parent_id});
|
---|
| 1096 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 1097 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 1098 |
|
---|
[4] | 1099 | # Make sure incoming data is in correct format - custID among other things.
|
---|
[228] | 1100 | return if !validateInput;
|
---|
[4] | 1101 |
|
---|
[536] | 1102 | $webvar{swip} = 'n' if !$webvar{swip};
|
---|
| 1103 |
|
---|
[531] | 1104 | my %updargs = (
|
---|
| 1105 | custid => $webvar{custid},
|
---|
| 1106 | city => $webvar{city},
|
---|
| 1107 | description => $webvar{desc},
|
---|
| 1108 | notes => $webvar{notes},
|
---|
| 1109 | circuitid => $webvar{circid},
|
---|
| 1110 | block => $webvar{block},
|
---|
| 1111 | type => $webvar{alloctype},
|
---|
[536] | 1112 | swip => $webvar{swip},
|
---|
[588] | 1113 | rdns => $webvar{rdns},
|
---|
[691] | 1114 | vrf => $webvar{vrf},
|
---|
| 1115 | vlan => $webvar{vlan},
|
---|
[588] | 1116 | user => $authuser,
|
---|
[531] | 1117 | );
|
---|
| 1118 |
|
---|
[788] | 1119 | # Check to see if user is allowed to do anything with sensitive data
|
---|
| 1120 | if ($IPDBacl{$authuser} =~ /s/) {
|
---|
| 1121 | $updargs{privdata} = $webvar{privdata};
|
---|
| 1122 | for my $bkfield (qw(brand model type src user vpass epass port)) {
|
---|
| 1123 | $updargs{"bk$bkfield"} = $webvar{"bk$bkfield"};
|
---|
| 1124 | }
|
---|
| 1125 | $updargs{backupfields} = $webvar{backupfields};
|
---|
| 1126 | } else {
|
---|
| 1127 | # If the user doesn't have permissions to monkey with NOC-things, pass
|
---|
| 1128 | # a flag so we don't treat it as "backup data removed"
|
---|
| 1129 | $updargs{ignorebk} = 1;
|
---|
| 1130 | }
|
---|
| 1131 |
|
---|
[531] | 1132 | # Semioptional values
|
---|
| 1133 | $updargs{node} = $webvar{node} if $webvar{node};
|
---|
| 1134 |
|
---|
[677] | 1135 | # collect per-IP rDNS fields. only copy over the ones that actually have something in them.
|
---|
| 1136 | my %iprev;
|
---|
| 1137 | foreach (keys %webvar) {
|
---|
| 1138 | $iprev{$_} = $webvar{$_} if /host_[\d.a-fA-F:]+/ && $webvar{$_};
|
---|
| 1139 | }
|
---|
[531] | 1140 |
|
---|
[695] | 1141 | # Merge with reserved freeblock
|
---|
| 1142 | $updargs{fbmerge} = $webvar{expandme} if $webvar{expandme};
|
---|
| 1143 |
|
---|
[677] | 1144 | my ($code,$msg) = updateBlock($ip_dbh, %updargs, iprev => \%iprev);
|
---|
| 1145 |
|
---|
[531] | 1146 | if ($code eq 'FAIL') {
|
---|
[787] | 1147 | syslog "err", "$authuser could not update block/IP '$binfo->{block}' (id $webvar{block}): '$msg'";
|
---|
| 1148 | $page->param(err => "Could not update block/IP $binfo->{block}: $msg");
|
---|
[111] | 1149 | return;
|
---|
[4] | 1150 | }
|
---|
| 1151 |
|
---|
| 1152 | # If we get here, the operation succeeded.
|
---|
[787] | 1153 | syslog "notice", "$authuser updated $binfo->{block}";
|
---|
[531] | 1154 | ##fixme: log details of the change? old way is in the .debug stream anyway.
|
---|
[416] | 1155 | ##fixme: need to wedge something in to allow "update:field" notifications
|
---|
| 1156 | ## hmm. how to tell what changed? O_o
|
---|
[787] | 1157 | mailNotify($ip_dbh, 's:swi', "SWIPed: $disp_alloctypes{$webvar{alloctype}} $binfo->{block}",
|
---|
| 1158 | "$binfo->{block} had SWIP status changed to \"Yes\" by $authuser") if $webvar{swip} eq 'on';
|
---|
[4] | 1159 |
|
---|
[517] | 1160 | ## node hack
|
---|
| 1161 | if ($webvar{node} && $webvar{node} ne '-') {
|
---|
[530] | 1162 | my $nodename = getNodeName($ip_dbh, $webvar{node});
|
---|
[517] | 1163 | $page->param(nodename => $nodename);
|
---|
| 1164 | }
|
---|
| 1165 | ## end node hack
|
---|
| 1166 |
|
---|
[380] | 1167 | # Link back to browse-routed or list-pool page on "Update complete" page.
|
---|
[634] | 1168 | my $pblock = getBlockData($ip_dbh, $binfo->{parent_id});
|
---|
| 1169 | $page->param(backid => $binfo->{parent_id});
|
---|
| 1170 | $page->param(backblock => $pblock->{block});
|
---|
| 1171 | $page->param(backpool => ($webvar{basetype} eq 'i'));
|
---|
[380] | 1172 |
|
---|
[536] | 1173 | # Do some HTML fiddling here instead of using ESCAPE=HTML in the template,
|
---|
| 1174 | # because otherwise we can't convert \n to <br>. *sigh*
|
---|
| 1175 | $webvar{notes} = $q->escapeHTML($webvar{notes}); # escape first...
|
---|
| 1176 | $webvar{notes} =~ s/\n/<br>\n/; # ... then convert newlines
|
---|
| 1177 | $webvar{privdata} = ($webvar{privdata} ? $q->escapeHTML($webvar{privdata}) : " ");
|
---|
| 1178 | $webvar{privdata} =~ s/\n/<br>\n/;
|
---|
| 1179 |
|
---|
[765] | 1180 | if ($webvar{expandme}) {
|
---|
| 1181 | # this is fugly but still faster than hitting the DB again with getBlockData()
|
---|
| 1182 | my $tmp = new NetAddr::IP $binfo->{block};
|
---|
| 1183 | my $fb = new NetAddr::IP $binfo->{reserve};
|
---|
| 1184 | my @newblock = $tmp->compact($fb);
|
---|
| 1185 | $page->param(cidr => $newblock[0]);
|
---|
| 1186 | } else {
|
---|
| 1187 | $page->param(cidr => $binfo->{block});
|
---|
| 1188 | }
|
---|
[588] | 1189 | $page->param(rdns => $webvar{rdns});
|
---|
[517] | 1190 | $page->param(city => $webvar{city});
|
---|
| 1191 | $page->param(disptype => $disp_alloctypes{$webvar{alloctype}});
|
---|
| 1192 | $page->param(custid => $webvar{custid});
|
---|
| 1193 | $page->param(swip => $webvar{swip} eq 'on' ? 'Yes' : 'No');
|
---|
[536] | 1194 | $page->param(circid => $webvar{circid});
|
---|
| 1195 | $page->param(desc => $webvar{desc});
|
---|
| 1196 | $page->param(notes => $webvar{notes});
|
---|
[788] | 1197 | if ($IPDBacl{$authuser} =~ /s/) {
|
---|
| 1198 | $page->param(nocling => 1);
|
---|
| 1199 | $page->param(privdata => $webvar{privdata});
|
---|
| 1200 | if ($binfo->{hasbk}) {
|
---|
| 1201 | $page->param(hasbackup => $binfo->{hasbk});
|
---|
| 1202 | for my $bkfield (qw(brand model type src user vpass epass port)) {
|
---|
| 1203 | $page->param("bk$bkfield" => $binfo->{"bk$bkfield"});
|
---|
| 1204 | }
|
---|
| 1205 | }
|
---|
| 1206 | }
|
---|
[4] | 1207 |
|
---|
| 1208 | } # update()
|
---|
| 1209 |
|
---|
| 1210 |
|
---|
[702] | 1211 | sub prepSplit {
|
---|
| 1212 | if ($IPDBacl{$authuser} !~ /c/) {
|
---|
| 1213 | $aclerr = 'splitblock';
|
---|
| 1214 | return;
|
---|
| 1215 | }
|
---|
| 1216 |
|
---|
| 1217 | my $blockinfo = getBlockData($ip_dbh, $webvar{block});
|
---|
| 1218 |
|
---|
[705] | 1219 | # Tree navigation
|
---|
| 1220 | my $crumbs = getBreadCrumbs($ip_dbh, $blockinfo->{parent_id});
|
---|
| 1221 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 1222 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 1223 |
|
---|
[702] | 1224 | if ($blockinfo->{type} =~ /^.i$/) {
|
---|
| 1225 | $page->param(err => "Can't split a single IP allocation");
|
---|
| 1226 | return;
|
---|
| 1227 | }
|
---|
| 1228 |
|
---|
| 1229 | # Info about current allocation
|
---|
| 1230 | $page->param(oldblock => $blockinfo->{block});
|
---|
| 1231 | $page->param(block => $webvar{block});
|
---|
| 1232 |
|
---|
| 1233 | # Note that there are probably different rules that should be followed to restrict splitting IPv6 blocks;
|
---|
| 1234 | # strictly speaking it will be exceptionally rare to see smaller than a /64 assigned to a customer, since that
|
---|
| 1235 | # breaks auto-addressing schemes.
|
---|
| 1236 |
|
---|
| 1237 | # Generate possible splits
|
---|
| 1238 | my $block = new NetAddr::IP $blockinfo->{block};
|
---|
| 1239 | my $oldmask = $block->masklen;
|
---|
| 1240 | if ($blockinfo->{type} =~ /^.d$/) {
|
---|
| 1241 | # Non-PPP pools
|
---|
[705] | 1242 | $page->param(ispool => 1);
|
---|
[702] | 1243 | if ($oldmask+2 >= $block->bits) {
|
---|
| 1244 | $page->param(err => "Can't split a standard netblock pool any further");
|
---|
| 1245 | return;
|
---|
| 1246 | }
|
---|
| 1247 | # Allow splitting down to v4 /30 (which results in one usable IP; dubiously useful)
|
---|
| 1248 | $page->param(sp4mask => $oldmask+2) if $oldmask+2 <= $block->bits-2;
|
---|
| 1249 | } elsif ($blockinfo->{type} =~ /.p/) {
|
---|
[705] | 1250 | $page->param(ispool => 1);
|
---|
[702] | 1251 | # Allow splitting PPP pools down to v4 /31
|
---|
| 1252 | $page->param(sp4mask => $oldmask+2) if $oldmask+2 <= $block->bits-1;
|
---|
| 1253 | } else {
|
---|
| 1254 | # Allow splitting all other non-pool netblocks down to single IPs, which...
|
---|
| 1255 | # arguably should be *aggregated* in a pool. Except where they shouldn't.
|
---|
| 1256 | $page->param(sp4mask => $oldmask+2) if $oldmask+2 <= $block->bits;
|
---|
| 1257 | }
|
---|
| 1258 | # set the split-in-half mask
|
---|
| 1259 | $page->param(sp2mask => $oldmask+1);
|
---|
| 1260 |
|
---|
| 1261 | # Generate possible shrink targets
|
---|
| 1262 | my @keepers = $block->split($block->masklen+1);
|
---|
| 1263 | $page->param(newblockA => $keepers[0]);
|
---|
| 1264 | $page->param(newblockB => $keepers[1]);
|
---|
| 1265 | } # prepSplit()
|
---|
| 1266 |
|
---|
| 1267 |
|
---|
| 1268 | sub doSplit {
|
---|
| 1269 | if ($IPDBacl{$authuser} !~ /c/) {
|
---|
| 1270 | $aclerr = 'splitblock';
|
---|
| 1271 | return;
|
---|
| 1272 | }
|
---|
| 1273 |
|
---|
| 1274 | ##fixme: need consistent way to identify "this thing that is this thing" with only the ID
|
---|
| 1275 | # also applies to other locations
|
---|
| 1276 | my $blockinfo = getBlockData($ip_dbh, $webvar{block});
|
---|
| 1277 |
|
---|
[705] | 1278 | # Tree navigation
|
---|
| 1279 | my $crumbs = getBreadCrumbs($ip_dbh, $blockinfo->{parent_id});
|
---|
| 1280 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 1281 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 1282 |
|
---|
[702] | 1283 | if ($blockinfo->{type} =~ /^.i$/) {
|
---|
| 1284 | $page->param(err => "Can't split a single IP allocation");
|
---|
| 1285 | return;
|
---|
| 1286 | }
|
---|
| 1287 |
|
---|
| 1288 | if ($webvar{subact} eq 'split') {
|
---|
| 1289 | $page->param(issplit => 1);
|
---|
[705] | 1290 | my $block = new NetAddr::IP $blockinfo->{block};
|
---|
[707] | 1291 | my $newblocks = splitBlock($ip_dbh, id => $webvar{block}, basetype => 'b', newmask => $webvar{split},
|
---|
| 1292 | user => $authuser);
|
---|
[702] | 1293 | if ($newblocks) {
|
---|
| 1294 | $page->param(newblocks => $newblocks);
|
---|
| 1295 | } else {
|
---|
| 1296 | $page->param(err => $IPDB::errstr);
|
---|
| 1297 | }
|
---|
| 1298 |
|
---|
[705] | 1299 | } elsif ($webvar{subact} eq 'shrink') {
|
---|
| 1300 | $page->param(nid => $webvar{block});
|
---|
| 1301 | $page->param(newblock => $webvar{shrink});
|
---|
| 1302 | my $newfree = shrinkBlock($ip_dbh, $webvar{block}, $webvar{shrink});
|
---|
| 1303 | if ($newfree) {
|
---|
| 1304 | $page->param(newfb => $newfree);
|
---|
| 1305 | } else {
|
---|
| 1306 | $page->param(err => $IPDB::errstr);
|
---|
| 1307 | }
|
---|
| 1308 |
|
---|
[702] | 1309 | } else {
|
---|
[705] | 1310 | # Your llama is on fire.
|
---|
| 1311 | $page->param(err => "Missing form field that shouldn't be missing.");
|
---|
| 1312 | return;
|
---|
[702] | 1313 | }
|
---|
[705] | 1314 |
|
---|
| 1315 | # common bits
|
---|
| 1316 | $page->param(cidr => $blockinfo->{block});
|
---|
| 1317 | # and the backlink to the parent container
|
---|
| 1318 | my $pinfo = getBlockData($ip_dbh, $blockinfo->{parent_id});
|
---|
| 1319 | $page->param(backid => $blockinfo->{parent_id});
|
---|
| 1320 | $page->param(backblock => $pinfo->{block});
|
---|
[702] | 1321 | } # doSplit()
|
---|
| 1322 |
|
---|
| 1323 |
|
---|
[717] | 1324 | # Set up for merge
|
---|
| 1325 | sub prepMerge {
|
---|
[789] | 1326 | if ($IPDBacl{$authuser} !~ /m/) {
|
---|
| 1327 | $aclerr = 'mergeblock';
|
---|
| 1328 | return;
|
---|
| 1329 | }
|
---|
| 1330 |
|
---|
[717] | 1331 | my $binfo = getBlockData($ip_dbh, $webvar{block});
|
---|
[760] | 1332 |
|
---|
| 1333 | # Tree navigation
|
---|
| 1334 | my $crumbs = getBreadCrumbs($ip_dbh, $binfo->{parent_id});
|
---|
| 1335 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 1336 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 1337 |
|
---|
[717] | 1338 | $page->param(block => $webvar{block});
|
---|
| 1339 | $page->param(ispool => $binfo->{type} =~ /.[dp]/);
|
---|
| 1340 | $page->param(ismaster => $binfo->{type} eq 'mm');
|
---|
| 1341 | $page->param(oldblock => $binfo->{block});
|
---|
| 1342 | $page->param(oldtype => $disp_alloctypes{$binfo->{type}});
|
---|
| 1343 | $page->param(typelist => getTypeList($ip_dbh, 'n', $binfo->{type})); # down the rabbit hole we go...
|
---|
| 1344 |
|
---|
[733] | 1345 | # Strings for scope; do this way so we don't have to edit them many places
|
---|
| 1346 | $page->param(vis_keepall => $merge_display{keepall});
|
---|
| 1347 | $page->param(vis_mergepeer => $merge_display{mergepeer});
|
---|
| 1348 | $page->param(vis_clearpeer => $merge_display{clearpeer});
|
---|
| 1349 | $page->param(vis_clearall => $merge_display{clearall});
|
---|
| 1350 |
|
---|
[717] | 1351 | } # prepMerge()
|
---|
| 1352 |
|
---|
| 1353 |
|
---|
[720] | 1354 | # Show what will be merged, present warnings about data loss
|
---|
| 1355 | sub confMerge {
|
---|
[789] | 1356 | if ($IPDBacl{$authuser} !~ /m/) {
|
---|
| 1357 | $aclerr = 'mergeblock';
|
---|
| 1358 | return;
|
---|
| 1359 | }
|
---|
| 1360 |
|
---|
[720] | 1361 | if (!$webvar{newmask} || $webvar{newmask} !~ /^\d+$/) {
|
---|
| 1362 | $page->param(err => 'New netmask required');
|
---|
| 1363 | return;
|
---|
| 1364 | }
|
---|
| 1365 |
|
---|
| 1366 | $page->param(block => $webvar{block});
|
---|
| 1367 | my $binfo = getBlockData($ip_dbh, $webvar{block});
|
---|
| 1368 | my $pinfo = getBlockData($ip_dbh, $binfo->{parent_id});
|
---|
| 1369 | my $minfo = getBlockData($ip_dbh, $binfo->{master_id});
|
---|
| 1370 | my $block = new NetAddr::IP $binfo->{block};
|
---|
| 1371 |
|
---|
| 1372 | # Tree navigation
|
---|
| 1373 | my $crumbs = getBreadCrumbs($ip_dbh, $binfo->{parent_id});
|
---|
| 1374 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 1375 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 1376 |
|
---|
| 1377 | $page->param(oldblock => $binfo->{block});
|
---|
| 1378 | $page->param(oldtype => $disp_alloctypes{$binfo->{type}});
|
---|
| 1379 | $page->param(ismaster => $binfo->{type} eq 'mm');
|
---|
| 1380 | $page->param(ispool => $webvar{alloctype} =~ /.[dp]/);
|
---|
| 1381 | $page->param(isleaf => $webvar{alloctype} =~ /.[enr]/);
|
---|
| 1382 | $page->param(newtype => $webvar{alloctype});
|
---|
| 1383 | $page->param(newdisptype => $disp_alloctypes{$webvar{alloctype}});
|
---|
| 1384 | my $newblock = new NetAddr::IP $block->addr."/$webvar{newmask}";
|
---|
| 1385 | $newblock = $newblock->network;
|
---|
| 1386 | $page->param(newmask => $webvar{newmask});
|
---|
| 1387 | $page->param(newblock => "$newblock");
|
---|
| 1388 |
|
---|
| 1389 | # get list of allocations and freeblocks to be merged
|
---|
| 1390 | my $malloc_list = listForMerge($ip_dbh, $binfo->{parent_id}, $newblock, 'a');
|
---|
| 1391 | $page->param(mergealloc => $malloc_list);
|
---|
| 1392 |
|
---|
[733] | 1393 | $page->param(vis_scope => $merge_display{$webvar{scope}});
|
---|
[727] | 1394 | $page->param(scope => $webvar{scope});
|
---|
[720] | 1395 | } # confMerge()
|
---|
| 1396 |
|
---|
| 1397 |
|
---|
[751] | 1398 | # Make it so
|
---|
| 1399 | sub doMerge {
|
---|
[789] | 1400 | if ($IPDBacl{$authuser} !~ /m/) {
|
---|
| 1401 | $aclerr = 'mergeblock';
|
---|
| 1402 | return;
|
---|
| 1403 | }
|
---|
| 1404 |
|
---|
[751] | 1405 | if (!$webvar{newmask} || $webvar{newmask} !~ /^\d+$/) {
|
---|
| 1406 | $page->param(err => 'New netmask required');
|
---|
| 1407 | return;
|
---|
| 1408 | }
|
---|
| 1409 |
|
---|
| 1410 | $page->param(block => $webvar{block});
|
---|
| 1411 | my $binfo = getBlockData($ip_dbh, $webvar{block});
|
---|
| 1412 | my $pinfo = getBlockData($ip_dbh, $binfo->{parent_id});
|
---|
| 1413 | my $block = new NetAddr::IP $binfo->{block};
|
---|
| 1414 |
|
---|
| 1415 | # Tree navigation
|
---|
| 1416 | my $crumbs = getBreadCrumbs($ip_dbh, $binfo->{parent_id});
|
---|
| 1417 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 1418 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 1419 |
|
---|
| 1420 | $page->param(oldblock => $binfo->{block});
|
---|
| 1421 | $page->param(oldtype => $disp_alloctypes{$binfo->{type}});
|
---|
| 1422 | $page->param(newdisptype => $disp_alloctypes{$webvar{newtype}});
|
---|
| 1423 | my $newblock = new NetAddr::IP $block->addr."/$webvar{newmask}";
|
---|
| 1424 | $newblock = $newblock->network;
|
---|
| 1425 | $page->param(newblock => $newblock);
|
---|
| 1426 | $page->param(vis_scope => $merge_display{$webvar{scope}});
|
---|
| 1427 |
|
---|
| 1428 | my $mlist = mergeBlocks($ip_dbh, $webvar{block}, %webvar, user => $authuser);
|
---|
| 1429 |
|
---|
| 1430 | if ($mlist) {
|
---|
| 1431 | #(newtype => $webvar{newtype}, newmask => $webvar{newmask}));
|
---|
| 1432 | # Slice off first entry (the new parent - note this may be a new allocation,
|
---|
| 1433 | # not the same ID that was "merged"!
|
---|
| 1434 | my $parent = shift @$mlist;
|
---|
| 1435 | $page->param(backpool => $webvar{newtype} =~ /.[dp]/);
|
---|
| 1436 | if ($webvar{newtype} =~ /.[enr]/) {
|
---|
| 1437 | $page->param(backleaf => 1);
|
---|
| 1438 | $page->param(backid => $binfo->{parent_id});
|
---|
| 1439 | $page->param(backblock => $pinfo->{block});
|
---|
| 1440 | } else {
|
---|
| 1441 | $page->param(backid => $parent->{id});
|
---|
| 1442 | $page->param(backblock => $parent->{block});
|
---|
| 1443 | }
|
---|
| 1444 | $page->param(mergelist => $mlist);
|
---|
| 1445 | } else {
|
---|
| 1446 | $page->param(err => "Merge failed: $IPDB::errstr");
|
---|
| 1447 | }
|
---|
| 1448 | } # doMerge()
|
---|
| 1449 |
|
---|
| 1450 |
|
---|
[4] | 1451 | # Delete an allocation.
|
---|
[106] | 1452 | sub remove {
|
---|
[233] | 1453 | if ($IPDBacl{$authuser} !~ /d/) {
|
---|
[517] | 1454 | $aclerr = 'delblock';
|
---|
[233] | 1455 | return;
|
---|
| 1456 | }
|
---|
| 1457 |
|
---|
[4] | 1458 | # Serves'em right for getting here...
|
---|
| 1459 | if (!defined($webvar{block})) {
|
---|
[517] | 1460 | $page->param(err => "Can't delete a block that doesn't exist");
|
---|
[111] | 1461 | return;
|
---|
[4] | 1462 | }
|
---|
| 1463 |
|
---|
[538] | 1464 | my $blockdata;
|
---|
[638] | 1465 | $blockdata = getBlockData($ip_dbh, $webvar{block}, $webvar{basetype});
|
---|
[4] | 1466 |
|
---|
[765] | 1467 | # Tree navigation
|
---|
| 1468 | my $crumbs = getBreadCrumbs($ip_dbh, $blockdata->{parent_id});
|
---|
| 1469 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 1470 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 1471 |
|
---|
[638] | 1472 | if ($blockdata->{parent_id} == 0) { # $webvar{alloctype} eq 'mm'
|
---|
[538] | 1473 | $blockdata->{city} = "N/A";
|
---|
| 1474 | $blockdata->{custid} = "N/A";
|
---|
| 1475 | $blockdata->{circuitid} = "N/A";
|
---|
| 1476 | $blockdata->{description} = "N/A";
|
---|
| 1477 | $blockdata->{notes} = "N/A";
|
---|
| 1478 | $blockdata->{privdata} = "N/A";
|
---|
[638] | 1479 | } # end cases for different alloctypes
|
---|
[517] | 1480 |
|
---|
[638] | 1481 | $page->param(blockid => $webvar{block});
|
---|
| 1482 | $page->param(basetype => $webvar{basetype});
|
---|
[4] | 1483 |
|
---|
[538] | 1484 | $page->param(block => $blockdata->{block});
|
---|
[589] | 1485 | $page->param(rdns => $blockdata->{rdns});
|
---|
| 1486 |
|
---|
| 1487 | # maybe need to apply more magic here?
|
---|
| 1488 | # most allocations we *do* want to autodelete the forward as well as reverse; for a handful we don't.
|
---|
| 1489 | # -> all real blocks (nb: pool IPs need extra handling)
|
---|
| 1490 | # -> NOC/private-IP (how to ID?)
|
---|
| 1491 | # -> anything with a pattern matching $IPDB::domain?
|
---|
| 1492 | if ($blockdata->{type} !~ /^.i$/) {
|
---|
| 1493 | $page->param(autodel => 1);
|
---|
| 1494 | }
|
---|
| 1495 |
|
---|
[538] | 1496 | $page->param(disptype => $disp_alloctypes{$blockdata->{type}});
|
---|
| 1497 | $page->param(city => $blockdata->{city});
|
---|
| 1498 | $page->param(custid => $blockdata->{custid});
|
---|
| 1499 | $page->param(circid => $blockdata->{circuitid});
|
---|
| 1500 | $page->param(desc => $blockdata->{description});
|
---|
| 1501 | $blockdata->{notes} = $q->escapeHTML($blockdata->{notes});
|
---|
| 1502 | $blockdata->{notes} =~ s/\n/<br>\n/;
|
---|
| 1503 | $page->param(notes => $blockdata->{notes});
|
---|
| 1504 | $blockdata->{privdata} = $q->escapeHTML($blockdata->{privdata});
|
---|
[540] | 1505 | $blockdata->{privdata} = ' ' if !$blockdata->{privdata};
|
---|
[538] | 1506 | $blockdata->{privdata} =~ s/\n/<br>\n/;
|
---|
| 1507 | $page->param(privdata => $blockdata->{privdata}) if $IPDBacl{$authuser} =~ /s/;
|
---|
| 1508 | $page->param(delpool => $blockdata->{type} =~ /^.[pd]$/);
|
---|
[4] | 1509 |
|
---|
[517] | 1510 | } # end remove()
|
---|
[4] | 1511 |
|
---|
| 1512 |
|
---|
| 1513 | # Delete an allocation. Return it to the freeblocks table; munge
|
---|
| 1514 | # data as necessary to keep as few records as possible in freeblocks
|
---|
| 1515 | # to prevent weirdness when allocating blocks later.
|
---|
| 1516 | # Remove IPs from pool listing if necessary
|
---|
| 1517 | sub finalDelete {
|
---|
[233] | 1518 | if ($IPDBacl{$authuser} !~ /d/) {
|
---|
[517] | 1519 | $aclerr = 'delblock';
|
---|
[233] | 1520 | return;
|
---|
| 1521 | }
|
---|
[4] | 1522 |
|
---|
[370] | 1523 | # need to retrieve block data before deleting so we can notify on that
|
---|
[638] | 1524 | my $blockinfo = getBlockData($ip_dbh, $webvar{block}, $webvar{basetype});
|
---|
| 1525 | my $pinfo = getBlockData($ip_dbh, $blockinfo->{parent_id}, 'b');
|
---|
[370] | 1526 |
|
---|
[765] | 1527 | # Tree navigation
|
---|
| 1528 | my $crumbs = getBreadCrumbs($ip_dbh, $blockinfo->{parent_id});
|
---|
| 1529 | my @rcrumbs = reverse (@$crumbs);
|
---|
| 1530 | $utilbar->param(breadcrumb => \@rcrumbs);
|
---|
| 1531 |
|
---|
[638] | 1532 | my ($code,$msg) = deleteBlock($ip_dbh, $webvar{block}, $webvar{basetype}, $webvar{delforward}, $authuser);
|
---|
[4] | 1533 |
|
---|
[638] | 1534 | $page->param(block => $blockinfo->{block});
|
---|
[651] | 1535 | $page->param(bdisp => $q->escapeHTML($disp_alloctypes{$blockinfo->{type}}));
|
---|
[766] | 1536 | $page->param(delparent_id => $blockinfo->{parent_id});
|
---|
[651] | 1537 | if ($pinfo) {
|
---|
| 1538 | $page->param(delparent => $pinfo->{block});
|
---|
| 1539 | $page->param(pdisp => $q->escapeHTML($disp_alloctypes{$pinfo->{type}}));
|
---|
| 1540 | }
|
---|
[638] | 1541 | $page->param(returnpool => ($webvar{basetype} eq 'i') );
|
---|
[591] | 1542 | if ($code =~ /^WARN(POOL|MERGE)/) {
|
---|
[638] | 1543 | my ($pid,$pcidr) = split /,/, $msg;
|
---|
[654] | 1544 | my $real_pinfo = getBlockData($ip_dbh, $pid, 'b');
|
---|
[638] | 1545 | $page->param(parent_id => $pid);
|
---|
| 1546 | $page->param(parent => $pcidr);
|
---|
[654] | 1547 | $page->param(real_disp => $q->escapeHTML($disp_alloctypes{$real_pinfo->{type}}));
|
---|
[577] | 1548 | $page->param(mergeip => $code eq 'WARNPOOL');
|
---|
| 1549 | }
|
---|
[591] | 1550 | if ($code eq 'WARN') {
|
---|
| 1551 | $msg =~ s/\n/<br>\n/g;
|
---|
| 1552 | $page->param(genwarn => $msg);
|
---|
| 1553 | }
|
---|
[577] | 1554 | if ($code eq 'OK' || $code =~ /^WARN/) {
|
---|
[638] | 1555 | syslog "notice", "$authuser deallocated '".$blockinfo->{type}."'-type netblock $webvar{block} ".
|
---|
[528] | 1556 | $blockinfo->{custid}.", ".$blockinfo->{city}.", desc='".$blockinfo->{description}."'";
|
---|
[638] | 1557 | mailNotify($ip_dbh, 'da', "REMOVED: ".$disp_alloctypes{$blockinfo->{type}}." $webvar{block}",
|
---|
| 1558 | $disp_alloctypes{$blockinfo->{type}}." $webvar{block} deallocated by $authuser\n".
|
---|
[528] | 1559 | "CustID: ".$blockinfo->{custid}."\nCity: ".$blockinfo->{city}.
|
---|
| 1560 | "\nDescription: ".$blockinfo->{description}."\n");
|
---|
[106] | 1561 | } else {
|
---|
[517] | 1562 | $page->param(failmsg => $msg);
|
---|
[106] | 1563 | if ($webvar{alloctype} =~ /^.i$/) {
|
---|
| 1564 | syslog "err", "$authuser could not deallocate static IP '$webvar{block}': '$msg'";
|
---|
| 1565 | } else {
|
---|
| 1566 | syslog "err", "$authuser could not deallocate netblock '$webvar{block}': '$msg'";
|
---|
[517] | 1567 | $page->param(netblock => 1);
|
---|
[4] | 1568 | }
|
---|
[106] | 1569 | }
|
---|
[4] | 1570 |
|
---|
| 1571 | } # finalDelete
|
---|