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

Legend:
Removed from v.188  
changed lines
  Added in v.220

  ViewVC Help
Powered by ViewVC 1.1.26