source: trunk/cgi-bin/main.cgi@ 889

Last change on this file since 889 was 889, checked in by Kris Deugau, 8 years ago

/trunk

Revert r888/re-commit r883; mixed up which code was newer.
Add a docucomment for better reminder

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