--- lib/PXElator/httpd.pm 2009/07/30 20:15:39 66 +++ lib/PXElator/httpd.pm 2009/07/31 20:45:09 96 @@ -19,7 +19,8 @@ use IO::Socket::INET; use Module::Refresh; -our $pids = { httpd => $$ }; +our $pids; +$pids = { httpd => $$ } unless defined $pids; # keep pids on refresh sub DESTROY { warn "pids ",dump( $pids ); @@ -30,12 +31,13 @@ } our $port = 7777; -our $debug = 0; use server; +our $debug = server::debug; our $url = "http://$server::ip:$port"; use html; +our $static_pids; sub static { my ($client,$path) = @_; @@ -44,6 +46,14 @@ return if ! -f $full; + if ( my $pid = fork ) { + # parent + close($client); + print "http static child $pid\n"; + $static_pids->{$pid} = $path; + return 1; + } + my $type = 'application/octet-stream'; $type = 'text/html' if $path =~ m{\.htm}; $type = 'application/javascript' if $path =~ m{\.js}; @@ -51,15 +61,18 @@ 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); - 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; + print "static $path $type $size block: $block\n"; + while( my $len = read $fh, $buff, $block ) { print $client $buff; $pos += $len; @@ -68,13 +81,11 @@ close($fh); close($client); - print "$path $pos == $size OK\n"; + print "\n"; - return $path; + exit; } -my $ok = "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n"; - use boolean; use screen; @@ -86,22 +97,26 @@ my $daemon = shift; my $pid = $pids->{$daemon}; - warn "start_stop $daemon pids: ",dump( $pids ); + warn "start_stop $daemon $pid\n"; - if ( $pid ) { - warn "kill 9 $pid"; - kill 9, $pid; + 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"; + warn "forked $daemon $pid\n"; return qq|$daemon pid $pid started|; } elsif ( defined $pid ) { # child - my $eval = $daemon . '::start(' . dump(@_) . ')'; + my $invoke = 'start'; + $invoke = $1 if $daemon =~ s{/(.+)}{}; + my $eval = $daemon . '::' . $invoke . '(' . ( @_ ? dump(@_) : '' ) . ')'; warn "eval $eval"; eval $eval; warn "can't start $daemon: $@" if $@; @@ -112,10 +127,13 @@ } } +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 get_request { my ( $client, $path, $param ) = @_; - warn "get_request $client $path ",dump( $param ); + warn "get_request $path ", $param ? dump( $param ) : '', "\n"; if ( my $found = static( $client,$path ) ) { warn "static $found" if $debug; @@ -131,25 +149,75 @@ 'debug', qq|$debug|, ); - foreach my $name ( %$pids ) { + + my $debug_proc = ''; + + warn 'pids: ', dump( $pids ) if $debug; + foreach my $name ( sort keys %$pids ) { my $pid = $pids->{$name} || next; - my $html = qq|$pid|; - $html .= qq|
|
-					.  ( $debug ? read_file("/proc/$pid/status") : '' )
-					.  qq|
| if $debug; + my $html = qq|$pid|; + + my $proc = "/proc/$pid/status"; + + if ( -e $proc ) { + if ( $debug ) { + $html .= qq| ?|; + + $debug_proc + .= qq|$proc
|
+						.  read_file($proc)
+						.  qq|
| + ; + } + + if ( $name->can('start_fork') ) { + $html .= qq| $_| foreach $name->start_fork; + } + + if ( $name->can('actions') ) { + $html .= qq| $_| foreach $name->actions; + } + } push @rows, ( $name => $html ); } - print $client $ok, html::table( 2, @rows ); + 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{^/our/(\w+)/(\S+)} ) { eval 'our $' . $1 . ' = ' . $2; warn $@ if $@; - print $client qq|HTTP/1.1 302 Found\r\nLocation: $url\r\nContent-type: text/html\r\n\r\n$1 = $2
Location: $url|; - } elsif ( $path =~ m{^/(screen|kvm)} ) { - print $client $ok, start_stop($1); + 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 + print $client $redirect, 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; @@ -203,7 +271,6 @@ } 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";