source: branches/acl/cgi-bin/main.cgi@ 221

Last change on this file since 221 was 221, checked in by Kris Deugau, 19 years ago

/branches/acl

Basic ACL support - load ACL data from db, do or don't display
"Add Master" link, do or don't display "Admin tools" link.
Added tabledef for users/ACLs

  • Property svn:executable set to *
  • Property svn:keywords set to Date Rev Author
File size: 44.8 KB
Line 
1#!/usr/bin/perl
2# ipdb/cgi-bin/main.cgi
3# Started munging from noc.vianet's old IPDB 04/22/2004
4###
5# SVN revision info
6# $Date: 2005-04-13 17:24:15 +0000 (Wed, 13 Apr 2005) $
7# SVN revision $Rev: 221 $
8# Last update by $Author: kdeugau $
9###
10
11use strict;
12use warnings;
13use CGI::Carp qw(fatalsToBrowser);
14use DBI;
15use CommonWeb qw(:ALL);
16use MyIPDB;
17use POSIX qw(ceil);
18use NetAddr::IP;
19
20use Sys::Syslog;
21
22openlog "IPDB","pid","local2";
23
24# Present HTTP AUTH headers, as well as opening content-type.
25#print 'WWW-Authenticate: Basic realm="ViaNet IP Database"\n';
26# Collect the username from HTTP auth. If undefined, we're in a test environment.
27my $authuser;
28if (!defined($ENV{'REMOTE_USER'})) {
29 $authuser = '__temptest';
30} else {
31 $authuser = $ENV{'REMOTE_USER'};
32}
33
34syslog "debug", "$authuser active";
35
36# Why not a global DB handle? (And a global statement handle, as well...)
37# Use the connectDB function, otherwise we end up confusing ourselves
38my $ip_dbh;
39my $sth;
40my $errstr;
41($ip_dbh,$errstr) = connectDB_My;
42if (!$ip_dbh) {
43 printAndExit("Database error: $errstr\n");
44}
45initIPDBGlobals($ip_dbh);
46
47#prototypes
48sub viewBy($$); # feed it the category and query
49sub queryResults($$$); # args is the sql, the page# and the rowCount
50# Needs rewrite/rename
51sub countRows($); # returns first element of first row of passed SQL
52 # Only usage passes "select count(*) ..."
53
54# Global variables
55my $RESULTS_PER_PAGE = 50;
56my %webvar = parse_post();
57cleanInput(\%webvar);
58
59
60#main()
61
62if(!defined($webvar{action})) {
63 $webvar{action} = "<NULL>"; #shuts up the warnings.
64}
65
66if($webvar{action} eq 'index') {
67 showSummary();
68} elsif ($webvar{action} eq 'newmaster') {
69 printHeader('');
70
71 my $cidr = new NetAddr::IP $webvar{cidr};
72
73 print "<div type=heading align=center>Adding $cidr as master block....</div>\n";
74
75 # Allow transactions, and raise an exception on errors so we can catch it later.
76 # Use local to make sure these get "reset" properly on exiting this block
77 local $ip_dbh->{AutoCommit} = 0;
78 local $ip_dbh->{RaiseError} = 1;
79
80 # Wrap the SQL in a transaction
81 eval {
82 $sth = $ip_dbh->prepare("insert into masterblocks values ('$webvar{cidr}')");
83 $sth->execute;
84
85# Unrouted blocks aren't associated with a city (yet). We don't rely on this
86# elsewhere though; legacy data may have traps and pitfalls in it to break this.
87# Thus the "routed" flag.
88
89 $sth = $ip_dbh->prepare("insert into freeblocks (cidr,maskbits,city,routed)".
90 " values ('$webvar{cidr}',".$cidr->masklen.",'<NULL>','n')");
91 $sth->execute;
92
93 # If we get here, everything is happy. Commit changes.
94 $ip_dbh->commit;
95 }; # end eval
96
97 if ($@) {
98 carp "Transaction aborted because $@";
99 eval { $ip_dbh->rollback; };
100 syslog "err", "Could not add master block '$webvar{cidr}' to database: '$@'";
101 printError("Could not add master block $webvar{cidr} to database: $@");
102 } else {
103 print "<div type=heading align=center>Success!</div>\n";
104 syslog "info", "$authuser added master block $webvar{cidr}";
105 }
106
107} # end add new master
108
109elsif($webvar{action} eq 'showmaster') {
110 showMaster();
111}
112elsif($webvar{action} eq 'showrouted') {
113 showRBlock();
114}
115elsif($webvar{action} eq 'listpool') {
116 listPool();
117}
118elsif($webvar{action} eq 'search') {
119 printHeader('');
120 if (!$webvar{input}) {
121 # No search term. Display everything.
122 viewBy('all', '');
123 } else {
124 # Search term entered. Display matches.
125 # We should really sanitize $webvar{input}, no?
126 viewBy($webvar{searchfor}, $webvar{input});
127 }
128}
129
130# Not modified or added; just shuffled
131elsif($webvar{action} eq 'assign') {
132 assignBlock();
133}
134elsif($webvar{action} eq 'confirm') {
135 confirmAssign();
136}
137elsif($webvar{action} eq 'insert') {
138 insertAssign();
139}
140elsif($webvar{action} eq 'edit') {
141 edit();
142}
143elsif($webvar{action} eq 'update') {
144 update();
145}
146elsif($webvar{action} eq 'delete') {
147 remove();
148}
149elsif($webvar{action} eq 'finaldelete') {
150 finalDelete();
151}
152
153# Default is an error. It shouldn't be possible to easily get here.
154# The only way I can think of offhand is to just call main.cgi bare-
155# which is not in any way guaranteed to provide anything useful.
156else {
157 printHeader('');
158 my $rnd = rand 500;
159 my $boing = sprintf("%.2f", rand 500);
160 my @excuses = ("Aether cloudy. Ask again later.","The gods are unhappy with your sacrifice.",
161 "Because one of it's legs are both the same", "*wibble*",
162 "Hey! Stop pushing my buttons!", "I ain't done nuttin'", "9",
163 "8", "9", "10", "11", "12", "13", "14", "15", "16", "17");
164 printAndExit("Error $boing: ".$excuses[$rnd/30.0]);
165}
166## Finally! Done with that NASTY "case" emulation!
167
168
169
170# Clean up IPDB globals, DB handle, etc.
171finish($ip_dbh);
172
173print qq(<div align=right style="position: absolute; right: 30px;">).
174 qq(<a href="/ip/cgi-bin/admin.cgi">Admin tools</a></div><br>\n)
175 if $IPDBacl{$authuser} =~ /A/;
176
177# We print the footer here, so we don't have to do it elsewhere.
178printFooter;
179# Just in case something waaaayyy down isn't in place
180# properly... we exit explicitly.
181exit;
182
183
184
185sub viewBy($$) {
186 my ($category,$query) = @_;
187
188 # Local variables
189 my $sql;
190
191#print "<pre>\n";
192
193#print "start querysub: query '$query'\n";
194# this may happen with more than one subcategory. Unlikely, but possible.
195
196 # Calculate start point for LIMIT clause
197 my $offset = ($webvar{page}-1)*$RESULTS_PER_PAGE;
198
199# Possible cases:
200# 1) Partial IP/subnet. Treated as "first-three-octets-match" in old IPDB,
201# I should be able to handle it similarly here.
202# 2a) CIDR subnet. Treated more or less as such in old IPDB.
203# 2b) CIDR netmask. Not sure how it's treated.
204# 3) Customer ID. Not handled in old IPDB
205# 4) Description.
206# 5) Invalid data which might be interpretable as an IP or something, but
207# which probably shouldn't be for reasons of sanity.
208
209 if ($category eq 'all') {
210
211 print qq(<div class="heading">Showing all netblock and static-IP allocations</div><br>\n);
212
213 # Need to assemble SQL query in this order to avoid breaking things.
214 $sql = "select cidr,custid,type,city,description from searchme";
215 my $count = countRows("select count(*) from ($sql) foo");
216 $sql .= " order by cidr limit $RESULTS_PER_PAGE offset $offset";
217 queryResults($sql, $webvar{page}, $count);
218
219 } elsif ($category eq 'cust') {
220
221 print qq(<div class="heading">Searching for Customer IDs containing '$query'</div><br>\n);
222
223 # Query for a customer ID. Note that we can't restrict to "numeric-only"
224 # as we have non-numeric custIDs in the legacy data. :/
225 $sql = "select cidr,custid,type,city,description from searchme where custid ilike '%$query%'";
226 my $count = countRows("select count(*) from ($sql) foo");
227 $sql .= " order by cidr limit $RESULTS_PER_PAGE offset $offset";
228 queryResults($sql, $webvar{page}, $count);
229
230 } elsif ($category eq 'desc') {
231
232 print qq(<div class="heading">Searching for descriptions containing '$query'</div><br>\n);
233 # Query based on description (includes "name" from old DB).
234 $sql = "select cidr,custid,type,city,description from searchme where description ilike '%$query%'";
235 my $count = countRows("select count(*) from ($sql) foo");
236 $sql .= " order by cidr limit $RESULTS_PER_PAGE offset $offset";
237 queryResults($sql, $webvar{page}, $count);
238
239 } elsif ($category =~ /ipblock/) {
240
241 # Query is for a partial IP, a CIDR block in some form, or a flat IP.
242 print qq(<div class="heading">Searching for IP-based matches on '$query'</div><br>\n);
243
244 $query =~ s/\s+//g;
245 if ($query =~ /\//) {
246 # 209.91.179/26 should show all /26 subnets in 209.91.179
247 my ($net,$maskbits) = split /\//, $query;
248 if ($query =~ /^(\d{1,3}\.){3}\d{1,3}\/\d{2}$/) {
249 # /0->/9 are silly to worry about right now. I don't think
250 # we'll be getting a class A anytime soon. <g>
251 $sql = "select cidr,custid,type,city,description from searchme where cidr='$query'";
252 queryResults($sql, $webvar{page}, 1);
253 } else {
254 print "Finding all blocks with netmask /$maskbits, leading octet(s) $net<br>\n";
255 # Partial match; beginning of subnet and maskbits are provided
256 $sql = "select cidr,custid,type,city,description from searchme where ".
257 "text(cidr) like '$net%' and text(cidr) like '%$maskbits'";
258 my $count = countRows("select count(*) from ($sql) foo");
259 $sql .= " order by cidr limit $RESULTS_PER_PAGE offset $offset";
260 queryResults($sql, $webvar{page}, $count);
261 }
262 } elsif ($query =~ /^(\d{1,3}\.){3}\d{1,3}$/) {
263 # Specific IP address match
264 my $sfor = new NetAddr::IP $query;
265# We do this convoluted roundabout way of finding things in order
266# to bring up matches for single IPs that are within a static block;
267# we want to show both the "container" block and the static IP itself.
268 $sth = $ip_dbh->prepare("select cidr from searchme where cidr >>= '$sfor'");
269 $sth->execute;
270 while (my @data = $sth->fetchrow_array()) {
271 my $cidr = new NetAddr::IP $data[0];
272 queryResults("select cidr,custid,type,city,description from searchme where ".
273 "cidr='$cidr'", $webvar{page}, 1);
274 }
275 } elsif ($query =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.?$/) {
276 print "Finding matches where the first three octets are $query<br>\n";
277 $sql = "select cidr,custid,type,city,description from searchme where ".
278 "text(cidr) like '$query%'";
279 my $count = countRows("select count(*) from ($sql) foo");
280 $sql .= " order by cidr limit $RESULTS_PER_PAGE offset $offset";
281 queryResults($sql, $webvar{page}, $count);
282 } else {
283 # This shouldn't happen, but if it does, whoever gets it deserves what they get...
284 printError("Invalid query.");
285 }
286 } else {
287 # This shouldn't happen, but if it does, whoever gets it deserves what they get...
288 printError("Invalid searchfor.");
289 }
290} # viewBy
291
292
293# args are: a reference to an array with the row to be printed and the
294# class(stylesheet) to use for formatting.
295# if ommitting the class - call the sub as &printRow(\@array)
296sub printRow {
297 my ($rowRef,$class) = @_;
298
299 if (!$class) {
300 print "<tr>\n";
301 } else {
302 print "<tr class=\"$class\">\n";
303 }
304
305ELEMENT: foreach my $element (@$rowRef) {
306 if (!defined($element)) {
307 print "<td></td>\n";
308 next ELEMENT;
309 }
310 $element =~ s|\n|</br>|g;
311 print "<td>$element</td>\n";
312 }
313 print "</tr>";
314} # printRow
315
316
317# Display certain types of search query. Note that this can't be
318# cleanly reused much of anywhere else as the data isn't neatly tabulated.
319# This is tied to the search sub tightly enough I may just gut it and provide
320# more appropriate tables directly as needed.
321sub queryResults($$$) {
322 my ($sql, $pageNo, $rowCount) = @_;
323 my $offset = 0;
324 $offset = $1 if($sql =~ m/.*limit\s+(.*),.*/);
325
326 my $sth = $ip_dbh->prepare($sql);
327 $sth->execute();
328
329 startTable('Allocation','CustID','Type','City','Description/Name');
330 my $count = 0;
331
332 while (my @data = $sth->fetchrow_array) {
333 # cidr,custid,type,city,description
334 # Prefix subblocks with "Sub "
335 my @row = ( (($data[2] =~ /^.r$/) ? 'Sub ' : '').
336 qq(<a href="/ip/cgi-bin/main.cgi?action=edit&block=$data[0]">$data[0]</a>),
337 $data[1], $disp_alloctypes{$data[2]}, $data[3], $data[4]);
338 # Allow listing of pool if desired/required.
339 if ($data[2] =~ /^.[pd]$/) {
340 $row[0] .= ' &nbsp; <a href="/ip/cgi-bin/main.cgi?action=listpool'.
341 "&pool=$data[0]\">List IPs</a>";
342 }
343 printRow(\@row, 'color1', 1) if ($count%2==0);
344 printRow(\@row, 'color2', 1) if ($count%2!=0);
345 $count++;
346 }
347
348 # Have to think on this call, it's primarily to clean up unfetched rows from a select.
349 # In this context it's probably a good idea.
350 $sth->finish();
351
352 my $upper = $offset+$count;
353 print "<tr><td colspan=10 bgcolor=white class=regular>Records found: $rowCount<br><i>Displaying: $offset - $upper</i></td></tr>\n";
354 print "</table></center>\n";
355
356 # print the page thing..
357 if ($rowCount > $RESULTS_PER_PAGE) {
358 my $pages = ceil($rowCount/$RESULTS_PER_PAGE);
359 print qq(<div class="center"> Page: );
360 for (my $i = 1; $i <= $pages; $i++) {
361 if ($i == $pageNo) {
362 print "<b>$i&nbsp;</b>\n";
363 } else {
364 print qq(<a href="/ip/cgi-bin/main.cgi?page=$i&input=$webvar{input}&action=search&searchfor=$webvar{searchfor}">$i</a>&nbsp;\n);
365 }
366 }
367 print "</div>";
368 }
369} # queryResults
370
371
372# Prints table headings. Accepts any number of arguments;
373# each argument is a table heading.
374sub startTable {
375 print qq(<center><table width="98%" cellspacing="0" class="center"><tr>);
376
377 foreach(@_) {
378 print qq(<td class="heading">$_</td>);
379 }
380 print "</tr>\n";
381} # startTable
382
383
384# Return first element of passed SQL query
385sub countRows($) {
386 my $sth = $ip_dbh->prepare($_[0]);
387 $sth->execute();
388 my @a = $sth->fetchrow_array();
389 $sth->finish();
390 return $a[0];
391}
392
393
394# Initial display: Show master blocks with total allocated subnets, total free subnets
395sub showSummary {
396 # this is horrible-ugly-bad and will Go Away real soon now(TM)
397 print "Content-type: text/html\n\n";
398
399 startTable('Master netblock', 'Routed netblocks', 'Allocated netblocks',
400 'Free netblocks', 'Largest free block');
401
402 my %allocated;
403 my %free;
404 my %routed;
405 my %bigfree;
406
407 # Count the allocations.
408 $sth = $ip_dbh->prepare("select count(*) from allocations where cidr <<= ?");
409 foreach my $master (@masterblocks) {
410 $sth->execute("$master");
411 $sth->bind_columns(\$allocated{"$master"});
412 $sth->fetch();
413 }
414
415 # Count routed blocks
416 $sth = $ip_dbh->prepare("select count(*) from routed where cidr <<= ?");
417 foreach my $master (@masterblocks) {
418 $sth->execute("$master");
419 $sth->bind_columns(\$routed{"$master"});
420 $sth->fetch();
421 }
422
423 # Count the free blocks.
424 $sth = $ip_dbh->prepare("select count(*) from freeblocks where cidr <<= ?");
425 foreach my $master (@masterblocks) {
426 $sth->execute("$master");
427 $sth->bind_columns(\$free{"$master"});
428 $sth->fetch();
429 }
430
431 # Find the largest free block in each master
432 $sth = $ip_dbh->prepare("select maskbits from freeblocks where cidr <<= ? order by maskbits limit 1");
433 foreach my $master (@masterblocks) {
434 $sth->execute("$master");
435 $sth->bind_columns(\$bigfree{"$master"});
436 $sth->fetch();
437 }
438
439 # Print the data.
440 my $count=0;
441 foreach my $master (@masterblocks) {
442 my @row = ("<a href=\"/ip/cgi-bin/main.cgi?action=showmaster&block=$master\">$master</a>",
443 $routed{"$master"}, $allocated{"$master"}, $free{"$master"},
444 ( ($bigfree{"$master"} eq '') ? ("&lt;NONE&gt;") : ("/".$bigfree{"$master"}) )
445 );
446
447 printRow(\@row, 'color1' ) if($count%2==0);
448 printRow(\@row, 'color2' ) if($count%2!=0);
449 $count++;
450 }
451 print "</table>\n";
452 if ($IPDBacl{$authuser} =~ /a/) {
453 print qq(<a href="/ip/addmaster.shtml">Add new master block</a><br><br>\n);
454 }
455 print "Note: Free blocks noted here include both routed and unrouted blocks.\n";
456
457} # showSummary
458
459
460# Display detail on master
461# Alrighty then! We're showing routed blocks within a single master this time.
462# We should be able to steal code from showSummary(), and if I'm really smart
463# I'll figger a way to munge the two together. (Once I've done that, everything
464# else should follow. YMMV.)
465sub showMaster {
466 printHeader('');
467
468 print qq(<center><div class="heading">Summarizing routed blocks for ).
469 qq($webvar{block}:</div></center><br>\n);
470
471 my %allocated;
472 my %free;
473 my %routed;
474 my %bigfree;
475
476 my $master = new NetAddr::IP $webvar{block};
477 my @localmasters;
478
479 # Fetch only the blocks relevant to this master
480 $sth = $ip_dbh->prepare("select cidr,city from routed where cidr <<= '$master' order by cidr");
481 $sth->execute();
482
483 my $i=0;
484 while (my @data = $sth->fetchrow_array()) {
485 my $cidr = new NetAddr::IP $data[0];
486 $localmasters[$i++] = $cidr;
487 $free{"$cidr"} = 0;
488 $allocated{"$cidr"} = 0;
489 $bigfree{"$cidr"} = 128;
490 # Retain the routing destination
491 $routed{"$cidr"} = $data[1];
492 }
493
494 # Check if there were actually any blocks routed from this master
495 if ($i > 0) {
496 startTable('Routed block','Routed to','Allocated blocks',
497 'Free blocks','Largest free block');
498
499 # Count the allocations
500 $sth = $ip_dbh->prepare("select count(*) from allocations where cidr <<= ?");
501 foreach my $master (@localmasters) {
502 $sth->execute("$master");
503 $sth->bind_columns(\$allocated{"$master"});
504 $sth->fetch();
505 }
506
507 # Count the free blocks.
508 $sth = $ip_dbh->prepare("select count(*) from freeblocks where cidr <<= ?");
509 foreach my $master (@localmasters) {
510 $sth->execute("$master");
511 $sth->bind_columns(\$free{"$master"});
512 $sth->fetch();
513 }
514
515 # Get the size of the largest free block
516 $sth = $ip_dbh->prepare("select maskbits from freeblocks where cidr <<= ? order by maskbits limit 1");
517 foreach my $master (@localmasters) {
518 $sth->execute("$master");
519 $sth->bind_columns(\$bigfree{"$master"});
520 $sth->fetch();
521 }
522
523 # Print the data.
524 my $count=0;
525 foreach my $master (@localmasters) {
526 my @row = ("<a href=\"/ip/cgi-bin/main.cgi?action=showrouted&block=$master\">$master</a>",
527 $routed{"$master"}, $allocated{"$master"},
528 $free{"$master"},
529 ( ($bigfree{"$master"} eq 128) ? ("&lt;NONE&gt;") : ("/".$bigfree{"$master"}) )
530 );
531 printRow(\@row, 'color1' ) if($count%2==0);
532 printRow(\@row, 'color2' ) if($count%2!=0);
533 $count++;
534 }
535 } else {
536 # If a master block has no routed blocks, then by definition it has no
537 # allocations, and can be deleted.
538 print qq(<hr width="60%"><center><div class="heading">No allocations in ).
539 qq($master.</div>\n).
540 qq(<form action="/ip/cgi-bin/main.cgi" method=POST>\n).
541 qq(<input type=hidden name=action value="delete">\n).
542 qq(<input type=hidden name=block value="$master">\n).
543 qq(<input type=hidden name=alloctype value="mm">\n).
544 qq(<input type=submit value=" Remove this master ">\n).
545 qq(</form></center>\n);
546
547 } # end check for existence of routed blocks in master
548
549 print qq(</table>\n<hr width="60%">\n).
550 qq(<center><div class="heading">Unrouted blocks in $master:</div></center><br>\n);
551
552 startTable('Netblock','Range');
553
554 # Snag the free blocks.
555 my $count = 0;
556 $sth = $ip_dbh->prepare("select cidr from freeblocks where cidr <<='$master' and ".
557 "routed='n' order by cidr");
558 $sth->execute();
559 while (my @data = $sth->fetchrow_array()) {
560 my $cidr = new NetAddr::IP $data[0];
561 my @row = ("$cidr", $cidr->range);
562 printRow(\@row, 'color1' ) if($count%2==0);
563 printRow(\@row, 'color2' ) if($count%2!=0);
564 $count++;
565 }
566
567 print "</table>\n";
568} # showMaster
569
570
571# Display details of a routed block
572# Alrighty then! We're showing allocations within a routed block this time.
573# We should be able to steal code from showSummary() and showMaster(), and if
574# I'm really smart I'll figger a way to munge all three together. (Once I've
575# done that, everything else should follow. YMMV.
576# This time, we check the database before spewing, because we may
577# not have anything useful to spew.
578sub showRBlock {
579 printHeader('');
580
581 my $master = new NetAddr::IP $webvar{block};
582
583 $sth = $ip_dbh->prepare("select city from routed where cidr='$master'");
584 $sth->execute;
585 my @data = $sth->fetchrow_array;
586
587 print qq(<center><div class="heading">Summarizing allocated blocks for ).
588 qq($master ($data[0]):</div></center><br>\n);
589
590 startTable('CIDR allocation','Customer Location','Type','CustID','Description/Name');
591
592 # Snag the allocations for this block
593 $sth = $ip_dbh->prepare("select cidr,city,type,custid,description".
594 " from allocations where cidr <<= '$master' order by cidr");
595 $sth->execute();
596
597 my $count=0;
598 while (my @data = $sth->fetchrow_array()) {
599 # cidr,city,type,custid,description, as per the SELECT
600 my $cidr = new NetAddr::IP $data[0];
601
602 # Clean up extra spaces that are borking things.
603# $data[2] =~ s/\s+//g;
604
605 # Prefix subblocks with "Sub "
606 my @row = ( (($data[2] =~ /^.r$/) ? 'Sub ' : '').
607 qq(<a href="/ip/cgi-bin/main.cgi?action=edit&block=$data[0]">$data[0]</a>),
608 $data[1], $disp_alloctypes{$data[2]}, $data[3], $data[4]);
609 # If the allocation is a pool, allow listing of the IPs in the pool.
610 if ($data[2] =~ /^.[pd]$/) {
611 $row[0] .= ' &nbsp; <a href="/ip/cgi-bin/main.cgi?action=listpool'.
612 "&pool=$data[0]\">List IPs</a>";
613 }
614
615 printRow(\@row, 'color1') if ($count%2 == 0);
616 printRow(\@row, 'color2') if ($count%2 != 0);
617 $count++;
618 }
619
620 print "</table>\n";
621
622 # If the routed block has no allocations, by definition it only has
623 # one free block, and therefore may be deleted.
624 if ($count == 0) {
625 print qq(<hr width="60%"><center><div class="heading">No allocations in ).
626 qq($master.</div></center>\n).
627 qq(<form action="/ip/cgi-bin/main.cgi" method=POST>\n).
628 qq(<input type=hidden name=action value="delete">\n).
629 qq(<input type=hidden name=block value="$master">\n).
630 qq(<input type=hidden name=alloctype value="rm">\n).
631 qq(<input type=submit value=" Remove this block ">\n).
632 qq(</form>\n);
633 }
634
635 print qq(<hr width="60%">\n<center><div class="heading">Free blocks within routed ).
636 qq(submaster $master</div></center>\n);
637
638 startTable('CIDR block','Range');
639
640 # Snag the free blocks. We don't really *need* to be pedantic about avoiding
641 # unrouted free blocks, but it's better to let the database do the work if we can.
642 $count = 0;
643 $sth = $ip_dbh->prepare("select cidr,routed from freeblocks where cidr <<= '$master'".
644 " order by cidr");
645 $sth->execute();
646 while (my @data = $sth->fetchrow_array()) {
647 # cidr,routed
648 my $cidr = new NetAddr::IP $data[0];
649 # Include some HairyPerl(TM) to prefix subblocks with "Sub "
650 my @row = ((($data[1] ne 'y' && $data[1] ne 'n') ? 'Sub ' : '').
651 qq(<a href="/ip/cgi-bin/main.cgi?action=assign&block=$cidr&fbtype=$data[1]">$cidr</a>),
652 $cidr->range);
653 printRow(\@row, 'color1') if ($count%2 == 0);
654 printRow(\@row, 'color2') if ($count%2 != 0);
655 $count++;
656 }
657
658 print "</table>\n";
659} # showRBlock
660
661
662# List the IPs used in a pool
663sub listPool {
664 printHeader('');
665
666 my $cidr = new NetAddr::IP $webvar{pool};
667
668 my ($pooltype,$poolcity);
669
670 # Snag pool info for heading
671 $sth = $ip_dbh->prepare("select type,city from allocations where cidr='$cidr'");
672 $sth->execute;
673 $sth->bind_columns(\$pooltype, \$poolcity);
674 $sth->fetch() || carp $sth->errstr;
675
676 print qq(<center><div class="heading">Listing pool IPs for $cidr<br>\n).
677 qq(($disp_alloctypes{$pooltype} in $poolcity)</div></center><br>\n);
678 # Only display net/gw/bcast if it's a "real" netblock and not a PPP(oE) lunacy
679 if ($pooltype =~ /^.d$/) {
680 print qq(<div class="indent"><b>Reserved IPs:</b><br>\n);
681 print qq(<div class="indent"><table><tr class=color1><td>Network IP:</td><td>).
682 $cidr->addr."</td></tr>\n";
683 $cidr++;
684 print "<tr class=color2><td>Gateway:</td><td>".$cidr->addr."</td></tr>\n";
685 $cidr--; $cidr--;
686 print "<tr class=color1><td>Broadcast:</td><td>".$cidr->addr."</td></tr>\n".
687 "<tr><td>Netmask:</td><td>".$cidr->mask."</td></tr>\n".
688 "</table></div></div>\n";
689 }
690
691# probably have to add an "edit IP allocation" link here somewhere.
692
693 startTable('IP','Customer ID','Available?','Description','');
694 $sth = $ip_dbh->prepare("select ip,custid,available,description,type".
695 " from poolips where pool='$webvar{pool}' order by ip");
696 $sth->execute;
697 my $count = 0;
698 while (my @data = $sth->fetchrow_array) {
699 # pool,ip,custid,city,ptype,available,notes,description,circuitid
700 # ip,custid,available,description,type
701 # If desc is "null", make it not null. <g>
702 if ($data[3] eq '') {
703 $data[3] = '&nbsp;';
704 }
705 # Some nice hairy Perl to decide whether to allow unassigning each IP
706 # -> if $data[2] (aka poolips.available) == 'n' then we print the unassign link
707 # else we print a blank space
708 my @row = ( qq(<a href="/ip/cgi-bin/main.cgi?action=edit&block=$data[0]">$data[0]</a>),
709 $data[1],$data[2],$data[3],
710 ( ($data[2] eq 'n') ?
711 ("<a href=\"/ip/cgi-bin/main.cgi?action=delete&block=$data[0]&".
712 "alloctype=$data[4]\">Unassign this IP</a>") :
713 ("&nbsp;") )
714 );
715 printRow(\@row, 'color1') if($count%2==0);
716 printRow(\@row, 'color2') if($count%2!=0);
717 $count++;
718 }
719 print "</table>\n";
720
721} # end listPool
722
723
724# Show "Add new allocation" page. Note that the actual page may
725# be one of two templates, and the lists come from the database.
726sub assignBlock {
727 printHeader('');
728
729 my $html;
730
731 # New special case- block to assign is specified
732 if ($webvar{block} ne '') {
733 open HTML, "../fb-assign.html"
734 or croak "Could not open fb-assign.html: $!";
735 $html = join('',<HTML>);
736 close HTML;
737 my $block = new NetAddr::IP $webvar{block};
738 $html =~ s|\$\$BLOCK\$\$|$block|g;
739 $html =~ s|\$\$MASKBITS\$\$|$block->masklen|;
740 my $typelist = '';
741
742 # This is a little dangerous, as it's *theoretically* possible to
743 # get fbtype='n' (aka a non-routed freeblock). However, should
744 # someone manage to get there, they get what they deserve.
745 if ($webvar{fbtype} ne 'y') {
746 # Snag the type of the block from the database. We have no
747 # convenient way to pass this in from the calling location. :/
748 $sth = $ip_dbh->prepare("select type from allocations where cidr >>='$block'");
749 $sth->execute;
750 my @data = $sth->fetchrow_array;
751 $data[0] =~ s/c$/r/; # Munge the type into the correct form
752 $typelist = "$list_alloctypes{$data[0]}<input type=hidden name=alloctype value=$data[0]>\n";
753 } else {
754 $typelist .= qq(<select name="alloctype">\n);
755 $sth = $ip_dbh->prepare("select type,listname from alloctypes where listorder < 500 ".
756 "and type not like '_i' and type not like '_r' order by listorder");
757 $sth->execute;
758 my @data = $sth->fetchrow_array;
759 $typelist .= "<option value='$data[0]' selected>$data[1]</option>\n";
760 while (my @data = $sth->fetchrow_array) {
761 $typelist .= "<option value='$data[0]'>$data[1]</option>\n";
762 }
763 $typelist .= "</select>\n";
764 }
765 $html =~ s|\$\$TYPELIST\$\$|$typelist|g;
766 } else {
767 open HTML, "../assign.html"
768 or croak "Could not open assign.html: $!";
769 $html = join('',<HTML>);
770 close HTML;
771 my $masterlist = "<select name=allocfrom><option selected>-</option>\n";
772 foreach my $master (@masterblocks) {
773 $masterlist .= "<option>$master</option>\n";
774 }
775 $masterlist .= "</select>\n";
776 $html =~ s|\$\$MASTERLIST\$\$|$masterlist|g;
777 my $pops = '';
778 foreach my $pop (@poplist) {
779 $pops .= "<option>$pop</option>\n";
780 }
781 $html =~ s|\$\$POPLIST\$\$|$pops|g;
782 my $typelist = '';
783 $sth = $ip_dbh->prepare("select type,listname from alloctypes where listorder < 900 order by listorder");
784 $sth->execute;
785 my @data = $sth->fetchrow_array;
786 $typelist .= "<option value='$data[0]' selected>$data[1]</option>\n";
787 while (my @data = $sth->fetchrow_array) {
788 $typelist .= "<option value='$data[0]'>$data[1]</option>\n";
789 }
790 $html =~ s|\$\$TYPELIST\$\$|$typelist|g;
791 }
792 my $cities = '';
793 foreach my $city (@citylist) {
794 $cities .= "<option>$city</option>\n";
795 }
796 $html =~ s|\$\$ALLCITIES\$\$|$cities|g;
797
798 print $html;
799
800} # assignBlock
801
802
803# Take info on requested IP assignment and see what we can provide.
804sub confirmAssign {
805 printHeader('');
806
807 my $cidr;
808 my $alloc_from;
809
810 # Going to manually validate some items.
811 # custid and city are automagic.
812 return if !validateInput();
813
814# Several different cases here.
815# Static IP vs netblock
816# + Different flavours of static IP
817# + Different flavours of netblock
818
819 if ($webvar{alloctype} =~ /^.i$/) {
820 my ($base,undef) = split //, $webvar{alloctype}; # split into individual chars
821 my ($sql,$city);
822 # Check for pools in Subury, North Bay, or Toronto if DSL or server pool.
823 # Anywhere else is invalid and shouldn't be in the db in the first place.
824 # ... aside from #^%#$%#@#^%^^!!!! legacy data. GRRR.
825 # Note that we want to retain the requested city to relate to customer info.
826 if ($base =~ /^[ds]$/) {
827 $city = "(allocations.city='Sudbury' or allocations.city='North Bay' or ".
828 "allocations.city='Toronto')";
829 } else {
830 $city = "allocations.city='$webvar{pop}'";
831 }
832
833# Ewww. But it works.
834 $sth = $ip_dbh->prepare("SELECT (SELECT city FROM allocations WHERE cidr=poolips.pool), ".
835 "poolips.pool, COUNT(*) FROM poolips,allocations WHERE poolips.available='y' AND ".
836 "poolips.pool=allocations.cidr AND $city AND poolips.type LIKE '".$base."_' ".
837 "GROUP BY pool");
838 $sth->execute;
839 my $optionlist;
840 while (my @data = $sth->fetchrow_array) {
841 # city,pool cidr,free IP count
842 if ($data[2] > 0) {
843 $optionlist .= "<option value='$data[1]'>$data[1] [$data[2] free IP(s)] in $data[0]</option>\n";
844 }
845 }
846 $cidr = "Single static IP";
847 $alloc_from = "<select name=alloc_from>".$optionlist."</select>\n";
848
849 } else { # end show pool options
850
851 if ($webvar{fbassign} eq 'y') {
852 $cidr = new NetAddr::IP $webvar{block};
853 $webvar{maskbits} = $cidr->masklen;
854 } else { # done with direct freeblocks assignment
855
856 if (!$webvar{maskbits}) {
857 printError("Please specify a CIDR mask length.");
858 return;
859 }
860 my $sql;
861 my $city;
862 my $failmsg;
863 if ($webvar{alloctype} eq 'rm') {
864 if ($webvar{allocfrom} ne '-') {
865 $sql = "select * from freeblocks where maskbits<=$webvar{maskbits} and routed='n'".
866 " and cidr <<= '$webvar{allocfrom}' order by maskbits desc";
867 } else {
868 $sql = "select * from freeblocks where maskbits<=$webvar{maskbits} and routed='n'".
869 " order by maskbits desc";
870 }
871 $failmsg = "No suitable free block found.<br>\nWe do not have a free".
872 " routeable block of that size.<br>\nYou will have to either route".
873 " a set of smaller netblocks or a single smaller netblock.";
874 } else {
875##fixme
876# This section needs serious Pondering.
877 # Pools of most types get assigned to the POP they're "routed from"
878 # This includes WAN blocks and other netblock "containers"
879 # This does NOT include cable pools.
880 if ($webvar{alloctype} =~ /^.[pc]$/) {
881 if (($webvar{city} !~ /^(Sudbury|North Bay|Toronto)$/) && ($webvar{alloctype} eq 'dp')) {
882 printError("You must chose Sudbury, North Bay, or Toronto for DSL pools.");
883 return;
884 }
885 $city = $webvar{city};
886 $failmsg = "No suitable free block found.<br>\nYou will have to route another".
887 " superblock from one of the<br>\nmaster blocks in Sudbury or chose a smaller".
888 " block size for the pool.";
889 } else {
890 $city = $webvar{pop};
891 $failmsg = "No suitable free block found.<br>\nYou will have to route another".
892 " superblock to $webvar{pop}<br>\nfrom one of the master blocks in Sudbury or".
893 " chose a smaller blocksize.";
894 }
895 if ($webvar{allocfrom} ne '-') {
896 $sql = "select cidr from freeblocks where city='$city' and maskbits<=$webvar{maskbits}".
897 " and cidr <<= '$webvar{allocfrom}' and routed='".
898 (($webvar{alloctype} =~ /^(.)r$/) ? "$1" : 'y')."' order by maskbits desc,cidr";
899 } else {
900 $sql = "select cidr from freeblocks where city='$city' and maskbits<=$webvar{maskbits}".
901 " and routed='".(($webvar{alloctype} =~ /^(.)r$/) ? "$1" : 'y').
902 "' order by maskbits desc,cidr";
903 }
904 }
905 $sth = $ip_dbh->prepare($sql);
906 $sth->execute;
907 my @data = $sth->fetchrow_array();
908 if ($data[0] eq "") {
909 printError($failmsg);
910 return;
911 }
912 $cidr = new NetAddr::IP $data[0];
913 } # check for freeblocks assignment or IPDB-controlled assignment
914
915 $alloc_from = qq($cidr<input type=hidden name=alloc_from value="$cidr">);
916
917 # If the block to be allocated is smaller than the one we found,
918 # figure out the "real" block to be allocated.
919 if ($cidr->masklen() ne $webvar{maskbits}) {
920 my $maskbits = $cidr->masklen();
921 my @subblocks;
922 while ($maskbits++ < $webvar{maskbits}) {
923 @subblocks = $cidr->split($maskbits);
924 }
925 $cidr = $subblocks[0];
926 }
927 } # if ($webvar{alloctype} =~ /^.i$/)
928
929 open HTML, "../confirm.html"
930 or croak "Could not open confirm.html: $!";
931 my $html = join '', <HTML>;
932 close HTML;
933
934### gotta fix this in final
935 # Stick in customer info as necessary - if it's blank, it just ends
936 # up as blank lines ignored in the rendering of the page
937 my $custbits;
938 $html =~ s|\$\$CUSTBITS\$\$|$custbits|g;
939###
940
941 # Stick in the allocation data
942 $html =~ s|\$\$ALLOC_TYPE\$\$|$webvar{alloctype}|g;
943 $html =~ s|\$\$TYPEFULL\$\$|$disp_alloctypes{$webvar{alloctype}}|g;
944 $html =~ s|\$\$ALLOC_FROM\$\$|$alloc_from|g;
945 $html =~ s|\$\$CIDR\$\$|$cidr|g;
946 $webvar{city} = desanitize($webvar{city});
947 $html =~ s|\$\$CITY\$\$|$webvar{city}|g;
948 $html =~ s|\$\$CUSTID\$\$|$webvar{custid}|g;
949 $webvar{circid} = desanitize($webvar{circid});
950 $html =~ s|\$\$CIRCID\$\$|$webvar{circid}|g;
951 $webvar{desc} = desanitize($webvar{desc});
952 $html =~ s|\$\$DESC\$\$|$webvar{desc}|g;
953 $webvar{notes} = desanitize($webvar{notes});
954 $html =~ s|\$\$NOTES\$\$|$webvar{notes}|g;
955 $html =~ s|\$\$ACTION\$\$|insert|g;
956
957 print $html;
958
959} # end confirmAssign
960
961
962# Do the work of actually inserting a block in the database.
963sub insertAssign {
964 # Some things are done more than once.
965 printHeader('');
966 return if !validateInput();
967
968 # $code is "success" vs "failure", $msg contains OK for a
969 # successful netblock allocation, the IP allocated for static
970 # IP, or the error message if an error occurred.
971 my ($code,$msg) = allocateBlock($ip_dbh, $webvar{fullcidr}, $webvar{alloc_from},
972 $webvar{custid}, $webvar{alloctype}, $webvar{city}, $webvar{desc}, $webvar{notes},
973 $webvar{circid});
974
975 if ($code eq 'OK') {
976 if ($webvar{alloctype} =~ /^.i$/) {
977 print qq(<div class="center"><div class="heading">The IP $msg has been allocated to customer $webvar{custid}</div></div>);
978 # Notify tech@example.com
979 mailNotify('tech@example.com',"ADDED: $disp_alloctypes{$webvar{alloctype}} allocation",
980 "$disp_alloctypes{$webvar{alloctype}} $msg allocated to customer $webvar{custid}\n".
981 "Description: $webvar{desc}\n\nAllocated by: $authuser\n");
982 } else {
983 print qq(<div class="center"><div class="heading">The block $webvar{fullcidr} was ).
984 "sucessfully added as: $disp_alloctypes{$webvar{alloctype}}</div></div>";
985 }
986 syslog "notice", "$authuser allocated '$webvar{fullcidr}' to '$webvar{custid}' as ".
987 "'$webvar{alloctype}'";
988 } else {
989 syslog "err", "Allocation of '$webvar{fullcidr}' to '$webvar{custid}' as ".
990 "'$webvar{alloctype}' by $authuser failed: '$msg'";
991 printError("Allocation of $webvar{fullcidr} as '$disp_alloctypes{$webvar{alloctype}}'".
992 " failed:<br>\n$msg\n");
993 }
994
995} # end insertAssign()
996
997
998# Does some basic checks on common input data to make sure nothing
999# *really* weird gets in to the database through this script.
1000# Does NOT do complete input validation!!!
1001sub validateInput {
1002 if ($webvar{city} eq '-') {
1003 printError("Please choose a city.");
1004 return;
1005 }
1006
1007 # Alloctype check.
1008 chomp $webvar{alloctype};
1009 if (!grep /$webvar{alloctype}/, keys %disp_alloctypes) {
1010 # Danger! Danger! alloctype should ALWAYS be set by a dropdown. Anyone
1011 # managing to call things in such a way as to cause this deserves a cryptic error.
1012 printError("Invalid alloctype");
1013 return;
1014 }
1015
1016 # CustID check
1017 # We have different handling for customer allocations and "internal" or "our" allocations
1018 if ($def_custids{$webvar{alloctype}} eq '') {
1019 if (!$webvar{custid}) {
1020 printError("Please enter a customer ID.");
1021 return;
1022 }
1023 if ($webvar{custid} !~ /^(?:\d{10}|\d{7}|STAFF|TEMP)(?:-\d\d?)?$/) {
1024 printError("Please enter a valid customer ID- this must be a 7- or 10-digit number, or STAFF for static IPs for staff.");
1025 return;
1026 }
1027 print "<!-- [ In validateInput(). Insert customer ID cross-check here. ] -->\n";
1028 } else {
1029 # New! Improved! And now Loaded From The Database!!
1030 $webvar{custid} = $def_custids{$webvar{alloctype}};
1031 }
1032
1033 # Check POP location
1034 my $flag;
1035 if ($webvar{alloctype} eq 'rm') {
1036 $flag = 'for a routed netblock';
1037 foreach (@poplist) {
1038 if (/^$webvar{city}$/) {
1039 $flag = 'n';
1040 last;
1041 }
1042 }
1043 } else {
1044 $flag = 'n';
1045 if ($webvar{pop} =~ /^-$/) {
1046 $flag = 'to route the block from/through';
1047 }
1048 }
1049 if ($flag ne 'n') {
1050 printError("Please choose a valid POP location $flag. Valid ".
1051 "POP locations are currently:<br>\n".join (" - ", @poplist));
1052 return;
1053 }
1054
1055 return 'OK';
1056} # end validateInput
1057
1058
1059# Displays details of a specific allocation in a form
1060# Allows update/delete
1061# action=edit
1062sub edit {
1063 printHeader('');
1064
1065 my $sql;
1066
1067 # Two cases: block is a netblock, or block is a static IP from a pool
1068 # because I'm lazy, we'll try to make the SELECT's bring out identical)ish) data
1069 if ($webvar{block} =~ /\/32$/) {
1070 $sql = "select ip,custid,type,city,circuitid,description,notes from poolips where ip='$webvar{block}'";
1071 } else {
1072 $sql = "select cidr,custid,type,city,circuitid,description,notes from allocations where cidr='$webvar{block}'"
1073 }
1074
1075 # gotta snag block info from db
1076 $sth = $ip_dbh->prepare($sql);
1077 $sth->execute;
1078 my @data = $sth->fetchrow_array;
1079
1080 # Clean up extra whitespace on alloc type
1081 $data[2] =~ s/\s//;
1082
1083##fixme LEGACY CODE
1084 # Postfix "i" on pool IP types
1085 if ($data[2] =~ /^[cdsmw]$/) {
1086 $data[2] .= "i";
1087 }
1088
1089 open (HTML, "../editDisplay.html")
1090 or croak "Could not open editDisplay.html :$!";
1091 my $html = join('', <HTML>);
1092
1093 # We can't let the city be changed here; this block is a part of
1094 # a larger routed allocation and therefore by definition can't be moved.
1095 # block and city are static.
1096##fixme
1097# Needs thinking. Have to allow changes to city to correct errors, no?
1098 $html =~ s/\$\$BLOCK\$\$/$webvar{block}/g;
1099 $html =~ s/\$\$CITY\$\$/$data[3]/g;
1100
1101# Screw it. Changing allocation types gets very ugly VERY quickly- especially
1102# with the much longer list of allocation types.
1103# We'll just show what type of block it is.
1104
1105# this has now been Requested, so here goes.
1106
1107##fixme The check here should be built from the database
1108 if ($data[2] =~ /^.[ne]$/) {
1109 # Block that can be changed
1110 my $blockoptions = "<select name=alloctype><option".
1111 (($data[2] eq 'me') ? ' selected' : '') ." value='me'>Dialup netblock</option>\n<option".
1112 (($data[2] eq 'de') ? ' selected' : '') ." value='de'>Dynamic DSL netblock</option>\n<option". (($data[2] eq 'dc') ? ' selected' : '') ." value='dc'>Dynamic cable netblock</option>\n<option".
1113 (($data[2] eq 'ce') ? ' selected' : '') ." value='ce'>Dynamic cable netblock</option>\n<option". (($data[2] eq 'dc') ? ' selected' : '') ." value='dc'>Dynamic cable netblock</option>\n<option".
1114 (($data[2] eq 'we') ? ' selected' : '') ." value='we'>Dynamic wireless netblock</option>\n<option". (($data[2] eq 'dc') ? ' selected' : '') ." value='dc'>Dynamic cable netblock</option>\n<option".
1115 (($data[2] eq 'cn') ? ' selected' : '') ." value='cn'>Customer netblock</option>\n<option".
1116 (($data[2] eq 'en') ? ' selected' : '') ." value='en'>End-use netblock</option>\n<option".
1117 (($data[2] eq 'in') ? ' selected' : '') ." value='in'>Internal netblock</option>\n".
1118 "</select>\n";
1119 $html =~ s/\$\$TYPESELECT\$\$/$blockoptions/g;
1120 } else {
1121 $html =~ s/\$\$TYPESELECT\$\$/$disp_alloctypes{$data[2]}<input type=hidden name=alloctype value="$data[2]">/g;
1122 }
1123
1124 # These can be modified, although CustID changes may get ignored.
1125 $html =~ s/\$\$CUSTID\$\$/$data[1]/g;
1126 $html =~ s/\$\$TYPE\$\$/$data[2]/g;
1127 $html =~ s/\$\$CIRCID\$\$/$data[4]/g;
1128 $html =~ s/\$\$DESC\$\$/$data[5]/g;
1129 $html =~ s/\$\$NOTES\$\$/$data[6]/g;
1130
1131 print $html;
1132
1133} # edit()
1134
1135
1136# Stuff new info about a block into the db
1137# action=update
1138sub update {
1139 printHeader('');
1140
1141 # Make sure incoming data is in correct format - custID among other things.
1142 validateInput;
1143
1144 # SQL transaction wrapper
1145 eval {
1146 # Relatively simple SQL transaction here.
1147 my $sql;
1148 if (my $pooltype = ($webvar{alloctype} =~ /^(.)i$/) ) {
1149 # Note the hack ( available='n' ) to work around "update" additions
1150 # to static IP space. Eww.
1151 $sql = "update poolips set custid='$webvar{custid}',notes='$webvar{notes}',".
1152 "circuitid='$webvar{circid}',description='$webvar{desc}',available='n' ".
1153 "where ip='$webvar{block}'";
1154 } else {
1155 $sql = "update allocations set custid='$webvar{custid}',".
1156 "description='$webvar{desc}',notes='$webvar{notes}',city='$webvar{city}',".
1157 "type='$webvar{alloctype}',circuitid='$webvar{circid}' where cidr='$webvar{block}'";
1158 }
1159 # Log the details of the change.
1160 syslog "debug", $sql;
1161 $sth = $ip_dbh->prepare($sql);
1162 $sth->execute;
1163 $ip_dbh->commit;
1164 };
1165 if ($@) {
1166 my $msg = $@;
1167 carp "Transaction aborted because $msg";
1168 eval { $ip_dbh->rollback; };
1169 syslog "err", "$authuser could not update block/IP '$webvar{block}': '$msg'";
1170 printError("Could not update block/IP $webvar{block}: $msg");
1171 return;
1172 }
1173
1174 # If we get here, the operation succeeded.
1175 syslog "notice", "$authuser updated $webvar{block}";
1176 open (HTML, "../updated.html")
1177 or croak "Could not open updated.html :$!";
1178 my $html = join('', <HTML>);
1179
1180 $html =~ s/\$\$BLOCK\$\$/$webvar{block}/g;
1181 $webvar{city} = desanitize($webvar{city});
1182 $html =~ s/\$\$CITY\$\$/$webvar{city}/g;
1183 $html =~ s/\$\$ALLOCTYPE\$\$/$webvar{alloctype}/g;
1184 $html =~ s/\$\$TYPEFULL\$\$/$disp_alloctypes{$webvar{alloctype}}/g;
1185 $html =~ s/\$\$CUSTID\$\$/$webvar{custid}/g;
1186 $webvar{circid} = desanitize($webvar{circid});
1187 $html =~ s/\$\$CIRCID\$\$/$webvar{circid}/g;
1188 $webvar{desc} = desanitize($webvar{desc});
1189 $html =~ s/\$\$DESC\$\$/$webvar{desc}/g;
1190 $webvar{notes} = desanitize($webvar{notes});
1191 $html =~ s/\$\$NOTES\$\$/$webvar{notes}/g;
1192
1193 print $html;
1194
1195} # update()
1196
1197
1198# Delete an allocation.
1199sub remove {
1200 printHeader('');
1201 #show confirm screen.
1202 open HTML, "../confirmRemove.html"
1203 or croak "Could not open confirmRemove.html :$!";
1204 my $html = join('', <HTML>);
1205 close HTML;
1206
1207 # Serves'em right for getting here...
1208 if (!defined($webvar{block})) {
1209 printError("Error 332");
1210 return;
1211 }
1212
1213 my ($cidr, $custid, $type, $city, $circid, $desc, $notes, $alloctype);
1214
1215 if ($webvar{alloctype} eq 'rm') {
1216 $sth = $ip_dbh->prepare("select cidr,city from routed where cidr='$webvar{block}'");
1217 $sth->execute();
1218
1219# This feels... extreme.
1220 croak $sth->errstr() if($sth->errstr());
1221
1222 $sth->bind_columns(\$cidr,\$city);
1223 $sth->execute();
1224 $sth->fetch || croak $sth->errstr();
1225 $custid = "N/A";
1226 $alloctype = $webvar{alloctype};
1227 $circid = "N/A";
1228 $desc = "N/A";
1229 $notes = "N/A";
1230
1231 } elsif ($webvar{alloctype} eq 'mm') {
1232 $cidr = $webvar{block};
1233 $city = "N/A";
1234 $custid = "N/A";
1235 $alloctype = $webvar{alloctype};
1236 $circid = "N/A";
1237 $desc = "N/A";
1238 $notes = "N/A";
1239 } elsif ($webvar{alloctype} =~ /^.i$/) { # done with alloctype=[rm]m
1240
1241 # Unassigning a static IP
1242 my $sth = $ip_dbh->prepare("select ip,custid,city,type,notes,circuitid from poolips".
1243 " where ip='$webvar{block}'");
1244 $sth->execute();
1245# croak $sth->errstr() if($sth->errstr());
1246
1247 $sth->bind_columns(\$cidr, \$custid, \$city, \$alloctype, \$notes, \$circid);
1248 $sth->fetch() || croak $sth->errstr;
1249
1250 } else { # done with alloctype=~ /^.i$/
1251
1252 my $sth = $ip_dbh->prepare("select cidr,custid,type,city,circuitid,description,notes from ".
1253 "allocations where cidr='$webvar{block}'");
1254 $sth->execute();
1255# croak $sth->errstr() if($sth->errstr());
1256
1257 $sth->bind_columns(\$cidr, \$custid, \$alloctype, \$city, \$circid, \$desc, \$notes);
1258 $sth->fetch() || carp $sth->errstr;
1259 } # end cases for different alloctypes
1260
1261 # Munge everything into HTML
1262 $html =~ s|Please confirm|Please confirm <b>removal</b> of|;
1263 $html =~ s|\$\$BLOCK\$\$|$cidr|g;
1264 $html =~ s|\$\$TYPEFULL\$\$|$disp_alloctypes{$alloctype}|g;
1265 $html =~ s|\$\$ALLOCTYPE\$\$|$alloctype|g;
1266 $html =~ s|\$\$CITY\$\$|$city|g;
1267 $html =~ s|\$\$CUSTID\$\$|$custid|g;
1268 $html =~ s|\$\$CIRCID\$\$|$circid|g;
1269 $html =~ s|\$\$DESC\$\$|$desc|g;
1270 $html =~ s|\$\$NOTES\$\$|$notes|g;
1271
1272 $html =~ s|\$\$ACTION\$\$|finaldelete|g;
1273
1274 # Set the warning text.
1275 if ($alloctype =~ /^.[pd]$/) {
1276 $html =~ s|<!--warn-->|<tr bgcolor="black"><td colspan="2"><div class="red">Warning: clicking confirm will remove this record entirely.<br>Any IPs allocated from this pool will also be removed!</div></td></tr>|;
1277 } else {
1278 $html =~ s|<!--warn-->|<tr bgcolor="black"><td colspan="2"><div class="red">Warning: clicking confirm will remove this record entirely.</div></td></tr>|;
1279 }
1280
1281 print $html;
1282} # end edit()
1283
1284
1285# Delete an allocation. Return it to the freeblocks table; munge
1286# data as necessary to keep as few records as possible in freeblocks
1287# to prevent weirdness when allocating blocks later.
1288# Remove IPs from pool listing if necessary
1289sub finalDelete {
1290 printHeader('');
1291
1292 my ($code,$msg) = deleteBlock($ip_dbh, $webvar{block}, $webvar{alloctype});
1293
1294 if ($code eq 'OK') {
1295 print "<div class=heading align=center>Success! $webvar{block} deallocated.</div>\n";
1296 syslog "notice", "$authuser deallocated '$webvar{alloctype}'-type netblock $webvar{block}";
1297 # Notify tech@ when a block/IP is deallocated
1298 mailNotify('tech@example.com',"REMOVED: $disp_alloctypes{$webvar{alloctype}} $webvar{block}",
1299 "$disp_alloctypes{$webvar{alloctype}} $webvar{block} deallocated by $authuser\n");
1300 } else {
1301 if ($webvar{alloctype} =~ /^.i$/) {
1302 syslog "err", "$authuser could not deallocate static IP '$webvar{block}': '$msg'";
1303 printError("Could not deallocate static IP $webvar{block}: $msg");
1304 } else {
1305 syslog "err", "$authuser could not deallocate netblock '$webvar{block}': '$msg'";
1306 printError("Could not deallocate netblock $webvar{block}: $msg");
1307 }
1308 }
1309
1310} # finalDelete
1311
1312
1313# Just in case we manage to get here.
1314exit 0;
Note: See TracBrowser for help on using the repository browser.