/[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 53 by dpavlin, Thu Jul 30 12:10:53 2009 UTC revision 165 by dpavlin, Thu Aug 6 18:51:57 2009 UTC
# Line 17  use Carp qw/confess/; Line 17  use Carp qw/confess/;
17  use File::Slurp;  use File::Slurp;
18  #use JSON;  #use JSON;
19  use IO::Socket::INET;  use IO::Socket::INET;
20  use Module::Refresh;  use Regexp::Common qw/net/;
 use Parallel::ForkManager;  
21    
22  our $port = 7777;  sub menu {qq{
 our $debug = 1;  
23    
24  my $pm = Parallel::ForkManager->new(10);  <div style="font-size: 80%; color: #888">
25    <a href=/>home</a>
26    <a href=/server>server</a>
27    <a href=/client>client</a>
28    </div>
29    
30    }}
31    
32    our $pids;
33    $pids = { httpd => $$ } unless defined $pids; # keep pids on refresh
34    
35    sub DESTROY {
36            warn "pids ",dump( $pids );
37            foreach ( values %$pids ) {
38                    warn "kill $_";
39                    kill 1,$_ || kill 9, $_;
40            }
41    }
42    
43  our $screen_pid;  our $port = 7777;
44    
45  use server;  use server;
46  our $url = "http://$server::ip:$port/";  our $debug = server::debug;
47    our $url = "http://$server::ip:$port";
48    
49  use html;  use html;
50    our $static_pids;
51    use progress_bar;
52    use config;
53    use client;
54    use log;
55    
56  sub static {  sub static {
57          my ($client,$path) = @_;          my ($client,$path) = @_;
58    
59          $path = "tftp/$path";          my $full = "$server::base_dir/tftp/$path";
60    
61          if ( ! -e $path ||  -d $path ) {          return if ! -f $full;
62                  print $client "HTTP/1.0 404 $path not found\r\n";  
63                  return;          if ( my $pid = fork ) {
64                    # parent
65                    close($client);
66                    print "http static child $pid\n";
67                    $static_pids->{$pid} = $path;
68                    return 1;
69          }          }
70    
71          my $type = 'text/plain';          my $type = 'application/octet-stream';
72          $type = 'text/html' if $path =~ m{\.htm};          $type = 'text/html' if $path =~ m{\.htm};
73          $type = 'application/javascript' if $path =~ m{\.js};          $type = 'application/javascript' if $path =~ m{\.js};
74            $type = 'text/plain' if $path =~ m{\.txt};
75    
76            my $size = -s $full || return;
77    
78            print $client "HTTP/1.0 200 OK\r\nContent-Type: $type\r\nContent-Length: $size\r\nConnection: close\r\n\r\n";
79    
80          print $client "HTTP/1.0 200 OK\r\nContent-Type: $type\r\nContent-Length: ", -s $path,"\r\n\r\n";          open(my $fh, $full);
81          open(my $html, $path);  
82          while(<$html>) {          my $block = 1400; # try not to fragment packages (pxelinux seems to have problems with it)
83                  print $client $_;          my $buff;
84            my $pos = 0;
85    
86            warn "static $path $type $size block: $block\n";
87    
88            progress_bar::start;
89    
90            while( my $len = read $fh, $buff, $block ) {
91                    print $client $buff;
92                    $client->flush;
93                    $pos += $len;
94                    progress_bar::tick( $path, $pos, $size );
95          }          }
96          close($html);          close($fh);
97            close($client);
98    
99          return $path;          print STDERR "\n";
100  }  
101            warn "exit static child";
102    
103  my $ok = "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n";          exit(0);
104    }
105    
106  use boolean;  use boolean;
107  use screen;  
108    use kvm;
109    use qemu; $pids->{qemu} = 'stopped';
110    
111    $SIG{CHLD} = 'IGNORE';
112    
113    sub start_stop {
114            my $daemon = shift;
115            my $pid = $pids->{$daemon} || 'not started';
116    
117            warn "start_stop $daemon $pid\n";
118    
119            if ( $pid =~ m{^\d+$} ) {
120                    my $pstree = `pstree -p $pid`;
121                    my @pids = $pstree =~ m{\((\d+)\)}g;
122                    warn "pstree $pstree pids ",dump( @pids );
123                    kill 1, $_ foreach reverse @pids;
124                    $pids->{$daemon} = 'stopped';
125                    return qq|$daemon pid $pid stopped|;
126            } else {
127                    if ( $pid = fork ) {
128                            # parent
129                            $pids->{$daemon} = $pid;
130                            warn "forked $daemon $pid\n";
131                            return qq|$daemon pid $pid started|;
132                    } elsif ( defined $pid ) {
133                            # child
134                            my $invoke = 'start';
135                            $invoke = $1 if $daemon =~ s{/(.+)}{};
136                            if ( $daemon =~ m{dhcpd|tftpd|dnsd} ) {
137                                    my $exec = "perl -I$server::base_dir/lib -I$server::base_dir/lib/PXElator -M$daemon -e ${daemon}::${invoke}";
138                                    warn "exec $exec";
139                                    exec "xterm -T $daemon -n $daemon -e $exec";
140                            } else {
141                                    my $eval = $daemon . '::' . $invoke . '(' . ( @_ ? dump(@_) : '' ) . ')';
142                                    warn "eval $eval";
143                                    eval $eval;
144                                    warn "can't start $daemon: $@" if $@;
145                            }
146                            exit;
147                    } else {
148                            die "fork error $!";
149                    }
150            }
151    }
152    
153    my $ok =       qq|HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n| . menu();
154    my $redirect = qq|HTTP/1.1 302 Found\r\nContent-type: text/html\r\nLocation: $url\r\n\r\n|;
155    
156  sub get_request {  sub get_request {
157          my ( $client, $path, $param ) = @_;          my ( $client, $path, $param ) = @_;
158    
159          warn "get_request $client $path ",dump( $param );          server->refresh;
160    
161            warn "get_request $path ", $param ? dump( $param ) : '', "\n";
162    
163          if ( my $found = static( $client,$path ) ) {          if ( my $found = static( $client,$path ) ) {
164                  warn "static $found" if $debug;                  warn "static $found" if $debug;
165          } elsif ( $path eq '/' ) {          } elsif ( $path eq '/' ) {
166    
167                  my $screen = $screen_pid ? qq|stop <tt>$screen_pid</tt>| : 'start';                  my @rows = (
168                            'debug',        qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,
                 print $client $ok,  
                 html::table( 2,  
                         'pid',   $$,  
                         'debug', qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,  
                         'screen', qq|<a href=/screen>$screen</a>|,  
169                  );                  );
170    
171          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {                  my $debug_proc = '';
172                  eval 'our $' . $1 . ' = ' . $2;  
173                  warn $@ if $@;                  warn 'pids: ', dump( $pids ) if $debug;
174                  print $client qq|HTTP/1.1 302 Found\r\nLocation: $url\r\nContent-type: text/html\r\n\r\n<big>$1 = $2</big><br>Location: <a href="$url">$url</a>|;                  foreach my $name ( sort keys %$pids ) {
175          } elsif ( $path =~ m{^/screen} ) {                          my $pid = $pids->{$name} || next;
176    
177                            my $html = qq|<a href=/start_stop/$name>$pid</a>|;
178    
179                            my $proc = "/proc/$pid/status";
180    
181                  if ( $screen_pid ) {                          if ( -e $proc ) {
182                          if ( ! kill $screen_pid ) {                                  if ( $debug ) {
183                                  warn "kill -9 $screen_pid";                                          $html .= qq| <a name=$pid href=#proc-$pid>?</a>|;
184                                  if ( kill 9, $screen_pid ) {  
185                                          print $client $ok, qq|screen pid $screen_pid stopped|;                                          $debug_proc
186                                          $screen_pid = 0;                                                  .= qq|<a name=proc-$pid href=#$pid>$proc</a><pre style="font-size: 10%">|
187                                  } else {                                                  .  read_file($proc)
188                                          print $client $ok, qq|can't stop screen $screen_pid: $!|;                                                  .  qq|</pre>|
189                                                    ;
190                                    }
191    
192                                    if ( $name->can('start_fork') ) {
193                                            $html .= qq| <a href=/start_stop/kvm/$_>$_</a>| foreach $name->start_fork;
194                                    }
195    
196                                    if ( $name->can('actions') ) {
197                                            $html .= qq| <a href=/action/kvm/$_>$_</a>| foreach $name->actions;
198                                  }                                  }
199                          }                          }
200                  } else {  
201                          if ( $screen_pid = $pm->start ) {                          push @rows, ( $name => $html );
202                                  print $client $ok, qq|screen started pid $screen_pid|;                  }
203    
204                    my $below_table = '';
205    
206                    warn 'static_pids: ', dump( $static_pids ) if $debug;
207                    foreach my $pid ( keys %$static_pids ) {
208                            my $path = $static_pids->{$pid};
209                            if ( -d "/proc/$pid" ) {
210                                    push @rows, ( $path => qq|<a href=/kill/static/$pid>$pid</a>| );
211                            } elsif ( $param->{clean_completed_downloads} ) {
212                                    delete $static_pids->{$pid}
213                          } else {                          } else {
214                                  screen::start;                                  push @rows, ( $path => "$pid competed" );
215                                  $pm->finish;                                  $below_table = qq|<a href="/?clean_completed_downloads=1">clean completed downloads</a>|;
216                          }                          }
217                  }                  }
218    
219          } elsif ( $path =~ m{/boot} ) {                  print $client $ok
220                  print $client qq{$ok                          , html::table( 2, @rows )
221  #!gpxe                          , $below_table
222  imgfree                          , html::tabs( log::mac_changes )
223  login                          , $debug_proc
224  chain http://$server::ip:$httpd::port/                          ;
225    
226                          };          } elsif ( $path =~ m{^/server} ) {
227                    print $client $ok
228                            , html::table( 2, map { ( $_, eval '$server::'.$_ ) } ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain_name', 'base_dir' ) )
229                            ;
230            } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {
231                    my $ip = $1 || $client->peerhost;
232                    if ( $ip ne $server::ip ) {
233                            my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} );
234                            my $deploy   = client::conf( $ip, 'deploy'   => $param->{deploy}   );
235                            print $client $ok
236                                    , qq|<form method=get>|
237                                    , html::table( 2,
238                                            'ip' => $ip,
239                                            'mac' => client::mac( $ip ),
240                                            'hostname' => qq|<input type=text name=hostname value=$hostname>|,
241                                            'deploy' => html::select( 'deploy', $deploy, config::available ),
242                                    )
243                                    , qq|<input type=submit value=change></form>|
244                                    , qq|<h2>PXElinux $deploy</h2><pre>|
245                                    , config::for_ip( $ip )
246                                    , qq|</pre>|
247                                    ;
248                    } else {
249                            print $client $ok
250                                    , qq|<h2>Clients on $server::ip</h2>|
251                                    , qq|<ul>|
252                                    , join("\n",
253                                            map {
254                                                    my $ip = $_;
255                                                    $ip =~ s{^.+/ip/}{};
256                                                    qq|<li><a href=/client/$ip>$ip</a> |, client::mac($ip), qq|</li>|;
257                                            }
258                                            glob("$server::conf/ip/*")
259                                    )
260                                    , qq|</ul>|
261                                    ;
262                    }
263            } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {
264                    eval 'our $' . $1 . ' = ' . $2;
265                    warn $@ if $@;
266                    print $client $redirect, qq|<big>$1 = $2</big><br>Location: <a href="$url">$url</a>|;
267                    server::debug( $debug ) if $1 eq 'debug';
268            } elsif ( $path =~ m{^/start_stop/(\S+)} ) {
269                    print $client $redirect, start_stop($1);
270            } elsif ( $path =~ m{^/action/([^/]+)/(.+)} ) {
271                    $1->$2();
272                    print $client $redirect;
273            } elsif ( $path =~ m{^/kill/static/(\d+)} ) {
274                    print $client $redirect;
275                    kill 1, $1 || kill 9, $2 && warn "killed $1";
276          } else {          } else {
277                  print $client "HTTP/1.0 404 $path\r\nConnection: close\r\nContent-type: text/html\r\n\r\n<big>404 $path</big>";                  print $client "HTTP/1.0 404 $path\r\nConnection: close\r\nContent-type: text/html\r\n\r\n<big>404 $path</big>";
278                  warn "404 $path";                  warn "404 $path";
# Line 119  chain http://$server::ip:$httpd::port/ Line 280  chain http://$server::ip:$httpd::port/
280    
281  }  }
282    
283    use browser;
284    use network;
285    
286  sub start {  sub start {
287    
288            warn 'tap ', network::tap();
289    
290          my $server = IO::Socket::INET->new(          my $server = IO::Socket::INET->new(
291                          Proto     => 'tcp',                          Proto     => 'tcp',
292                          LocalPort => $httpd::port,                          LocalPort => $httpd::port,
# Line 130  sub start { Line 296  sub start {
296    
297          print "url $url\n";          print "url $url\n";
298    
299          system "/mnt/llin/rest/cvs/uzbl/uzbl -u $url &";          start_stop 'browser', $url;
300            start_stop 'dhcpd';
301            start_stop 'tftpd';
302            start_stop 'dnsd';
303            start_stop 'kvm';
304    
305          while (my $client = $server->accept()) {          while (1) {
306                  $client->autoflush(1);                  my $client = $server->accept() || next; # ALARM trickle us
307                  my $request = <$client>;                  my $request = <$client>;
308    
309                  warn "request $request\n" if $debug;                  warn "request $request\n" if $debug;
310    
                 Module::Refresh->refresh;  
   
311                  if ($request =~ m{^GET (/.*) HTTP/1.[01]}) {                  if ($request =~ m{^GET (/.*) HTTP/1.[01]}) {
312                          my $path = $1;                          my $path = $1;
313                          my $param;                          my $param;
# Line 150  sub start { Line 318  sub start {
318                                  }                                  }
319                                  warn "param: ",dump( $param ) if $debug;                                  warn "param: ",dump( $param ) if $debug;
320                          }                          }
                         warn "path $path param: ",dump( $param );  
321                          get_request $client, $path, $param;                          get_request $client, $path, $param;
322                  } else {                  } else {
323                          print $client "HTTP/1.0 500 No method\r\nConnection: close\r\nContent-type: text/plain\r\n\r\n500 $request";                          print $client "HTTP/1.0 500 No method\r\nConnection: close\r\nContent-type: text/plain\r\n\r\n500 $request";
324                          warn "500 $request";                          warn "500 $request";
325                  }                  }
326    
327                  print $client qq{                  print $client menu() if $client->connected;
                 <div style="font-size: 80%; color: #888">  
                 <a href="">reload</a>  
                 <a href="/">index</a>  
                 </div>  
                 } if $client->connected;  
328    
329          }          }
330    

Legend:
Removed from v.53  
changed lines
  Added in v.165

  ViewVC Help
Powered by ViewVC 1.1.26