source: branches/stable/cgi-bin/main.cgi@ 595

Last change on this file since 595 was 595, checked in by Kris Deugau, 11 years ago

/branches/stable

Hand-backport pieces of the allocate-from-routed-freeblock from /trunk
post-r553. Cherrypick merge not possible due to intermingled changes
relating to the database structure updates.
Includes a handful of harmless references to the new structure.
Will likely cause merge conflicts when the structure update is merged.

  • Property svn:executable set to *
  • Property svn:keywords set to Date Rev Author
File size: 28.8 KB
RevLine 
[4]1#!/usr/bin/perl
2# ipdb/cgi-bin/main.cgi
[8]3###
4# SVN revision info
5# $Date: 2013-05-15 21:26:55 +0000 (Wed, 15 May 2013) $
6# SVN revision $Rev: 595 $
7# Last update by $Author: kdeugau $
8###
[507]9# Copyright (C) 2004-2011 - Kris Deugau
[4]10
11use strict;
12use warnings;
13use CGI::Carp qw(fatalsToBrowser);
[593]14use CGI::Simple;
15use HTML::Template;
[4]16use DBI;
17use POSIX qw(ceil);
18use NetAddr::IP;
19
20use Sys::Syslog;
21
[445]22# don't remove! required for GNU/FHS-ish install from tarball
23##uselib##
[4]24
[592]25use CustIDCK;
[445]26use MyIPDB;
27
28openlog "IPDB","pid","$IPDB::syslog_facility";
29
[593]30## Environment. Collect some things, process some things, set some things...
31
[242]32# Collect the username from HTTP auth. If undefined, we're in
33# a test environment, or called without a username.
[4]34my $authuser;
35if (!defined($ENV{'REMOTE_USER'})) {
36 $authuser = '__temptest';
37} else {
38 $authuser = $ENV{'REMOTE_USER'};
39}
40
[593]41# anyone got a better name? :P
42my $thingroot = $ENV{SCRIPT_FILENAME};
43$thingroot =~ s|cgi-bin/main.cgi||;
44
[383]45syslog "debug", "$authuser active, $ENV{'REMOTE_ADDR'}";
[4]46
[593]47##fixme there *must* be a better order to do things in so this can go back where it was
48# CGI fiddling done here so we can declare %webvar so we can alter $webvar{action}
49# to show the right page on DB errors.
50# Set up the CGI object...
51my $q = new CGI::Simple;
52# ... and get query-string params as well as POST params if necessary
53$q->parse_query_string;
54
55# Convenience; saves changing all references to %webvar
56##fixme: tweak for handling <select multiple='y' size=3> (list with multiple selection)
57my %webvar = $q->Vars;
58
[125]59# Why not a global DB handle? (And a global statement handle, as well...)
60# Use the connectDB function, otherwise we end up confusing ourselves
61my $ip_dbh;
62my $errstr;
[158]63($ip_dbh,$errstr) = connectDB_My;
[125]64if (!$ip_dbh) {
[593]65 $webvar{action} = "dberr";
66} else {
67 initIPDBGlobals($ip_dbh);
[125]68}
[4]69
[593]70# Set up some globals
71$ENV{HTML_TEMPLATE_ROOT} = $thingroot."templates";
[242]72
[593]73my $header = HTML::Template->new(filename => "header.tmpl");
74my $footer = HTML::Template->new(filename => "footer.tmpl");
[242]75
[593]76$header->param(version => $IPDB::VERSION);
77$header->param(addperm => $IPDBacl{$authuser} =~ /a/);
78$header->param(webpath => $IPDB::webpath);
79print "Content-type: text/html\n\n", $header->output;
[4]80
81
82#main()
[593]83my $aclerr;
[4]84
85if(!defined($webvar{action})) {
[593]86 $webvar{action} = "index"; #shuts up the warnings.
[4]87}
88
[593]89my $page;
90if (-e "$ENV{HTML_TEMPLATE_ROOT}/$webvar{action}.tmpl") {
[594]91 $page = HTML::Template->new(filename => "$webvar{action}.tmpl", loop_context_vars => 1, global_vars => 1);
[593]92} else {
93 $page = HTML::Template->new(filename => "dunno.tmpl");
94}
95
[4]96if($webvar{action} eq 'index') {
97 showSummary();
[242]98} elsif ($webvar{action} eq 'addmaster') {
99 if ($IPDBacl{$authuser} !~ /a/) {
[593]100 $aclerr = 'addmaster';
[242]101 }
[4]102} elsif ($webvar{action} eq 'newmaster') {
103
[242]104 if ($IPDBacl{$authuser} !~ /a/) {
[593]105 $aclerr = 'addmaster';
[242]106 } else {
107 my $cidr = new NetAddr::IP $webvar{cidr};
[593]108 $page->param(cidr => "$cidr");
[4]109
[366]110 my ($code,$msg) = addMaster($ip_dbh, $webvar{cidr});
[4]111
[366]112 if ($code eq 'FAIL') {
[265]113 syslog "err", "Could not add master block '$webvar{cidr}' to database: '$msg'";
[593]114 $page->param(err => $msg);
[242]115 } else {
116 syslog "info", "$authuser added master block $webvar{cidr}";
117 }
[4]118
[242]119 } # ACL check
120
[4]121} # end add new master
122
123elsif($webvar{action} eq 'showmaster') {
124 showMaster();
125}
126elsif($webvar{action} eq 'showrouted') {
127 showRBlock();
128}
129elsif($webvar{action} eq 'listpool') {
[594]130 showPool();
[4]131}
132
133# Not modified or added; just shuffled
134elsif($webvar{action} eq 'assign') {
135 assignBlock();
136}
137elsif($webvar{action} eq 'confirm') {
138 confirmAssign();
139}
140elsif($webvar{action} eq 'insert') {
141 insertAssign();
142}
143elsif($webvar{action} eq 'edit') {
144 edit();
145}
146elsif($webvar{action} eq 'update') {
147 update();
148}
149elsif($webvar{action} eq 'delete') {
150 remove();
151}
152elsif($webvar{action} eq 'finaldelete') {
153 finalDelete();
154}
[395]155elsif ($webvar{action} eq 'nodesearch') {
[594]156 my $nodelist = getNodeList($ip_dbh);
157 $page->param(nodelist => $nodelist);
[593]158}
[395]159
[593]160# DB failure. Can't do much here, really.
161elsif ($webvar{action} eq 'dberr') {
162 $page->param(errmsg => $errstr);
[395]163}
164
[593]165# Default is an error. It shouldn't be possible to get here unless you're
166# randomly feeding in values for webvar{action}.
[4]167else {
168 my $rnd = rand 500;
169 my $boing = sprintf("%.2f", rand 500);
[593]170 my @excuses = (
171 "Aether cloudy. Ask again later about $webvar{action}.",
172 "The gods are unhappy with your sacrificial $webvar{action}.",
173 "Because one of $webvar{action}'s legs are both the same",
174 "<b>wibble</b><br>Can't $webvar{action}, the grue will get me!<br>Can't $webvar{action}, the grue will get me!",
175 "Hey, man, you've had your free $webvar{action}. Next one's gonna... <i>cost</i>....",
176 "I ain't done $webvar{action}",
177 "Oooo, look! A flying $webvar{action}!",
178 "$webvar{action} too evil, avoiding.",
179 "Rocks fall, $webvar{action} dies.",
180 "Bit bucket must be emptied before I can $webvar{action}..."
181 );
182 $page->param(dunno => $excuses[$rnd/50.0]);
[4]183}
[125]184## Finally! Done with that NASTY "case" emulation!
[4]185
186
[593]187# Switch to a different template if we've tripped on an ACL error.
188# Note that this should only be exercised in development, when
189# deeplinked, or when being attacked; normal ACL handling should
190# remove the links a user is not allowed to click on.
191if ($aclerr) {
192 $page = HTML::Template->new(filename => "aclerror.tmpl");
193 $page->param(ipdbfunc => $aclmsg{$aclerr});
194}
[4]195
[125]196# Clean up IPDB globals, DB handle, etc.
197finish($ip_dbh);
[200]198
[593]199## Do all our printing here so we can generate errors and stick them into the slots in the templates.
[200]200
[593]201# can't do this yet, too many blowups
202#print "Content-type: text/html\n\n", $header->output;
203$page->param(webpath => $IPDB::webpath);
204print $page->output;
205
206# include the admin tools link in the output?
207$footer->param(adminlink => ($IPDBacl{$authuser} =~ /A/));
208$footer->param(webpath => $IPDB::webpath);
209print $footer->output;
210
[125]211# Just in case something waaaayyy down isn't in place
212# properly... we exit explicitly.
[593]213exit 0;
[4]214
215
216# Initial display: Show master blocks with total allocated subnets, total free subnets
[125]217sub showSummary {
[594]218 my $masterlist = listSummary($ip_dbh);
219 $page->param(masterlist => $masterlist);
[125]220
[593]221 $page->param(addmaster => ($IPDBacl{$authuser} =~ /a/) );
[4]222} # showSummary
223
224
225# Display detail on master
226# Alrighty then! We're showing routed blocks within a single master this time.
227# We should be able to steal code from showSummary(), and if I'm really smart
228# I'll figger a way to munge the two together. (Once I've done that, everything
229# else should follow. YMMV.)
230sub showMaster {
231
[593]232 $page->param(master => $webvar{block});
233 $page->param(delmaster => ($IPDBacl{$authuser} =~ /d/));
[4]234
[594]235 my $rlist = listMaster($ip_dbh, $webvar{block});
236 $page->param(routedlist => $rlist);
[4]237
[594]238 my $flist = listFree($ip_dbh, $webvar{block});
239 $page->param(unrouted => $flist);
[595]240 $page->param(mayadd => ($IPDBacl{$authuser} =~ /a/));
[4]241} # showMaster
242
243
244# Display details of a routed block
245# Alrighty then! We're showing allocations within a routed block this time.
246# We should be able to steal code from showSummary() and showMaster(), and if
247# I'm really smart I'll figger a way to munge all three together. (Once I've
248# done that, everything else should follow. YMMV.
249# This time, we check the database before spewing, because we may
250# not have anything useful to spew.
251sub showRBlock {
252
[594]253 $page->param(master => $webvar{block});
254 $page->param(delrouted => $IPDBacl{$authuser} =~ /d/);
[4]255
[594]256 my $rcity = getRoutedCity($ip_dbh, $webvar{block});
[593]257 $page->param(rcity => $rcity);
[4]258
[594]259 my $blist = listRBlock($ip_dbh, $webvar{block});
260 $page->param(blocklist => $blist);
[4]261
[594]262 my $flist = listFree($ip_dbh, $webvar{block}, 'y');
263 $page->param(unassigned => $flist);
[4]264} # showRBlock
265
266
267# List the IPs used in a pool
[594]268sub showPool {
[4]269
270 my $cidr = new NetAddr::IP $webvar{pool};
271
[593]272 $page->param(block => $webvar{pool});
273 $page->param(netip => $cidr->addr);
274 $cidr++;
275 $page->param(gate => $cidr->addr);
276 $cidr--; $cidr--;
277 $page->param(bcast => $cidr->addr);
278 $page->param(mask => $cidr->mask);
[159]279
[4]280 # Snag pool info for heading
[594]281 my $poolinfo = getBlockData($ip_dbh, $webvar{pool});
[4]282
[594]283 $page->param(disptype => $disp_alloctypes{$poolinfo->{type}});
284 $page->param(city => $poolinfo->{city});
[593]285
[159]286 # Only display net/gw/bcast if it's a "real" netblock and not a PPP(oE) lunacy
[594]287 $page->param(realblock => $poolinfo->{type} =~ /^.d$/);
[4]288
289# probably have to add an "edit IP allocation" link here somewhere.
290
[594]291 my $plist = listPool($ip_dbh, $webvar{pool});
292 # technically slightly more efficient to check the ACL in an if () once outside the foreach
293 foreach (@{$plist}) {
294 $$_{maydel} = $IPDBacl{$authuser} =~ /d/;
[4]295 }
[594]296 $page->param(poolips => $plist);
297} # end showPool
[4]298
299
[125]300# Show "Add new allocation" page. Note that the actual page may
301# be one of two templates, and the lists come from the database.
[4]302sub assignBlock {
303
[242]304 if ($IPDBacl{$authuser} !~ /a/) {
[593]305 $aclerr = 'addblock';
[242]306 return;
307 }
308
[593]309 # hack pthbttt eww
310 $webvar{block} = '' if !$webvar{block};
[24]311
[593]312# hmm. TMPL_IF block and TMPL_ELSE block on these instead?
313 $page->param(rowa => 'row'.($webvar{block} eq '' ? 1 : 0));
314 $page->param(rowb => 'row'.($webvar{block} eq '' ? 0 : 1));
[595]315 $page->param(allocfrom => $webvar{block}); # fb-assign flag, if block is set, we're in fb-assign
[593]316
[595]317 if ($webvar{fbtype}) {
318
319 # Common case, according to reported usage. Block to assign is specified.
[24]320 my $block = new NetAddr::IP $webvar{block};
[550]321
[595]322 $webvar{fbtype} = '' if !$webvar{fbtype};
323 if ($webvar{fbtype} eq 'i') {
324 my $ipinfo = getBlockData($ip_dbh, $webvar{block}, 'i');
325 my $pinfo = getBlockData($ip_dbh, $webvar{parent});
326 $page->param(
327 fbip => 1,
328 block => $ipinfo->{block},
329 fbdisptype => $list_alloctypes{$ipinfo->{type}},
330 type => $ipinfo->{type},
331 allocfrom => $pinfo->{block},
332 );
333 } elsif ($webvar{fbtype} eq 'n') {
334 $page->param(
335 fbrouted => 1,
336 fbdisptype => $list_alloctypes{'rm'},
337 type => 'rm',
338 block => $block,
339 );
[593]340 } else {
[594]341 # get "primary" alloctypes, since these are all that can correctly be assigned if we're in this branch
[595]342 my $tlist = getTypeList($ip_dbh, 'n');
[594]343 $tlist->[0]->{sel} = 1;
[595]344 $page->param(typelist => $tlist, block => $block);
[98]345 }
[595]346
[24]347 } else {
[595]348
349 # Uncommon case, according to reported usage. Block to assign needs to be found based on criteria.
[594]350 my $mlist = getMasterList($ip_dbh, 'c');
351 $page->param(masterlist => $mlist);
[593]352
353 my @pops;
[595]354 foreach my $pop (@citylist) {
[593]355 my %row = (pop => $pop);
356 push (@pops, \%row);
[91]357 }
[593]358 $page->param(pops => \@pops);
359
[594]360 # get all standard alloctypes
361 my $tlist = getTypeList($ip_dbh, 'a');
362 $tlist->[0]->{sel} = 1;
363 $page->param(typelist => $tlist);
[24]364 }
[593]365 my @cities;
[91]366 foreach my $city (@citylist) {
[593]367 my %row = (city => $city);
368 push (@cities, \%row);
[91]369 }
[593]370 $page->param(citylist => \@cities);
[4]371
[394]372## node hack
[594]373 my $nlist = getNodeList($ip_dbh);
374 $page->param(nodelist => $nlist);
[394]375## end node hack
376
[593]377 $page->param(privdata => $IPDBacl{$authuser} =~ /s/);
[286]378
[4]379} # assignBlock
380
381
382# Take info on requested IP assignment and see what we can provide.
383sub confirmAssign {
[242]384 if ($IPDBacl{$authuser} !~ /a/) {
[593]385 $aclerr = 'addblock';
[242]386 return;
387 }
[4]388
389 my $cidr;
390 my $alloc_from;
391
392 # Going to manually validate some items.
393 # custid and city are automagic.
[125]394 return if !validateInput();
[4]395
396# Several different cases here.
397# Static IP vs netblock
398# + Different flavours of static IP
399# + Different flavours of netblock
400
[550]401 if ($webvar{alloctype} =~ /^.i$/ && $webvar{fbassign} ne 'y') {
[594]402 my $plist = getPoolSelect($ip_dbh, $webvar{alloctype}, $webvar{pop});
[593]403 $page->param(staticip => 1);
[594]404 $page->param(poollist => $plist) if $plist;
[4]405 $cidr = "Single static IP";
[593]406##fixme: need to handle "no available pools"
[4]407
408 } else { # end show pool options
[24]409
[594]410 if ($webvar{fbassign} && $webvar{fbassign} eq 'y') {
[595]411 $cidr = new NetAddr::IP $webvar{block};
[550]412 $alloc_from = new NetAddr::IP $webvar{allocfrom};
[24]413 $webvar{maskbits} = $cidr->masklen;
414 } else { # done with direct freeblocks assignment
415
416 if (!$webvar{maskbits}) {
[593]417 $page->param(err => "Please specify a CIDR mask length.");
[125]418 return;
[24]419 }
[594]420
421##fixme ick, ew, bleh. gotta handle the failure message generation better. push it into findAllocateFrom()?
422 my $failmsg = "No suitable free block found.<br>\n";
[192]423 if ($webvar{alloctype} eq 'rm') {
[594]424 $failmsg .= "We do not have a free routeable block of that size.<br>\n".
425 "You will have to either route a set of smaller netblocks or a single smaller netblock.";
[4]426 } else {
[211]427 if ($webvar{alloctype} =~ /^.[pc]$/) {
[594]428 $failmsg .= "You will have to route another superblock from one of the<br>\n".
429 "master blocks or chose a smaller block size for the pool.";
[24]430 } else {
[593]431 if (!$webvar{pop}) {
432 $page->param(err => 'Please select a POP to route the block from/through.');
433 return;
434 }
[594]435 $failmsg .= "You will have to route another superblock to $webvar{pop}<br>\n".
436 "from one of the master blocks or chose a smaller blocksize.";
[24]437 }
[4]438 }
[594]439
440 $cidr = findAllocateFrom($ip_dbh, $webvar{maskbits}, $webvar{alloctype}, $webvar{city}, $webvar{pop},
441 (master => $webvar{allocfrom}, allowpriv => $webvar{allowpriv}) );
442 if (!$cidr) {
[593]443 $page->param(err => $failmsg);
[125]444 return;
[24]445 }
[594]446 $cidr = new NetAddr::IP $cidr;
[550]447
448# this chunk now specific to "guided" allocation; freeblock-select can now slice-n-dice on its own.
[595]449 $alloc_from = "$cidr";
[550]450 # If the block to be allocated is smaller than the one we found,
451 # figure out the "real" block to be allocated.
452 if ($cidr->masklen() ne $webvar{maskbits}) {
453 my $maskbits = $cidr->masklen();
454 my @subblocks;
455 while ($maskbits++ < $webvar{maskbits}) {
456 @subblocks = $cidr->split($maskbits);
457 }
458 $cidr = $subblocks[0];
459 }
[24]460 } # check for freeblocks assignment or IPDB-controlled assignment
[4]461
[159]462 } # if ($webvar{alloctype} =~ /^.i$/)
[4]463
[394]464## node hack
465 if ($webvar{node} && $webvar{node} ne '-') {
[594]466 my $nodename = getNodeName($ip_dbh, $webvar{node});
[593]467 $page->param(nodename => $nodename);
468 $page->param(nodeid => $webvar{node});
[394]469 }
470## end node hack
471
[4]472 # Stick in the allocation data
[593]473 $page->param(alloc_type => $webvar{alloctype});
474 $page->param(typefull => $q->escapeHTML($disp_alloctypes{$webvar{alloctype}}));
475 $page->param(alloc_from => $alloc_from);
476 $page->param(cidr => $cidr);
477 $page->param(city => $q->escapeHTML($webvar{city}));
478 $page->param(custid => $webvar{custid});
479 $page->param(circid => $q->escapeHTML($webvar{circid}));
480 $page->param(desc => $q->escapeHTML($webvar{desc}));
[4]481
[593]482##fixme: find a way to have the displayed copy have <br> substitutions
483# for newlines, and the <input> value have either encoded or bare newlines.
484# Also applies to privdata.
485 $page->param(notes => $q->escapeHTML($webvar{notes},'y'));
486
[286]487 # Check to see if user is allowed to do anything with sensitive data
488 my $privdata = '';
[593]489 $page->param(privdata => $q->escapeHTML($webvar{privdata},'y'))
490 if $IPDBacl{$authuser} =~ /s/;
491
492 # Yay! This now has it's very own little home.
493 $page->param(billinguser => $webvar{userid})
[315]494 if $webvar{userid};
[286]495
[593]496##fixme: this is only needed iff confirm.tmpl and
497# confirmRemove.tmpl are merged (quite possible, just
498# a little tedious)
499 $page->param(action => "insert");
[286]500
[4]501} # end confirmAssign
502
503
504# Do the work of actually inserting a block in the database.
505sub insertAssign {
[242]506 if ($IPDBacl{$authuser} !~ /a/) {
[593]507 $aclerr = 'addblock';
[242]508 return;
509 }
[4]510 # Some things are done more than once.
[125]511 return if !validateInput();
[4]512
[286]513 if (!defined($webvar{privdata})) {
514 $webvar{privdata} = '';
515 }
[125]516 # $code is "success" vs "failure", $msg contains OK for a
517 # successful netblock allocation, the IP allocated for static
518 # IP, or the error message if an error occurred.
[593]519
[125]520 my ($code,$msg) = allocateBlock($ip_dbh, $webvar{fullcidr}, $webvar{alloc_from},
521 $webvar{custid}, $webvar{alloctype}, $webvar{city}, $webvar{desc}, $webvar{notes},
[394]522 $webvar{circid}, $webvar{privdata}, $webvar{node});
[4]523
[549]524 if ($code eq 'OK' || $code eq 'WARN') {
[125]525 if ($webvar{alloctype} =~ /^.i$/) {
[315]526 $msg =~ s|/32||;
[593]527 $page->param(staticip => $msg);
528 $page->param(custid => $webvar{custid});
529 $page->param(billinguser => $webvar{billinguser});
[445]530 mailNotify($ip_dbh, "a$webvar{alloctype}", "ADDED: $disp_alloctypes{$webvar{alloctype}} allocation",
531 "$disp_alloctypes{$webvar{alloctype}} $msg allocated to customer $webvar{custid}\n".
532 "Description: $webvar{desc}\n\nAllocated by: $authuser\n");
[125]533 } else {
[315]534 my $netblock = new NetAddr::IP $webvar{fullcidr};
[593]535 $page->param(fullcidr => $webvar{fullcidr});
536 $page->param(alloctype => $disp_alloctypes{$webvar{alloctype}});
537 $page->param(custid => $webvar{custid});
538 if ($webvar{alloctype} eq 'pr' && $webvar{billinguser}) {
539 $page->param(billinguser => $webvar{billinguser});
540 $page->param(custid => $webvar{custid});
541 $page->param(netaddr => $netblock->addr);
542 $page->param(masklen => $netblock->masklen);
[549]543 }
[445]544 mailNotify($ip_dbh, "a$webvar{alloctype}", "ADDED: $disp_alloctypes{$webvar{alloctype}} allocation",
545 "$disp_alloctypes{$webvar{alloctype}} $webvar{fullcidr} allocated to customer $webvar{custid}\n".
546 "Description: $webvar{desc}\n\nAllocated by: $authuser\n");
[122]547 }
[125]548 syslog "notice", "$authuser allocated '$webvar{fullcidr}' to '$webvar{custid}' as ".
[251]549 "'$webvar{alloctype}' ($msg)";
[125]550 } else {
551 syslog "err", "Allocation of '$webvar{fullcidr}' to '$webvar{custid}' as ".
552 "'$webvar{alloctype}' by $authuser failed: '$msg'";
[593]553 $page->param(err => "Allocation of $webvar{fullcidr} as '$disp_alloctypes{$webvar{alloctype}}'".
[159]554 " failed:<br>\n$msg\n");
[125]555 }
[122]556
[4]557} # end insertAssign()
558
559
560# Does some basic checks on common input data to make sure nothing
561# *really* weird gets in to the database through this script.
562# Does NOT do complete input validation!!!
563sub validateInput {
564 if ($webvar{city} eq '-') {
[593]565 $page->param(err => 'Please choose a city');
[125]566 return;
[4]567 }
[140]568
569 # Alloctype check.
[4]570 chomp $webvar{alloctype};
[140]571 if (!grep /$webvar{alloctype}/, keys %disp_alloctypes) {
572 # Danger! Danger! alloctype should ALWAYS be set by a dropdown. Anyone
573 # managing to call things in such a way as to cause this deserves a cryptic error.
[593]574 $page->param(err => 'Invalid alloctype');
[140]575 return;
576 }
577
578 # CustID check
[4]579 # We have different handling for customer allocations and "internal" or "our" allocations
[209]580 if ($def_custids{$webvar{alloctype}} eq '') {
[4]581 if (!$webvar{custid}) {
[593]582 $page->param(err => 'Please enter a customer ID.');
[125]583 return;
[4]584 }
[594]585 # Crosscheck with billing.
586 my $status = CustIDCK->custid_exist($webvar{custid});
587 if ($CustIDCK::Error) {
588 $page->param(err => "Error verifying customer ID: ".$CustIDCK::ErrMsg);
589 return;
[4]590 }
[594]591 if (!$status) {
592 $page->param(err => "Customer ID not valid. Make sure the Customer ID ".
593 "is correct.<br>\nUse STAFF for staff static IPs, and $IPDB::defcustid for any other ".
594 "non-customer assignments.");
595 return;
596 }
[56]597# print "<!-- [ In validateInput(). Insert customer ID cross-check here. ] -->\n";
[140]598 } else {
[168]599 # New! Improved! And now Loaded From The Database!!
[56]600 if ((!$webvar{custid}) || ($webvar{custid} ne 'STAFF')) {
[168]601 $webvar{custid} = $def_custids{$webvar{alloctype}};
[56]602 }
[4]603 }
[125]604
605 # Check POP location
606 my $flag;
[192]607 if ($webvar{alloctype} eq 'rm') {
[125]608 $flag = 'for a routed netblock';
609 foreach (@poplist) {
610 if (/^$webvar{city}$/) {
611 $flag = 'n';
612 last;
613 }
614 }
615 } else {
616 $flag = 'n';
[445]617##fixme: hook to force-set POP or city on certain alloctypes
618# if ($webvar{alloctype =~ /foo,bar,bz/ { $webvar{pop} = 'blah'; }
[594]619 if ($webvar{pop} && $webvar{pop} =~ /^-$/) {
[125]620 $flag = 'to route the block from/through';
621 }
622 }
[593]623
624 # if the alloctype has a restricted city/POP list as determined above,
625 # and the reqested city/POP does not match that list, complain
[125]626 if ($flag ne 'n') {
[593]627 $page->param(err => "Please choose a valid POP location $flag. Valid ".
[125]628 "POP locations are currently:<br>\n".join (" - ", @poplist));
629 return;
630 }
631
632 return 'OK';
[4]633} # end validateInput
634
635
636# Displays details of a specific allocation in a form
637# Allows update/delete
638# action=edit
639sub edit {
640
[594]641 # snag block info from db
642 my $blockinfo = getBlockData($ip_dbh, $webvar{block});
[4]643
[594]644 # Clean up extra whitespace on alloc type. Mainly a legacy-data cleanup.
645 $blockinfo->{type} =~ s/\s//;
[4]646
[593]647 $page->param(block => $webvar{block});
[4]648
[594]649 $page->param(custid => $blockinfo->{custid});
650 $page->param(city => $blockinfo->{city});
651 $page->param(circid => $blockinfo->{circuitid});
652 $page->param(desc => $blockinfo->{description});
653 $page->param(notes => $blockinfo->{notes});
[4]654
[192]655##fixme The check here should be built from the database
[593]656# Need to expand to support pool types too
[594]657 if ($blockinfo->{type} =~ /^.[ne]$/ && $IPDBacl{$authuser} =~ /c/) {
[593]658 $page->param(changetype => 1);
659 $page->param(alloctype => [
[594]660 { selme => ($blockinfo->{type} eq 'me'), type => "me", disptype => "Dialup netblock" },
661 { selme => ($blockinfo->{type} eq 'de'), type => "de", disptype => "Dynamic DSL netblock" },
662 { selme => ($blockinfo->{type} eq 'ce'), type => "ce", disptype => "Dynamic cable netblock" },
663 { selme => ($blockinfo->{type} eq 'we'), type => "we", disptype => "Dynamic wireless netblock" },
664 { selme => ($blockinfo->{type} eq 'cn'), type => "cn", disptype => "Customer netblock" },
665 { selme => ($blockinfo->{type} eq 'en'), type => "en", disptype => "End-use netblock" },
666 { selme => ($blockinfo->{type} eq 'in'), type => "in", disptype => "Internal netblock" },
[593]667 ]
668 );
669 } else {
[594]670 $page->param(disptype => $disp_alloctypes{$blockinfo->{type}});
671 $page->param(type => $blockinfo->{type});
[593]672 }
673
[394]674## node hack
[594]675 my ($nodeid,$nodename) = getNodeInfo($ip_dbh, $webvar{block});
[593]676 $page->param(havenodeid => $nodeid);
677
[594]678 if ($blockinfo->{type} eq 'fr' || $blockinfo->{type} eq 'bi') {
[593]679 $page->param(typesupportsnodes => 1);
680 $page->param(nodename => $nodename);
681
682##fixme: this whole hack needs cleanup and generalization for all alloctypes
683##fixme: arguably a bug that presence of a nodeid implies it can be changed..
684# but except for manual database changes, only the two types fr and bi can
685# (currently) have a nodeid set in the first place.
686 if ($IPDBacl{$authuser} =~ /c/) {
[594]687 my $nlist = getNodeList($ip_dbh);
688 foreach (@{$nlist}) {
689 $$_{selme} = ($$_{node_id} == $nodeid);
[394]690 }
[594]691 $page->param(nodelist => $nlist);
[394]692 }
693 }
694## end node hack
[593]695
[594]696 my ($lastmod,undef) = split /\s+/, $blockinfo->{lastmod};
[593]697 $page->param(lastmod => $lastmod);
[35]698
[593]699 # not happy with the upside-down logic, but...
[594]700 $page->param(swipable => $blockinfo->{type} !~ /.i/);
701 $page->param(swip => $blockinfo->{swip} ne 'n') if $blockinfo->{swip};
[244]702
[286]703 # Check to see if we can display sensitive data
[593]704 $page->param(nocling => $IPDBacl{$authuser} =~ /s/);
[594]705 $page->param(privdata => $blockinfo->{privdata});
[286]706
[593]707 # ACL trickery - these two template booleans control the presence of all form/input tags
708 $page->param(maychange => $IPDBacl{$authuser} =~ /c/);
709 $page->param(maydel => $IPDBacl{$authuser} =~ /d/);
[4]710
711} # edit()
712
713
714# Stuff new info about a block into the db
715# action=update
716sub update {
[286]717 if ($IPDBacl{$authuser} !~ /c/) {
[593]718 $aclerr = 'updateblock';
[286]719 return;
720 }
[4]721
722 # Make sure incoming data is in correct format - custID among other things.
[220]723 return if !validateInput;
[4]724
[594]725 $webvar{swip} = 'n' if !$webvar{swip};
726
727 my %updargs = (
728 custid => $webvar{custid},
729 city => $webvar{city},
730 description => $webvar{desc},
731 notes => $webvar{notes},
732 circuitid => $webvar{circid},
733 block => $webvar{block},
734 type => $webvar{alloctype},
735 swip => $webvar{swip},
736 );
737
738 # Semioptional values
739 $updargs{privdata} = $webvar{privdata} if $IPDBacl{$authuser} =~ /s/;
740 $updargs{node} = $webvar{node} if $webvar{node};
741
742 my ($code,$msg) = updateBlock($ip_dbh, %updargs);
743
744 if ($code eq 'FAIL') {
[163]745 syslog "err", "$authuser could not update block/IP '$webvar{block}': '$msg'";
[593]746 $page->param(err => "Could not update block/IP $webvar{block}: $msg");
[125]747 return;
[4]748 }
749
750 # If we get here, the operation succeeded.
751 syslog "notice", "$authuser updated $webvar{block}";
[594]752##fixme: log details of the change? old way is in the .debug stream anyway.
[445]753##fixme: need to wedge something in to allow "update:field" notifications
754## hmm. how to tell what changed? O_o
755mailNotify($ip_dbh, 's:swi', "SWIPed: $disp_alloctypes{$webvar{alloctype}} $webvar{block}",
756 "$webvar{block} had SWIP status changed to \"Yes\" by $authuser") if $webvar{swip} eq 'on';
[4]757
[593]758## node hack
759 if ($webvar{node} && $webvar{node} ne '-') {
[594]760 my $nodename = getNodeName($ip_dbh, $webvar{node});
[593]761 $page->param(nodename => $nodename);
762 }
763## end node hack
764
[378]765 # Link back to browse-routed or list-pool page on "Update complete" page.
[594]766 my $cblock;
[378]767 if (my $pooltype = ($webvar{alloctype} =~ /^(.)i$/) ) {
[593]768 $page->param(backpool => 1);
[594]769 $cblock = ipParent($ip_dbh, $webvar{block});
[378]770 } else {
[594]771 $cblock = blockParent($ip_dbh, $webvar{block});
[378]772 }
[594]773 $page->param(backblock => $cblock->{cidr});
[378]774
[594]775 # Do some HTML fiddling here instead of using ESCAPE=HTML in the template,
776 # because otherwise we can't convert \n to <br>. *sigh*
777 $webvar{notes} = $q->escapeHTML($webvar{notes}); # escape first...
778 $webvar{notes} =~ s/\n/<br>\n/; # ... then convert newlines
779 $webvar{privdata} = ($webvar{privdata} ? $q->escapeHTML($webvar{privdata}) : "&nbsp;");
780 $webvar{privdata} =~ s/\n/<br>\n/;
781
[593]782 $page->param(cidr => $webvar{block});
783 $page->param(city => $webvar{city});
784 $page->param(disptype => $disp_alloctypes{$webvar{alloctype}});
785 $page->param(custid => $webvar{custid});
786 $page->param(swip => $webvar{swip} eq 'on' ? 'Yes' : 'No');
[594]787 $page->param(circid => $webvar{circid});
788 $page->param(desc => $webvar{desc});
789 $page->param(notes => $webvar{notes});
[593]790 $page->param(privdata => $webvar{privdata})
791 if $IPDBacl{$authuser} =~ /s/;
[4]792
793} # update()
794
795
796# Delete an allocation.
[125]797sub remove {
[242]798 if ($IPDBacl{$authuser} !~ /d/) {
[593]799 $aclerr = 'delblock';
[242]800 return;
801 }
802
[4]803 # Serves'em right for getting here...
804 if (!defined($webvar{block})) {
[593]805 $page->param(err => "Can't delete a block that doesn't exist");
[125]806 return;
[4]807 }
808
[594]809 my $blockdata;
[4]810
[192]811 if ($webvar{alloctype} eq 'rm') {
[4]812
[594]813 $blockdata->{block} = $webvar{block};
814 $blockdata->{city} = getRoutedCity($ip_dbh, $webvar{block});
815 $blockdata->{custid} = "N/A";
816 $blockdata->{type} = $webvar{alloctype};
817 $blockdata->{circuitid} = "N/A";
818 $blockdata->{description} = "N/A";
819 $blockdata->{notes} = "N/A";
820 $blockdata->{privdata} = "N/A";
[4]821
822 } elsif ($webvar{alloctype} eq 'mm') {
[593]823
[594]824 $blockdata->{block} = $webvar{block};
825 $blockdata->{city} = "N/A";
826 $blockdata->{custid} = "N/A";
827 $blockdata->{type} = $webvar{alloctype};
828 $blockdata->{circuitid} = "N/A";
829 $blockdata->{description} = "N/A";
830 $blockdata->{notes} = "N/A";
831 $blockdata->{privdata} = "N/A";
[593]832
[594]833 } else {
[4]834
[594]835 $blockdata = getBlockData($ip_dbh, $webvar{block})
[4]836
837 } # end cases for different alloctypes
838
[594]839 $page->param(block => $blockdata->{block});
840 $page->param(disptype => $disp_alloctypes{$blockdata->{type}});
841 $page->param(type => $blockdata->{type});
842 $page->param(city => $blockdata->{city});
843 $page->param(custid => $blockdata->{custid});
844 $page->param(circid => $blockdata->{circuitid});
845 $page->param(desc => $blockdata->{description});
846 $blockdata->{notes} = $q->escapeHTML($blockdata->{notes});
847 $blockdata->{notes} =~ s/\n/<br>\n/;
848 $page->param(notes => $blockdata->{notes});
849 $blockdata->{privdata} = $q->escapeHTML($blockdata->{privdata});
850 $blockdata->{privdata} = '&nbsp;' if !$blockdata->{privdata};
851 $blockdata->{privdata} =~ s/\n/<br>\n/;
852 $page->param(privdata => $blockdata->{privdata}) if $IPDBacl{$authuser} =~ /s/;
853 $page->param(delpool => $blockdata->{type} =~ /^.[pd]$/);
[4]854
[593]855} # end remove()
[4]856
857
858# Delete an allocation. Return it to the freeblocks table; munge
859# data as necessary to keep as few records as possible in freeblocks
860# to prevent weirdness when allocating blocks later.
861# Remove IPs from pool listing if necessary
862sub finalDelete {
[242]863 if ($IPDBacl{$authuser} !~ /d/) {
[593]864 $aclerr = 'delblock';
[242]865 return;
866 }
[4]867
[356]868 # need to retrieve block data before deleting so we can notify on that
[594]869 my $blockinfo = getBlockData($ip_dbh, $webvar{block});
[356]870
[125]871 my ($code,$msg) = deleteBlock($ip_dbh, $webvar{block}, $webvar{alloctype});
[4]872
[593]873 $page->param(block => $webvar{block});
[125]874 if ($code eq 'OK') {
[594]875 syslog "notice", "$authuser deallocated '$webvar{alloctype}'-type netblock $webvar{block} ".
876 $blockinfo->{custid}.", ".$blockinfo->{city}.", desc='".$blockinfo->{description}."'";
[445]877 mailNotify($ip_dbh, 'da', "REMOVED: $disp_alloctypes{$webvar{alloctype}} $webvar{block}",
878 "$disp_alloctypes{$webvar{alloctype}} $webvar{block} deallocated by $authuser\n".
[594]879 "CustID: ".$blockinfo->{custid}."\nCity: ".$blockinfo->{city}.
880 "\nDescription: ".$blockinfo->{description}."\n");
[125]881 } else {
[593]882 $page->param(failmsg => $msg);
[125]883 if ($webvar{alloctype} =~ /^.i$/) {
884 syslog "err", "$authuser could not deallocate static IP '$webvar{block}': '$msg'";
885 } else {
886 syslog "err", "$authuser could not deallocate netblock '$webvar{block}': '$msg'";
[593]887 $page->param(netblock => 1);
[4]888 }
[102]889 }
890
[4]891} # finalDelete
Note: See TracBrowser for help on using the repository browser.