/[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 400 by dpavlin, Tue Sep 8 18:28:15 2009 UTC revision 418 by dpavlin, Wed Sep 9 19:57:58 2009 UTC
# Line 39  qq{ Line 39  qq{
39  sub menu {  sub menu {
40  qq{  qq{
41  <div style="font-size: 80%; color: #888">  <div style="font-size: 80%; color: #888">
42  <a href=/>home</a>  <a href=/ target=/>home</a>
43  <a href=/server>server</a>  <a href=/server target=server>server</a>
44  <a href=/brctl>brctl</a>  <a href=/brctl target=brctl>brctl</a>
45  <a href=/ip>ip</a>  <a href=/ip target=ip>ip</a>
46  <a href=/nmap>nmap</a>  <a href=/nmap target=nmap>nmap</a>
47  <a href=/client>client</a>  <a href=/client target=client>client</a>
48    <a href=http://$server::ip:5984/_utils/ target=couchdb>couchdb</a>
49  </div>  </div>
50    
51  }}  }}
# Line 85  sub static { Line 86  sub static {
86    
87          return if ! -f $full;          return if ! -f $full;
88    
89            return if $full =~ m{\.ico$};
90    
91          if ( my $pid = fork ) {          if ( my $pid = fork ) {
92                  # parent                  # parent
93                  close($client);                  close($client);
# Line 215  warn "XXX pids = ", dump( $daemons::pids Line 218  warn "XXX pids = ", dump( $daemons::pids
218                          }                          }
219                  }                  }
220    
221                    my $kvm = kvm::next_nr;
222                    $kvm = qq|<div><a href=/start_stop/kvm?nr=$kvm>create new kvm $kvm</a></div>|;
223    
224                  print $client ok                  print $client ok
225                          , html::table( 2, @rows )                          , html::table( 2, @rows )
226                          , $below_table                          , $below_table
227                            , $kvm
228                          , html::tabs( log::mac_changes )                          , html::tabs( log::mac_changes )
229                          , $debug_proc                          , $debug_proc
230                          ;                          ;
# Line 349  warn "XXX pids = ", dump( $daemons::pids Line 356  warn "XXX pids = ", dump( $daemons::pids
356                                                          . '"'                                                          . '"'
357                                                          if $ping;                                                          if $ping;
358                                                  $style ||= '';                                                  $style ||= '';
359                                                    my $ip_text = qq|<tt>$ip</tt>|;
360                                                    $ip_text = qq|<tt><b>$ip</b></tt>| if ip::in_dhcp_range($ip);
361                                                  (                                                  (
362                                                          qq|<a $style name=$ip target=$ip href=/client/$ip>$ip</a>|                                                          qq|<a $style name=$ip target=$ip href=/client/$ip>$ip_text</a>|
363                                                          , format::mac( $mac => 'html' )                                                          , format::mac( $mac => 'html' )
364                                                          , $arp->{$mac}                                                          , $arp->{$mac}
365                                                          , delete $conf->{hostname}                                                          , delete $conf->{hostname}
# Line 366  warn "XXX pids = ", dump( $daemons::pids Line 375  warn "XXX pids = ", dump( $daemons::pids
375                                  </form>                                  </form>
376                          |;                          |;
377                  }                  }
378    
379    
380          } elsif ( $path =~ m{^/brctl} ) {          } elsif ( $path =~ m{^/brctl} ) {
381                  print $client ok, html::table( -4,  
382                    system 'brctl addif virtual ' . $param->{addif} if $param->{addif};
383                    system 'brctl delif virtual ' . $param->{delif} if $param->{delif};
384    
385                    my $in_virtual;
386    
387                    my @table =
388                          map {                          map {
389                                  my @c = split(/\t+/,$_,4);                                  my @c = split(/\t+/,$_,4);
390                                  if ( $#c == 1 ) {                                  if ( $#c == 1 ) {
391                                          ( '', '', '', $c[1] )                                          $in_virtual->{ $c[1] }++;
392                                            @c = ( '', '', '', $c[1] );
393                                  } else {                                  } else {
394                                          @c                                          $in_virtual->{ $c[3] }++;
395                                    }
396                                    if ( $c[3] =~ m{\d$} ) {
397                                            $c[3] = qq|<input type=submit name=delif value=$c[3] style="color:red" title="remove $c[3] from bridge">|;
398                                  }                                  }
399                                    @c
400                          } split(/\n/, `brctl show`)                          } split(/\n/, `brctl show`)
401                  );                  ;
402    
403                    my @add_ifs = grep { ! $in_virtual->{$_} && $_ ne 'virtual' } ip::devices_up;
404    
405                    push @table, ( '', '', '', html::select( 'addif', @add_ifs ) . qq|<input type=submit value=add></form>| );
406    
407                    print $client ok
408                            , qq|<form>|
409                            , html::table( -4, @table )
410                            , qq|</form>|
411                            ;
412    
413    
414          } elsif ( $path =~ m{^/ip/?(\w+)?} ) {          } elsif ( $path =~ m{^/ip/?(\w+)?} ) {
415                  print $client ok                  print $client ok
416                          , 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/ ))
# Line 431  sub start { Line 465  sub start {
465    
466          my $server = IO::Socket::INET->new(          my $server = IO::Socket::INET->new(
467                          Proto     => 'tcp',                          Proto     => 'tcp',
468                          LocalAddr => $server::ip,  #                       LocalAddr => $server::ip,
469                          LocalPort => $httpd::port,                          LocalPort => $httpd::port,
470                          Listen    => SOMAXCONN,                          Listen    => SOMAXCONN,
471                          Reuse     => 1                          Reuse     => 1
# Line 440  sub start { Line 474  sub start {
474          print "url $url\n";          print "url $url\n";
475    
476          syslogd::install_local;          syslogd::install_local;
477            client::rebuild_mac_links;
478    
479          while (1) {          while (1) {
480                  my $client = $server->accept() || next; # ALARM trickle us                  my $client = $server->accept() || next; # ALARM trickle us

Legend:
Removed from v.400  
changed lines
  Added in v.418

  ViewVC Help
Powered by ViewVC 1.1.26