/[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 194 by dpavlin, Mon Aug 10 17:30:01 2009 UTC revision 330 by dpavlin, Fri Aug 28 22:29:08 2009 UTC
# Line 4  use warnings; Line 4  use warnings;
4  use strict;  use strict;
5  use autodie;  use autodie;
6    
 use server;  
7  use File::Slurp;  use File::Slurp;
8  use Net::Ping;  use Data::Dump qw/dump/;
9    
10    use server;
11    use format;
12    use ip;
13    use ping;
14    
15    our $debug = $server::debug;
16    
17    sub mkbasedir {
18            my $path = shift;
19            $path =~ s{(^.*)/[^/]+$}{$1};
20            mkdir $path unless -d $path;
21            return $path;
22    }
23    
24    sub mac_path { $server::conf . '/mac/' . $_[0] }
25    sub  ip_path { $server::conf . '/ip/'  . join('/', @_) }
26    sub conf_value {
27            my $path = shift;
28            my $value;
29            if ( -l $path ) {
30                    $value = readlink $path;
31                    $value =~ s{.*/([^/]+)$}{$1};
32            } elsif ( -f $path ) {
33                    $value = read_file $path;
34            } else {
35                    warn "W: $path not file or symlink\n";
36            }
37            return $value;
38    }
39    
40  sub conf {  sub conf {
41          my $ip  = shift;          my $ip  = shift;
# Line 18  sub conf { Line 47  sub conf {
47                  $default = $_[1]                  $default = $_[1]
48          }          }
49    
50          my $path ="$server::conf/ip/$ip";          my $path = ip_path $ip;
51          mkdir $path unless -d $path;          mkdir $path unless -d $path;
52          $path .= '/' . $name;          $path .= '/' . $name;
53    
54          if ( defined $value ) {          if ( defined $value ) {
55                    mkbasedir  $path;
56                  write_file $path, $value;                  write_file $path, $value;
57                  warn "update $path = $value";                  warn "update $path = $value";
58          } elsif ( ! -e $path && defined $default ) {          } elsif ( ! -e $path && defined $default ) {
59                    mkbasedir  $path;
60                  write_file $path, $default;                  write_file $path, $default;
61                  warn "default $path = $default";                  warn "default $path = $default";
62                  $value = $default;                  $value = $default;
63          } elsif ( -e $path ) {          } elsif ( -f $path ) {
64                  if ( -l $path ) {                  $value = read_file $path;
65                          $value = readlink $path;          } else {
66                          $value =~ s{.*/([^/]+)$}{$1};                  warn "# $name missing $path\n" if $debug;
                 } else {  
                         $value = read_file $path;  
                 }  
67          }          }
68          return $value;          return $value;
69  }  }
70    
71  sub mac {  sub all_conf {
72          my ( $ip, $op ) = @_;          my $ip = shift;
73          $op ||= 'html';          my $path = ip_path $ip || return;
74          my $mac = client::conf( $ip, 'mac' );          my $conf;
75          return '' unless $mac;          foreach my $file ( glob("$path/*") ) {
76          $mac =~ s{(..)}{$1:}g;                  my $name = $file;
77          $mac =~ s{:$}{};                  $name =~ s{^.+/([^/]+)$}{$1};
78          $mac = qq|<tt>$mac</tt>| if (caller(1))[3] =~ m{^httpd} && $op ne 'clean';                  $conf->{ $name } = read_file $file;
79          return uc($mac);          }
80            return $conf;
81  }  }
82    sub next_ip($) {
83  sub next_ip {          my $mac = shift;
84            $mac = format::mac($mac);
         my $p = Net::Ping->new;  
85    
86          my $prefix = $server::ip;          my $prefix = $server::ip;
87          $prefix =~ s{\.\d+$}{.};          $prefix =~ s{\.\d+$}{.};
88          my $addr = $server::ip_from || die;          my $addr = $server::ip_from || die;
89          my $ip = $prefix . $addr;          my $ip = $prefix . $addr;
90    
91          while ( -e "$server::conf/ip/$ip" || $p->ping( $ip, 0.7 ) ) {          while ( -e ip_path($ip) || ping::host($ip) ) {
92                  $ip = $prefix . $addr++;                  $ip = $prefix . $addr++;
93                  die "all addresses allocated!" if $addr == $server::ip_to;                  die "all addresses allocated!" if $addr == $server::ip_to;
94                  warn "skip $ip\n";                  warn "skip $ip\n";
95          }          }
96    
97          warn "next_ip $ip\n";          warn "next_ip $ip\n";
98    
99            save_ip_mac( $ip, $mac );
100    
101          return $ip;          return $ip;
102    }
103    
104    sub save_ip_mac {
105            my ($ip,$mac) = @_;
106            $mac = format::mac($mac);
107            return if $mac eq '00:00:00:00:00:00';
108    
109            mkdir ip_path($ip) unless -e ip_path($ip);
110    
111            my $mac_path = mac_path($mac);
112            unlink $mac_path if -l $mac_path;       # XXX audit?
113            symlink ip_path($ip), $mac_path;
114            write_file( ip_path($ip,'mac'), $mac );
115  }  }
116    
117  sub ip_from_mac {  sub ip_from_mac($) {
118          my $mac = shift;          my $mac = shift;
119            $mac = format::mac($mac);
120    
121          $mac = lc $mac;          my $mac_path = mac_path $mac;
         $mac =~ s{:}{}g;  
   
         my $mac_path = "$server::conf/mac/$mac";  
122          return unless -e $mac_path;          return unless -e $mac_path;
123    
124          my $ip;          my $ip;
# Line 85  sub ip_from_mac { Line 126  sub ip_from_mac {
126          if ( -f $mac_path ) {          if ( -f $mac_path ) {
127                  $ip = read_file $mac_path;                  $ip = read_file $mac_path;
128                  unlink $mac_path;                  unlink $mac_path;
129                  symlink "$server::conf/ip/$ip", $mac_path;                  symlink ip_path($ip), $mac_path;
130                  warn "I: upgrade to mac symlink $mac_path\n";                  warn "I: upgrade to mac symlink $mac_path\n";
131          } elsif ( -l $mac_path ) {          } elsif ( -l $mac_path ) {
132                  $ip = readlink $mac_path;                  $ip = conf_value $mac_path;
                 $ip =~ s{^.+/([^/]+)$}{$1};  
133          } else {          } else {
134                  die "$mac_path not file or symlink";                  die "$mac_path not file or symlink";
135          }          }
# Line 97  sub ip_from_mac { Line 137  sub ip_from_mac {
137          return $ip;          return $ip;
138  }  }
139    
140    sub mac_from_ip($) {
141            my $ip = shift;
142            conf_value ip_path($ip, 'mac');
143    }
144    
145    sub change_ip($$) {
146            my ($old, $new) = @_;
147            return if $old eq $new;
148            my $mac = mac_from_ip($old) || die "no mac for $old";
149            rename ip_path($old), ip_path($new);
150            unlink mac_path($mac);
151            symlink ip_path($new), mac_path($mac);
152            return $new;
153    }
154    
155    sub all_ips {
156            sort { ip::to_int($a) cmp ip::to_int($b) }
157            map {
158                    my $ip = $_;
159                    $ip =~ s{^.+/ip/}{};
160                    $ip;
161            } glob("$server::conf/ip/*")
162    }
163    
164    sub remove {
165            my $ip = shift;
166            unlink $_ foreach grep { -e $_ } ( glob "$server::conf/ip/$ip/*" );
167            if ( my $mac = mac_from_ip $ip ) {
168                    unlink "$server::conf/mac/$mac";
169            }
170            rmdir "$server::conf/ip/$ip";
171    }
172    
173    sub arp_mac_dev {
174            my $arp = {
175                    map {
176                            my @c = split(/\s+/,$_);
177                            if ( $#c == 5 ) {
178                                    client::save_ip_mac( $c[0], $c[3] );
179                                    ( uc $c[3] => $c[5] )
180                            } else {
181                            }
182                    } read_file('/proc/net/arp')
183            };
184    
185            warn "# arp ",dump( $arp );
186            return $arp;
187    }
188    
189  1;  1;

Legend:
Removed from v.194  
changed lines
  Added in v.330

  ViewVC Help
Powered by ViewVC 1.1.26