/usr/lib/cgi-bin/lg/lgform.cgi is in rancid-cgi 2.3.8-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | #! /usr/bin/perl
##
## $Id: lgform.cgi.in 2334 2011-11-17 21:09:37Z heas $
##
## rancid 2.3.8
## Copyright (c) 1997-2011 by Terrapin Communications, Inc.
## All rights reserved.
##
## This code is derived from software contributed to and maintained by
## Terrapin Communications, Inc. by Henry Kilmer, John Heasley, Andrew Partan,
## Pete Whiting, Austin Schutz, and Andrew Fort.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted provided that the following conditions
## are met:
## 1. Redistributions of source code must retain the above copyright
## notice, this list of conditions and the following disclaimer.
## 2. Redistributions in binary form must reproduce the above copyright
## notice, this list of conditions and the following disclaimer in the
## documentation and/or other materials provided with the distribution.
## 3. All advertising materials mentioning features or use of this software
## must display the following acknowledgement:
## This product includes software developed by Terrapin Communications,
## Inc. and its contributors for RANCID.
## 4. Neither the name of Terrapin Communications, Inc. nor the names of its
## contributors may be used to endorse or promote products derived from
## this software without specific prior written permission.
## 5. It is requested that non-binding fixes and modifications be contributed
## back to Terrapin Communications, Inc.
##
## THIS SOFTWARE IS PROVIDED BY Terrapin Communications, INC. AND CONTRIBUTORS
## ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
## TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
## PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COMPANY OR CONTRIBUTORS
## BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
## CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
## SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
## INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
## CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
## ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
## POSSIBILITY OF SUCH DAMAGE.
#
# The original original lookingglass s/w was written by Ed Kern. It was
# a single script that used to be available at http://nitrous.digex.net/.
# Provided by permission and modified beyond recognition.
#
# lgform.cgi - Looking glass front-end
# produces html form for calling lg.cgi
BEGIN {
$me = $0;
$me =~ s/.*\/(\S+)$/$1/;
}
use CGI qw/:standard/;
use POSIX qw(strftime);
use Sys::Syslog;
my(@rtrlist, %rtrlabels);
my($BASEDIR) = "/";
my($SYSCONFDIR) = "/etc/rancid";
my($LOCALSTATEDIR) = "/var/lib/rancid";
# note: the following functions are duplicated between lgform.cgi and lg.cgi
# to avoid the need for module inclusion headaches from within a httpd context.
# it is just easier to be self-contained.
# SO, ANY CHANGES HERE SHOULD BE REFLECTED IN THE OTHER .cgi.
# logging
sub dolog
{
my($level, $msg) = @_;
if (defined($LG_LOG) && $LG_LOG !~ /\//) {
openlog($me, "pid", $LG_LOG);
syslog($level, "%s", $msg);
closelog;
} else {
local(*LOG);
my($file);
if (defined($LG_LOG)) {
$file = $LG_LOG;
} else {
$file = "$cache_dir/lg.log";
}
# log date, hostname, query, addr
if (open(LOG, ">>$file") == 0) {
# stderr, if all else fails
printf(STDERR "[" . strftime("%a %b %e %H:%M:%S %Y", gmtime) .
"] could not open log file $file: $!\n");
printf(STDERR $msg);
} else {
printf(LOG $msg);
close(LOG);
}
}
return;
}
# read LG configuration file
sub readconf
{
my($conffile, $cmds);
local(*CONF);
if (defined($ENV{LG_CONF})) {
$conffile = $ENV{LG_CONF};
} elsif (-e "lg.conf") {
$conffile = "lg.conf";
} else {
$conffile = "$SYSCONFDIR/lg.conf";
}
if (! -f $conffile) {
return;
}
if (open(CONF, "< $conffile")) {
while (<CONF>) {
next if (/^\s*(#|$)/);
$cmds .= $_;
}
close(CONF);
eval $cmds;
} else {
printf(STDERR "ERROR: couldn\'t open the configuration file: " .
"$conffile: $!\n");
exit(1);
}
return;
}
# read router.db file
sub readrouters
{
my($rtrdb);
local(*RTR);
if (defined($LG_ROUTERDB)) {
$rtrdb = $LG_ROUTERDB;
} else {
$rtrdb = "$SYSCONFDIR/router.db";
}
if (! -f $rtrdb) {
my(@dirs, $dir);
# if the router.db file does not exist, try to compile the list from
# the rancid group router.db files.
local(*DIR);
if (! opendir(DIR, $LOCALSTATEDIR)) {
dolog(LOG_ERR, "ERROR: couldn\'t read $LOCALSTATEDIR: $!\n");
} else {
while ($dir = readdir(DIR)) {
next if ($dir =~ /^(\.|\.\.|\.ssh|CVS|bin|etc|logs|util)$/);
push(@dirs, $dir) if (-d "$LOCALSTATEDIR/$dir");
}
closedir(DIR);
foreach $dir (@dirs) {
if (! opendir(DIR, "$LOCALSTATEDIR/$dir")) {
dolog(LOG_ERR,
"ERROR: couldn\'t read $LOCALSTATEDIR/$dir: $!\n");
next;
}
closedir(DIR);
next if (! -f "$LOCALSTATEDIR/$dir/router.db");
if (open(RTR, "< $LOCALSTATEDIR/$dir/router.db")) {
while (<RTR>) {
next if (/^\s*(#|$)/);
# fqdn:mfg:state
@record = split('\:', $_);
next if ($record[2] !~ /up/i || $record[1] !~ /(cisco|foundry|juniper)/);
push(@rtrlist, join(':', ($record[0], $record[1])));
$rtrlabels{join(':', ($record[0], $record[1]))} = $record[0];
}
close(RTR);
} else {
dolog(LOG_ERR, "ERROR: couldn\'t open the router.db " .
"file: $LOCALSTATEDIR/$dir/router.db: $!\n");
}
}
}
} else {
if (open(RTR, "< $rtrdb")) {
while (<RTR>) {
next if (/^\s*(#|$)/);
# fqdn:mfg:state
@record = split('\:', $_);
next if ($record[2] !~ /up/i || $record[1] !~ /(cisco|foundry|juniper)/);
push(@rtrlist, join(':', ($record[0], $record[1])));
$rtrlabels{join(':', ($record[0], $record[1]))} = $record[0];
}
close(RTR);
} else {
dolog(LOG_ERR, "ERROR: couldn\'t open the router.db file: " .
"$rtrdb: $!\n");
exit(1);
}
}
return;
}
# Main()
# read the configuration file if it exists.
readconf();
$query = new CGI;
print $query->header;
if ($LG_STYLE) {
print $query->start_html(-title =>"LookingGlass form",
-style => {'src' => $LG_STYLE});
} else {
print $query->start_html(-title =>"LookingGlass form");
}
# add the company image, LG_IMAGE
print $LG_IMAGE;
print <<HEAD ;
<br>
<B><FONT SIZE=+2>Looking Glass</FONT></B>
<br>
<hr>
HEAD
# start table, etc here
print $query->startform( -action => 'lg.cgi', -method => 'POST');
print <<DOTABLE ;
<center>
<table border cellspacing=0 width=575 align=center>
DOTABLE
# available query types here
print <<TABLEHEAD ;
<tr valign=top>
<th align=left><B>Query:</B></th>
<th align=left><B>Router:</B></th>
</tr>
<tr><td>
TABLEHEAD
foreach $sub_type (sort keys(%$queries)) {
next if (! scalar(%{$queries->{$sub_type}}));
print $query->radio_group (-name => 'query',
-values => $queries->{$sub_type},
-default => '-', -linebreak => 'true');
print "\n" . $query->hr . "\n";
}
print <<QTYPES ;
<P><B>Argument(s):</B> <INPUT name="args" size=30></P>
</TD>
<td aligh=left valign=top>
QTYPES
# read routers table and create the scrolling list
readrouters();
print $query->scrolling_list(-name => 'router',
-values => \@rtrlist,
-size => 20,
-labels => \%rtrlabels);
# end
print <<TABLEEND ;
</dd>
</td>
</TABLE>
<p>
TABLEEND
print $query->submit(-name => 'submit', -value =>'Submit');
print $query->reset;
print $query->endform;
print <<TAIL ;
</center>
<br>
<a href=lgnotes.html>Looking Glass notes</a>
<p>
$LG_INFO
TAIL
print $query->end_html;
exit(0);
|