/[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 28 by dpavlin, Tue Apr 24 10:01:22 2007 UTC revision 39 by dpavlin, Mon May 7 19:29:05 2007 UTC
# Line 11  my $PORT  = '3235'; Line 11  my $PORT  = '3235';
11  my $debug = 0;  my $debug = 0;
12  my $quiet = 1;  my $quiet = 1;
13  my $verbose = 0;  my $verbose = 0;
14    my $credentials = 0;
15    
16  my $resend_search_delay = 3;  my $resend_search_delay = 3;
17  my $tftp_path = '/srv/tftp/';  my $tftp_path = '/srv/tftp/';
18    
19    my $flashed_cmd = 'system config led=flash';
20    
21  GetOptions(  GetOptions(
22          "port=i"        => \$PORT,          "port=i"        => \$PORT,
23          "group=s"       => \$GROUP,          "group=s"       => \$GROUP,
# Line 23  GetOptions( Line 26  GetOptions(
26          "verbose!"      => \$verbose,          "verbose!"      => \$verbose,
27          "search=i"      => \$resend_search_delay,          "search=i"      => \$resend_search_delay,
28          "tftp=s"        => \$tftp_path,          "tftp=s"        => \$tftp_path,
29            "credentials"   => \$credentials,
30            "exec=s"        => \$flashed_cmd,
31  );  );
32    
33  $quiet = 0 if $verbose;  $quiet = 0 if $verbose;
34    $credentials = 1 if $debug;
35    
36  # tab-delimited list of user id/passwd to try on ants  # tab-delimited list of user id/passwd to try on ants
37  my @try_accounts = ( "Administrator\t" );  my @try_accounts = ( "Administrator\t" );
# Line 38  if (-e $passwd_path) { Line 44  if (-e $passwd_path) {
44          while(<$fh>) {          while(<$fh>) {
45                  chomp;                  chomp;
46                  next if /^#/ || /^$/ || /^\s+$/;                  next if /^#/ || /^$/ || /^\s+$/;
47                  if (/^\S+\t\S+$/) {                  if (/^\S+\s+\S+$/) {
48                          push @try_accounts, $_;                          push @try_accounts, $_;
49                  } else {                  } else {
50                          warn "invalid $passwd_path entry: $_\n";                          warn "invalid $passwd_path entry: $_\n";
51                  }                  }
52          }          }
53          print "found ", $#try_accounts + 1, " accounts to try on password protected ants\n";          print "found ", $#try_accounts + 1, " accounts to try on password protected ants",
54                    $credentials ? " and display credentials" : "", "\n";
55  }  }
56    
57  warn "search for ants every ${resend_search_delay}s\ntftp server path: $tftp_path\n";  warn "search for ants every ${resend_search_delay}s\ntftp server path: $tftp_path\nflashed to current version: $flashed_cmd\n";
58    
59  sub fw {  sub fw {
60          my ($board, $offset,$len) = @_;          my ($board, $offset,$len) = @_;
# Line 96  sub mdap_send { Line 103  sub mdap_send {
103    
104          $sock->mcast_send( $data, "${GROUP}:${PORT}" );          $sock->mcast_send( $data, "${GROUP}:${PORT}" );
105          if ($debug) {          if ($debug) {
106                  warn ">> ", dump( $data ), $/;                  warn ">> ${GROUP}:${PORT} >> ", dump( $data ), $/;
107          } elsif( ! $quiet ) {          } elsif( ! $quiet ) {
108                  $data =~ s/\s+/ /gi;                  $data =~ s/\s+/ /gi;
109                  warn ">> ", substr($data,0,70), $/;                  warn ">> ", substr($data,0,70), $/;
# Line 156  sub once { Line 163  sub once {
163          print $m if ($once->{$m} == 1);          print $m if ($once->{$m} == 1);
164  }  }
165    
166    my $status = '';
167    
168    sub status {
169            my $m = join('', @_);
170            if ($m ne $status) {
171                    print $m;
172                    $status = $m;
173            }
174    }
175    
176  local $SIG{ALRM} = sub {  local $SIG{ALRM} = sub {
177          mdap_send("ANT-SEARCH MDAP/1.1\r\n");          mdap_send("ANT-SEARCH MDAP/1.1\r\n");
178          alarm( $resend_search_delay );          alarm( $resend_search_delay );
# Line 180  while (1) { Line 197  while (1) {
197    
198                  print "<< $type $proto/$mdap_ver << ", length($data), " bytes\n" unless $quiet;                  print "<< $type $proto/$mdap_ver << ", length($data), " bytes\n" unless $quiet;
199    
200                  warn dump($h),$/ if ($debug);                  warn dump( $data, $h ),$/ if ($debug);
201    
202                  # we are getting our own messages (since our source port                  # we are getting our own messages (since our source port
203                  # is same as destination)                  # is same as destination)
# Line 207  while (1) { Line 224  while (1) {
224                                  next;                                  next;
225                          } else {                          } else {
226                                  $ant_ok_password->{$ant}++;                                  $ant_ok_password->{$ant}++;
227                                    print "$ant credentials $user_id $user_pwd\n" if ( $credentials && $ant_ok_password->{$ant} == 1 ) || $debug;
228                          }                          }
229    
230                          my $board = $h->{'_BOARD_NAME'} || die "no _BOARD_NAME?";                          my $board = $h->{'_BOARD_NAME'} || die "no _BOARD_NAME?";
# Line 216  while (1) { Line 234  while (1) {
234                                  if ( $build ne $new_build ) {                                  if ( $build ne $new_build ) {
235                                          print "+ $ant version $build -> $new_build\n";                                          print "+ $ant version $build -> $new_build\n";
236                                          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");
237                                            $ant_flashing->{$ant}++;
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_ok_password->{$ant} ? ' password protected' :                                                  $ant_passwd->{$ant} ? ' password protected' :
242                                                  '',                                                  '',
243                                                  "\n";                                                  "\n";
244    
245                                          $ant_flashing->{$ant} = 0;                                          $ant_flashing->{$ant} = 0;
246                                            # green|red|orange|flash|off
247                                            mdap_send("EXEC-CLI MDAP/$mdap_ver\r\nCLI-CMD:$flashed_cmd\r\nSEQ-NR:1\r\nTO-ANT:$ant\r\nUSER-ID:$user_id\r\nUSER-PWD:$user_pwd\r\n");
248                                          my $waiting = 0;                                          my $waiting = 0;
249                                            my $count = 0;
250                                          map {                                          map {
251                                                  $waiting++ if ($ant_flashing->{$_});                                                  $waiting++ if ($ant_flashing->{$_});
252                                                    $count++;
253                                          } keys %$ant_flashing;                                          } keys %$ant_flashing;
254                                          print "**** ALL ANTS FLASHED ****\n" if ($ant_flashing && $waiting == 0);                                          if ($waiting == 0) {
255                                                    status "ALL $count ANTS FLASHED to $build\n";
256                                                    $ant_flashing = undef;
257                                            } else {
258                                                    status "$waiting of $count ants still flasing upto $build\n";
259                                            }
260                                  }                                  }
261                          } else {                          } else {
262                                  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\n";
263                          }                          }
264                  } elsif ( $type eq 'REPLY-EXEC-CLI' && $h->{'SEQ-NR'} == 1 ) {                  } elsif ( $type eq 'REPLY-EXEC-CLI' ) {
265                                  print "+ $ant bootp mode re-flash started\n";                          print "+ $type\n$data\n" if ($verbose);
266                            if ( $seq_nr == 1 ) {
267                                  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");
268                                  forget_ant( $ant );                                  forget_ant( $ant ) if ( $ant_flashing->{$ant} );
269                                  $ant_flashing->{$ant}++;                          }
270    
271                  } else {                  } else {
272                          print "!! reply ignored ", dump( $h ), $/;                          print "!! reply $type ignored ", dump( $h ), $/;
273                  }                  }
274    
275          } else {          } else {

Legend:
Removed from v.28  
changed lines
  Added in v.39

  ViewVC Help
Powered by ViewVC 1.1.26