/[pxelator]/lib/PXElator/client.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/client.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 246 by dpavlin, Mon Aug 17 15:31:53 2009 UTC revision 391 by dpavlin, Mon Sep 7 21:53:45 2009 UTC
# Line 5  use strict; Line 5  use strict;
5  use autodie;  use autodie;
6    
7  use File::Slurp;  use File::Slurp;
8  use Net::Ping;  use Data::Dump qw/dump/;
9    
10  use server;  use server;
11  use format;  use format;
12    use ip;
13    use ping;
14    
15  our $debug = $server::debug;  our $debug = $server::debug;
16    
# Line 66  sub conf { Line 68  sub conf {
68          return $value;          return $value;
69  }  }
70    
71    sub all_conf {
72            my $ip = shift;
73            my $path = ip_path $ip || return;
74            my $conf;
75            foreach my $file ( glob("$path/*") ) {
76                    my $name = $file;
77                    $name =~ s{^.+/([^/]+)$}{$1};
78                    $conf->{ $name } = read_file $file;
79            }
80            return $conf;
81    }
82  sub next_ip($) {  sub next_ip($) {
83          my $mac = shift;          my $mac = shift;
84            $mac = format::mac($mac);
85    
86          my $p = Net::Ping->new;          if ( my $clients_left = server::shared( 'new_clients' ) ) {
87                    server::shared( 'new_clients', $clients_left - 1 );
88            } else {
89                    warn "W: no new clients accepted";
90                    return '0.0.0.0';
91            }
92    
93          my $prefix = $server::ip;          my $prefix = $server::ip;
94          $prefix =~ s{\.\d+$}{.};          $prefix =~ s{\.\d+$}{.};
95          my $addr = $server::ip_from || die;          my $addr = $server::ip_from || die;
96          my $ip = $prefix . $addr;          my $ip = $prefix . $addr;
97    
98          while ( -e ip_path($ip) || $p->ping( $ip, 0.7 ) ) {          while ( -e ip_path($ip) || ping::host($ip) ) {
99                  $ip = $prefix . $addr++;                  $ip = $prefix . $addr++;
100                  die "all addresses allocated!" if $addr == $server::ip_to;                  die "all addresses allocated!" if $addr == $server::ip_to;
101                  warn "skip $ip\n";                  warn "skip $ip\n";
# Line 91  sub next_ip($) { Line 110  sub next_ip($) {
110    
111  sub save_ip_mac {  sub save_ip_mac {
112          my ($ip,$mac) = @_;          my ($ip,$mac) = @_;
113            $mac = format::mac($mac);
114            return if $mac eq '00:00:00:00:00:00';
115    
116          mkdir ip_path($ip) unless -e $ip;          mkdir ip_path($ip) unless -e ip_path($ip);
117    
118          my $mac_path = mac_path($mac);          my $mac_path = mac_path($mac);
119          unlink $mac_path if -e $mac_path;       # XXX audit?          unlink $mac_path if -l $mac_path;       # XXX audit?
120          symlink ip_path($ip), $mac_path;          symlink ip_path($ip), $mac_path;
121          write_file ip_path($ip,'mac'), $mac;          write_file( ip_path($ip,'mac'), $mac );
122  }  }
123    
124  sub ip_from_mac($) {  sub ip_from_mac($) {
125          my $mac = shift;          my $mac = shift;
126            $mac = format::mac($mac);
         $mac = lc $mac;  
         $mac =~ s{:}{}g;  
127    
128          my $mac_path = mac_path $mac;          my $mac_path = mac_path $mac;
129          return unless -e $mac_path;          return unless -e $mac_path;
# Line 132  sub mac_from_ip($) { Line 151  sub mac_from_ip($) {
151    
152  sub change_ip($$) {  sub change_ip($$) {
153          my ($old, $new) = @_;          my ($old, $new) = @_;
154          my $mac = mac_from_ip($old);          return if $old eq $new;
155            my $mac = mac_from_ip($old) || die "no mac for $old";
156          rename ip_path($old), ip_path($new);          rename ip_path($old), ip_path($new);
157          unlink mac_path($mac);          unlink mac_path($mac);
158          symlink ip_path($new), mac_path($mac);          symlink ip_path($new), mac_path($mac);
159            return $new;
160    }
161    
162    sub all_ips {
163            sort { ip::to_int($a) cmp ip::to_int($b) }
164            map {
165                    my $ip = $_;
166                    $ip =~ s{^.+/ip/}{};
167                    $ip;
168            } glob("$server::conf/ip/*")
169    }
170    
171    sub remove {
172            my $ip = shift;
173            unlink $_ foreach grep { -e $_ } ( glob "$server::conf/ip/$ip/*" );
174            if ( my $mac = mac_from_ip $ip ) {
175                    unlink "$server::conf/mac/$mac";
176            }
177            rmdir "$server::conf/ip/$ip";
178    }
179    
180    sub arp_mac_dev {
181            my $arp = {
182                    map {
183                            my @c = split(/\s+/,$_);
184                            if ( $#c == 5 ) {
185                                    client::save_ip_mac( $c[0], $c[3] );
186                                    ( uc $c[3] => $c[5] )
187                            } else {
188                            }
189                    } read_file('/proc/net/arp')
190            };
191    
192            warn "# arp ",dump( $arp );
193            return $arp;
194  }  }
195    
196  1;  1;

Legend:
Removed from v.246  
changed lines
  Added in v.391

  ViewVC Help
Powered by ViewVC 1.1.26