--- lib/PXElator/httpd.pm 2009/09/08 18:28:15 400 +++ lib/PXElator/httpd.pm 2009/09/11 11:22:40 421 @@ -39,12 +39,13 @@ sub menu { qq{
-home -server -brctl -ip -nmap -client +home +server +brctl +ip +nmap +client +couchdb
}} @@ -85,6 +86,8 @@ return if ! -f $full; + return if $full =~ m{\.ico$}; + if ( my $pid = fork ) { # parent close($client); @@ -215,9 +218,13 @@ } } + my $kvm = kvm::next_nr; + $kvm = qq|
create new kvm $kvm
|; + print $client ok , html::table( 2, @rows ) , $below_table + , $kvm , html::tabs( log::mac_changes ) , $debug_proc ; @@ -252,7 +259,7 @@ } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) { my $ip = $1; - $title = $ip; + $title = $ip if $ip; if ( $param->{action} eq 'remove' ) { client::remove( $param->{change_ip} ); @@ -349,8 +356,10 @@ . '"' if $ping; $style ||= ''; + my $ip_text = qq|$ip|; + $ip_text = qq|$ip| if ip::in_dhcp_range($ip); ( - qq|$ip| + qq|$ip_text| , format::mac( $mac => 'html' ) , $arp->{$mac} , delete $conf->{hostname} @@ -366,17 +375,42 @@ |; } + + } elsif ( $path =~ m{^/brctl} ) { - print $client ok, html::table( -4, + + system 'brctl addif virtual ' . $param->{addif} if $param->{addif}; + system 'brctl delif virtual ' . $param->{delif} if $param->{delif}; + + my $in_virtual; + + my @table = map { my @c = split(/\t+/,$_,4); if ( $#c == 1 ) { - ( '', '', '', $c[1] ) + $in_virtual->{ $c[1] }++; + @c = ( '', '', '', $c[1] ); } else { - @c + $in_virtual->{ $c[3] }++; + } + if ( $c[3] =~ m{\d$} ) { + $c[3] = qq||; } + @c } split(/\n/, `brctl show`) - ); + ; + + my @add_ifs = grep { ! $in_virtual->{$_} && $_ ne 'virtual' } ip::devices_up; + + push @table, ( '', '', '', html::select( 'addif', @add_ifs ) . qq|| ); + + print $client ok + , qq|
| + , html::table( -4, @table ) + , qq|
| + ; + + } elsif ( $path =~ m{^/ip/?(\w+)?} ) { print $client ok , join("\n", map { qq|$_| } ( qw/link addr route neigh ntable tunnel maddr mroute xfrm/ )) @@ -431,7 +465,7 @@ my $server = IO::Socket::INET->new( Proto => 'tcp', - LocalAddr => $server::ip, +# LocalAddr => $server::ip, LocalPort => $httpd::port, Listen => SOMAXCONN, Reuse => 1 @@ -440,12 +474,27 @@ print "url $url\n"; syslogd::install_local; + client::rebuild_mac_links; while (1) { my $client = $server->accept() || next; # ALARM trickle us my $request = <$client>; - warn "request $request\n" if $debug; + my $headers; + + while ( my $header = <$client> ) { + chomp $header; + last if $header =~ m{^\s*$}; + my ( $n, $v ) = split(/:\s*/, $header); + $headers->{ lc $n } = $v; + } + + if ( my $host = $headers->{host} ) { + $url = 'http://' . $host; + $url .= ":$port" unless $url =~ m{:\d+$}; + } + + warn "## $url ## $request", dump( $headers ) if $debug; if ($request =~ m{^GET (/.*) HTTP/1.[01]}) { my $path = $1;