/[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 306 by dpavlin, Thu Aug 27 14:31:15 2009 UTC revision 318 by dpavlin, Thu Aug 27 20:01:29 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];                  if ( $ip ne $server::ip ) {
   
                 # if ( $ip ne $server::ip ) -- not flexible enough for tunnel endpoints  
                 if ( $ip_short >= $server::ip_from && $ip_short <= $server::ip_to ) {  
219                          my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} );                          my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} );
220    
221                          my @table = (                          my @table = (
# Line 232  warn "XXX pids = ", dump( $daemons::pids Line 231  warn "XXX pids = ", dump( $daemons::pids
231                                          'mac' => format::mac( $mac => 'html' ),                                          'mac' => format::mac( $mac => 'html' ),
232                                          'deploy' => html::select( 'deploy', $deploy, config::available )                                          'deploy' => html::select( 'deploy', $deploy, config::available )
233                                  );                                  );
234                                  $deploy = qq|<h2>PXElinux</h2>| . html::pre( config::for_ip( $ip ) );                                  if ( my $pxelinux = config::for_ip( $ip ) ) {
235                                            $deploy = qq|<h2>PXElinux</h2>| . html::pre( $pxelinux );
236                                    }
237                          }                          }
238    
239                          print $client ok                          print $client ok
# Line 251  warn "XXX pids = ", dump( $daemons::pids Line 252  warn "XXX pids = ", dump( $daemons::pids
252                                  map {                                  map {
253                                          my @c = split(/\s+/,$_);                                          my @c = split(/\s+/,$_);
254                                          if ( $#c == 5 ) {                                          if ( $#c == 5 ) {
255                                                    client::save_ip_mac( $c[0], $c[3] );
256                                                  ( uc $c[3] => [ $c[0] , $c[5] ] )                                                  ( uc $c[3] => [ $c[0] , $c[5] ] )
257                                          } else {                                          } else {
258                                          }                                          }
# Line 261  warn "XXX pids = ", dump( $daemons::pids Line 263  warn "XXX pids = ", dump( $daemons::pids
263    
264                          print $client ok                          print $client ok
265                                  , qq|<h2>Clients on $server::ip</h2>|                                  , qq|<h2>Clients on $server::ip</h2>|
266                                  , html::table( -5,                                  , html::table( -6,
267                                          'ip', 'mac', 'hostname', 'conf', 'arp',                                          'ip', 'mac', 'arp', 'hostname', 'deploy', 'conf',
268                                          map {                                          map {
269                                                  my $ip = $_;                                                  my $ip = $_;
270                                                  my $mac = client::mac_from_ip $ip;                                                  my $conf = client::all_conf( $ip );
271                                                  my $arp = $arp->{ $mac };                                                  my $mac = delete $conf->{mac} || '';
                                                 $arp = $arp ? $arp->[1] : '';  
                                                 $arp =~ s{$ip}{};  
272                                                  (                                                  (
273                                                          qq|<a href=/client/$ip>$ip</a>|                                                          qq|<a name=$ip href=/client/$ip>$ip</a>|
274                                                          , format::mac( $mac => 'html' )                                                          , format::mac( $mac => 'html' )
275                                                          , client::conf( $ip, 'hostname' )                                                          , ( $arp->{$mac} ? $arp->{$mac}->[1] : '' )
276                                                          , html::pre_dump( client::all_conf( $ip ) )                                                          , delete $conf->{hostname}
277                                                          , $arp                                                          , delete $conf->{deploy}
278                                                            , ( %$conf ? html::pre_dump( $conf ) : qq|<a href=/nmap?scan=$ip>nmap</a>| )
279                                                  );                                                  );
280                                          }                                          }
281                                          sort { ip::to_int($a) cmp ip::to_int($b) }                                          sort { ip::to_int($a) cmp ip::to_int($b) }
# Line 284  warn "XXX pids = ", dump( $daemons::pids Line 285  warn "XXX pids = ", dump( $daemons::pids
285                                                  $ip;                                                  $ip;
286                                          } glob("$server::conf/ip/*")                                          } glob("$server::conf/ip/*")
287                                  )                                  )
                                 , qq|<h2>ARP</h2>|  
                                 , html::table( -3, 'ip', 'mac', 'dev',  
                                         map {  
                                                 my $c = $arp->{$_};  
                                                 ( $c->[0], format::mac( $_ => 'html' ), $c->[1] )  
                                         } sort keys %$arp  
                                 )  
288                                  ;                                  ;
289                  }                  }
290          } elsif ( $path =~ m{^/brctl} ) {          } elsif ( $path =~ m{^/brctl} ) {
# Line 302  warn "XXX pids = ", dump( $daemons::pids Line 296  warn "XXX pids = ", dump( $daemons::pids
296                          , 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/ ))
297                          , ip::html( $1 )                          , ip::html( $1 )
298                          ;                          ;
299            } elsif ( $path =~ m{^/nmap} ) {
300                    if ( my $scan = $param->{scan} ) {
301                            nmap::scan( $scan );
302                            print $client redirect("$url/client#$scan");
303                    } else {
304                            print $client ok, qq|
305                                    <form method=get>
306                                    <input type=text name=scan>
307                                    <input type=submit value=scan>
308                                    </form>
309                            |;
310                    }
311          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {
312                  eval 'our $' . $1 . ' = ' . $2;                  eval 'our $' . $1 . ' = ' . $2;
313                  warn $@ if $@;                  warn $@ if $@;

Legend:
Removed from v.306  
changed lines
  Added in v.318

  ViewVC Help
Powered by ViewVC 1.1.26