/[pxelator]/lib/PXElator/httpd.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/PXElator/httpd.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 303 by dpavlin, Thu Aug 27 12:42:53 2009 UTC revision 319 by dpavlin, Fri Aug 28 12:34:10 2009 UTC
# Line 26  sub menu {qq{ Line 26  sub menu {qq{
26  <a href=/server>server</a>  <a href=/server>server</a>
27  <a href=/brctl>brctl</a>  <a href=/brctl>brctl</a>
28  <a href=/ip>ip</a>  <a href=/ip>ip</a>
29    <a href=/nmap>nmap</a>
30  <a href=/client>client</a>  <a href=/client>client</a>
31  </div>  </div>
32    
# Line 54  use network; Line 55  use network;
55  use ip;  use ip;
56  use wireshark;  use wireshark;
57  use syslogd;  use syslogd;
58    use nmap;
59    
60  use CouchDB;  use CouchDB;
61    
# Line 213  warn "XXX pids = ", dump( $daemons::pids Line 215  warn "XXX pids = ", dump( $daemons::pids
215                          $ip = $new_ip;                          $ip = $new_ip;
216                  }                  }
217    
218                  my $ip_short = (split(/\./, $ip, 4))[3];                  my $netmask = ip::to_int $server::netmask;
219                    my $network = ip::to_int $server::ip & $netmask;
220                    my $ip_int  = ip::to_int $ip;
221    
222                  # if ( $ip ne $server::ip ) -- not flexible enough for tunnel endpoints                  if ( $ip ne $server::ip && $ip_int >= ( $network | $server::ip_from ) && $ip_int <= ( $network | $server::ip_to ) ) {
                 if ( $ip_short >= $server::ip_from && $ip_short <= $server::ip_to ) {  
223                          my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} );                          my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} );
224    
225                          my @table = (                          my @table = (
# Line 232  warn "XXX pids = ", dump( $daemons::pids Line 235  warn "XXX pids = ", dump( $daemons::pids
235                                          'mac' => format::mac( $mac => 'html' ),                                          'mac' => format::mac( $mac => 'html' ),
236                                          'deploy' => html::select( 'deploy', $deploy, config::available )                                          'deploy' => html::select( 'deploy', $deploy, config::available )
237                                  );                                  );
238                                  $deploy = qq|<h2>PXElinux</h2>| . html::pre( config::for_ip( $ip ) );                                  if ( my $pxelinux = config::for_ip( $ip ) ) {
239                                            $deploy = qq|<h2>PXElinux</h2>| . html::pre( $pxelinux );
240                                    }
241                          }                          }
242    
243                          print $client ok                          print $client ok
# Line 251  warn "XXX pids = ", dump( $daemons::pids Line 256  warn "XXX pids = ", dump( $daemons::pids
256                                  map {                                  map {
257                                          my @c = split(/\s+/,$_);                                          my @c = split(/\s+/,$_);
258                                          if ( $#c == 5 ) {                                          if ( $#c == 5 ) {
259                                                    client::save_ip_mac( $c[0], $c[3] );
260                                                  ( uc $c[3] => [ $c[0] , $c[5] ] )                                                  ( uc $c[3] => [ $c[0] , $c[5] ] )
261                                          } else {                                          } else {
262                                          }                                          }
# Line 261  warn "XXX pids = ", dump( $daemons::pids Line 267  warn "XXX pids = ", dump( $daemons::pids
267    
268                          print $client ok                          print $client ok
269                                  , qq|<h2>Clients on $server::ip</h2>|                                  , qq|<h2>Clients on $server::ip</h2>|
270                                  , html::table( -5,                                  , html::table( -6,
271                                          'ip', 'mac', 'hostname', 'deploy', 'arp',                                          'ip', 'mac', 'arp', 'hostname', 'deploy', 'conf',
272                                          map {                                          map {
273                                                  my $ip = $_;                                                  my $ip = $_;
274                                                  $ip =~ s{^.+/ip/}{};                                                  my $conf = client::all_conf( $ip );
275                                                  my $mac = client::mac_from_ip $ip;                                                  my $mac = delete $conf->{mac} || '';
                                                 my $arp = $arp->{ $mac };  
                                                 $arp = $arp ? $arp->[1] : '';  
                                                 $arp =~ s{$ip}{};  
276                                                  (                                                  (
277                                                          qq|<a href=/client/$ip>$ip</a>|                                                          qq|<a name=$ip href=/client/$ip>$ip</a>|
278                                                          , format::mac( $mac => 'html' )                                                          , format::mac( $mac => 'html' )
279                                                          , client::conf( $ip, 'hostname' )                                                          , ( $arp->{$mac} ? $arp->{$mac}->[1] : '' )
280                                                          , html::tt( client::conf( $ip, 'deploy' ) )                                                          , delete $conf->{hostname}
281                                                          , $arp                                                          , delete $conf->{deploy}
282                                                            , ( %$conf ? html::pre_dump( $conf ) : qq|<a href=/nmap?scan=$ip>nmap</a>| )
283                                                  );                                                  );
284                                          }                                          }
285                                          glob("$server::conf/ip/*")                                          sort { ip::to_int($a) cmp ip::to_int($b) }
                                 )  
                                 , qq|<h2>ARP</h2>|  
                                 , html::table( -3, 'ip', 'mac', 'dev',  
286                                          map {                                          map {
287                                                  my $c = $arp->{$_};                                                  my $ip = $_;
288                                                  ( $c->[0], format::mac( $_ => 'html' ), $c->[1] )                                                  $ip =~ s{^.+/ip/}{};
289                                          } sort keys %$arp                                                  $ip;
290                                            } glob("$server::conf/ip/*")
291                                  )                                  )
292                                  ;                                  ;
293                  }                  }
# Line 298  warn "XXX pids = ", dump( $daemons::pids Line 300  warn "XXX pids = ", dump( $daemons::pids
300                          , join("\n", map { qq|<a href=/ip/$_>$_</a>| } ( qw/link addr route neigh ntable tunnel maddr mroute xfrm/ ))                          , join("\n", map { qq|<a href=/ip/$_>$_</a>| } ( qw/link addr route neigh ntable tunnel maddr mroute xfrm/ ))
301                          , ip::html( $1 )                          , ip::html( $1 )
302                          ;                          ;
303            } elsif ( $path =~ m{^/nmap} ) {
304                    if ( my $scan = $param->{scan} ) {
305                            nmap::scan( $scan );
306                            print $client redirect("$url/client#$scan");
307                    } else {
308                            print $client ok, qq|
309                                    <form method=get>
310                                    <input type=text name=scan>
311                                    <input type=submit value=scan>
312                                    </form>
313                            |;
314                    }
315          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {
316                  eval 'our $' . $1 . ' = ' . $2;                  eval 'our $' . $1 . ' = ' . $2;
317                  warn $@ if $@;                  warn $@ if $@;

Legend:
Removed from v.303  
changed lines
  Added in v.319

  ViewVC Help
Powered by ViewVC 1.1.26