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

Last change on this file since 780 was 780, checked in by Kris Deugau, 9 years ago

/trunk

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