[BACK]Return to update_trango.pl CVS log [TXT][DIR] Up to [local] / trango / Net-Telnet-Trango / scripts

Diff for /trango/Net-Telnet-Trango/scripts/update_trango.pl between version 1.2 and 1.23

version 1.2, 2005/11/16 05:26:37 version 1.23, 2007/02/01 18:44:30
Line 1 
Line 1 
 #!/usr/bin/perl  #!/usr/bin/perl
 # $RedRiver: update_trango.pl,v 1.1 2005/11/16 03:28:42 andrew Exp $  # $RedRiver: update_trango.pl,v 1.22 2007/02/01 17:58:33 andrew Exp $
 ########################################################################  ########################################################################
 # update_trango.pl *** Updates trango foxes with a new firmware  # update_trango.pl *** Updates trango foxes with a new firmware
 #  #
 # 2005.11.15 #*#*# andrew fresh <andrew@mad-techies.org>  # 2005.11.15 #*#*# andrew fresh <andrew@mad-techies.org>
 ########################################################################  ########################################################################
 use strict;  use strict;
 use warnings;  use warnings;
   
 use Net::Telnet;  use YAML qw/ LoadFile /;
 use Net::TFTP;  use Net::TFTP;
 use YAML;  use lib '.';
   use Net::Telnet::Trango;
 my @Foxes = (  
   '10.100.3.8',  my $config_file = shift || 'update_trango.yaml';
 #  '10.100.3.11',  my $max_tries = 3;
 #  '10.100.3.12',  
 #  '10.100.3.13',  my $l = Mylogger->new( { log_prefix => 'UT' } );
 );  
   $l->sp("Reading config file '$config_file'");
 my $password = 'password';  my $conf = LoadFile($config_file);
   
 my $new_file  = 'fsu53_2p0a2H0003D05101403.s19';  my @foxes = (
 my $new_ver   = 'FSU 1p06H0003D04111001';  '10.100.1.2',
 my $new_cksum = 'x1D28DCC4';  '10.100.2.2',
   '10.100.3.2',
 my $max_tries = 3;  '10.100.4.2',
   );
   
   foreach my $fox (@foxes) {
     $l->sp("Checking: $fox");
     my $needs_reboot = 0;
   
 foreach my $fox (@Foxes) {    ## Connect and login.
   print "getting temp from Fox: $fox\n";    my $t = new Net::Telnet::Trango (
   ## Connect and login.      Timeout => 5,
   my $host = new Net::Telnet (Timeout => 5,      Errmode => 'return',
                               Prompt => '/#> *$/');    ) or die "Couldn't make new connection: $!";
   $host->open($fox);    $l->p("Connecting to $fox");
   $host->dump_log('dump.log');    unless ( $t->open($fox) ) {
       $l->sp("Error connecting: $!");
   ## Login to remote host.      next;
   $host->waitfor(    }
     -match => '/password: ?$/i',  
     -errmode => "return",    foreach my $firmware_type ('Firmware', 'FPGA') {
   ) or die "problem connecting to host ($fox): ", $host->lastline;  
   $host->print($password);      if (! exists $conf->{$firmware_type}) {
   $host->waitfor(            $l->s("No configs for '$firmware_type'");
     -match => $host->prompt,            $t->close();
     -errmode => "return",            next;
   ) or die "login ($fox) failed: ", $host->lastline;          }
     
       my $host_type = $t->host_type;
   ## Send commands      if ($firmware_type eq 'FPGA') {
   if ( upload($host, $new_file) ) {        $host_type =~ s/\s.*$//;
     $host->send('reboot');      }
   } else {  
     $host->send('exit');      if (! exists $conf->{$firmware_type}->{$host_type}) {
   }            $l->sp("No '$firmware_type' config for type $host_type");
   $host->close;            $t->close();
 }            next;
           }
 sub upload  
 {      if (! $t->logged_in) {
   my $host = shift;        $l->p("Logging in");
   my $file = shift;        $t->login($conf->{general}->{'password'});
   my $ver = get_ver($host);        unless ($t->logged_in) {
           $l->p('Failed!');
   if (          $t->bye();
     $ver->{'Firmware Version'} eq $new_ver &&          next;
     $ver->{'Checksum'}         eq $new_cksum        }
   ) {      }
     print "Already updated!";  
     return 1;          foreach my $k (keys %{ $conf->{general} }) {
   }            $conf->{$firmware_type}->{$host_type}->{$k} ||= $conf->{general}->{$k};
       }
   my $try = 0;          $conf->{$firmware_type}->{$host_type}->{firmware_type} ||= $firmware_type;
   while (1) {          $conf->{$firmware_type}->{$host_type}->{type} ||= $host_type;
     $try++;  
       $l->sp("$host_type $firmware_type");
     enable_tftpd($host) || die "Couldn't enable tftpd";      $l->p("Sending commands");
       ## Send commands
     # use tftp to push the file up      my $rc = upload($t, $conf->{$firmware_type}->{$host_type});
           if ($rc) {
     # waitfor some sort of output        $l->sp("Successfull!");
     # make sure it says 'Success.' otherwise error            $needs_reboot = 1;
           } elsif (defined $rc) {
     my $results = check_tftpd($host);            $l->sp("Already up to date");
     # check the 'File Length' against ???      } else {
             $l->sp("Failed");
     # 'updateflash mainimage $old_cksum $new_cksum'            $t->bye;
     # OR            next;
     # 'save mainimage [current firmware checksum] [new firmware checksum]'      }
     # waitfor a prompt, look at the end of the output for 'Success.' otherwise  
     # error.    }
     # decode_lines to get 'Checksum' to see if it matches $new_cksum  
         if ($needs_reboot) {
     $ver = get_ver($host);      $l->sp("Rebooting $fox");
     # check versions      $t->reboot;
         } else {
       $l->sp("Bye $fox");
     if ($try >= $max_tries) {      $t->bye();
       warn "Couldn't update in $max_tries tries!";    }
       return undef;    $l->sp("");
     }  }
   }  
 }  sub upload
   {
 sub get_ver    my $t    = shift;
 {    my $conf = shift;
   my $host = shift;  
   return cmd($host, 'ver');    my $file = $conf->{firmware_path} . '/' . $conf->{file_name};
 }  
     my $fw_type = $conf->{firmware_type};
 sub enable_tftpd  
 {    my $ver = $t->ver;
   my $host = shift;  
     if (
   my $vals = cmd($host, 'tftpd on');      $ver->{$fw_type . ' Version'}  eq $conf->{'ver'} &&
       $ver->{$fw_type . ' Checksum'} eq $conf->{'cksum'}
   if ($vals->{'Tftpd'} eq 'listen') {    ) {
     return 1;      return 0;
   } else {    }
     return undef;  
   }    $l->sp("Config information:");
 }    $l->sp("  Hardware Type: $conf->{'type'}");
     $l->sp("  File Name:     $conf->{'file_name'}");
 sub check_tftpd    $l->sp("  File Size:     $conf->{'file_size'}");
 {    $l->sp("  File Checksum: $conf->{'file_cksum'}");
   my $host = shift;    $l->sp("  Conf Version:  $conf->{'ver'}");
   return cmd($host, 'tftpd');    $l->sp("  Cur  Version:  $ver->{$fw_type . ' Version'}");
 }    $l->sp("  Conf Checksum: $conf->{'cksum'}");
     $l->sp("  Cur  Checksum: $ver->{$fw_type . ' Checksum'}");
 sub cmd  
 {    $l->sp("Updating");
   my $host   = shift;    my $try = 0;
   my $string = shift;    while (1) {
       if ($try >= $max_tries) {
   my @lines = $host->cmd($string);        $l->sp("Couldn't update in $max_tries tries!");
         return;
   my $vals = decode_lines(@lines);      }
   return $vals;      $try++;
 }  
       #sysinfo($self->{'_host'});
 sub decode_lines  
 {      $l->p("Enabling TFTPd");
   ### XXX ver has 2 Checksums.  one for FPGA and one for Firmware.  DOH!      unless ($t->enable_tftpd) {
   my @lines = @_;        $l->sp("Couldn't enable tftpd");
         next;
   my %conf;      }
   
   my $key = '';      $l->p("Uploading file ($file)");
   my $val = '';      # use tftp to push the file up
   my $in_key = 0;      my $tftp = Net::TFTP->new($t->Host, Mode => 'octet');
   my $in_val = 0;  
       unless ($tftp->put($file, $file)) {
   foreach my $line (@lines) {        $l->sp("Error uploading: " . $tftp->error);
     my @chars = split //, $line;        next;
       }
     foreach my $c (@chars) {  
       next if $c eq "\r";      $l->p("Checking upload ($conf->{'file_cksum'})");
       next if $c eq "\n";      my $results = $t->tftpd;
       # check the 'File Length' against ???
       if ($c eq '[') {      if ( $results->{'File Checksum'} ne $conf->{'file_cksum'}) {
         $in_key = 1;        $l->sp(
         $in_val = 0;          "File checksum '" . $results->{'File Checksum'} .
         if ($key) {          " does not match config file '" . $conf->{'file_cksum'} . "'!"
           $val =~ s/\s+$//;        );
           $conf{$key} = $val;        next;
           $key = '';      }
           $val = '';      $l->p("File checksum matches . . . ");
         }  
       if ($results->{'File Length'}   !~ /^$conf->{'file_size'} bytes/) {
       } elsif ($c eq ']') {        $l->sp(
         $in_val = 1;          "File length '" . $results->{'File Length'} .
         $in_key = 0;          "does not match config file '" . $conf->{'file_size'} . " bytes'!"
         $c = shift @chars;        );
         next;
       } elsif ($in_key) {      }
         $key .= $c;      $l->p("File length matches . . . ");
   
       } elsif ($in_val) {      if ( uc($results->{'File Name'}) ne uc($conf->{'file_name'}) ) {
         $val .= $c;        $l->sp(
       }          "File name '" . $results->{'File Name'} .
     }          "' does not match config file '" . $conf->{'file_name'} . "'!"
   }        );
   print Dump \%conf;        next;
       }
   if (%conf) {      $l->p("File name  matches . . . ");
     return \%conf;  
   } else {      my $image_type = 'mainimage';
     return \@lines;      if ($fw_type eq 'FPGA') {
   }        $image_type = 'fpgaimage';
 }      }
       $l->p("Updating $image_type (new checksum '$conf->{'cksum'}')");
       unless ($results = $t->updateflash(
         args => $image_type . ' ' . $ver->{$fw_type . ' Checksum'} .
                 ' '          . $conf->{'cksum'},
         Timeout => 90,
       ) ) {
         $l->sp("Couldn't update flash: $!");
         next;
       }
   
       unless (
         defined $results->{'Checksum'} &&
         $results->{'Checksum'} eq $conf->{'cksum'}
       ) {
         $l->sp("Saved checksum " . $results->{'Checksum'} . " does not match config file " .  $conf->{'cksum'} . "!");
         next;
       }
       $l->p("Uploaded checksum ($results->{'Checksum'}) " .
             "matches ($conf->{'cksum'})");
   
       $l->sp("Successfully updated!");
       return 1;
     }
   }
   
   package Mylogger;
   
   use Fcntl ':flock'; # import LOCK_* constants
   #use YAML;
   use constant LOG_PRINT => 128;
   use constant LOG_SAVE  =>  64;
   
   DESTROY {
     my $self = shift;
     if ($self->{'MYLOG'}) {
       $self->p("Closing log ($self->{'log_path'}/$self->{'log_file'})");
       close $self->{'MYLOG'};
     }
   }
   
   sub new {
     my $package = shift;
     my $self = shift || {};
   
     $self->{'base_path'}  ||= '.';
     $self->{'log_path'}   ||= $self->{'base_path'};
     $self->{'log_prefix'} ||= 'LOG';
     $self->{'log_file'}   ||= GetLogName(
       $self->{'log_prefix'},
       $self->{'log_path'}
     );
     bless $self, $package;
   }
   
   sub s
   {
     my $self = shift;
     my $m = shift;
     return $self->mylog($m, LOG_SAVE);
   }
   
   sub p
   {
     my $self = shift;
     my $m = shift;
     return $self->mylog($m, LOG_PRINT);
   }
   
   sub sp
   {
     my $self = shift;
     my $m = shift;
     return $self->mylog($m, LOG_SAVE | LOG_PRINT);
   }
   
   sub mylog
   {
     my $self = shift;
   
     my $thing = shift;
     chomp $thing;
   
     my $which = shift;
   
     my $MYLOG;
     if ($which & LOG_PRINT) {
       print $thing, "\n";
     }
   
     if ($which & LOG_SAVE) {
       if ($self->{'MYLOG'}) {
         $MYLOG = $self->{'MYLOG'};
       } else {
         unless ($MYLOG) {
                   open ($MYLOG, '>>', $self->{'log_path'} . '/' . $self->{'log_file'})
             or die "Couldn't open logfile!\n";
           my $ofh = select $MYLOG;
           $|=1;
           select $ofh;
           $self->{'MYLOG'} = $MYLOG;
   
           $self->p("Opened log ($self->{'log_path'}/$self->{'log_file'})");
         }
       }
       flock($MYLOG, LOCK_EX);
       print $MYLOG (scalar gmtime), "\t", $thing, "\n"
         or die "Couldn't print to MYLOG: $!";
       flock($MYLOG, LOCK_UN);
     }
   }
   
   sub GetLogName
   {
     my $prefix  = shift || die "Invalid prefix passed for log";
   
     my $logdate = GetLogDate();
     my $logver  = 0;
     my $logname;
   
     do {
       $logname = $prefix . $logdate . sprintf("%02d", $logver) . '.log';
       $logver++;
     } until (not -e $logname);
   
     return $logname;
   }
   
   sub GetLogDate
   {
     my ($sec,$min,$hour,$mday,$mon,$year,,,) = localtime();
   
     $mon++;
     $year += 1900;
   
     if ($min  < 10) { $min  = "0$min"  }
     if ($sec  < 10) { $sec  = "0$sec"  }
     if ($hour < 10) { $hour = "0$hour" }
     if ($mday < 10) { $mday = "0$mday" }
     if ($mon  < 10) { $mon  = "0$mon"  }
   
     my $time = $year . $mon . $mday;
   
     return $time;
   }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.23

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>