--- lib/PXElator/httpd.pm 2009/07/31 22:52:22 104 +++ lib/PXElator/httpd.pm 2009/08/09 19:00:52 181 @@ -17,7 +17,17 @@ use File::Slurp; #use JSON; use IO::Socket::INET; -use Module::Refresh; +use Regexp::Common qw/net/; + +sub menu {qq{ + +
+home +server +client +
+ +}} our $pids; $pids = { httpd => $$ } unless defined $pids; # keep pids on refresh @@ -38,8 +48,12 @@ use html; our $static_pids; - -use Time::HiRes qw/time/; +use progress_bar; +use config; +use client; +use log; +use x11; +use amt; sub static { my ($client,$path) = @_; @@ -48,8 +62,6 @@ return if ! -f $full; - my $start_t = time(); - if ( my $pid = fork ) { # parent close($client); @@ -65,8 +77,6 @@ my $size = -s $full || return; - $client->autoflush(1); - print $client "HTTP/1.0 200 OK\r\nContent-Type: $type\r\nContent-Length: $size\r\nConnection: close\r\n\r\n"; open(my $fh, $full); @@ -75,35 +85,35 @@ my $buff; my $pos = 0; - print "static $path $type $size block: $block\n"; + warn "static $path $type $size block: $block\n"; + + progress_bar::start; while( my $len = read $fh, $buff, $block ) { print $client $buff; + $client->flush; $pos += $len; - printf "%s %d/%d %.2f%% %.2f K/s\r" - , $path, $pos - , $size, $pos * 100 / $size - , ( $pos / 1024 ) / ( time() - $start_t ) - ; + progress_bar::tick( $path, $pos, $size ); } close($fh); close($client); - print "\n"; + print STDERR "\n"; + + warn "exit static child"; - exit; + exit(0); } use boolean; -use screen; use kvm; $SIG{CHLD} = 'IGNORE'; sub start_stop { my $daemon = shift; - my $pid = $pids->{$daemon}; + my $pid = $pids->{$daemon} || 'not started'; warn "start_stop $daemon $pid\n"; @@ -124,10 +134,16 @@ # child my $invoke = 'start'; $invoke = $1 if $daemon =~ s{/(.+)}{}; - my $eval = $daemon . '::' . $invoke . '(' . ( @_ ? dump(@_) : '' ) . ')'; - warn "eval $eval"; - eval $eval; - warn "can't start $daemon: $@" if $@; + 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"; + x11::xterm( $daemon => $exec ); + } else { + my $eval = $daemon . '::' . $invoke . '(' . ( @_ ? dump(@_) : '' ) . ')'; + warn "eval $eval"; + eval $eval; + warn "can't start $daemon: $@" if $@; + } exit; } else { die "fork error $!"; @@ -135,26 +151,21 @@ } } -my $ok = qq|HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n|; +my $ok = qq|HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n| . menu(); my $redirect = qq|HTTP/1.1 302 Found\r\nContent-type: text/html\r\nLocation: $url\r\n\r\n|; sub get_request { my ( $client, $path, $param ) = @_; + server->refresh; + warn "get_request $path ", $param ? dump( $param ) : '', "\n"; if ( my $found = static( $client,$path ) ) { warn "static $found" if $debug; } elsif ( $path eq '/' ) { - my $screen = $pids->{screen} ? qq|stop $pids->{screen}| : 'start'; - my $kvm = $pids->{kvm} ? qq|stop $pids->{kvm}| : - $pids->{screen} ? qq|start| : qq|start screen first|; - my @rows = ( - 'ip', html::tt( $server::ip ), - 'netmask', html::tt( $server::netmask ), - 'debug', qq|$debug|, ); @@ -164,11 +175,12 @@ foreach my $name ( sort keys %$pids ) { my $pid = $pids->{$name} || next; - my $html = qq|$pid|; + my $html; my $proc = "/proc/$pid/status"; if ( -e $proc ) { + $html .= qq|$pid|; if ( $debug ) { $html .= qq| ?|; @@ -186,6 +198,8 @@ if ( $name->can('actions') ) { $html .= qq| $_| foreach $name->actions; } + } else { + $html .= qq|restart $pid exited|; } push @rows, ( $name => $html ); @@ -213,12 +227,52 @@ , $debug_proc ; + } elsif ( $path =~ m{^/server} ) { + print $client $ok + , html::table( 2, map { ( $_, eval '$server::'.$_ ) } ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain_name', 'base_dir' ) ) + ; + } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) { + my $ip = $1 || $client->peerhost; + if ( $ip ne $server::ip ) { + my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} ); + my $deploy = client::conf( $ip, 'deploy' => $param->{deploy} ); + print $client $ok + , qq|
| + , html::table( 2, + 'ip' => $ip, + 'mac' => client::mac( $ip ), + 'hostname' => qq||, + 'deploy' => html::select( 'deploy', $deploy, config::available ), + ) + , qq|
| + , qq|

PXElinux $deploy

|
+				, config::for_ip( $ip )
+				, qq|
| + ; + + if ( my $amt = client::conf( $ip, 'amt' ) ) { + print $client amt::info( $amt ); + } + } else { + print $client $ok + , qq|

Clients on $server::ip

| + , html::table( -4, + 'ip', 'mac', 'hostname', 'deploy', + map { + my $ip = $_; + $ip =~ s{^.+/ip/}{}; + ( qq|$ip|, client::mac($ip), client::conf( $ip, 'hostname' ), client::conf( $ip, 'deploy' ) ); + } + glob("$server::conf/ip/*") + ) + ; + } } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) { eval 'our $' . $1 . ' = ' . $2; warn $@ if $@; print $client $redirect, qq|$1 = $2
Location: $url|; server::debug( $debug ) if $1 eq 'debug'; - } elsif ( $path =~ m{^/start_stop/((?:screen|kvm).*)} ) { # XXX we don't want to stop all classes + } elsif ( $path =~ m{^/start_stop/(\S+)} ) { print $client $redirect, start_stop($1); } elsif ( $path =~ m{^/action/([^/]+)/(.+)} ) { $1->$2(); @@ -226,17 +280,6 @@ } elsif ( $path =~ m{^/kill/static/(\d+)} ) { print $client $redirect; kill 1, $1 || kill 9, $2 && warn "killed $1"; - } elsif ( $path eq '/exit' ) { -# DESTROY; - exit 0; - } elsif ( $path =~ m{/boot} ) { - print $client qq{$ok -#!gpxe -imgfree -login -chain http://$server::ip:$httpd::port/ - - }; } else { print $client "HTTP/1.0 404 $path\r\nConnection: close\r\nContent-type: text/html\r\n\r\n404 $path"; warn "404 $path"; @@ -245,9 +288,12 @@ } use browser; +use network; sub start { + warn 'tap ', network::tap(); + my $server = IO::Socket::INET->new( Proto => 'tcp', LocalPort => $httpd::port, @@ -258,17 +304,17 @@ print "url $url\n"; start_stop 'browser', $url; - start_stop 'screen'; - start_stop 'kvm'; + start_stop 'dhcpd'; + start_stop 'tftpd'; + start_stop 'dnsd'; + start_stop 'kvm' unless $ENV{DEV}; # skip kvm statup when running on real device - while (my $client = $server->accept()) { - $client->autoflush(1); + while (1) { + my $client = $server->accept() || next; # ALARM trickle us my $request = <$client>; warn "request $request\n" if $debug; - Module::Refresh->refresh; - if ($request =~ m{^GET (/.*) HTTP/1.[01]}) { my $path = $1; my $param; @@ -285,13 +331,7 @@ warn "500 $request"; } - print $client qq{ -
- reload - index - exit -
- } if $client->connected; + print $client menu() if $client->connected; }