2009-05-20 09:04:19 +00:00
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
package xCAT::PPCconn ;
use strict ;
use Getopt::Long ;
use xCAT::PPCcli qw( SUCCESS EXPECT_ERROR RC_ERROR NR_ERROR ) ;
use xCAT::Usage ;
##############################################
# Globals
##############################################
my % method = (
2009-08-04 20:28:03 +00:00
mkhwconn = > \ & mkhwconn_parse_args ,
lshwconn = > \ & lshwconn_parse_args ,
2009-08-21 06:36:28 +00:00
rmhwconn = > \ & rmhwconn_parse_args ,
inithwpw = > \ & inithwpw_parse_args
2009-05-20 09:04:19 +00:00
) ;
##########################################################################
# Parse the command line for options and operands
##########################################################################
sub parse_args {
my $ request = shift ;
my $ cmd = $ request - > { command } ;
###############################
# Invoke correct parse_args
###############################
my $ result = $ method { $ cmd } ( $ request , $ request - > { arg } ) ;
return ( $ result ) ;
}
##########################################################################
2009-08-04 20:28:03 +00:00
# Parse arguments for mkhwconn
2009-05-20 09:04:19 +00:00
##########################################################################
2009-08-04 20:28:03 +00:00
sub mkhwconn_parse_args
2009-05-20 09:04:19 +00:00
{
my $ request = shift ;
my $ args = shift ;
my % opt = ( ) ;
local * usage = sub {
2009-08-04 20:28:03 +00:00
my $ usage_string = xCAT::Usage - > getUsage ( "mkhwconn" ) ;
2009-05-20 09:04:19 +00:00
return ( [ $ _ [ 0 ] , $ usage_string ] ) ;
} ;
#############################################
# Process command-line arguments
#############################################
if ( ! defined ( $ args ) ) {
return ( usage ( "No command specified" ) ) ;
}
2009-08-04 18:33:52 +00:00
local @ ARGV = ref ( $ args ) eq 'ARRAY' ? @$ args: ( ) ;
2009-05-20 09:04:19 +00:00
$ Getopt:: Long:: ignorecase = 0 ;
Getopt::Long:: Configure ( "bundling" ) ;
2009-12-30 04:18:53 +00:00
if ( ! GetOptions ( \ % opt , qw( V|verbose h|help t p=s P=s ) ) ) {
2009-05-20 09:04:19 +00:00
return ( usage ( ) ) ;
}
2009-08-06 11:22:29 +00:00
return usage ( ) if ( exists $ opt { h } ) ;
2009-05-20 09:04:19 +00:00
if ( exists $ opt { t } and exists $ opt { p } )
{
return ( usage ( 'Flags -t and -p cannot be used together.' ) ) ;
}
if ( exists $ opt { P } and ! exists $ opt { p } )
{
return ( usage ( 'Flags -P can only be used when flag -p is specified.' ) ) ;
}
##########################################
# Check if CECs are controlled by a frame
##########################################
my $ nodes = $ request - > { node } ;
my $ ppctab = xCAT::Table - > new ( 'ppc' ) ;
my $ nodetypetab = xCAT::Table - > new ( 'nodetype' ) ;
2009-07-31 19:45:28 +00:00
my $ vpdtab = xCAT::Table - > new ( 'vpd' ) ;
2009-05-20 09:04:19 +00:00
my @ bpa_ctrled_nodes = ( ) ;
my @ no_type_nodes = ( ) ;
2009-07-31 19:45:28 +00:00
my @ frame_members = ( ) ;
2009-05-20 09:04:19 +00:00
if ( $ ppctab )
{
for my $ node ( @$ nodes )
{
my $ node_parent = undef ;
my $ nodetype = undef ;
my $ nodetype_hash = $ nodetypetab - > getNodeAttribs ( $ node , [ qw( nodetype ) ] ) ;
my $ node_parent_hash = $ ppctab - > getNodeAttribs ( $ node , [ qw( parent ) ] ) ;
$ nodetype = $ nodetype_hash - > { nodetype } ;
$ node_parent = $ node_parent_hash - > { parent } ;
if ( ! $ nodetype )
{
push @ no_type_nodes , $ node ;
next ;
}
if ( $ nodetype eq 'fsp' and
$ node_parent and
$ node_parent ne $ node )
{
push @ bpa_ctrled_nodes , $ node ;
}
2009-07-31 19:45:28 +00:00
if ( $ nodetype eq 'bpa' )
{
my $ my_frame_bpa_cec = getFrameMembers ( $ node , $ vpdtab , $ ppctab ) ;
push @ frame_members , @$ my_frame_bpa_cec ;
}
2009-05-20 09:04:19 +00:00
}
}
2009-07-31 19:45:28 +00:00
2009-05-20 09:04:19 +00:00
if ( scalar ( @ no_type_nodes ) )
{
my $ tmp_nodelist = join ',' , @ no_type_nodes ;
return ( usage ( "Attribute nodetype.nodetype cannot be found for node(s) $tmp_nodelist" ) ) ;
}
2009-07-31 19:45:28 +00:00
2009-05-20 09:04:19 +00:00
if ( scalar ( @ bpa_ctrled_nodes ) )
{
my $ tmp_nodelist = join ',' , @ bpa_ctrled_nodes ;
return ( usage ( "Node(s) $tmp_nodelist is(are) controlled by BPA." ) ) ;
}
2009-07-31 19:45:28 +00:00
if ( scalar ( @ frame_members ) )
{
2009-07-31 21:11:48 +00:00
my @ all_nodes = xCAT::Utils:: get_unique_members ( @$ nodes , @ frame_members ) ;
$ request - > { node } = \ @ all_nodes ;
2009-07-31 19:45:28 +00:00
}
# Set HW type to 'hmc' anyway, so that this command will not going to
# PPCfsp.pm
$ request - > { 'hwtype' } = 'hmc' ;
2010-03-16 12:35:25 +00:00
$ request - > { hcp } = 'hmc' ;
2009-08-04 20:28:03 +00:00
$ request - > { method } = 'mkhwconn' ;
2009-05-20 09:04:19 +00:00
return ( \ % opt ) ;
}
2009-07-31 19:45:28 +00:00
####################################################
# Get frame members
####################################################
#ppc/vpd nodes cache
my @ all_ppc_nodes ;
my @ all_vpd_nodes ;
sub getFrameMembers
{
my $ node = shift ; #this a BPA node
my $ vpdtab = shift ;
my $ ppctab = shift ;
2009-08-04 22:44:58 +00:00
my @ frame_members = ( ) ;
my @ bpa_nodes = ( ) ;
2009-07-31 19:45:28 +00:00
my $ vpdhash = $ vpdtab - > getNodeAttribs ( $ node , [ qw( mtm serial ) ] ) ;
my $ mtm = $ vpdhash - > { mtm } ;
my $ serial = $ vpdhash - > { serial } ;
2009-08-04 22:44:58 +00:00
if ( scalar ( @ all_vpd_nodes ) == 0 )
2009-07-31 19:45:28 +00:00
{
2009-08-04 22:44:58 +00:00
@ all_vpd_nodes = $ vpdtab - > getAllNodeAttribs ( [ 'node' , 'mtm' , 'serial' ] ) ;
2009-07-31 19:45:28 +00:00
}
2009-08-04 22:44:58 +00:00
for my $ vpd_node ( @ all_vpd_nodes )
2009-07-31 19:45:28 +00:00
{
2009-08-04 22:44:58 +00:00
if ( $ vpd_node - > { 'mtm' } eq $ mtm and $ vpd_node - > { 'serial' } eq $ serial )
2009-07-31 19:45:28 +00:00
{
2009-08-04 22:44:58 +00:00
push @ frame_members , $ vpd_node - > { 'node' } ;
push @ bpa_nodes , $ vpd_node - > { 'node' } ;
2009-07-31 19:45:28 +00:00
}
}
2009-08-04 22:44:58 +00:00
if ( scalar ( @ all_ppc_nodes ) == 0 )
2009-07-31 19:45:28 +00:00
{
2009-08-04 22:44:58 +00:00
@ all_ppc_nodes = $ ppctab - > getAllNodeAttribs ( [ 'node' , 'parent' ] ) ;
2009-07-31 19:45:28 +00:00
}
2009-08-04 22:44:58 +00:00
for my $ bpa_node ( @ bpa_nodes )
2009-07-31 19:45:28 +00:00
{
2009-08-04 22:44:58 +00:00
for my $ ppc_node ( @ all_ppc_nodes )
2009-07-31 19:45:28 +00:00
{
2009-08-04 22:44:58 +00:00
if ( $ ppc_node - > { parent } eq $ bpa_node )
{
push @ frame_members , $ ppc_node - > { 'node' } ;
}
2009-07-31 19:45:28 +00:00
}
}
return \ @ frame_members ;
}
2009-05-26 06:02:03 +00:00
##########################################################################
2009-08-04 20:28:03 +00:00
# Parse arguments for lshwconn
2009-05-26 06:02:03 +00:00
##########################################################################
2009-08-04 20:28:03 +00:00
sub lshwconn_parse_args
2009-05-20 09:04:19 +00:00
{
2009-05-26 06:02:03 +00:00
my $ request = shift ;
my $ args = shift ;
my % opt = ( ) ;
2009-05-20 09:04:19 +00:00
2009-05-26 06:02:03 +00:00
local * usage = sub {
2009-08-04 20:28:03 +00:00
my $ usage_string = xCAT::Usage - > getUsage ( "lshwconn" ) ;
2009-05-26 06:02:03 +00:00
return ( [ $ _ [ 0 ] , $ usage_string ] ) ;
} ;
#############################################
# Get options in command line
#############################################
2009-07-31 19:45:28 +00:00
local @ ARGV = ref ( $ args ) eq 'ARRAY' ? @$ args: ( ) ;
2009-05-26 06:02:03 +00:00
$ Getopt:: Long:: ignorecase = 0 ;
Getopt::Long:: Configure ( "bundling" ) ;
2009-08-04 20:28:03 +00:00
if ( ! GetOptions ( \ % opt , qw( V|verbose h|help ) ) ) {
2009-05-26 06:02:03 +00:00
return ( usage ( ) ) ;
}
2009-08-04 20:28:03 +00:00
return usage ( ) if ( exists $ opt { h } ) ;
2009-05-26 06:02:03 +00:00
#############################################
# Process command-line arguments
#############################################
2009-08-04 20:28:03 +00:00
if ( scalar ( @ ARGV ) ) {
2009-05-26 06:02:03 +00:00
return ( usage ( "No additional flag is support by this command" ) ) ;
}
2009-08-04 22:44:58 +00:00
my $ nodetypetab = xCAT::Table - > new ( 'nodetype' ) ;
if ( ! $ nodetypetab )
{
return ( [ "Failed to open table 'nodetype'.\n" ] ) ;
}
my $ nodehmtab = xCAT::Table - > new ( 'nodehm' ) ;
if ( ! $ nodehmtab )
2009-07-20 18:46:13 +00:00
{
2009-08-04 22:44:58 +00:00
return ( [ "Failed to open table 'nodehm'.\n" ] ) ;
2009-07-20 18:46:13 +00:00
}
my $ nodetype ;
for my $ node ( @ { $ request - > { node } } )
{
2009-08-04 22:44:58 +00:00
my $ ent = $ nodetypetab - > getNodeAttribs ( $ node , [ qw( nodetype ) ] ) ;
my $ nodehm = $ nodehmtab - > getNodeAttribs ( $ node , [ qw( mgt ) ] ) ;
2009-07-20 18:46:13 +00:00
if ( ! $ ent )
{
return ( [ "Failed to get node type for node $node.\n" ] ) ;
}
2009-08-04 22:44:58 +00:00
if ( ! $ nodehm )
{
return ( [ "Failed to get nodehm.mgt value for node $node.\n" ] ) ;
}
elsif ( $ nodehm - > { mgt } ne 'hmc' )
{
return ( [ "lshwconn can only support HMC nodes, or nodes managed by HMC, i.e. nodehm.mgt should be 'hmc'. Please make sure node $node has correect nodehm.mgt and ppc.hcp value.\n" ] ) ;
}
2009-07-20 18:46:13 +00:00
if ( $ ent - > { nodetype } ne 'hmc'
2009-08-04 22:44:58 +00:00
and $ ent - > { nodetype } ne 'fsp'
and $ ent - > { nodetype } ne 'bpa' )
2009-07-20 18:46:13 +00:00
{
return ( [ "Node type $ent->{nodetype} is not supported for this command.\n" ] ) ;
}
if ( ! $ nodetype )
{
$ nodetype = $ ent - > { nodetype } ;
}
else
{
if ( $ nodetype ne $ ent - > { nodetype } )
{
return ( [ "Cannot support multiple node types in this command line.\n" ] ) ;
}
}
}
2009-08-04 22:44:58 +00:00
2009-07-20 18:46:13 +00:00
$ request - > { nodetype } = $ nodetype ;
2009-08-04 20:28:03 +00:00
$ request - > { method } = 'lshwconn' ;
2009-05-26 06:02:03 +00:00
return ( \ % opt ) ;
2009-05-20 09:04:19 +00:00
}
2009-05-26 06:02:03 +00:00
##########################################################################
2009-08-04 20:28:03 +00:00
# Parse arguments for rmhwconn
2009-05-26 06:02:03 +00:00
##########################################################################
2009-08-04 20:28:03 +00:00
sub rmhwconn_parse_args
2009-05-20 09:04:19 +00:00
{
2009-05-26 06:02:03 +00:00
my $ request = shift ;
my $ args = shift ;
my % opt = ( ) ;
local * usage = sub {
2009-08-04 20:28:03 +00:00
my $ usage_string = xCAT::Usage - > getUsage ( "rmhwconn" ) ;
2009-05-26 06:02:03 +00:00
return ( [ $ _ [ 0 ] , $ usage_string ] ) ;
} ;
2009-12-28 08:10:42 +00:00
#############################################
# Get options in command line
#############################################
2009-08-04 18:33:52 +00:00
local @ ARGV = ref ( $ args ) eq 'ARRAY' ? @$ args: ( ) ;
2009-05-26 06:02:03 +00:00
$ Getopt:: Long:: ignorecase = 0 ;
Getopt::Long:: Configure ( "bundling" ) ;
2009-08-04 20:28:03 +00:00
if ( ! GetOptions ( \ % opt , qw( V|verbose h|help ) ) ) {
2009-05-26 06:02:03 +00:00
return ( usage ( ) ) ;
}
2009-08-06 11:22:29 +00:00
return usage ( ) if ( exists $ opt { h } ) ;
2009-05-26 06:02:03 +00:00
#############################################
# Process command-line arguments
#############################################
2009-08-04 20:28:03 +00:00
if ( scalar ( @ ARGV ) ) {
2009-05-26 06:02:03 +00:00
return ( usage ( "No additional flag is support by this command" ) ) ;
}
2009-07-31 21:11:48 +00:00
##########################################
# Check if CECs are controlled by a frame
##########################################
my $ nodes = $ request - > { node } ;
my $ ppctab = xCAT::Table - > new ( 'ppc' ) ;
2009-08-04 22:44:58 +00:00
return ( [ "Failed to open table 'ppc'.\n" ] ) if ( ! $ ppctab ) ;
2009-07-31 21:11:48 +00:00
my $ nodetypetab = xCAT::Table - > new ( 'nodetype' ) ;
2009-08-04 22:44:58 +00:00
return ( [ "Failed to open table 'nodetype'.\n" ] ) if ( ! $ nodetypetab ) ;
2009-07-31 21:11:48 +00:00
my $ vpdtab = xCAT::Table - > new ( 'vpd' ) ;
2009-08-04 22:44:58 +00:00
return ( [ "Failed to open table 'vpd'.\n" ] ) if ( ! $ vpdtab ) ;
my $ nodehmtab = xCAT::Table - > new ( 'nodehm' ) ;
return ( [ "Failed to open table 'nodehm'.\n" ] ) if ( ! $ nodehmtab ) ;
2009-07-31 21:11:48 +00:00
my @ bpa_ctrled_nodes = ( ) ;
my @ no_type_nodes = ( ) ;
my @ frame_members = ( ) ;
2009-08-04 22:44:58 +00:00
for my $ node ( @$ nodes )
2009-07-31 21:11:48 +00:00
{
2009-08-04 22:44:58 +00:00
my $ nodehm = $ nodehmtab - > getNodeAttribs ( $ node , [ qw( mgt ) ] ) ;
if ( ! $ nodehm )
2009-07-31 21:11:48 +00:00
{
2009-08-04 22:44:58 +00:00
return ( [ "Failed to get nodehm.mgt value for node $node.\n" ] ) ;
}
elsif ( $ nodehm - > { mgt } ne 'hmc' )
{
return ( [ "rmhwconn can only support nodes managed by HMC, i.e. nodehm.mgt should be 'hmc'. Please make sure node $node has correect nodehm.mgt and ppc.hcp value.\n" ] ) ;
}
my $ node_parent = undef ;
my $ nodetype = undef ;
my $ nodetype_hash = $ nodetypetab - > getNodeAttribs ( $ node , [ qw( nodetype ) ] ) ;
my $ node_parent_hash = $ ppctab - > getNodeAttribs ( $ node , [ qw( parent ) ] ) ;
$ nodetype = $ nodetype_hash - > { nodetype } ;
$ node_parent = $ node_parent_hash - > { parent } ;
if ( ! $ nodetype )
{
push @ no_type_nodes , $ node ;
next ;
}
if ( $ nodetype eq 'fsp' and
2009-07-31 21:11:48 +00:00
$ node_parent and
$ node_parent ne $ node )
2009-08-04 22:44:58 +00:00
{
push @ bpa_ctrled_nodes , $ node ;
}
if ( $ nodetype eq 'bpa' )
{
my $ my_frame_bpa_cec = getFrameMembers ( $ node , $ vpdtab , $ ppctab ) ;
push @ frame_members , @$ my_frame_bpa_cec ;
2009-07-31 21:11:48 +00:00
}
}
if ( scalar ( @ no_type_nodes ) )
{
my $ tmp_nodelist = join ',' , @ no_type_nodes ;
return ( usage ( "Attribute nodetype.nodetype cannot be found for node(s) $tmp_nodelist" ) ) ;
}
if ( scalar ( @ bpa_ctrled_nodes ) )
{
my $ tmp_nodelist = join ',' , @ bpa_ctrled_nodes ;
return ( usage ( "Node(s) $tmp_nodelist is(are) controlled by BPA." ) ) ;
}
if ( scalar ( @ frame_members ) )
{
my @ all_nodes = xCAT::Utils:: get_unique_members ( @$ nodes , @ frame_members ) ;
$ request - > { node } = \ @ all_nodes ;
}
2009-08-04 20:28:03 +00:00
$ request - > { method } = 'rmhwconn' ;
2009-05-26 06:02:03 +00:00
return ( \ % opt ) ;
2009-05-20 09:04:19 +00:00
}
##########################################################################
# Create connection for CECs/BPAs
##########################################################################
2009-08-04 20:28:03 +00:00
sub mkhwconn
2009-05-20 09:04:19 +00:00
{
my $ request = shift ;
my $ hash = shift ;
my $ exp = shift ;
my $ hwtype = @$ exp [ 2 ] ;
my $ opt = $ request - > { opt } ;
my @ value = ( ) ;
my $ Rc = undef ;
for my $ cec_bpa ( keys %$ hash )
{
my $ node_hash = $ hash - > { $ cec_bpa } ;
2009-07-31 21:11:48 +00:00
for my $ node_name ( keys %$ node_hash )
2009-05-20 09:04:19 +00:00
{
2009-07-31 21:11:48 +00:00
my $ d = $ node_hash - > { $ node_name } ;
############################
# Get IP address
############################
2010-03-16 12:35:25 +00:00
my $ node_ip = xCAT::Utils:: getNodeIPaddress ( $ node_name ) ;
2009-07-31 21:11:48 +00:00
if ( ! $ node_ip )
{
2010-03-16 12:35:25 +00:00
push @ value , [ $ node_name , "Cannot get IP address. Please check table 'hosts' or name resolution" , 1 ] ;
2009-12-28 08:10:42 +00:00
next ;
2009-05-20 09:04:19 +00:00
}
2009-12-28 08:10:42 +00:00
my ( undef , undef , $ mtms , undef , $ type ) = @$ d ;
2009-07-31 21:11:48 +00:00
my ( $ user , $ passwd ) ;
if ( exists $ opt - > { P } )
{
2009-09-11 10:54:39 +00:00
( $ user , $ passwd ) = ( 'HMC' , $ opt - > { P } ) ;
2009-07-31 21:11:48 +00:00
}
else
{
2009-09-11 10:54:39 +00:00
( $ user , $ passwd ) = xCAT::PPCdb:: credentials ( $ node_name , $ type , 'HMC' ) ;
if ( ! $ passwd )
{
push @ value , [ $ node_name , "Cannot get password of userid 'HMC'. Please check table 'passwd' or 'ppcdirect'." , 1 ] ;
next ;
}
2009-07-31 21:11:48 +00:00
}
2009-05-20 09:04:19 +00:00
2009-07-31 21:11:48 +00:00
my $ res = xCAT::PPCcli:: mksysconn ( $ exp , $ node_ip , $ type , $ passwd ) ;
$ Rc = shift @$ res ;
push @ value , [ $ node_name , @$ res [ 0 ] , $ Rc ] ;
if ( ! $ Rc )
{
sethmcmgt ( $ node_name , $ exp - > [ 3 ] ) ;
}
2009-12-28 08:10:42 +00:00
# if ( exists $opt->{N} )
# {
# my $newpwd = $opt->{N};
# my $Res = xCAT::PPCcli::chsyspwd( $exp, "access", $type, $mtms, $passwd, $newpwd );
# $Rc = shift @$Res;
# push @value, [$node_name, @$Res[0], $Rc];
# }
2009-07-31 19:45:28 +00:00
}
2009-05-20 09:04:19 +00:00
}
return \ @ value ;
}
2009-05-26 06:02:03 +00:00
##########################################################################
# List connection status for CECs/BPAs
##########################################################################
2009-08-04 20:28:03 +00:00
sub lshwconn
2009-05-20 09:04:19 +00:00
{
2009-05-26 06:02:03 +00:00
my $ request = shift ;
my $ hash = shift ;
my $ exp = shift ;
my $ hwtype = @$ exp [ 2 ] ;
my $ opt = $ request - > { opt } ;
my @ value = ( ) ;
my $ Rc = undef ;
2009-12-28 08:10:42 +00:00
2009-07-31 21:11:48 +00:00
my $ hosttab = xCAT::Table - > new ( 'hosts' ) ;
2009-12-28 08:10:42 +00:00
my $ res = xCAT::PPCcli:: lssysconn ( $ exp , "all" ) ;
2009-05-26 06:02:03 +00:00
$ Rc = shift @$ res ;
2009-07-20 18:46:13 +00:00
if ( $ request - > { nodetype } eq 'hmc' )
2009-05-20 09:04:19 +00:00
{
2009-07-20 18:46:13 +00:00
if ( $ Rc )
2009-05-20 09:04:19 +00:00
{
2009-07-20 18:46:13 +00:00
push @ value , [ $ exp - > [ 3 ] , $ res - > [ 0 ] , $ Rc ] ;
return \ @ value ;
2009-05-20 09:04:19 +00:00
}
2009-07-20 18:46:13 +00:00
my $ vpdtab = xCAT::Table - > new ( 'vpd' ) ;
my @ vpdentries = $ vpdtab - > getAllAttribs ( qw( node serial mtm ) ) ;
my % node_vpd_hash ;
for my $ vpdent ( @ vpdentries )
2009-05-20 09:04:19 +00:00
{
2009-07-20 18:46:13 +00:00
if ( $ vpdent - > { node } and $ vpdent - > { serial } and $ vpdent - > { mtm } )
{
$ node_vpd_hash { "$vpdent->{mtm}*$vpdent->{serial}" } = $ vpdent - > { node } ;
}
2009-05-26 06:02:03 +00:00
}
2009-10-15 07:49:19 +00:00
my % node_ppc_hash ;
my $ ppctab = xCAT::Table - > new ( 'ppc' ) ;
for my $ node ( values % node_vpd_hash )
{
my $ node_parent_hash = $ ppctab - > getNodeAttribs ( $ node , [ qw( parent ) ] ) ;
$ node_ppc_hash { $ node } = $ node_parent_hash - > { parent } ;
}
2009-07-20 18:46:13 +00:00
for my $ r ( @$ res )
2009-05-26 06:02:03 +00:00
{
2009-07-20 18:46:13 +00:00
$ r =~ s/type_model_serial_num=([^,]*),// ;
my $ mtms = $ 1 ;
$ r =~ s/resource_type=([^,]*),// ;
$ r =~ s/sp=.*?,// ;
$ r =~ s/sp_phys_loc=.*?,// ;
my $ node_name ;
if ( exists $ node_vpd_hash { $ mtms } )
{
$ node_name = $ node_vpd_hash { $ mtms } ;
2009-10-15 07:49:19 +00:00
$ r = "hcp=$exp->[3],parent=$node_ppc_hash{$node_name}," . $ r ;
2009-07-20 18:46:13 +00:00
}
else
2009-05-20 09:04:19 +00:00
{
2009-07-20 18:46:13 +00:00
$ node_name = $ mtms ;
2009-10-15 07:49:19 +00:00
$ r = "hcp=$exp->[3],parent=," . $ r ;
2009-05-20 09:04:19 +00:00
}
2009-07-20 18:46:13 +00:00
push @ value , [ $ node_name , $ r , $ Rc ] ;
2009-05-20 09:04:19 +00:00
}
2009-07-20 18:46:13 +00:00
}
else
{
for my $ cec_bpa ( keys %$ hash )
2009-05-26 06:02:03 +00:00
{
2009-07-20 18:46:13 +00:00
my $ node_hash = $ hash - > { $ cec_bpa } ;
2009-07-31 21:11:48 +00:00
for my $ node_name ( keys %$ node_hash )
2009-07-20 18:46:13 +00:00
{
2009-07-31 21:11:48 +00:00
############################################
# If lssysconn failed, put error into all
# nodes' return values
############################################
if ( $ Rc )
{
push @ value , [ $ node_name , @$ res [ 0 ] , $ Rc ] ;
next ;
}
2009-07-20 18:46:13 +00:00
2009-07-31 21:11:48 +00:00
############################
# Get IP address
############################
my $ node_ip = undef ;
if ( $ hosttab )
2009-07-20 18:46:13 +00:00
{
2009-07-31 21:11:48 +00:00
my $ node_ip_hash = $ hosttab - > getNodeAttribs ( $ node_name , [ qw( ip ) ] ) ;
$ node_ip = $ node_ip_hash - > { ip } ;
}
if ( ! $ node_ip )
{
2009-12-28 08:10:42 +00:00
push @ value , [ $ node_name , $ node_ip , $ Rc ] ;
next ;
2009-07-31 21:11:48 +00:00
}
if ( my @ res_matched = grep /\Qipaddr=$node_ip,\E/ , @$ res )
{
for my $ r ( @ res_matched )
{
$ r =~ s/\Qtype_model_serial_num=$cec_bpa,\E// ;
# $r =~ s/\Qresource_type=$type,\E//;
$ r =~ s/sp=.*?,// ;
$ r =~ s/sp_phys_loc=.*?,// ;
push @ value , [ $ node_name , $ r , $ Rc ] ;
}
}
else
{
push @ value , [ $ node_name , 'Connection not found' , 1 ] ;
2009-07-20 18:46:13 +00:00
}
}
2009-05-26 06:02:03 +00:00
}
2009-05-20 09:04:19 +00:00
}
2009-05-26 06:02:03 +00:00
return \ @ value ;
}
##########################################################################
# Remove connection for CECs/BPAs to HMCs
##########################################################################
2009-08-04 20:28:03 +00:00
sub rmhwconn
2009-05-26 06:02:03 +00:00
{
my $ request = shift ;
my $ hash = shift ;
my $ exp = shift ;
my $ hwtype = @$ exp [ 2 ] ;
my $ opt = $ request - > { opt } ;
my @ value = ( ) ;
my $ Rc = undef ;
for my $ cec_bpa ( keys %$ hash )
{
my $ node_hash = $ hash - > { $ cec_bpa } ;
2009-07-31 21:11:48 +00:00
for my $ node_name ( keys %$ node_hash )
{
my $ d = $ node_hash - > { $ node_name } ;
2009-05-26 06:02:03 +00:00
2009-07-31 21:11:48 +00:00
my ( undef , undef , undef , undef , $ type ) = @$ d ;
2009-05-26 06:02:03 +00:00
2009-07-31 21:11:48 +00:00
############################
# Get IP address
############################
my $ hosttab = xCAT::Table - > new ( 'hosts' ) ;
my $ node_ip = undef ;
if ( $ hosttab )
{
my $ node_ip_hash = $ hosttab - > getNodeAttribs ( $ node_name , [ qw( ip ) ] ) ;
$ node_ip = $ node_ip_hash - > { ip } ;
}
if ( ! $ node_ip )
{
2009-12-28 08:10:42 +00:00
push @ value , [ $ node_name , $ node_ip , $ Rc ] ;
next ;
2009-07-31 21:11:48 +00:00
}
my $ res = xCAT::PPCcli:: rmsysconn ( $ exp , $ type , $ node_ip ) ;
$ Rc = shift @$ res ;
push @ value , [ $ node_name , @$ res [ 0 ] , $ Rc ] ;
if ( ! $ Rc )
{
rmhmcmgt ( $ node_name , $ type ) ;
}
2009-07-31 19:45:28 +00:00
}
2009-05-26 06:02:03 +00:00
}
return \ @ value ;
2009-05-20 09:04:19 +00:00
}
2009-07-31 19:45:28 +00:00
#################################################################
# set node mgt to hmc, and hcp to the hmc node name
#################################################################
sub sethmcmgt
{
my $ node = shift ;
my $ hcp = shift ;
my $ nodehm_tab = xCAT::Table - > new ( 'nodehm' , - create = > 1 ) ;
my $ ent = $ nodehm_tab - > getNodeAttribs ( $ node , [ 'mgt' ] ) ;
if ( ! $ ent or $ ent - > { mgt } ne 'hmc' )
{
$ nodehm_tab - > setNodeAttribs ( $ node , { mgt = > 'hmc' } ) ;
}
my $ ppc_tab = xCAT::Table - > new ( 'ppc' , - create = > 1 ) ;
my $ ent = $ ppc_tab - > getNodeAttribs ( $ node , [ 'hcp' ] ) ;
if ( ! $ ent or $ ent - > { hcp } ne $ hcp )
{
$ ppc_tab - > setNodeAttribs ( $ node , { hcp = > $ hcp } ) ;
}
}
#################################################################
# set node as the standalone fsp/bpa node
#################################################################
sub rmhmcmgt
{
my $ node = shift ;
my $ hwtype = shift ;
my $ nodehm_tab = xCAT::Table - > new ( 'nodehm' , - create = > 1 ) ;
my $ ent = $ nodehm_tab - > getNodeAttribs ( $ node , [ 'mgt' ] ) ;
if ( ! $ ent or $ ent - > { mgt } ne $ hwtype )
{
$ nodehm_tab - > setNodeAttribs ( $ node , { mgt = > $ hwtype } ) ;
}
my $ ppc_tab = xCAT::Table - > new ( 'ppc' , - create = > 1 ) ;
my $ ent = $ ppc_tab - > getNodeAttribs ( $ node , [ 'hcp' ] ) ;
if ( ! $ ent or $ ent - > { hcp } ne $ node )
{
$ ppc_tab - > setNodeAttribs ( $ node , { hcp = > $ node } ) ;
}
}
2009-05-20 09:04:19 +00:00
1 ;