2009-12-02 09:41:06 +00:00
|
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
|
2009-12-10 02:19:40 +00:00
|
|
|
package xCAT::FSPinv;
|
2009-12-02 09:41:06 +00:00
|
|
|
use strict;
|
|
|
|
use Getopt::Long;
|
|
|
|
use xCAT::PPCcli qw(SUCCESS EXPECT_ERROR RC_ERROR NR_ERROR);
|
2011-04-08 05:09:11 +00:00
|
|
|
require xCAT::Usage;
|
|
|
|
require xCAT::PPCinv;
|
|
|
|
require xCAT::FSPUtils;
|
|
|
|
use XML::Simple;
|
2010-08-09 06:05:35 +00:00
|
|
|
#use Data::Dumper;
|
2009-12-02 09:41:06 +00:00
|
|
|
|
|
|
|
##########################################
|
|
|
|
# Maps fsp-api attributes to text
|
|
|
|
##########################################
|
|
|
|
my @licmap = (
|
|
|
|
["ecnumber", "Release Level "],
|
|
|
|
["activated_level", "Active Level "],
|
|
|
|
["installed_level", "Installed Level"],
|
|
|
|
["accepted_level", "Accepted Level "],
|
|
|
|
["curr_ecnumber_a", "Release Level A"],
|
|
|
|
["curr_level_a", "Level A "],
|
2011-07-13 02:13:04 +00:00
|
|
|
["curr_power_on_side_a", "Current Power on side A"],
|
2009-12-02 09:41:06 +00:00
|
|
|
["curr_ecnumber_b", "Release Level B"],
|
|
|
|
["curr_level_b", "Level B "],
|
2011-07-13 02:13:04 +00:00
|
|
|
["curr_power_on_side_b", "Current Power on side B"],
|
2009-12-02 09:41:06 +00:00
|
|
|
["curr_ecnumber_primary", "Release Level Primary"],
|
|
|
|
["curr_level_primary", "Level Primary "],
|
2011-07-13 02:13:04 +00:00
|
|
|
["curr_power_on_side_primary", "Current Power on side Primary"],
|
2009-12-02 09:41:06 +00:00
|
|
|
["curr_ecnumber_secondary","Release Level Secondary"],
|
2011-07-13 02:13:04 +00:00
|
|
|
["curr_level_secondary", "Level Secondary"],
|
|
|
|
["curr_power_on_side_secondary","Current Power on side Secondary"]
|
2009-12-02 09:41:06 +00:00
|
|
|
);
|
|
|
|
|
2009-12-10 02:19:40 +00:00
|
|
|
##########################################################################
|
|
|
|
# Parse the command line for options and operands
|
|
|
|
##########################################################################
|
|
|
|
sub parse_args {
|
2011-03-17 08:21:59 +00:00
|
|
|
# xCAT::PPCinv::parse_args(@_);
|
|
|
|
my $request = shift;
|
|
|
|
my $command = $request->{command};
|
|
|
|
my $args = $request->{arg};
|
|
|
|
my %opt = ();
|
|
|
|
# my @rinv = qw(bus config model serial firm all);
|
2011-04-08 05:09:11 +00:00
|
|
|
my @rinv = qw( deconfig firm );
|
2011-03-17 08:21:59 +00:00
|
|
|
|
|
|
|
#############################################
|
|
|
|
# Responds with usage statement
|
|
|
|
#############################################
|
|
|
|
local *usage = sub {
|
|
|
|
my $usage_string = xCAT::Usage->getUsage($command);
|
|
|
|
return( [ $_[0], $usage_string] );
|
|
|
|
};
|
|
|
|
#############################################
|
|
|
|
# Process command-line arguments
|
|
|
|
#############################################
|
|
|
|
if ( !defined( $args )) {
|
|
|
|
return(usage( "No command specified" ));
|
|
|
|
}
|
|
|
|
#############################################
|
|
|
|
# Checks case in GetOptions, allows opts
|
|
|
|
# to be grouped (e.g. -vx), and terminates
|
|
|
|
# at the first unrecognized option.
|
|
|
|
#############################################
|
|
|
|
@ARGV = @$args;
|
|
|
|
$Getopt::Long::ignorecase = 0;
|
|
|
|
Getopt::Long::Configure( "bundling" );
|
|
|
|
|
2012-06-29 09:03:22 +00:00
|
|
|
if ( !GetOptions( \%opt, qw(V|verbose x) )) {
|
2011-03-17 08:21:59 +00:00
|
|
|
return( usage() );
|
|
|
|
}
|
|
|
|
####################################
|
|
|
|
# Check for "-" with no option
|
|
|
|
####################################
|
|
|
|
if ( grep(/^-$/, @ARGV )) {
|
|
|
|
return(usage( "Missing option: -" ));
|
|
|
|
}
|
|
|
|
####################################
|
|
|
|
# Unsupported command
|
|
|
|
####################################
|
|
|
|
my ($cmd) = grep(/^$ARGV[0]$/, @rinv );
|
|
|
|
if ( !defined( $cmd )) {
|
|
|
|
return(usage( "Invalid command: $ARGV[0]" ));
|
|
|
|
}
|
|
|
|
####################################
|
|
|
|
# Check for an extra argument
|
|
|
|
####################################
|
|
|
|
shift @ARGV;
|
|
|
|
if ( defined( $ARGV[0] )) {
|
|
|
|
return(usage( "Invalid Argument: $ARGV[0]" ));
|
|
|
|
}
|
2011-09-14 04:39:21 +00:00
|
|
|
if (exists($opt{x}) and $cmd !~ /^deconfig$/) {
|
|
|
|
return (usage("Option '-x' can't work with '$cmd'"));
|
|
|
|
}
|
2011-03-17 08:21:59 +00:00
|
|
|
####################################
|
|
|
|
# Set method to invoke
|
|
|
|
####################################
|
|
|
|
$request->{method} = $cmd;
|
|
|
|
return( \%opt );
|
|
|
|
|
|
|
|
|
2009-12-10 02:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-12-02 09:41:06 +00:00
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
# Returns FSP/BPA firmware information
|
|
|
|
##########################################################################
|
|
|
|
sub firmware {
|
|
|
|
|
|
|
|
my $request = shift;
|
|
|
|
my $hash = shift;
|
|
|
|
my @result;
|
|
|
|
|
2009-12-10 02:19:40 +00:00
|
|
|
# print "in FSPinv \n";
|
2009-12-02 09:41:06 +00:00
|
|
|
#print Dumper($request);
|
|
|
|
#print Dumper($hash);
|
|
|
|
|
|
|
|
####################################
|
2009-12-10 02:19:40 +00:00
|
|
|
# FSPinv with firm command is grouped by hardware control point
|
|
|
|
# In FSPinv, the hcp is the related fsp.
|
2009-12-02 09:41:06 +00:00
|
|
|
####################################
|
|
|
|
|
|
|
|
# Example of $hash.
|
|
|
|
#VAR1 = {
|
|
|
|
# '9110-51A*1075ECF' => {
|
|
|
|
# 'Server-9110-51A-SN1075ECF' => [
|
|
|
|
# 0,
|
|
|
|
# 0,
|
2009-12-10 02:19:40 +00:00
|
|
|
# '9110-51A*1075ECF',
|
|
|
|
# 'fsp1_name',
|
|
|
|
# 'fsp',
|
|
|
|
# 0
|
|
|
|
# ]
|
|
|
|
# }
|
2009-12-02 09:41:06 +00:00
|
|
|
# };
|
|
|
|
|
|
|
|
while (my ($mtms,$h) = each(%$hash) ) {
|
|
|
|
while (my ($name,$d) = each(%$h) ) {
|
|
|
|
|
|
|
|
#####################################
|
|
|
|
# Command only supported on FSP/BPA/LPARs
|
|
|
|
#####################################
|
2012-03-05 10:25:08 +00:00
|
|
|
if ( @$d[4] !~ /^(cec|frame|fsp|bpa|lpar|blade)$/ ) {
|
2009-12-02 09:41:06 +00:00
|
|
|
push @result,
|
2011-04-08 05:09:11 +00:00
|
|
|
[$name,"Information only available for CEC/FSP/Frame/BPA/LPAR",RC_ERROR];
|
2009-12-02 09:41:06 +00:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
#################
|
|
|
|
#For support on Lpars, the flag need to be changed.
|
|
|
|
##########
|
|
|
|
if(@$d[4] eq "lpar") {
|
|
|
|
@$d[4] = "fsp";
|
2010-02-26 09:42:41 +00:00
|
|
|
@$d[0] = 0;
|
2009-12-02 09:41:06 +00:00
|
|
|
}
|
2012-04-28 09:26:49 +00:00
|
|
|
my $values = xCAT::FSPUtils::fsp_api_action($request, $name, $d, "list_firmware_level");
|
2010-02-26 09:42:41 +00:00
|
|
|
my $Rc = @$values[2];
|
|
|
|
my $data = @$values[1];
|
2009-12-02 09:41:06 +00:00
|
|
|
#print "values";
|
|
|
|
#print Dumper($values);
|
2010-02-26 09:42:41 +00:00
|
|
|
#####################################
|
|
|
|
# Return error
|
|
|
|
#####################################
|
|
|
|
if ( $Rc != SUCCESS ) {
|
|
|
|
push @result, [$name,$data,$Rc];
|
2009-12-02 09:41:06 +00:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
#####################################
|
|
|
|
# Format fsp-api results
|
|
|
|
#####################################
|
2009-12-10 02:19:40 +00:00
|
|
|
my $val;
|
|
|
|
foreach $val ( @licmap ) {
|
2010-02-26 09:42:41 +00:00
|
|
|
if ( $data =~ /@$val[0]=(\w+)/ ) {
|
2009-12-10 02:19:40 +00:00
|
|
|
push @result, [$name,"@$val[1]: $1",$Rc];
|
2009-12-02 09:41:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return( \@result );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
# Returns firmware version
|
|
|
|
##########################################################################
|
|
|
|
sub firm {
|
|
|
|
return( firmware(@_) );
|
|
|
|
}
|
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
# Returns serial-number
|
|
|
|
##########################################################################
|
|
|
|
sub serial {
|
|
|
|
}
|
|
|
|
|
|
|
|
sub vpd {
|
|
|
|
}
|
|
|
|
|
|
|
|
sub bus {
|
|
|
|
}
|
|
|
|
|
2011-04-08 05:09:11 +00:00
|
|
|
sub deconfig {
|
|
|
|
|
|
|
|
my $request = shift;
|
|
|
|
my $hash = shift;
|
|
|
|
my @result;
|
|
|
|
|
|
|
|
# print "in FSPinv \n";
|
|
|
|
#print Dumper($request);
|
|
|
|
#print Dumper($hash);
|
|
|
|
|
|
|
|
####################################
|
|
|
|
# FSPinv with deconfig command is grouped by hardware control point
|
|
|
|
# In FSPinv, the hcp is the related fsp.
|
|
|
|
####################################
|
|
|
|
|
|
|
|
# Example of $hash.
|
|
|
|
#VAR1 = {
|
|
|
|
# '9110-51A*1075ECF' => {
|
|
|
|
# 'Server-9110-51A-SN1075ECF' => [
|
|
|
|
# 0,
|
|
|
|
# 0,
|
|
|
|
# '9110-51A*1075ECF',
|
|
|
|
# 'fsp1_name',
|
|
|
|
# 'fsp',
|
|
|
|
# 0
|
|
|
|
# ]
|
|
|
|
# }
|
|
|
|
# };
|
|
|
|
|
|
|
|
while (my ($mtms,$h) = each(%$hash) ) {
|
|
|
|
while (my ($name,$d) = each(%$h) ) {
|
|
|
|
|
|
|
|
#####################################
|
|
|
|
# Command only supported on FSP/BPA/LPARs
|
|
|
|
#####################################
|
|
|
|
if ( @$d[4] !~ /^(cec|fsp)$/ ) {
|
|
|
|
push @result,
|
|
|
|
[$name,"Deconfigured resource information only available for CEC/FSP",RC_ERROR];
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
#################
|
|
|
|
#For support on Lpars, the flag need to be changed.
|
|
|
|
##########
|
|
|
|
#if(@$d[4] eq "lpar") {
|
|
|
|
# @$d[4] = "fsp";
|
|
|
|
# @$d[0] = 0;
|
|
|
|
#}
|
2012-04-28 09:26:49 +00:00
|
|
|
my $values = xCAT::FSPUtils::fsp_api_action($request, $name, $d, "get_cec_deconfigured");
|
2011-04-08 05:09:11 +00:00
|
|
|
my $Rc = @$values[2];
|
|
|
|
my $data = @$values[1];
|
|
|
|
#print "values";
|
|
|
|
#print Dumper($values);
|
|
|
|
#####################################
|
|
|
|
# Return error
|
|
|
|
#####################################
|
|
|
|
if ( $Rc != SUCCESS ) {
|
|
|
|
push @result, [$name,$data,$Rc];
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
2011-06-23 02:55:29 +00:00
|
|
|
|
2011-04-08 05:09:11 +00:00
|
|
|
#####################################
|
|
|
|
# Format fsp-api results
|
|
|
|
#####################################
|
2011-07-27 08:29:16 +00:00
|
|
|
#my $decfg = XMLin($data);
|
|
|
|
my $decfg;
|
|
|
|
eval {
|
|
|
|
$decfg = XMLin($data);
|
|
|
|
};
|
|
|
|
if( $@ ) {
|
2011-09-14 04:39:21 +00:00
|
|
|
push @result,[$name, "Error: there are some unreadable XML data from the firmware. It can't be parsed by 'xcatd'.", -1];
|
2011-07-27 08:29:16 +00:00
|
|
|
return (\@result);
|
|
|
|
}
|
2011-09-14 04:39:21 +00:00
|
|
|
if( exists($request->{opt}->{x})) {
|
|
|
|
push @result, [$name, "\n".$data, -1];
|
|
|
|
next;
|
|
|
|
}
|
2011-08-12 04:54:31 +00:00
|
|
|
#print "decfg";
|
|
|
|
#print Dumper($decfg);
|
|
|
|
my $node = $decfg->{NODE};
|
|
|
|
if( defined($node) && exists($node->{Location_code}) ) {
|
|
|
|
my $Call_Out_Hardware_State ;
|
|
|
|
my $Call_Out_Method;
|
|
|
|
my $Location_code;
|
|
|
|
my $RID;
|
|
|
|
my $TYPE;
|
2012-11-08 02:22:54 +00:00
|
|
|
my $dres;
|
|
|
|
if (ref($node->{GARDRECORD}) eq "ARRAY") {
|
|
|
|
$dres = $node->{GARDRECORD};
|
|
|
|
} elsif (ref($node->{GARDRECORD}) eq "HASH") {
|
|
|
|
push @$dres, $node->{GARDRECORD};
|
|
|
|
} else {
|
2011-09-19 10:16:17 +00:00
|
|
|
push @result,[$name,"NO Deconfigured resources", 0];
|
2011-08-12 04:54:31 +00:00
|
|
|
return( \@result );
|
|
|
|
}
|
2011-09-19 10:16:17 +00:00
|
|
|
push @result,[$name,"Deconfigured resources", 0];
|
|
|
|
push @result,[$name,"Location_code RID Call_Out_Method Call_Out_Hardware_State TYPE", 0];
|
|
|
|
push @result,[$name,"$node->{Location_code} $node->{RID}", 0];
|
2011-08-12 04:54:31 +00:00
|
|
|
|
2012-11-08 02:22:54 +00:00
|
|
|
#foreach my $unit(@{$node->{GARDRECORD}}) {
|
|
|
|
foreach my $unit(@$dres) {
|
2011-08-12 04:54:31 +00:00
|
|
|
while (my ($key, $unit3) = each(%$unit) ) {
|
|
|
|
|
|
|
|
if($key eq "GARDUNIT") {
|
|
|
|
if (ref($unit3) eq "HASH") {
|
|
|
|
$Call_Out_Hardware_State = $unit3->{Call_Out_Hardware_State};
|
|
|
|
$Call_Out_Method = $unit3->{Call_Out_Method};
|
|
|
|
$Location_code = $unit3->{Location_code};
|
|
|
|
$RID = $unit3->{RID};
|
|
|
|
$TYPE = $unit3->{TYPE};
|
|
|
|
|
|
|
|
push @result,[$name,"$Location_code $RID $Call_Out_Method $Call_Out_Hardware_State $TYPE",0];
|
|
|
|
} elsif(ref($unit3) eq "ARRAY") {
|
|
|
|
|
|
|
|
foreach my $unit4(@$unit3) {
|
|
|
|
$Call_Out_Hardware_State = $unit4->{Call_Out_Hardware_State};
|
|
|
|
$Call_Out_Method = $unit4->{Call_Out_Method};
|
|
|
|
$Location_code = $unit4->{Location_code};
|
|
|
|
$RID = $unit4->{RID};
|
|
|
|
$TYPE = $unit4->{TYPE};
|
|
|
|
push @result,[$name,"$Location_code $RID $Call_Out_Method $Call_Out_Hardware_State $TYPE",0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-08-22 02:34:30 +00:00
|
|
|
} else {
|
|
|
|
push @result,[$name,"NO Deconfigured resources", 0];
|
2011-08-12 04:54:31 +00:00
|
|
|
}
|
|
|
|
|
2011-04-08 05:09:11 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return( \@result );
|
|
|
|
|
|
|
|
|
2009-12-02 09:41:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
# Returns machine-type-model
|
|
|
|
##########################################################################
|
|
|
|
sub model {
|
|
|
|
}
|
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
# Returns all inventory information
|
|
|
|
##########################################################################
|
|
|
|
sub all {
|
|
|
|
|
|
|
|
my @result = (
|
2011-04-08 05:09:11 +00:00
|
|
|
@{deconfig(@_)},
|
2009-12-02 09:41:06 +00:00
|
|
|
@{firmware(@_)}
|
|
|
|
);
|
|
|
|
return( \@result );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
|