--- lib/PXElator/httpd.pm 2009/07/31 17:43:38 87 +++ lib/PXElator/httpd.pm 2009/08/10 16:36:16 193 @@ -17,18 +17,17 @@ use File::Slurp; #use JSON; use IO::Socket::INET; -use Module::Refresh; +use Regexp::Common qw/net/; -our $pids; -$pids = { httpd => $$ } unless defined $pids; # keep pids on refresh +sub menu {qq{ -sub DESTROY { - warn "pids ",dump( $pids ); - foreach ( values %$pids ) { - warn "kill $_"; - kill 1,$_ || kill 9, $_; - } -} +
+home +server +client +
+ +}} our $port = 7777; @@ -38,6 +37,19 @@ use html; 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; + sub static { my ($client,$path) = @_; @@ -64,100 +76,60 @@ 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); - print "static $path $type $size\n"; - my $block = 8192; + my $block = 1400; # try not to fragment packages (pxelinux seems to have problems with it) my $buff; my $pos = 0; + 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%%\r", $path, $pos, $size, $pos * 100 / $size; + progress_bar::tick( $path, $pos, $size ); } close($fh); close($client); - print "$path $pos == $size OK\n"; - - exit; -} - -use boolean; - -use screen; -use kvm; + print STDERR "\n"; -$SIG{CHLD} = 'IGNORE'; + warn "exit static child"; -sub start_stop { - my $daemon = shift; - my $pid = $pids->{$daemon}; - - warn "start_stop $daemon $pid pids: ",dump( $pids ); - - 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"; - return qq|$daemon pid $pid started|; - } elsif ( defined $pid ) { - # 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 $@; - exit; - } else { - die "fork error $!"; - } - } + exit(0); } -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 ) = @_; - warn "get_request $client $path ",dump( $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|, ); - my $debug_proc; + 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| ?|; @@ -168,51 +140,133 @@ ; } - if ( $name->can('start_options') ) { - $html .= qq| $_| foreach $name->start_options; + if ( $name->can('start_fork') ) { + $html .= qq| $_| foreach $name->start_fork; + } + + if ( $name->can('actions') ) { + $html .= qq| $_| foreach $name->actions; } + } else { + $html .= qq|restart $pid exited|; } push @rows, ( $name => $html ); } + my $below_table = ''; + warn 'static_pids: ', dump( $static_pids ) if $debug; foreach my $pid ( keys %$static_pids ) { my $path = $static_pids->{$pid}; if ( -d "/proc/$pid" ) { push @rows, ( $path => qq|$pid| ); + } elsif ( $param->{clean_completed_downloads} ) { + delete $static_pids->{$pid} } else { push @rows, ( $path => "$pid competed" ); + $below_table = qq|clean completed downloads|; } } print $client $ok , html::table( 2, @rows ) + , $below_table , html::tabs( log::mac_changes ) , $debug_proc ; + } elsif ( $path =~ m{^/server} ) { + 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 ( $ip ne $server::ip ) { + my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} ); + + my @table = ( + 'ip' => $ip, + 'hostname' => qq||, + ); + + my $deploy; + + if ( my $mac = client::mac( $ip ) ) { + $deploy = client::conf( $ip, 'deploy' => $param->{deploy} ); + push @table, ( + 'mac' => $mac, + 'deploy' => html::select( 'deploy', $deploy, config::available ) + ); + $deploy = qq|

PXElinux

| . html::pre( config::for_ip( $ip ) ); + } + + print $client $ok + , qq|
| + , html::table( 2, @table ), + , qq|
| + , $deploy + ; + + if ( my $amt = client::conf( $ip, 'amt' ) ) { + print $client qq|

AMT

|, amt::info( $amt ); + } + } else { + + my $arp = { + map { + my @c = split(/\s+/,$_); + if ( $#c == 5 ) { + ( uc $c[3] => [ $c[0] , $c[5] ] ) + } else { + } + } read_file('/proc/net/arp') + }; + + warn "# arp ",dump( $arp ); + + print $client $ok + , qq|

Clients on $server::ip

| + , html::table( -5, + 'ip', 'hostname', 'mac', 'deploy', 'arp', + map { + my $ip = $_; + $ip =~ s{^.+/ip/}{}; + my $arp = $arp->{ client::mac $ip, 'clean' }; + $arp = $arp ? $arp->[1] : ''; + $arp =~ s{$ip}{}; + ( + qq|$ip| + , client::conf( $ip, 'hostname' ) + , client::mac( $ip ) + , html::tt( client::conf( $ip, 'deploy' ) ) + , $arp + ); + } + glob("$server::conf/ip/*") + ) + , qq|

ARP

| + , html::table( -3, 'mac', 'dev', 'ip', + map { + my $c = $arp->{$_}; + ( html::tt( $_ ), $c->[1], $c->[0] ) + } sort keys %$arp + ) + ; + } } 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{^/((?:screen|kvm).*)} ) { - print $client $redirect, start_stop($1); + } elsif ( $path =~ m{^/start_stop/(\S+)} ) { + print $client $redirect, daemons::start_stop($1); + } elsif ( $path =~ m{^/action/([^/]+)/(.+)} ) { + $1->$2(); + print $client $redirect; } 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"; @@ -220,12 +274,17 @@ } -use browser; - sub start { + warn 'tap ', network::tap(); + + daemons::start_stop 'browser', $url; + daemons::start_stop $_ foreach ( qw/dhcpd tftpd dnsd/ ); + daemons::start_stop 'kvm' unless $ENV{DEV}; # skip kvm statup when running on real device + my $server = IO::Socket::INET->new( Proto => 'tcp', + LocalAddr => $server::ip, LocalPort => $httpd::port, Listen => SOMAXCONN, Reuse => 1 @@ -233,18 +292,12 @@ print "url $url\n"; - start_stop 'browser', $url; - start_stop 'screen'; - start_stop 'kvm'; - - 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; @@ -255,20 +308,13 @@ } warn "param: ",dump( $param ) if $debug; } - warn "path $path param: ",dump( $param ); get_request $client, $path, $param; } else { print $client "HTTP/1.0 500 No method\r\nConnection: close\r\nContent-type: text/plain\r\n\r\n500 $request"; warn "500 $request"; } - print $client qq{ -
- reload - index - exit -
- } if $client->connected; + print $client menu() if $client->connected; }