# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html package xCAT::PPCmac; use Socket; use strict; use Getopt::Long; use xCAT::PPCcli qw(SUCCESS EXPECT_ERROR RC_ERROR NR_ERROR); ########################################################################## # Parse the command line for options and operands ########################################################################## sub parse_args { my $request = shift; my %opt = (); my $cmd = $request->{command}; my $args = $request->{arg}; my $node = $request->{node}; my $vers = my @VERSION = qw( 2.1 ); ############################################# # Responds with usage statement ############################################# local *usage = sub { my $usage_string = xCAT::Usage->getUsage($cmd); return( [ $_[0], $usage_string] ); }; ############################################# # Process command-line arguments ############################################# if ( !defined( $args )) { $request->{method} = $cmd; return( \%opt ); } ############################################# # 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" ); if ( !GetOptions( \%opt,qw(h|help V|Verbose v|version C=s G=s S=s D d f))) { return( usage() ); } #################################### # Option -h for Help #################################### if ( exists( $opt{h} )) { return( usage() ); } #################################### # Option -v for version #################################### if ( exists( $opt{v} )) { return( \@VERSION ); } #################################### # Check for "-" with no option #################################### if ( grep(/^-$/, @ARGV )) { return(usage( "Missing option: -" )); } #################################### # Check for an extra argument #################################### if ( defined( $ARGV[0] )) { return(usage( "Invalid Argument: $ARGV[0]" )); } #################################### # Check argument for ping test #################################### if ( exists($opt{D}) ) { my @network; my $client_ip; my $gateway; my $server; my $server_ip; my %server_nethash; my %client_nethash = xCAT::DBobjUtils->getNetwkInfo( $node ); ##################################### # Network attributes undefined ##################################### if ( !%client_nethash ) { return( [RC_ERROR,"Cannot get network information for $node"] ); } if ( exists($opt{C}) ) { push @network, $_; } else { # get, check the node IP $client_ip = inet_ntoa(inet_aton(@$node[0])); chomp $client_ip; if ( $client_ip ) { $opt{C} = $client_ip; push @network, $client_ip; } } #################################### # Set server IP #################################### if ( exists($opt{S}) ) { push @network, $_; } else { $server = xCAT::Utils->get_ServiceNode( $node, "xcat", "MN" ); foreach my $key ( keys %$server ) { my $valid_ip = xCAT::Utils->validate_ip( $key ); if ( $valid_ip ) { ################################################### # Service node is returned as hostname, Convert # hostname to IP #################################### $server_ip = inet_ntoa(inet_aton($key)); chomp $server_ip; } else { #################################### # Service node is returned as an IP # set the IP as server #################################### $server_ip = $key; } if ( $server_ip ) { $opt{S} = $server_ip; push @network, $server_ip; } last; } } #################################################################### # Fulfill in the server network information for gateway resolving #################################################################### if ( exists($opt{S}) ) { $server = gethostbyaddr( inet_aton($opt{S}), AF_INET ); if ( $server ) { %server_nethash = xCAT::DBobjUtils->getNetwkInfo( [$server] ); } } if ( exists($opt{G}) ) { push @network, $_; } elsif ( $client_nethash{@$node[0]}{net} eq $server_nethash{$server}{net} ) { #################################### # Set gateway to service node if # service node and client node are # in the same net #################################### $gateway = $opt{S}; $opt{G} = $gateway; push @network, $gateway; } else { #################################### # Set gateway in networks table #################################### $gateway = $client_nethash{@$node[0]}{gateway}; if ( $gateway ) { $opt{G} = $gateway; push @network, $gateway; } } if ( @network ) { if ( scalar(@network) != 3 ) { return( usage() ); } my $result = xCAT::Utils->validate_ip( $opt{C}, $opt{G}, $opt{S} ); if ( @$result[0] ) { return(usage( @$result[1] )); } } } elsif ( exists($opt{S}) || exists($opt{G}) || exists($opt{C}) ) { return( [RC_ERROR,"Option '-D' is required for ping test\n"] ); } #################################### # Set method to invoke #################################### $request->{method} = $cmd; return( \%opt ); } ########################################################################## # Get LPAR MAC addresses ########################################################################## sub do_getmacs { my $request = shift; my $d = shift; my $exp = shift; my $name = shift; my $node = shift; my $opt = $request->{opt}; my $ssh = @$exp[0]; my $userid = @$exp[4]; my $pw = @$exp[5]; my $cmd; my $result; ####################################### # Disconnect Expect session ####################################### xCAT::PPCcli::disconnect( $exp ); ####################################### # Get node data ####################################### my $id = @$d[0]; my $pprofile = @$d[1]; my $fsp = @$d[2]; my $hcp = @$d[3]; ####################################### # Find Expect script ####################################### $cmd = ($::XCATROOT) ? "$::XCATROOT/sbin/" : "/opt/xcat/sbin/"; $cmd .= "lpar_netboot.expect"; ####################################### # Check command installed ####################################### if ( !-x $cmd ) { return( [RC_ERROR,"Command not installed: $cmd"] ); } ####################################### # Save user name and passwd of hcp to # environment variables. # lpar_netboot.expect depends on this ####################################### $ENV{HCP_USERID} = $userid; $ENV{HCP_PASSWD} = $pw; ####################################### # Turn on verbose and debugging ####################################### if ( exists($request->{verbose}) ) { $cmd.= " -v -x"; } ####################################### # Force LPAR shutdown ####################################### if ( exists( $opt->{f} )) { $cmd.= " -i"; } ####################################### # Network specified (-D ping test) ####################################### if ( exists( $opt->{S} )) { $cmd.= " -D -s auto -d auto -S $opt->{S} -G $opt->{G} -C $opt->{C}"; } ####################################### # Add command options ####################################### $cmd.= " -t ent -f -M -A -n \"$name\" \"$pprofile\" \"$fsp\" $id $hcp \"$node\""; ####################################### # Execute command ####################################### if ( !open( OUTPUT, "$cmd 2>&1 |")) { return( [RC_ERROR,"$cmd fork error: $!"] ); } ####################################### # Get command output ####################################### while ( ) { $result.=$_; } close OUTPUT; ####################################### # Get command exit code ####################################### my $Rc = SUCCESS; foreach ( split /\n/, $result ) { if ( /^lpar_netboot: / ) { $Rc = RC_ERROR; last; } } ###################################### # Split results into array ###################################### return( [$Rc, split( /\n/, $result)] ); } ########################################################################## # Get LPAR MAC addresses ########################################################################## sub getmacs { my $request = shift; my $d = shift; my $exp = shift; my $opt = $request->{opt}; my $hwtype = @$exp[2]; my $result; my $name; ######################################### # Get node data ######################################### my $lparid = @$d[0]; my $mtms = @$d[2]; my $type = @$d[4]; my $node = @$d[6]; ######################################### # Invalid target hardware ######################################### if ( $type ne "lpar" ) { return( [[$node,"Node must be LPAR",RC_ERROR]] ); } ######################################### # Get name known by HCP ######################################### my $filter = "name,lpar_id"; my $values = xCAT::PPCcli::lssyscfg( $exp, $type, $mtms, $filter ); my $Rc = shift(@$values); ######################################### # Return error ######################################### if ( $Rc != SUCCESS ) { return( [[$node,@$values[0],$Rc]] ); } ######################################### # Find LPARs by lpar_id ######################################### foreach ( @$values ) { if ( /^(.*),$lparid$/ ) { $name = $1; last; } } ######################################### # Node not found by lpar_id ######################################### if ( !defined( $name )) { return( [[$node,"Node not found, lparid=$lparid",RC_ERROR]] ); } ######################################### # Manually collect MAC addresses. ######################################### $result = do_getmacs( $request, $d, $exp, $name, $node ); $Rc = shift(@$result); ################################## # Form string from array results ################################## if ( exists($request->{verbose}) ) { if ( $Rc == SUCCESS ) { if ( !exists( $opt->{d} )) { writemac( $node, $result ); } } return( [[$node,join( '', @$result ),$Rc]] ); } ################################## # Return error ################################## if ( $Rc != SUCCESS ) { if ( @$result[0] =~ /lpar_netboot: (.*)/ ) { return( [[$node,$1,$Rc]] ); } return( [[$node,join( '', @$result ),$Rc]] ); } ##################################### # lpar_netboot returns: # # # Connecting to lpar4\n # # Connected\n # # Checking for power off.\n # # Power off complete.\n # # Power on lpar4 to Open Firmware.\n # # Power on complete.\n # # Getting adapter location codes.\n # # Type\t Location Code\t MAC Address\t Full Path Name\tPing Result\n # ent U9117.MMA.10F6F3D-V5-C3-T1 1e0e122a930d /vdevice/l-lan@30000003 # ##################################### my $data; foreach ( @$result ) { if ( /^#\s?Type/ ) { $data.= "\n$_\n"; } elsif ( /^ent\s+/ ) { $data.= format_mac( $_ ); } } ##################################### # Write first valid adapter MAC to database ##################################### if ( !exists( $opt->{d} )) { writemac( $node, $result ); } return( [[$node,$data,$Rc]] ); } ########################################################################## # Insert colons in MAC addresses for Linux only ########################################################################## sub format_mac { my $data = shift; if ( !xCAT::Utils->isAIX() ) { ##################################### # Get adapter mac ##################################### $data =~ /^(\S+\s+\S+\s+)(\S+)(\s+.*)$/; my $mac = $2; my $save = $mac; ################################# # Delineate MAC with colons ################################# $mac =~ s/(\w{2})/$1:/g; $mac =~ s/:$//; $data =~ s/$save/$mac/; } return( "$data\n" ); } ########################################################################## # Write first valid adapter MAC to database ########################################################################## sub writemac { my $name = shift; my $data = shift; my $value; my $pingret; my @fields; ##################################### # Find first valid adapter ##################################### foreach ( @$data ) { if ( /^ent\s+/ ) { $value = $_; ##################################### # MAC not found in output ##################################### if ( !defined( $value )) { return; } @fields = split /\s+/, $value; $pingret = $fields[4]; if ( $pingret eq "successful" ) { last; } } } ##################################### # If no valid adapter, find the first one ##################################### if ( $pingret ne "successful" ) { foreach ( @$data ) { if ( /^ent\s+/ ) { $value = $_; last; } } } ##################################### # MAC not found in output ##################################### if ( !defined( $value )) { return; } ##################################### # Get adapter mac ##################################### $value = format_mac( $value ); @fields = split /\s+/, $value; my $mac = $fields[2]; ##################################### # Write adapter mac to database ##################################### my $mactab = xCAT::Table->new( "mac", -create=>1, -autocommit=>1 ); if ( !$mactab ) { return( [[$name,"Error opening 'mac'",RC_ERROR]] ); } $mactab->setNodeAttribs( $name,{mac=>$mac} ); $mactab->close(); } 1;