/[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 403 by dpavlin, Tue Sep 8 20:38:26 2009 UTC revision 540 by dpavlin, Sat Oct 9 12:25:41 2010 UTC
# Line 18  use File::Slurp; Line 18  use File::Slurp;
18  #use JSON;  #use JSON;
19  use IO::Socket::INET;  use IO::Socket::INET;
20  use Regexp::Common qw/net/;  use Regexp::Common qw/net/;
21    use POSIX qw(strftime);
22    
23  our $title;  our $title;
24    
# Line 36  qq{ Line 37  qq{
37  </html>  </html>
38  }}  }}
39    
 sub menu {  
 qq{  
 <div style="font-size: 80%; color: #888">  
 <a href=/>home</a>  
 <a href=/server>server</a>  
 <a href=/brctl>brctl</a>  
 <a href=/ip>ip</a>  
 <a href=/nmap>nmap</a>  
 <a href=/client>client</a>  
 </div>  
   
 }}  
   
40  our $port = 7777;  our $port = 7777;
41    
42  use server;  use server;
# Line 63  use client; Line 51  use client;
51  use log;  use log;
52  use x11;  use x11;
53  use amt;  use amt;
 use boolean;  
54  use daemons;  use daemons;
55    
56  use kvm;  use kvm;
# Line 76  use nmap; Line 63  use nmap;
63  use ping;  use ping;
64  use wol;  use wol;
65    
66  use CouchDB;  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) = @_;
# Line 109  sub static { Line 118  sub static {
118          my $buff;          my $buff;
119          my $pos = 0;          my $pos = 0;
120    
121          CouchDB::audit( 'static', { pid => $$, path => $path, type => $type, size => $size, block => $block, peerhost => $client->peerhost });          store::audit( 'static', { pid => $$, path => $path, type => $type, size => $size, block => $block, peerhost => $client->peerhost });
122    
123          progress_bar::start;          progress_bar::start;
124    
# Line 137  sub redirect { Line 146  sub redirect {
146          qq|HTTP/1.1 302 Found\r\nContent-type: text/html\r\nLocation: $to\r\n\r\n|          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 {  sub get_request {
155          my ( $client, $path, $param ) = @_;          my ( $client, $path, $param ) = @_;
156    
157          server->refresh;          server->refresh;
158    
159          CouchDB::audit( 'request', { path => $path, param => $param, peerhost => $client->peerhost } );          store::audit( 'request', { path => $path, param => $param, peerhost => $client->peerhost } );
160    
161          $title = $path;          $title = $path;
162    
# Line 217  warn "XXX pids = ", dump( $daemons::pids Line 231  warn "XXX pids = ", dump( $daemons::pids
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                  print $client ok
238                          , html::table( 2, @rows )                          , html::table( 2, @rows )
239                          , $below_table                          , $below_table
240                            , $kvm
241                          , html::tabs( log::mac_changes )                          , html::tabs( log::mac_changes )
242                          , $debug_proc                          , $debug_proc
243                          ;                          ;
# Line 229  warn "XXX pids = ", dump( $daemons::pids Line 247  warn "XXX pids = ", dump( $daemons::pids
247                          eval '$server::' . $name . '= $param->{$name}';                          eval '$server::' . $name . '= $param->{$name}';
248                  }                  }
249                  my @table = (                  my @table = (
250                            'debug' => qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,                            '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">|                          , 'new_clients' => qq|<input type=text name=new_clients size=3 value="$server::new_clients">|
252                  );                  );
253    
254                  foreach my $editable ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain' ) {                  foreach my $editable ( 'ip', 'bcast', 'netmask', 'ip_from', 'ip_to', 'domain' ) {
255                          my $v = eval '$server::' . $editable;                          my $v = eval '$server::' . $editable;
256                          push @table, ( $editable, qq|<input type=text name=$editable value="$v">| );                          push @table, ( $editable, qq|<input type=text name=$editable value="$v">| );
257                  }                  }
# Line 252  warn "XXX pids = ", dump( $daemons::pids Line 270  warn "XXX pids = ", dump( $daemons::pids
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                    my $from_t = $param->{from_t};
297    
298                    my $q;
299                    $q->{'package.time'} = { '$lt' => $from_t * 1 } if $from_t;
300    #               $q->{'package.name'} = { '$ne' => 'syslogd' };
301                    $q->{'package.name'} = { '$ne' => 'dhcpd' };
302    #               $q->{'package.name'} = { '$ne' => [ 'dhcpd', 'dnsd' ] };
303                    $q->{'tag'} = { '$ne' => 'CRON' };
304                    store::query( $q, sub {
305                            my $o = shift;
306                            my $p = delete( $o->{package} );
307                            delete( $o->{_id} );
308    
309                            if ( ! @cols ) {
310                                    #@cols = keys %$p;
311                                    @cols = qw( time name );
312                                    print $client qq|<tr><th>|
313                                            , join(qq|</th><th>|, @cols)
314                                            , qq|</th><th></th></tr>|
315                                    ;
316                            }
317    
318                            # XXX sigh, dump dies if we don't do this
319    #                       delete $o->{$_} foreach ( grep { ! defined $o->{$_} } keys %$o );
320    
321                            print $client qq|<tr$s1>|
322                                    , strftime( qq|<td title="%Y-%m-%d">%H:%M:%S</td>|, localtime($p->{time}) )
323                                    , map { qq|<td>$_<td>| } ( $p->{name} , html::pre_dump($o) )
324                                    , qq|</tr>\n|
325                            ;
326                            ( $s1, $s2 ) = ( $s2, $s1 );
327                            $from_t = $p->{time};
328                    });
329                    print $client qq|</table>|,
330                            qq|<a href="/store/latest?from_t=$from_t">more</a>|
331                    ;
332    
333          } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {          } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {
334                  my $ip = $1;                  my $ip = $1;
335                  $title = $ip;                  $title = $ip if $ip;
336    
337                  if ( $param->{action} eq 'remove' ) {                  if ( $param->{action} eq 'remove' ) {
338                          client::remove( $param->{change_ip} );                          client::remove( $param->{change_ip} );
# Line 284  warn "XXX pids = ", dump( $daemons::pids Line 362  warn "XXX pids = ", dump( $daemons::pids
362    
363                  if ( $ip && $ip ne $server::ip ) {                  if ( $ip && $ip ne $server::ip ) {
364    
                         my @editable = ( qw/hostname config homepage/ );  
   
                         client::conf( $ip, $_ => $param->{$_} ) foreach @editable;  
   
365                          my $conf = client::all_conf( $ip );                          my $conf = client::all_conf( $ip );
366                          my $config = delete $conf->{config};                          my $config = delete $conf->{config};
367    
368                            my @editable = ( qw/hostname config homepage/, grep { m{^\Q$config\E} } keys %$conf );
369                            client::conf( $ip, $_ => $param->{$_} ) foreach @editable;
370    
371                          my $nmap = qq|<a href=/nmap?scan=$ip>nmap</a>|;                          my $nmap = qq|<a href=/nmap?scan=$ip>nmap</a>|;
372                          my @table = (                          my @table = (
373                                  'ping' => ping::host($ip)                                  'ping' => ping::host($ip)
# Line 326  warn "XXX pids = ", dump( $daemons::pids Line 403  warn "XXX pids = ", dump( $daemons::pids
403    
404                  } else {                  } else {
405    
406                            print $client ok qq|<h2>Clients on $server::ip</h2>|;
407    
408                          my @ping;                          my @ping;
409                          if ( my $host = $param->{ping_target} ) {                          if ( my $host = $param->{ping_target} ) {
410                                  @ping = ( $host );                                  @ping = ( $host );
# Line 336  warn "XXX pids = ", dump( $daemons::pids Line 415  warn "XXX pids = ", dump( $daemons::pids
415                          my $ping = ping::fping( @ping ) if @ping;                          my $ping = ping::fping( @ping ) if @ping;
416                          my $arp = client::arp_mac_dev;                          my $arp = client::arp_mac_dev;
417    
418                          print $client ok                          my @clients;
419                                  , qq|<h2>Clients on $server::ip</h2>|  
420                                  , html::table( -5,                          foreach my $ip ( client::all_ips ) {
421                                          'ip', 'mac', 'dev', 'hostname', 'conf',                                  
422                                          map {                                  my $conf = client::all_conf( $ip );
423                                                  my $ip = $_;                                  my $mac = delete $conf->{mac} || '';
424                                                  my $conf = client::all_conf( $ip );                                  my $dev = $arp->{$mac};
425                                                  my $mac = delete $conf->{mac} || '';  
426                                                  my $style;                                  my $in_dhcp_range = ip::in_dhcp_range($ip);
427                                                  $style  
428                                                          = 'style="color:'                                  next unless $dev || $param->{all} || $in_dhcp_range;
429                                                          . ( $ping->{$ip} ? 'green' : 'red' )  
430                                                          . '"'                                  my $style
431                                                          if $ping;                                          = 'style="color:'
432                                                  $style ||= '';                                          . ( $ping->{$ip} ? 'green' : 'red' )
433                                                  (                                          . '"'
434                                                          qq|<a $style name=$ip target=$ip href=/client/$ip>$ip</a>|                                          if $ping;
435                                                          , format::mac( $mac => 'html' )  
436                                                          , $arp->{$mac}                                  $style ||= '';
437                                                          , delete $conf->{hostname}                                  my $ip_text = qq|<tt>$ip</tt>|;
438                                                          , html::conf( $ip, $conf, 'inline' )                                  $ip_text = qq|<tt><b>$ip</b></tt>| if $in_dhcp_range;
439                                                  )  
440                                          } client::all_ips                                  $dev = qq|<tt>$dev</tt>| if $dev;
441                                  )  
442                                    push @clients
443                                            , qq|<a $style name=$ip target=client href=/client/$ip>$ip_text</a>|
444                                            , format::mac( $mac => 'html' )
445                                            , $dev
446                                            , delete $conf->{hostname}
447                                            , html::conf( $ip, $conf, 'inline' )
448                                  ;                                  ;
449                            }
450    
451                            my $all = $param->{all} ? 0 : 1;
452    
453                            print $client html::table( -5, 'ip', 'mac', qq|<a href="?all=$all">dev</a>|, 'hostname', 'conf', @clients );
454                          print $client qq|                          print $client qq|
455                                  <form method=get>                                  <form method=get>
456                                  <input type=text   name=ping_target   size=15>                                  <input type=text   name=ping_target   size=15>
# Line 458  sub start { Line 548  sub start {
548    
549          my $server = IO::Socket::INET->new(          my $server = IO::Socket::INET->new(
550                          Proto     => 'tcp',                          Proto     => 'tcp',
551                          LocalAddr => $server::ip,  #                       LocalAddr => $server::ip,
552                          LocalPort => $httpd::port,                          LocalPort => $httpd::port,
553                          Listen    => SOMAXCONN,                          Listen    => SOMAXCONN,
554                          Reuse     => 1                          Reuse     => 1
# Line 473  sub start { Line 563  sub start {
563                  my $client = $server->accept() || next; # ALARM trickle us                  my $client = $server->accept() || next; # ALARM trickle us
564                  my $request = <$client>;                  my $request = <$client>;
565    
566                  warn "request $request\n" if $debug;                  my $headers;
567    
568                    while ( my $header = <$client> ) {
569                            chomp $header;
570                            last if $header =~ m{^\s*$};
571                            my ( $n, $v ) = split(/:\s*/, $header);
572                            $headers->{ lc $n } = $v;
573                    }
574    
575                    if ( my $host = $headers->{host} ) {
576                            $url = 'http://' . $host;
577                            $url .= ":$port" unless $url =~ m{:\d+$};
578                    }
579    
580                    warn "## $url ## $request", dump( $headers ) if $debug;
581    
582                  if ($request =~ m{^GET (/.*) HTTP/1.[01]}) {                  if ($request =~ m{^GET (/.*) HTTP/1.[01]}) {
583                          my $path = $1;                          my $path = $1;

Legend:
Removed from v.403  
changed lines
  Added in v.540

  ViewVC Help
Powered by ViewVC 1.1.26