/[mdap]/mdap-server.pl
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 /mdap-server.pl

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

revision 41 by dpavlin, Fri Nov 16 10:25:01 2007 UTC revision 67 by dpavlin, Sun Nov 18 01:29:04 2007 UTC
# Line 6  use IO::Socket::Multicast; Line 6  use IO::Socket::Multicast;
6  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
7  use Getopt::Long;  use Getopt::Long;
8    
9    use lib './lib';
10    use MDAP;
11    
12  my $GROUP = '224.0.0.103';  my $GROUP = '224.0.0.103';
13  my $PORT  = '3235';  my $PORT  = '3235';
14    
15  my $debug = 0;  #my $debug = 0; # from MDAP
16  my $quiet = 1;  my $quiet = 1;
17  my $verbose = 0;  my $verbose = 0;
18  my $credentials = 0;  my $credentials = 0;
19    
20    my $plugins = 1;
21    
22  my $resend_search_delay = 3;  my $resend_search_delay = 3;
23  my $tftp_path = '/srv/tftp/';  my $tftp_path = '/srv/tftp/';
24    
# Line 29  GetOptions( Line 34  GetOptions(
34          "tftp=s"        => \$tftp_path,          "tftp=s"        => \$tftp_path,
35          "credentials"   => \$credentials,          "credentials"   => \$credentials,
36          "exec=s"        => \$flashed_cmd,          "exec=s"        => \$flashed_cmd,
37            'plugins!'      => \$plugins,
38  );  );
39    
40  $quiet = 0 if $verbose;  $quiet = 0 if $verbose;
# Line 156  sub forget_ant { Line 162  sub forget_ant {
162          delete $ant_ok_password->{$ant};          delete $ant_ok_password->{$ant};
163  }  }
164    
 my $once;  
   
 sub once {  
         my $m = join('', @_);  
         $once->{$m}++;  
         print $m if ($once->{$m} == 1);  
 }  
   
165  my $status = '';  my $status = '';
166    
167  sub status {  sub status {
# Line 205  while (1) { Line 203  while (1) {
203                  next if ( $type =~ m#^(INFO|ANT-SEARCH|EXEC-CLI)# );                  next if ( $type =~ m#^(INFO|ANT-SEARCH|EXEC-CLI)# );
204    
205                  my $ant = $h->{'ANT-ID'} || die "no ANT-ID in ", dump( $h );                  my $ant = $h->{'ANT-ID'} || die "no ANT-ID in ", dump( $h );
206                  my $seq_nr = $h->{'SEQ-NR'};                  my $seq_nr = $1 if (defined $h->{'SEQ-NR'} && $h->{'SEQ-NR'} =~ m/^-*(\d)+/);
207                  #warn "SEQ-NR: $seq_nr ok: ",$ant_ok_password->{$ant},"\n" if ($seq_nr);                  #warn "SEQ-NR: $seq_nr ok: ",$ant_ok_password->{$ant},"\n" if ($seq_nr);
208    
209                  my ($user_id,$user_pwd) = ant_credentials( $ant );                  my ($user_id,$user_pwd) = ant_credentials( $ant );
# Line 236  while (1) { Line 234  while (1) {
234                                          print "+ $ant version $build -> $new_build\n";                                          print "+ $ant version $build -> $new_build\n";
235                                          mdap_send("EXEC-CLI MDAP/$mdap_ver\r\nCLI-CMD:software upgrade\r\nSEQ-NR:1\r\nTO-ANT:$ant\r\nUSER-ID:$user_id\r\nUSER-PWD:$user_pwd\r\n");                                          mdap_send("EXEC-CLI MDAP/$mdap_ver\r\nCLI-CMD:software upgrade\r\nSEQ-NR:1\r\nTO-ANT:$ant\r\nUSER-ID:$user_id\r\nUSER-PWD:$user_pwd\r\n");
236                                          $ant_flashing->{$ant}++;                                          $ant_flashing->{$ant}++;
237                                            next;
238                                  } else {                                  } else {
239                                          once "$ant OK version $build",                                          once "$ant OK version $build",
240                                                  $ant_unknown_password->{$ant} ? ' with unknown password' :                                                  $ant_unknown_password->{$ant} ? ' with unknown password' :
241                                                  $ant_passwd->{$ant} ? ' password protected' :                                                  $ant_passwd->{$ant} ? ' password protected' :
242                                                  '',                                                  '';
                                                 "\n";  
243    
244                                          $ant_flashing->{$ant} = 0;                                          $ant_flashing->{$ant} = 0;
245                                          # green|red|orange|flash|off                                          # green|red|orange|flash|off
# Line 259  while (1) { Line 257  while (1) {
257                                                  status "$waiting of $count ants still flasing upto $build\n";                                                  status "$waiting of $count ants still flasing upto $build\n";
258                                          }                                          }
259                                  }                                  }
260    
261                                    if ( $plugins ) {
262                                            foreach my $plugin ( MDAP->plugins ) {
263                                                    warn "## calling $plugin\n" if $debug;
264                                                    if ( my $command = $plugin->check( $h ) ) {
265    
266                                                            warn ">> $plugin $ant ",
267                                                                    $h->{'ANT-NAME'}, " ",
268                                                                    $h->{'_BUILD'}, " ",
269                                                                    "\t:$command\n";
270                    
271                                                            mdap_send("EXEC-CLI MDAP/$mdap_ver\r\nCLI-CMD:$command\r\nSEQ-NR:1\r\nTO-ANT:$ant\r\nUSER-ID:$user_id\r\nUSER-PWD:$user_pwd\r\n");
272                                                            last;
273                                                    }
274                                            }
275                                    }
276    
277                          } else {                          } else {
278                                  once "!! NO FIRMWARE for $board in $tftp_path for ant $ant, skipping update\n";                                  once "!! NO FIRMWARE for $board in $tftp_path for ant $ant, skipping update";
279                          }                          }
280    
281                  } elsif ( $type eq 'REPLY-EXEC-CLI' ) {                  } elsif ( $type eq 'REPLY-EXEC-CLI' ) {
282                          print "+ $type\n$data\n" if ($verbose);                          print "##<< $type\n$data\n" if $debug;
283                          if ( $seq_nr == 1 ) {                          if ( $seq_nr == 1 ) {
284                                  mdap_send("EXEC-CLI MDAP/$mdap_ver\r\nSEQ-NR:2\r\nTO-ANT:$ant\r\nUSER-ID:$user_id\r\nUSER-PWD:$user_pwd\r\n");                                  mdap_send("EXEC-CLI MDAP/$mdap_ver\r\nSEQ-NR:2\r\nTO-ANT:$ant\r\nUSER-ID:$user_id\r\nUSER-PWD:$user_pwd\r\n");
285                                  forget_ant( $ant ) if ( $ant_flashing->{$ant} );                                  forget_ant( $ant ) if ( $ant_flashing->{$ant} );
286                            } elsif ( $seq_nr < 0 ) {
287                                    warn "EXEC-CLI failed: $data\n";
288                          }                          }
289    
290                  } else {                  } else {

Legend:
Removed from v.41  
changed lines
  Added in v.67

  ViewVC Help
Powered by ViewVC 1.1.26