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

Last change on this file since 918 was 918, checked in by Kris Deugau, 6 years ago

/trunk

Continue adding a generalized block-notice system. See #17 and #23, sort of.

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