/[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 219 by dpavlin, Sat Aug 15 13:44:13 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 Net::Ping;
9    use Carp qw/confess/;
10    
11    use server;
12    use format;
13    
14    sub mkbasedir {
15            my $path = shift;
16            $path =~ s{(^.*)/[^/]+$}{$1};
17            mkdir $path unless -d $path;
18            return $path;
19    }
20    
21    sub mac_path { $server::conf . '/mac/' . $_[0] }
22    sub  ip_path { $server::conf . '/ip/'  . join('/', @_) }
23    sub conf_value {
24            my $path = shift;
25            my $value;
26            if ( -l $path ) {
27                    $value = readlink $path;
28                    $value =~ s{.*/([^/]+)$}{$1};
29            } elsif ( -f $path ) {
30                    $value = read_file $path;
31            } else {
32                    confess "$path not file or symlink";
33            }
34            return $value;
35    }
36    
37  sub conf {  sub conf {
38          my $ip  = shift;          my $ip  = shift;
# Line 18  sub conf { Line 44  sub conf {
44                  $default = $_[1]                  $default = $_[1]
45          }          }
46    
47          my $path ="$server::conf/ip/$ip";          my $path = ip_path $ip;
48          mkdir $path unless -d $path;          mkdir $path unless -d $path;
49          $path .= '/' . $name;          $path .= '/' . $name;
50    
51          if ( defined $value ) {          if ( defined $value ) {
52                    mkbasedir  $path;
53                  write_file $path, $value;                  write_file $path, $value;
54                  warn "update $path = $value";                  warn "update $path = $value";
55          } elsif ( ! -e $path && defined $default ) {          } elsif ( ! -e $path && defined $default ) {
56                    mkbasedir  $path;
57                  write_file $path, $default;                  write_file $path, $default;
58                  warn "default $path = $default";                  warn "default $path = $default";
59                  $value = $default;                  $value = $default;
60          } elsif ( -e $path ) {          } elsif ( -f $path ) {
61                  if ( -l $path ) {                  $value = read_file $path;
62                          $value = readlink $path;          } else {
63                          $value =~ s{.*/([^/]+)$}{$1};                  confess "conf $name";
                 } else {  
                         $value = read_file $path;  
                 }  
64          }          }
65          return $value;          return $value;
66  }  }
67    
68  sub mac {  sub next_ip($) {
69          my ( $ip, $op ) = @_;          my $mac = shift;
         $op ||= 'html';  
         my $mac = client::conf( $ip, 'mac' );  
         return '' unless $mac;  
         $mac =~ s{(..)}{$1:}g;  
         $mac =~ s{:$}{};  
         $mac = qq|<tt>$mac</tt>| if (caller(1))[3] =~ m{^httpd} && $op ne 'clean';  
         return uc($mac);  
 }  
   
 sub next_ip {  
70    
71          my $p = Net::Ping->new;          my $p = Net::Ping->new;
72    
# Line 60  sub next_ip { Line 75  sub next_ip {
75          my $addr = $server::ip_from || die;          my $addr = $server::ip_from || die;
76          my $ip = $prefix . $addr;          my $ip = $prefix . $addr;
77    
78          while ( -e "$server::conf/ip/$ip" || $p->ping( $ip, 0.7 ) ) {          while ( -e ip_path($ip) || $p->ping( $ip, 0.7 ) ) {
79                  $ip = $prefix . $addr++;                  $ip = $prefix . $addr++;
80                  die "all addresses allocated!" if $addr == $server::ip_to;                  die "all addresses allocated!" if $addr == $server::ip_to;
81                  warn "skip $ip\n";                  warn "skip $ip\n";
82          }          }
83    
84          warn "next_ip $ip\n";          warn "next_ip $ip\n";
85    
86            mkdir ip_path($ip);
87    
88            my $mac_path = mac_path($mac);
89            unlink $mac_path if -e $mac_path;       # XXX audit?
90            symlink ip_path($ip), $mac_path;
91            write_file ip_path($ip,'mac'), $mac;
92    
93          return $ip;          return $ip;
94    
95  }  }
96    
97  sub ip_from_mac {  sub ip_from_mac($) {
98          my $mac = shift;          my $mac = shift;
99    
100          $mac = lc $mac;          $mac = lc $mac;
101          $mac =~ s{:}{}g;          $mac =~ s{:}{}g;
102    
103          my $mac_path = "$server::conf/mac/$mac";          my $mac_path = mac_path $mac;
104          return unless -e $mac_path;          return unless -e $mac_path;
105    
106          my $ip;          my $ip;
# Line 85  sub ip_from_mac { Line 108  sub ip_from_mac {
108          if ( -f $mac_path ) {          if ( -f $mac_path ) {
109                  $ip = read_file $mac_path;                  $ip = read_file $mac_path;
110                  unlink $mac_path;                  unlink $mac_path;
111                  symlink "$server::conf/ip/$ip", $mac_path;                  symlink ip_path($ip), $mac_path;
112                  warn "I: upgrade to mac symlink $mac_path\n";                  warn "I: upgrade to mac symlink $mac_path\n";
113          } elsif ( -l $mac_path ) {          } elsif ( -l $mac_path ) {
114                  $ip = readlink $mac_path;                  $ip = conf_value $mac_path;
                 $ip =~ s{^.+/([^/]+)$}{$1};  
115          } else {          } else {
116                  die "$mac_path not file or symlink";                  die "$mac_path not file or symlink";
117          }          }
# Line 97  sub ip_from_mac { Line 119  sub ip_from_mac {
119          return $ip;          return $ip;
120  }  }
121    
122    sub mac_from_ip($) {
123            my $ip = shift;
124            conf_value ip_path($ip, 'mac');
125    }
126    
127    sub change_ip($$) {
128            my ($old, $new) = @_;
129            my $mac = mac_from_ip($old);
130            rename ip_path($old), ip_path($new);
131            unlink mac_path($mac);
132            symlink ip_path($new), mac_path($mac);
133    }
134    
135  1;  1;

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

  ViewVC Help
Powered by ViewVC 1.1.26