--- lib/PXElator/httpd.pm 2009/08/06 15:36:13 158 +++ lib/PXElator/httpd.pm 2009/08/13 13:06:18 216 @@ -17,6 +17,7 @@ use File::Slurp; #use JSON; use IO::Socket::INET; +use Regexp::Common qw/net/; sub menu {qq{ @@ -28,17 +29,6 @@ }} -our $pids; -$pids = { httpd => $$ } unless defined $pids; # keep pids on refresh - -sub DESTROY { - warn "pids ",dump( $pids ); - foreach ( values %$pids ) { - warn "kill $_"; - kill 1,$_ || kill 9, $_; - } -} - our $port = 7777; use server; @@ -49,6 +39,18 @@ our $static_pids; use progress_bar; use config; +use client; +use log; +use x11; +use amt; +use boolean; +use daemons; + +use kvm; +use browser; +use network; + +use CouchDB; sub static { my ($client,$path) = @_; @@ -60,7 +62,6 @@ if ( my $pid = fork ) { # parent close($client); - print "http static child $pid\n"; $static_pids->{$pid} = $path; return 1; } @@ -80,7 +81,7 @@ my $buff; my $pos = 0; - warn "static $path $type $size block: $block\n"; + CouchDB::audit( 'static', { pid => $$, path => $path, type => $type, size => $size, block => $block, peerhost => $client->peerhost }); progress_bar::start; @@ -95,66 +96,25 @@ print STDERR "\n"; - warn "exit static child"; - exit(0); } -use boolean; - -use kvm; - -$SIG{CHLD} = 'IGNORE'; - -sub start_stop { - my $daemon = shift; - my $pid = $pids->{$daemon} || 'not started'; - - warn "start_stop $daemon $pid\n"; - - if ( $pid =~ m{^\d+$} ) { - my $pstree = `pstree -p $pid`; - my @pids = $pstree =~ m{\((\d+)\)}g; - warn "pstree $pstree pids ",dump( @pids ); - kill 1, $_ foreach reverse @pids; - $pids->{$daemon} = 'stopped'; - return qq|$daemon pid $pid stopped|; - } else { - if ( $pid = fork ) { - # parent - $pids->{$daemon} = $pid; - warn "forked $daemon $pid\n"; - return qq|$daemon pid $pid started|; - } elsif ( defined $pid ) { - # child - my $invoke = 'start'; - $invoke = $1 if $daemon =~ s{/(.+)}{}; - if ( $daemon =~ m{dhcpd|tftpd|dnsd} ) { - my $exec = "perl -I$server::base_dir/lib -I$server::base_dir/lib/PXElator -M$daemon -e ${daemon}::${invoke}"; - warn "exec $exec"; - exec "xterm -T $daemon -n $daemon -e $exec"; - } else { - my $eval = $daemon . '::' . $invoke . '(' . ( @_ ? dump(@_) : '' ) . ')'; - warn "eval $eval"; - eval $eval; - warn "can't start $daemon: $@" if $@; - } - exit; - } else { - die "fork error $!"; - } - } +sub ok { + qq|HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n| . menu() } -my $ok = qq|HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n|; -my $redirect = qq|HTTP/1.1 302 Found\r\nContent-type: text/html\r\nLocation: $url\r\n\r\n|; +sub redirect { + my $to = shift; + $to ||= $url; + qq|HTTP/1.1 302 Found\r\nContent-type: text/html\r\nLocation: $to\r\n\r\n| +} sub get_request { my ( $client, $path, $param ) = @_; server->refresh; - warn "get_request $path ", $param ? dump( $param ) : '', "\n"; + CouchDB::audit( 'request', { path => $path, param => $param, peerhost => $client->peerhost } ); if ( my $found = static( $client,$path ) ) { warn "static $found" if $debug; @@ -166,15 +126,15 @@ my $debug_proc = ''; - warn 'pids: ', dump( $pids ) if $debug; - foreach my $name ( sort keys %$pids ) { - my $pid = $pids->{$name} || next; + foreach my $name ( sort keys %$daemons::pids ) { + my $pid = $daemons::pids->{$name} || next; - my $html = qq|$pid|; + my $html; my $proc = "/proc/$pid/status"; if ( -e $proc ) { + $html .= qq|$pid|; if ( $debug ) { $html .= qq| ?|; @@ -192,6 +152,8 @@ if ( $name->can('actions') ) { $html .= qq| $_| foreach $name->actions; } + } else { + $html .= qq|restart $pid exited|; } push @rows, ( $name => $html ); @@ -212,8 +174,7 @@ } } - print $client $ok - , menu() + print $client ok , html::table( 2, @rows ) , $below_table , html::tabs( log::mac_changes ) @@ -221,50 +182,103 @@ ; } elsif ( $path =~ m{^/server} ) { - print $client $ok - , menu() - , html::table( 2, map { ( $_, eval '$server::'.$_ ) } ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain_name', 'base_dir' ) ) - ; - } elsif ( $path =~ m{^/client} ) { - my $ip = $client->peerhost; - my $hostname = server::shared( "hostname/$ip", $param->{hostname} ); - my $deploy = server::shared( "deploy/$ip", $param->{deploy} ); - print $client $ok - , menu() - , qq|
| - , html::table( 2, - 'ip' => $ip, - 'hostname' => qq||, - 'deploy' => html::select( 'deploy', $deploy, config::available ), - ) - , qq|
|
-			, config::for_ip( $ip )
-			, qq|
| + print $client ok + , html::table( 2, map { ( $_, html::tt eval '$server::'.$_ ) } ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain_name', 'base_dir', 'conf' ) ) ; + } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) { + my $ip = $1 || $client->peerhost; + + if ( my $new_ip = $param->{change_ip} ) { + client::change_ip( $ip, $new_ip ); + $ip = $new_ip; + } + + if ( $ip ne $server::ip ) { + my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} ); + + my @table = ( + 'ip' => qq|