/[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 42 by dpavlin, Wed Jul 29 17:42:48 2009 UTC revision 493 by dpavlin, Mon Jan 25 18:30:47 2010 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 Regexp::Common qw/net/;
21    use POSIX qw(strftime);
22    
23    our $title;
24    
25    sub html_start {
26    qq{
27    <html>
28    <head>
29    <title>$title</title>
30    </head>
31    <body>
32    }}
33    
34    sub html_end {
35    qq{
36    </body>
37    </html>
38    }}
39    
40  our $port = 7777;  our $port = 7777;
 our $debug = 1;  
41    
42  use server;  use server;
43  our $url = "http://$server::ip:$port/";  our $debug = server::debug;
44    our $url = "http://$server::ip:$port";
45    
46    use html;
47    our $static_pids;
48    use progress_bar;
49    use config;
50    use client;
51    use log;
52    use x11;
53    use amt;
54    use daemons;
55    
56    use kvm;
57    use browser;
58    use network;
59    use ip;
60    use wireshark;
61    use syslogd;
62    use nmap;
63    use ping;
64    use wol;
65    
66    use store;
67    
68    
69    sub menu {
70            my $store_url = $url;
71            $store_url =~ s{:\d+.+}{:28017};
72    qq{
73    <div style="font-size: 80%; color: #888">
74    <a target=pids href=/ >home</a>
75    |
76    <a target=server href=/server >server</a>
77    <a target=server href=/brctl >brctl</a>
78    <a target=server href=/ip >ip</a>
79    |
80    <a target=store href=$store_url >MongoDB</a>
81    <a target=store href=/store/latest >latest</a>
82    |
83    <a target=client href=/nmap >nmap</a>
84    <a target=client href=/client >client</a>
85    </div>
86    
87    }}
88    
89    
90  sub static {  sub static {
91          my ($client,$path) = @_;          my ($client,$path) = @_;
92    
93          $path = "tftp/$path";          my $full = "$server::base_dir/tftp/$path";
94    
95            return if ! -f $full;
96    
97          if ( ! -e $path ||  -d $path ) {          return if $full =~ m{\.ico$};
98                  print $client "HTTP/1.0 404 $path not found\r\n";  
99                  return;          if ( my $pid = fork ) {
100                    # parent
101                    close($client);
102                    $static_pids->{$pid} = $path;
103                    return 1;
104          }          }
105    
106          my $type = 'text/plain';          my $type = 'application/octet-stream';
107          $type = 'text/html' if $path =~ m{\.htm};          $type = 'text/html' if $path =~ m{\.htm};
108          $type = 'application/javascript' if $path =~ m{\.js};          $type = 'application/javascript' if $path =~ m{\.js};
109            $type = 'text/plain' if $path =~ m{\.txt};
110    
111          print $client "HTTP/1.0 200 OK\r\nContent-Type: $type\r\nContent-Length: ", -s $path,"\r\n\r\n";          my $size = -s $full || return;
112          open(my $html, $path);  
113          while(<$html>) {          print $client "HTTP/1.0 200 OK\r\nContent-Type: $type\r\nContent-Length: $size\r\nConnection: close\r\n\r\n";
114                  print $client $_;  
115            open(my $fh, $full);
116    
117            my $block = 1400; # try not to fragment packages (pxelinux seems to have problems with it)
118            my $buff;
119            my $pos = 0;
120    
121            store::audit( 'static', { pid => $$, path => $path, type => $type, size => $size, block => $block, peerhost => $client->peerhost });
122    
123            progress_bar::start;
124    
125            while( my $len = read $fh, $buff, $block ) {
126                    print $client $buff;
127                    $client->flush;
128                    $pos += $len;
129                    progress_bar::tick( $path, $pos, $size );
130          }          }
131          close($html);          close($fh);
132            close($client);
133    
134            print STDERR "\n";
135    
136          return $path;          exit(0);
137  }  }
138    
139  my $ok = "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n";  sub ok {
140            qq|HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n| . html_start() . menu()
141    }
142    
143    sub redirect {
144            my $to = shift;
145            $to ||= $url;
146            qq|HTTP/1.1 302 Found\r\nContent-type: text/html\r\nLocation: $to\r\n\r\n|
147    }
148    
149    sub toggle {
150            my $v = shift;
151            return $v ? 0 : 1;
152    }
153    
154    sub get_request {
155            my ( $client, $path, $param ) = @_;
156    
157            server->refresh;
158    
159            store::audit( 'request', { path => $path, param => $param, peerhost => $client->peerhost } );
160    
161            $title = $path;
162    
163            if ( my $found = static( $client,$path ) ) {
164                    warn "static $found" if $debug;
165            } elsif ( $path eq '/' ) {
166    
167                    my @rows;
168    
169                    my $debug_proc = '';
170    
171    warn "XXX pids = ", dump( $daemons::pids );
172    
173                    foreach my $name ( sort keys %$daemons::pids ) {
174                            my $pid = $daemons::pids->{$name}; # || next;
175    
176                            my $html;
177    
178                            my $proc = "/proc/$pid/status";
179    
180                            if ( -e $proc ) {
181                                    $html .= qq|<a href=/start_stop/$name>$pid</a>|;
182                                    if ( $debug ) {
183                                            $html .= qq| <a name=$pid href=#proc-$pid>?</a>| if $name->can('start');
184    
185                                            $debug_proc
186                                                    .= qq|<a name=proc-$pid href=#$pid>$proc</a><pre style="font-size: 10%">|
187                                                    .  read_file($proc)
188                                                    .  qq|</pre>|
189                                                    ;
190                                    }
191    
192                                    my $class = $name;
193                                    $class =~ s{\.\d+$}{};
194    
195                                    if ( $class->can('fork_if_active') ) {
196                                            $html .= qq| <a href=/start_stop/$name/$_>$_</a>| foreach $class->fork_if_active;
197                                    }
198    
199                                    if ( $class->can('actions') ) {
200                                            $html .= qq| <a href=/action/$name/$_>$_</a>| foreach $class->actions;
201                                    }
202                            } else {
203                                    if ( $pid =~ m{^\d+$} ) {
204                                            $html .= qq|$pid exited |
205                                    } else {
206                                            $html .= qq|$pid |;
207                                    }
208                                    $html .= qq|<a href=/start_stop/$name>restart</a>| if $pid || $name->can('start');
209                                    if ( $name->can('fork_actions') ) {
210                                            $html .= qq| <a href=/start_stop/$name/$_>$_</a>| foreach $name->fork_actions;
211                                    }
212                            }
213    
214                            die "no html generated" unless $html;
215    
216                            push @rows, ( $name => $html );
217                    }
218    
219                    my $below_table = '';
220    
221                    warn 'static_pids: ', dump( $static_pids ) if $debug;
222                    foreach my $pid ( keys %$static_pids ) {
223                            my $path = $static_pids->{$pid};
224                            if ( -d "/proc/$pid" ) {
225                                    push @rows, ( $path => qq|<a href=/kill/static/$pid>$pid</a>| );
226                            } elsif ( $param->{clean_completed_downloads} ) {
227                                    delete $static_pids->{$pid}
228                            } else {
229                                    push @rows, ( $path => "$pid competed" );
230                                    $below_table = qq|<a href="/?clean_completed_downloads=1">clean completed downloads</a>|;
231                            }
232                    }
233    
234                    my $kvm = kvm::next_nr;
235                    $kvm = qq|<div><a href=/start_stop/kvm?nr=$kvm>create new kvm $kvm</a></div>|;
236    
237                    print $client ok
238                            , html::table( 2, @rows )
239                            , $below_table
240                            , $kvm
241                            , html::tabs( log::mac_changes )
242                            , $debug_proc
243                            ;
244    
245            } elsif ( $path =~ m{^/server} ) {
246                    foreach my $name ( keys %$param ) {
247                            eval '$server::' . $name . '= $param->{$name}';
248                    }
249                    my @table = (
250                              'debug' => qq|<a href=/our/debug/| . toggle($debug) . qq|>$debug</a>|,
251                            , 'new_clients' => qq|<input type=text name=new_clients size=3 value="$server::new_clients">|
252                    );
253    
254                    foreach my $editable ( 'ip', 'bcast', 'netmask', 'ip_from', 'ip_to', 'domain' ) {
255                            my $v = eval '$server::' . $editable;
256                            push @table, ( $editable, qq|<input type=text name=$editable value="$v">| );
257                    }
258    
259                    foreach my $readonly ( 'base_dir', 'conf' ) {
260                            my $v = eval '$server::' . $readonly;
261                            push @table, ( $readonly, html::tt $v );
262                    }
263                            
264                    print $client ok
265                            , qq|<form method=get>|
266                            , html::table( 2, @table )
267                            , qq|
268                                    <input type=submit name=action value=change>
269                                    </form>
270                            |
271                            ;
272    
273            } elsif ( $path =~ m{^/store/latest} ) {
274                    print $client ok
275                            , qq|
276    <style type=text/css>
277            .z {
278                    background: #eee;
279            }
280            td > pre {
281                    margin: 0;
282                    max-height: 3em;
283                    overflow: hidden;
284            }
285            td:hover > pre {
286                    max-height: 100%;
287                    overflow: show;
288            }
289    </style>
290                            |
291                            , qq|<table>|
292                    ;
293                    my ( $s1,$s2 ) = ( ' class=z', '' );
294                    my @cols;
295    
296                    store::query( sub {
297                            my $o = shift;
298                            my $p = delete( $o->{package} );
299                            delete( $o->{_id} );
300    
301                            if ( ! @cols ) {
302                                    #@cols = keys %$p;
303                                    @cols = qw( time name );
304                                    print $client qq|<tr><th>|
305                                            , join(qq|</th><th>|, @cols)
306                                            , qq|</th><th></th></tr>|
307                                    ;
308                            }
309    
310                            # XXX sigh, dump dies if we don't do this
311    #                       delete $o->{$_} foreach ( grep { ! defined $o->{$_} } keys %$o );
312    
313                            print $client qq|<tr$s1>|
314                                    , strftime( qq|<td title="%Y-%m-%d">%H:%M:%S</td>|, localtime($p->{time}) )
315                                    , map { qq|<td>$_<td>| } ( $p->{name} , html::pre_dump($o) )
316                                    , qq|</tr>\n|
317                            ;
318                            ( $s1, $s2 ) = ( $s2, $s1 );
319                    });
320                    print $client qq|</table>|;
321    
322            } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {
323                    my $ip = $1;
324                    $title = $ip if $ip;
325    
326                    if ( $param->{action} eq 'remove' ) {
327                            client::remove( $param->{change_ip} );
328                            print $client redirect("$url/client");
329                            return;
330                    } elsif ( $param->{action} eq 'change' ) {
331                            if ( my $new_ip = client::change_ip( $ip, $param->{change_ip} ) ) {
332                                    print $client redirect("$url/client#$new_ip");
333                                    return;
334                            }
335                    }
336    
337                    if ( ! $ip ) {
338                            my $peer_ip = $client->peerhost;
339    
340                            my $netmask  = ip::to_int $server::netmask;
341                            my $network  = ip::to_int($server::ip) & $netmask;
342                            my $from_int = $network | $server::ip_from;
343                            my $to_int   = $network | $server::ip_to;
344                            my $ip_int   = ip::to_int $peer_ip;
345    
346                            # show edit for clients in our dhcp range
347                            if ( $ip_int >= $from_int && $ip_int <= $to_int ) {
348                                    $ip = $peer_ip;
349                            }
350                    }
351    
352                    if ( $ip && $ip ne $server::ip ) {
353    
354                            my @editable = ( qw/hostname config homepage/ );
355    
356                            client::conf( $ip, $_ => $param->{$_} ) foreach @editable;
357    
358                            my $conf = client::all_conf( $ip );
359                            my $config = delete $conf->{config};
360    
361                            my $nmap = qq|<a href=/nmap?scan=$ip>nmap</a>|;
362                            my @table = (
363                                    'ping' => ping::host($ip)
364                                            ? qq|<span style="color:green">up</span> $nmap|
365                                            : qq|<span style="color: red">down</span> <a href=/wol/$ip>wol</a> $nmap|
366                                            ,
367                                    'ip' => qq|<input type=text name=change_ip value="$ip" onChange="document.getElementById('old_ip').style.display = '';"><span id=old_ip style="display: none; color: #888;">old: $ip<span>|,
368                                    'mac' => format::mac( delete $conf->{mac}, 'html' ),
369                                    'hostname' => qq|<input type=text name=hostname value="| . delete($conf->{hostname}) . qq|">|,
370                                    'config' => html::select( 'config', $config, config::available ),
371                                    html::conf( $ip, $conf, 'edit', @editable )
372                            );
373    
374                            print $client ok
375                                    , qq|<form method=get>|
376                                    , html::table( 2, @table ),
377                                    , qq|
378                                            <input type=submit name=action value=change>
379                                            <input type=submit name=action value=remove style="color: red">
380                                            </form>|
381                                    ;
382    
383                            if ( $config ) {
384                                    if ( my $for_ip = config::for_ip( $ip ) ) {
385                                            print $client qq|<h2>config::for_ip</h2>| . html::pre( $for_ip );
386                                    }
387                            }
388    
389                            if ( $conf->{amt} ) {
390                                    print $client qq|<h2>amt network</h2>|, html::pre_dump( amt::network( $ip ) );
391                                    print $client qq|<h2>amt log</h2>|, html::pre_dump( amt::log( $ip ) );
392                            }
393    
394                    } else {
395    
396                            print $client ok qq|<h2>Clients on $server::ip</h2>|;
397    
398                            my @ping;
399                            if ( my $host = $param->{ping_target} ) {
400                                    @ping = ( $host );
401                            } elsif ( $param->{ping} ) {
402                                    @ping = client::all_ips;
403                            }
404    
405                            my $ping = ping::fping( @ping ) if @ping;
406                            my $arp = client::arp_mac_dev;
407    
408                            my @clients;
409    
410                            foreach my $ip ( client::all_ips ) {
411                                    
412                                    my $conf = client::all_conf( $ip );
413                                    my $mac = delete $conf->{mac} || '';
414                                    my $dev = $arp->{$mac};
415    
416                                    next unless $dev || $param->{all};
417    
418                                    my $style
419                                            = 'style="color:'
420                                            . ( $ping->{$ip} ? 'green' : 'red' )
421                                            . '"'
422                                            if $ping;
423    
424                                    $style ||= '';
425                                    my $ip_text = qq|<tt>$ip</tt>|;
426                                    $ip_text = qq|<tt><b>$ip</b></tt>| if ip::in_dhcp_range($ip);
427    
428                                    $dev = qq|<tt>$dev</tt>| if $dev;
429    
430                                    push @clients
431                                            , qq|<a $style name=$ip target=client href=/client/$ip>$ip_text</a>|
432                                            , format::mac( $mac => 'html' )
433                                            , $dev
434                                            , delete $conf->{hostname}
435                                            , html::conf( $ip, $conf, 'inline' )
436                                    ;
437                            }
438    
439                            my $all = $param->{all} ? 0 : 1;
440    
441                            print $client html::table( -5, 'ip', 'mac', qq|<a href="?all=$all">dev</a>|, 'hostname', 'conf', @clients );
442                            print $client qq|
443                                    <form method=get>
444                                    <input type=text   name=ping_target   size=15>
445                                    <input type=submit name=ping value=ping>
446                                    </form>
447                            |;
448                    }
449    
450    
451            } elsif ( $path =~ m{^/brctl} ) {
452    
453                    system 'brctl addif virtual ' . $param->{addif} if $param->{addif};
454                    system 'brctl delif virtual ' . $param->{delif} if $param->{delif};
455    
456                    my $in_virtual;
457    
458                    my @table =
459                            map {
460                                    my @c = split(/\t+/,$_,4);
461                                    if ( $#c == 1 ) {
462                                            $in_virtual->{ $c[1] }++;
463                                            @c = ( '', '', '', $c[1] );
464                                    } else {
465                                            $in_virtual->{ $c[3] }++;
466                                    }
467                                    if ( $c[3] =~ m{\d$} ) {
468                                            $c[3] = qq|<input type=submit name=delif value=$c[3] style="color:red" title="remove $c[3] from bridge">|;
469                                    }
470                                    @c
471                            } split(/\n/, `brctl show`)
472                    ;
473    
474                    my @add_ifs = grep { ! $in_virtual->{$_} && $_ ne 'virtual' } ip::devices_up;
475    
476                    push @table, ( '', '', '', html::select( 'addif', @add_ifs ) . qq|<input type=submit value=add></form>| );
477    
478                    print $client ok
479                            , qq|<form>|
480                            , html::table( -4, @table )
481                            , qq|</form>|
482                            ;
483    
484    
485            } elsif ( $path =~ m{^/ip/?(\w+)?} ) {
486                    print $client ok
487                            , join("\n", map { qq|<a href=/ip/$_>$_</a>| } ( qw/link addr route neigh ntable tunnel maddr mroute xfrm/ ))
488                            , ip::html( $1 )
489                            ;
490            } elsif ( $path =~ m{^/nmap} ) {
491                    if ( my $scan = $param->{scan} ) {
492                            nmap::scan( $scan );
493                            print $client redirect("$url/client#$scan");
494                    } else {
495                            print $client ok, qq|
496                                    <form method=get>
497                                    <input type=text name=scan>
498                                    <input type=submit value=scan>
499                                    </form>
500                            |;
501                    }
502            } elsif ( $path =~ m{^/wol/(\S+)} ) {
503                    print $client redirect( "$url/client/$1" ), wol::power_on($1);
504            } elsif ( $path =~ m!^/amt/(\w+)/$RE{net}{IPv4}{-keep}! ) {
505                    my ( $run, $ip ) = ( $1, $2 );
506                    print $client redirect( "$url/client/$ip" ), amt::RemoteControl( $ip, $run );
507            } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {
508                    eval 'our $' . $1 . ' = ' . $2;
509                    warn $@ if $@;
510                    print $client redirect($url), qq|<big>$1 = $2</big><br>Location: <a href="$url">$url</a>|;
511                    server::debug( $debug ) if $1 eq 'debug';
512            } elsif ( $path =~ m{^/start_stop/(\S+)} ) {
513                    print $client redirect, daemons::start_stop($1,$param);
514            } elsif ( $path =~ m{^/action/([^/]+)/(.+)} ) {
515                    my ( $package, $method ) = ( $1, $2 );
516                    $ENV{nr} = $1 if $package =~ s{\.(\d+)$}{};
517                    $package->$method();
518                    print $client redirect;
519            } elsif ( $path =~ m{^/kill/static/(\d+)} ) {
520                    print $client redirect;
521                    kill 1, $1 || kill 9, $2 && warn "killed $1";
522            } else {
523                    print $client "HTTP/1.0 404 $path\r\nConnection: close\r\nContent-type: text/html\r\n\r\n<big>404 $path</big>";
524                    warn "404 $path";
525            }
526    
527    }
528    
529  sub start {  sub start {
530    
531            warn 'network ', network::setup();
532    
533            daemons::start_stop 'browser', { url => $url };
534            daemons::start_stop $_ foreach ( qw/dhcpd tftpd dnsd syslogd/ );
535    #       daemons::start_stop 'kvm' unless $ENV{DEV}; # skip kvm statup when running on real device
536    
537          my $server = IO::Socket::INET->new(          my $server = IO::Socket::INET->new(
538                          Proto     => 'tcp',                          Proto     => 'tcp',
539    #                       LocalAddr => $server::ip,
540                          LocalPort => $httpd::port,                          LocalPort => $httpd::port,
541                          Listen    => SOMAXCONN,                          Listen    => SOMAXCONN,
542                          Reuse     => 1                          Reuse     => 1
543          );          ) || die "can't start server on $url: $!";
                                                                             
         die "can't setup server" unless $server;  
544    
545          print "url $url\n";          print "url $url\n";
546    
547          system "/mnt/llin/rest/cvs/uzbl/uzbl -u $url &";          syslogd::install_local;
548            client::rebuild_mac_links;
549    
550          while (my $client = $server->accept()) {          while (1) {
551                  $client->autoflush(1);                  my $client = $server->accept() || next; # ALARM trickle us
552                  my $request = <$client>;                  my $request = <$client>;
553    
554                  warn "request $request\n" if $debug;                  my $headers;
555    
556                    while ( my $header = <$client> ) {
557                            chomp $header;
558                            last if $header =~ m{^\s*$};
559                            my ( $n, $v ) = split(/:\s*/, $header);
560                            $headers->{ lc $n } = $v;
561                    }
562    
563                    if ( my $host = $headers->{host} ) {
564                            $url = 'http://' . $host;
565                            $url .= ":$port" unless $url =~ m{:\d+$};
566                    }
567    
568                    warn "## $url ## $request", dump( $headers ) if $debug;
569    
570                  if ($request =~ m{^GET (/.*) HTTP/1.[01]}) {                  if ($request =~ m{^GET (/.*) HTTP/1.[01]}) {
571                          my $method = $1;                          my $path = $1;
572                            $path =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/ge;
573                          my $param;                          my $param;
574                          if ( $method =~ s{\?(.+)}{} ) {                          if ( $path =~ s{\?(.+)}{} ) {
575                                  foreach my $p ( split(/[&;]/, $1) ) {                                  foreach my $p ( split(/[&;]/, $1) ) {
576                                          my ($n,$v) = split(/=/, $p, 2);                                          my ($n,$v) = split(/=/, $p, 2);
577                                          $param->{$n} = $v;                                          $param->{$n} = $v;
578                                  }                                  }
579                                  warn "param: ",dump( $param ) if $debug;                                  warn "param: ",dump( $param ) if $debug;
580                          }                          }
581                          warn "method $method";                          get_request $client, $path, $param;
   
                         if ( my $path = static( $client,$1 ) ) {  
                                 warn "static $path" if $debug;  
                         } elsif ( $method eq '/' ) {  
                                 print $client qq{$ok  
                                         pid <tt>$$</tt>  
                                         debug $debug  
                                 };  
                                   
                         } elsif ( $method =~ m{/boot} ) {  
                                 print $client qq{$ok  
 #!gpxe  
 imgfree  
 login  
 chain http://$server::ip:$httpd::port/  
   
                                         };  
                         } else {  
                                 print $client "HTTP/1.0 404 Unkown method\r\nConnection: close\r\nContent-type: text/plain\r\n\r\n404 $request";  
                                 warn "404 $request";  
                         }  
582                  } else {                  } else {
583                          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";
584                          warn "500 $request";                          warn "500 $request";
585                  }                  }
586    
587                  print $client qq{                  print $client menu() . html_end() if $client->connected;
                 <a href="">reload</a>    
                 };  
588    
                 close($client);  
589          }          }
590    
591          die "server died";          die "server died";
592  }  }
593    
594    warn "loaded";
595    
596  1;  1;

Legend:
Removed from v.42  
changed lines
  Added in v.493

  ViewVC Help
Powered by ViewVC 1.1.26