2012-03-28 21:06:04 +00:00
|
|
|
package xCAT_plugin::slpdiscover;
|
|
|
|
use strict;
|
|
|
|
use xCAT::SvrUtils qw/sendmsg/;
|
|
|
|
use xCAT::SLP;
|
|
|
|
use xCAT::MacMap;
|
2012-04-04 14:35:13 +00:00
|
|
|
my $defaultbladeuser;
|
|
|
|
my $defaultbladepass;
|
|
|
|
my $mpahash;
|
2012-03-28 21:06:04 +00:00
|
|
|
|
|
|
|
sub handled_commands {
|
|
|
|
return {
|
|
|
|
slpdiscover => "slpdiscover",
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
my $callback;
|
|
|
|
my $docmd;
|
|
|
|
my %ip4neigh;
|
|
|
|
my %ip6neigh;
|
2012-05-18 21:01:39 +00:00
|
|
|
my %flexchassismap;
|
|
|
|
my %flexchassisuuid;
|
|
|
|
my %nodebymp;
|
|
|
|
my %passwordmap;
|
|
|
|
my %chassisbyuuid;
|
2012-03-28 21:06:04 +00:00
|
|
|
my %searchmacs;
|
|
|
|
my %researchmacs;
|
|
|
|
my $macmap;
|
|
|
|
sub get_mac_for_addr {
|
|
|
|
my $neigh;
|
|
|
|
my $addr = shift;
|
|
|
|
if ($addr =~ /:/) {
|
|
|
|
get_ipv6_neighbors();
|
|
|
|
return $ip6neigh{$addr};
|
|
|
|
} else {
|
|
|
|
get_ipv4_neighbors();
|
|
|
|
return $ip4neigh{$addr};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sub get_ipv4_neighbors {
|
|
|
|
#TODO: something less 'hacky'
|
|
|
|
my @ipdata = `ip -4 neigh`;
|
|
|
|
%ip6neigh=();
|
|
|
|
foreach (@ipdata) {
|
|
|
|
if (/^(\S*)\s.*lladdr\s*(\S*)\s/) {
|
|
|
|
$ip4neigh{$1}=$2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sub get_ipv6_neighbors {
|
|
|
|
#TODO: something less 'hacky'
|
|
|
|
my @ipdata = `ip -6 neigh`;
|
|
|
|
%ip6neigh=();
|
|
|
|
foreach (@ipdata) {
|
|
|
|
if (/^(\S*)\s.*lladdr\s*(\S*)\s/) {
|
|
|
|
$ip6neigh{$1}=$2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sub handle_new_slp_entity {
|
|
|
|
my $data = shift;
|
|
|
|
delete $data->{sockaddr}; #won't need it
|
2012-05-18 21:01:39 +00:00
|
|
|
if ($data->{SrvType} eq "service:management-hardware.IBM:integrated-management-module2" and $data->{attributes}->{enclosure-form-factor}->[0] eq "BC2") {
|
|
|
|
#this is a Flex ITE, don't go mac searching for it, but remember the chassis UUID for later
|
|
|
|
push @{$flexchassismap{$data->{attributes}->{chassis-uuid}->[0]}},$data;
|
|
|
|
return;
|
|
|
|
}
|
2012-03-28 21:06:04 +00:00
|
|
|
my $mac = get_mac_for_addr($data->{peername});
|
|
|
|
unless ($mac) { return; }
|
|
|
|
$searchmacs{$mac} = $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub process_request {
|
|
|
|
my $request = shift;
|
|
|
|
$callback = shift;
|
|
|
|
$docmd = shift;
|
|
|
|
%searchmacs=();
|
2012-05-18 21:01:39 +00:00
|
|
|
my $srvtypes = [ qw/service:management-hardware.IBM:chassis-management-module service:management-hardware.IBM:management-module service:management-hardware.IBM:integrated-management-module2/ ];
|
2012-03-28 21:06:04 +00:00
|
|
|
xCAT::SLP::dodiscover(SrvTypes=>$srvtypes,Callback=>\&handle_new_slp_entity);
|
|
|
|
$macmap = xCAT::MacMap->new();
|
|
|
|
$macmap->refresh_table();
|
|
|
|
my @toconfig;
|
|
|
|
foreach my $mac (keys(%searchmacs)) {
|
|
|
|
my $node = $macmap->find_mac($mac,1);
|
|
|
|
unless ($node) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
my $data = $searchmacs{$mac};
|
|
|
|
$data->{nodename}=$node;
|
2012-04-04 14:35:13 +00:00
|
|
|
$data->{macaddress}=$mac;
|
2012-05-18 21:01:39 +00:00
|
|
|
$chassisbyuuid{$data->{attributes}->{enclosure-uuid}->[0]}=$node;
|
2012-03-28 21:06:04 +00:00
|
|
|
push @toconfig,$data;
|
|
|
|
}
|
2012-04-04 14:35:13 +00:00
|
|
|
my $mpatab=xCAT::Table->new("mpa",-create=>0);
|
|
|
|
my @mpaentries;
|
|
|
|
$mpahash={};
|
|
|
|
if ($mpatab) {
|
|
|
|
@mpaentries = $mpatab->getAllNodeAttribs([qw/mpa username password/]);
|
|
|
|
foreach (@mpaentries) {
|
|
|
|
$mpahash->{$_->{mpa}}=$_;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
my $passwdtab=xCAT::Table->new("passwd",-create=>0);
|
|
|
|
$defaultbladeuser="USERID";
|
|
|
|
$defaultbladepass="";
|
|
|
|
if ($passwdtab) {
|
|
|
|
my @ents = $passwdtab->getAttribs({key=>'blade'},'username','password');
|
|
|
|
foreach (@ents) {
|
|
|
|
if ($_->{username} eq "HMC") { next; }
|
|
|
|
if ($_->{username}) { $defaultbladeuser=$_->{username}; }
|
|
|
|
if ($_->{password}) { $defaultbladepass=$_->{password}; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
my $mactab = xCAT::Table->new("mac");
|
|
|
|
my %machash;
|
2012-04-05 17:06:39 +00:00
|
|
|
my %macuphash;
|
|
|
|
my @maclist = $mactab->getAllNodeAttribs([qw/node mac/]);
|
2012-04-04 14:35:13 +00:00
|
|
|
foreach (@maclist) {
|
|
|
|
$machash{$_->{node}}=$_->{mac};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-05-18 21:01:39 +00:00
|
|
|
my $mptab = xCAT::Table->new('mp');
|
|
|
|
if ($mptab) {
|
|
|
|
my @mpents = $mptab->getAllNodeAttribs(['node','mp','id']);
|
|
|
|
foreach (@mpents) {
|
|
|
|
$nodebymp{$_->{mp}}->{$_->{id}}=$_->{node};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-28 21:06:04 +00:00
|
|
|
foreach my $data (@toconfig) {
|
2012-04-04 14:35:13 +00:00
|
|
|
my $mac = $data->{macaddress};
|
|
|
|
my $nodename = $data->{nodename};
|
|
|
|
my $addr = $data->{peername}; #todo, use sockaddr and remove the 427 port from it instead?
|
|
|
|
if ($addr =~ /^fe80/) { #Link local address requires scope index
|
|
|
|
$addr .= "%".$data->{scopeid};
|
|
|
|
}
|
2012-05-16 20:18:49 +00:00
|
|
|
if ($machash{$nodename} =~ /$mac/i) { #ignore prospects already known to mac table
|
2012-04-04 14:35:13 +00:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
sendmsg(":Found ".$nodename." which seems to be ".$data->{SrvType}." at address $addr",$callback);
|
|
|
|
if ($data->{SrvType} eq "service:management-hardware.IBM:chassis-management-module") {
|
|
|
|
unless (do_blade_setup($data,curraddr=>$addr)) {
|
|
|
|
next;
|
|
|
|
}
|
2012-05-18 21:01:39 +00:00
|
|
|
$flexchassisuuid{$nodename}=$data->{attributes}->{enclosure-uuid}->[0];
|
|
|
|
configure_hosted_elements($nodename);
|
|
|
|
unless (do_blade_setup($data,curraddr=>$addr,pass2=>1)) {
|
|
|
|
next;
|
|
|
|
}
|
2012-05-16 20:56:12 +00:00
|
|
|
sendmsg(":Configuration of ".$nodename." complete, configuration may take a few minutes to take effect",$callback);
|
2012-04-05 17:06:39 +00:00
|
|
|
$macuphash{$nodename} = { mac => $mac };
|
2012-04-04 14:35:13 +00:00
|
|
|
}
|
2012-03-28 21:06:04 +00:00
|
|
|
}
|
2012-04-10 12:34:04 +00:00
|
|
|
$mactab->setNodesAttribs(\%macuphash);
|
2012-03-28 21:06:04 +00:00
|
|
|
}
|
|
|
|
|
2012-05-18 21:01:39 +00:00
|
|
|
sub configure_hosted_elements {
|
|
|
|
my $cmm = shift;
|
|
|
|
my $uuid=$flexchassisuuid{$cmm};
|
|
|
|
my $node;
|
|
|
|
my $immdata;
|
|
|
|
my $ipmitab;
|
|
|
|
$ipmitab->getNodesAttribs();
|
|
|
|
my $slot;
|
|
|
|
foreach $immdata (@{$flexchassismap{$uuid}}) {
|
|
|
|
$slot=$immdata->{attributes}->{slot}->[0];
|
|
|
|
if ($node = $nodebymp{$cmm}->{$slot}) {
|
|
|
|
xCAT::IMM::SetupIMM($node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-04 14:35:13 +00:00
|
|
|
sub do_blade_setup {
|
|
|
|
my $data = shift;
|
|
|
|
my %args = @_;
|
|
|
|
my $addr = $args{curraddr};
|
|
|
|
my $nodename = $data->{nodename};
|
|
|
|
my $localuser=$defaultbladeuser;
|
|
|
|
my $localpass=$defaultbladepass;
|
|
|
|
if ($mpahash->{$nodename}) {
|
|
|
|
if ($mpahash->{$nodename}->{username}) {
|
|
|
|
$localuser = $mpahash->{$nodename}->[0]->{username};
|
|
|
|
}
|
|
|
|
if ($mpahash->{$nodename}->{password}) {
|
|
|
|
$localuser = $mpahash->{$nodename}->[0]->{password};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (not $localpass or $localpass eq "PASSW0RD") {
|
|
|
|
sendmsg([1,":Password for blade must be specified in either mpa or passwd tables, and it must not be PASSW0RD"],$callback,$nodename);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
require xCAT_plugin::blade;
|
2012-05-18 21:01:39 +00:00
|
|
|
my @cmds;
|
|
|
|
my %exargs;
|
|
|
|
if ($args{pass2}) {
|
|
|
|
@cmds = qw/initnetwork=*/;
|
|
|
|
%exargs = ( nokeycheck=>1 ); #still not at the 'right' ip, so the known hosts shouldn't be bothered
|
|
|
|
} else {
|
|
|
|
@cmds = qw/snmpcfg=enable sshcfg=enable textid=*/; # initnetwork=*/; defer initnetwork until after chassis members have been configured
|
|
|
|
%exargs = ( defaultcfg=>1 );
|
|
|
|
}
|
2012-05-09 13:48:02 +00:00
|
|
|
my $result;
|
2012-05-18 21:01:39 +00:00
|
|
|
$passwordmap{$nodename}->{username}=$localuser;
|
|
|
|
$passwordmap{$nodename}->{password}=$localpass;
|
2012-05-09 13:48:02 +00:00
|
|
|
my $rc = eval { $result = xCAT_plugin::blade::clicmds(
|
2012-04-04 14:35:13 +00:00
|
|
|
$nodename,
|
|
|
|
$localuser,
|
|
|
|
$localpass,
|
|
|
|
$nodename,
|
|
|
|
0,
|
|
|
|
curraddr=>$addr,
|
2012-05-18 21:01:39 +00:00
|
|
|
%exargs,
|
2012-04-04 14:35:13 +00:00
|
|
|
cmds=>\@cmds );
|
2012-05-09 13:48:02 +00:00
|
|
|
1;
|
|
|
|
};
|
|
|
|
if (not $rc) {
|
|
|
|
sendmsg([1,"Failed to set up Management module due to $@"],$callback,$nodename);
|
|
|
|
}
|
2012-04-04 14:35:13 +00:00
|
|
|
if ($result) {
|
|
|
|
if ($result->[0]) {
|
|
|
|
sendmsg([$result->[0],$result->[2]],$callback,$nodename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-28 21:06:04 +00:00
|
|
|
1;
|