2008-02-28 20:21:35 +00:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
BEGIN
|
|
|
|
{
|
|
|
|
$::XCATROOT = $ENV{'XCATROOT'} ? $ENV{'XCATROOT'} : '/opt/xcat';
|
|
|
|
}
|
|
|
|
use lib "$::XCATROOT/lib/perl";
|
|
|
|
use Sys::Syslog;
|
|
|
|
use xCAT::Table;
|
2010-02-03 21:18:16 +00:00
|
|
|
use xCAT::Utils;
|
2010-05-12 03:09:08 +00:00
|
|
|
use xCAT::NetworkUtils;
|
2008-03-01 22:08:04 +00:00
|
|
|
use xCAT_plugin::ipmi;
|
2008-03-07 13:24:23 +00:00
|
|
|
use xCAT_monitoring::monitorctrl;
|
2008-03-12 02:57:01 +00:00
|
|
|
use Socket;
|
2010-05-21 15:25:14 +00:00
|
|
|
use Data::Dumper;
|
2010-06-01 19:12:44 +00:00
|
|
|
#use strict;
|
2008-02-28 20:21:35 +00:00
|
|
|
|
2010-02-03 21:18:16 +00:00
|
|
|
|
2008-03-07 21:01:14 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
=head1 xcat_traphandler
|
|
|
|
=head2 Description
|
|
|
|
Script for SNMP trap handling.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
#-------------------------------------------------------------------------------
|
2008-02-28 20:21:35 +00:00
|
|
|
# admin needs to create a mail aliase called alerts
|
|
|
|
# put "alerts: emailadd,emailaddr.." to /etc/aliases file
|
|
|
|
# then run newaliases command
|
|
|
|
my $MAILTO="alerts";
|
|
|
|
|
2008-05-19 18:51:48 +00:00
|
|
|
my $message;
|
|
|
|
my $briefmsg;
|
2008-02-28 20:21:35 +00:00
|
|
|
my $node1;
|
|
|
|
my $info;
|
|
|
|
my $severity_type;
|
|
|
|
my $severity;
|
2010-02-03 21:18:16 +00:00
|
|
|
my $appname;
|
|
|
|
my $id;
|
|
|
|
my $message1;
|
|
|
|
my $errsrc;
|
2008-02-28 20:21:35 +00:00
|
|
|
|
2008-03-07 13:24:23 +00:00
|
|
|
#get settings
|
2010-06-01 19:12:44 +00:00
|
|
|
my $EMAIL=0;
|
|
|
|
my $LOG=0;
|
|
|
|
my $IGNORE=0;
|
|
|
|
my $DB=0;
|
|
|
|
my %hashI=();
|
|
|
|
my %hashE=();
|
|
|
|
my %hashL=();
|
|
|
|
my %hashR=();
|
|
|
|
my %hashD=();
|
|
|
|
my %hashRUN=();
|
2008-03-07 13:24:23 +00:00
|
|
|
my %settings=xCAT_monitoring::monitorctrl->getPluginSettings("snmpmon");
|
|
|
|
my $i=$settings{'ignore'};
|
|
|
|
if ($i) { %hashI =parseSettings($i); }
|
|
|
|
my $e=$settings{'email'};
|
|
|
|
if ($e) { %hashE=parseSettings($e); }
|
|
|
|
my $l=$settings{'log'};
|
|
|
|
if ($l) { %hashL=parseSettings($l); }
|
2010-02-03 21:18:16 +00:00
|
|
|
my $d=$settings{'db'};
|
|
|
|
if ($d) { %hashD=parseSettings($d); }
|
2008-03-07 13:24:23 +00:00
|
|
|
|
2010-06-01 19:12:44 +00:00
|
|
|
foreach my $k (keys %settings) {
|
|
|
|
if ($k =~ /runcmd(\d*)/) {
|
|
|
|
my $r=$settings{$k};
|
|
|
|
my %hashTemp=parseSettings($r);
|
|
|
|
$hashR{$k}=\%hashTemp;
|
|
|
|
$hashRUN{$k}=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-01 22:08:04 +00:00
|
|
|
# read host name
|
2008-02-29 16:51:03 +00:00
|
|
|
my $host=<STDIN>;
|
2008-02-28 20:21:35 +00:00
|
|
|
chomp($host);
|
2008-03-01 22:08:04 +00:00
|
|
|
|
|
|
|
# read the host ip
|
2008-02-28 20:21:35 +00:00
|
|
|
my $ip=<STDIN>;
|
|
|
|
chomp($ip);
|
|
|
|
|
2008-03-01 22:08:04 +00:00
|
|
|
# read uptime
|
|
|
|
my $uptimeline=<STDIN>;
|
|
|
|
chomp($uptimeline);
|
|
|
|
my @a=split(/ /, $uptimeline);
|
|
|
|
my $oid=shift @a;
|
|
|
|
my $value=join(' ', @a);
|
|
|
|
$message .= " $oid=$value\n";
|
|
|
|
|
|
|
|
# read trapid
|
|
|
|
my $trapidline=<STDIN>;
|
|
|
|
chomp($trapidline);
|
|
|
|
@a=split(/ /, $trapidline);
|
|
|
|
$oid=shift @a;
|
|
|
|
$value=join(' ', @a);
|
|
|
|
$message .= " $oid=$value\n";
|
2008-03-07 13:24:23 +00:00
|
|
|
checkWithOid($oid, $value);
|
2010-02-03 21:18:16 +00:00
|
|
|
#print "I=$IGNORE,E=$EMAIL, L=$LOG, R=$RUNCMD D=$DB\n";
|
2008-03-20 15:54:51 +00:00
|
|
|
if ($IGNORE) { exit 0;}
|
2008-03-01 22:08:04 +00:00
|
|
|
|
2008-05-19 19:33:06 +00:00
|
|
|
#for ipmi traps, the values is: SNMPv2-SMI::enterprises.3183.1.1.0.x or
|
|
|
|
# RFC1155-SMI::enterprises.3183.1.1.0.x, where x is the ipmi trap id.
|
|
|
|
my $trapid;
|
|
|
|
if ($value =~ /enterprises\.3183\.1\.1\.0\.(.*)/) { $trapid=$1; }
|
2008-03-01 22:08:04 +00:00
|
|
|
|
|
|
|
#print "trapid=$trapid\n";
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-02-29 03:20:20 +00:00
|
|
|
my $holder;
|
|
|
|
my $begin=1;
|
|
|
|
my $pair;
|
2010-06-01 19:12:44 +00:00
|
|
|
my $temp;
|
2008-02-29 03:20:20 +00:00
|
|
|
while ($temp=<STDIN>) {
|
|
|
|
chomp($temp);
|
|
|
|
my $temp1=$temp; #save the one with quotes
|
|
|
|
$temp1 =~ s/\"//g;
|
|
|
|
my $c1=length($temp);
|
|
|
|
my $c2=length($temp1);
|
|
|
|
|
|
|
|
|
|
|
|
if (($c1-$c2)%2 == 0) {
|
|
|
|
if ($begin==1) { # single line
|
|
|
|
$pair=$temp;
|
|
|
|
}
|
|
|
|
else { # middle multi-line
|
|
|
|
$pair .= " $temp";
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
} else { # multi line
|
|
|
|
if ($begin==1) {
|
|
|
|
$pair=$temp; #start of multi-line
|
|
|
|
$begin=0;
|
|
|
|
next;
|
|
|
|
} else {
|
|
|
|
$pair .= " $temp"; #end of multi-line
|
|
|
|
$begin=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-28 20:21:35 +00:00
|
|
|
@a=split(/ /, $pair);
|
|
|
|
$oid=shift @a;
|
|
|
|
$value=join(' ', @a);
|
2010-02-03 21:18:16 +00:00
|
|
|
$value =~ s/^"//;
|
|
|
|
$value =~ s/"$//;
|
2008-02-28 20:21:35 +00:00
|
|
|
|
2008-02-29 16:51:03 +00:00
|
|
|
#for BladeCenter MM traps and RSA II traps, creat a brief message
|
|
|
|
if ($oid =~ /BLADESPPALT-MIB::spTrapAppId|RSASPPALT-MIB::ibmSpTrapAppId/) {
|
2008-02-28 20:21:35 +00:00
|
|
|
$briefmsg .= " App ID: $value\n";
|
2010-02-03 21:18:16 +00:00
|
|
|
$appname=$value;
|
2008-02-28 20:21:35 +00:00
|
|
|
}
|
2008-02-29 16:51:03 +00:00
|
|
|
elsif ($oid =~ /BLADESPPALT-MIB::spTrapAppType|RSASPPALT-MIB::ibmSpTrapAppType/) {
|
|
|
|
$briefmsg .= " App Alert Type: $value\n";
|
2010-02-03 21:18:16 +00:00
|
|
|
$id=$value;
|
2008-02-28 20:21:35 +00:00
|
|
|
}
|
2008-02-29 16:51:03 +00:00
|
|
|
elsif ($oid =~ /BLADESPPALT-MIB::spTrapMsgText|RSASPPALT-MIB::ibmSpTrapMsgText/) {
|
2008-02-28 20:21:35 +00:00
|
|
|
$briefmsg .= " Message: $value\n";
|
2010-02-03 21:18:16 +00:00
|
|
|
$message1=$value;
|
2008-02-28 20:21:35 +00:00
|
|
|
}
|
|
|
|
elsif ($oid =~ /BLADESPPALT-MIB::spTrapBladeName/) {
|
|
|
|
my $temp="$value";
|
|
|
|
$temp =~ /^\"(.*)\"/;
|
|
|
|
if ($1) {
|
|
|
|
$briefmsg .= " Blade Name: $value\n";
|
|
|
|
$node1=$1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif (($oid =~ /BLADESPPALT-MIB::spTrapSourceId/)) {
|
2010-02-03 21:18:16 +00:00
|
|
|
$briefmsg .= " Error Source=$value\n";
|
|
|
|
$errsrc=$value;
|
2008-02-28 20:21:35 +00:00
|
|
|
}
|
2008-02-29 16:51:03 +00:00
|
|
|
elsif ($oid =~ /BLADESPPALT-MIB::spTrapPriority|RSASPPALT-MIB::ibmSpTrapPriority/) {
|
2008-02-28 20:21:35 +00:00
|
|
|
# Critical Alert(0), Major(1), Non-Critical Alert(2), System Alert(4),
|
|
|
|
# Recovery Alert(8), Informational Only Alert(255)
|
|
|
|
if ($value==0) {
|
|
|
|
$severity="Critical Alert";
|
|
|
|
$severity_type="Critical";
|
|
|
|
} elsif ($value==1) {
|
|
|
|
$severity="Major Alert";
|
|
|
|
$severity_type="Critical";
|
2008-03-07 21:01:14 +00:00
|
|
|
} elsif ($value==2) {
|
|
|
|
$severity="Non-Critical Alert";
|
|
|
|
$severity_type="Warning";
|
|
|
|
} elsif ($value==4) {
|
|
|
|
$severity="System Alert";
|
|
|
|
$severity_type="Warning";
|
|
|
|
} elsif ($value==8) {
|
|
|
|
$severity="Recovery Alert";
|
|
|
|
$severity_type="Informational";
|
2008-02-28 20:21:35 +00:00
|
|
|
} elsif ($value==255) {
|
|
|
|
$severity="Informational Alert";
|
|
|
|
$severity_type="Informational";
|
|
|
|
}
|
2008-02-29 03:20:20 +00:00
|
|
|
}
|
2008-03-01 22:08:04 +00:00
|
|
|
elsif ($oid =~ /enterprises\.3183\.1\.1\.1/) { #IPMI PRTs (traps)
|
|
|
|
$node1=$host;
|
2008-05-16 15:09:43 +00:00
|
|
|
#$node1 =~ s/(-(eth|man)\d+)?(\..*)?$//;
|
2008-03-01 22:08:04 +00:00
|
|
|
|
2010-06-01 19:12:44 +00:00
|
|
|
my $ip1=$ip;
|
2008-03-12 02:57:01 +00:00
|
|
|
$ip1 =~ /(\d+\.\d+\.\d+\.\d+)/;
|
|
|
|
$ip1=$1;
|
|
|
|
|
|
|
|
# get the host name if it is unknown
|
|
|
|
if ($node1 =~/<UNKNOWN>/) {
|
2010-06-01 19:12:44 +00:00
|
|
|
my $name = xCAT::NetworkUtils->gethostname($ip1);
|
2008-03-14 14:39:26 +00:00
|
|
|
if ($name) {
|
|
|
|
$node1=$name;
|
|
|
|
$host=$name;
|
2010-06-01 19:12:44 +00:00
|
|
|
my @shorthost = split(/\./, $node1);
|
2008-03-14 14:39:26 +00:00
|
|
|
$node1=$shorthost[0];
|
|
|
|
}
|
2008-03-12 02:57:01 +00:00
|
|
|
}
|
|
|
|
|
2008-05-16 15:09:43 +00:00
|
|
|
#print "node1=$node1\n";
|
2008-03-12 02:57:01 +00:00
|
|
|
#node1 is the bmc name, we need the node that bmc connects to to call xCAT
|
|
|
|
my $realnode;
|
|
|
|
my $ipmitab = xCAT::Table->new('ipmi');
|
|
|
|
if (defined($ipmitab)) {
|
2008-03-14 14:39:26 +00:00
|
|
|
my @tmp1=$ipmitab->getAllNodeAttribs(['node','bmc']);
|
2008-05-19 18:51:48 +00:00
|
|
|
if (@tmp1 && (@tmp1 > 0)) {
|
2008-03-14 14:39:26 +00:00
|
|
|
foreach(@tmp1) {
|
|
|
|
if ($_->{bmc} eq $node1) { $realnode=$_->{node}; last;}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$ipmitab->close();
|
2008-03-12 02:57:01 +00:00
|
|
|
}
|
|
|
|
if ($realnode) {$node1=$realnode;}
|
2008-05-16 15:09:43 +00:00
|
|
|
#print "node1=$node1\n";
|
|
|
|
|
2008-03-12 02:57:01 +00:00
|
|
|
|
|
|
|
# make the vlaue into a hex array for decoding
|
2008-03-01 22:08:04 +00:00
|
|
|
$value =~ s/\"//g;
|
2008-03-12 02:57:01 +00:00
|
|
|
my @varray=split(/\s+/, $value);
|
2008-05-16 15:09:43 +00:00
|
|
|
#print "varray=@varray\n";
|
2008-03-12 02:57:01 +00:00
|
|
|
foreach (@varray) { $_=hex($_); }
|
|
|
|
my $error = xCAT_plugin::ipmi->decodealert($trapid, $node1, @varray);
|
2008-03-01 22:08:04 +00:00
|
|
|
$briefmsg .= $error;
|
2009-10-14 17:11:38 +00:00
|
|
|
$message .= " decodedipmialert=$error\n";
|
2008-03-01 22:08:04 +00:00
|
|
|
|
|
|
|
#severity value from decodealert are:
|
|
|
|
#LOG,INFORMATION,OK,CRITICAL,NON-RECOVERABLE,MONITOR and UNKNOWN-SEVERITY
|
|
|
|
$severity_type="Warning";
|
|
|
|
if ($error) {
|
2010-06-01 19:12:44 +00:00
|
|
|
my @tempArray=split(/\:/, $error);
|
2008-03-01 22:08:04 +00:00
|
|
|
$severity=$tempArray[0];
|
2008-03-12 02:57:01 +00:00
|
|
|
if ($severity eq "LOG") {#in fact this is called "unspecifiled"
|
|
|
|
$severity_type="Warning";
|
2008-03-01 22:08:04 +00:00
|
|
|
}
|
|
|
|
elsif($severity eq "INFORMATION") {
|
|
|
|
$severity_type="Informational";
|
|
|
|
}
|
|
|
|
elsif($severity eq "OK") {
|
|
|
|
$severity_type="Informational";
|
|
|
|
}
|
|
|
|
elsif($severity eq "CRITICAL") {
|
|
|
|
$severity_type="Critical";
|
|
|
|
}
|
|
|
|
elsif($severity eq "NON-RECOVERABLE") {
|
|
|
|
$severity_type="Critical";
|
|
|
|
}
|
|
|
|
}
|
2008-03-07 13:24:23 +00:00
|
|
|
}
|
|
|
|
|
2010-02-03 21:18:16 +00:00
|
|
|
|
2008-03-07 13:24:23 +00:00
|
|
|
$message .= " $oid=$value\n";
|
2008-02-28 20:21:35 +00:00
|
|
|
|
2008-03-07 13:24:23 +00:00
|
|
|
#check agains the settings
|
2008-03-07 21:01:14 +00:00
|
|
|
$value =~ s/\"//g;
|
2008-03-07 13:24:23 +00:00
|
|
|
checkWithOid($oid, $value);
|
2010-02-03 21:18:16 +00:00
|
|
|
#print "I=$IGNORE,E=$EMAIL, L=$LOG, R=$RUNCMD, D=$DB\n";
|
2008-03-20 15:54:51 +00:00
|
|
|
if ($IGNORE) { exit 0;}
|
2008-02-28 20:21:35 +00:00
|
|
|
}
|
|
|
|
|
2008-03-07 13:24:23 +00:00
|
|
|
if (!$severity_type) { $severity_type="Warning"; }
|
2008-05-20 18:58:40 +00:00
|
|
|
if ((!$IGNORE) && exists($hashI{$severity_type})) {
|
|
|
|
#print "ignore, exit\n";
|
|
|
|
exit 0;
|
|
|
|
}
|
2008-03-07 13:24:23 +00:00
|
|
|
if ((!$EMAIL) && exists($hashE{$severity_type})) { $EMAIL=1; }
|
|
|
|
if ((!$LOG) && exists($hashL{$severity_type})) { $LOG=1; }
|
2010-02-03 21:18:16 +00:00
|
|
|
if ((!$DB) && exists($hashD{$severity_type})) { $DB=1; }
|
2010-06-01 19:12:44 +00:00
|
|
|
foreach my $k (keys %hashRUN) {
|
|
|
|
if (($hashRUN{$k} == 0) && exists($hashR{$k}->{$severity_type})) { $hashRUN{$k} = 1; }
|
|
|
|
}
|
2010-02-03 21:18:16 +00:00
|
|
|
#print "I=$IGNORE,E=$EMAIL, L=$LOG, R=$RUNCMD, D=$DB\n";
|
2008-03-07 13:24:23 +00:00
|
|
|
|
|
|
|
#email 'alerts' aliase
|
2008-03-20 15:54:51 +00:00
|
|
|
if ($EMAIL || ((keys(%hashE)==0) && ($severity_type =~/Critical|Warning/))) {
|
2008-03-07 21:01:14 +00:00
|
|
|
#($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=localtime(time);
|
|
|
|
#$datetime=sprintf "%2d-%02d-%04d %02d:%02d:%02d", $mon+1,$mday,$year+1900,$hour,$min,$sec;
|
|
|
|
#my $head="SNMP $severity received from $host($ip) on $datetime\n$briefmsg\n";
|
|
|
|
my $head="SNMP $severity received from $host($ip)\n$briefmsg\n";
|
2008-03-13 02:13:29 +00:00
|
|
|
if ($node1) { $info= getMoreInfo($node1);}
|
2008-05-19 18:51:48 +00:00
|
|
|
my $middle="Trap details:\n$message\n";
|
2008-03-07 13:24:23 +00:00
|
|
|
|
|
|
|
#email the full message to the alerts aliase
|
2008-05-19 18:51:48 +00:00
|
|
|
my $cmd="echo \'$info$head\n$middle\' \| mail -s \"$severity_type: Cluster SNMP Alert\!\" $MAILTO";
|
2009-01-22 00:34:04 +00:00
|
|
|
$ENV{'XCATCFG'}="";
|
2008-03-07 13:24:23 +00:00
|
|
|
`$cmd`;
|
|
|
|
}
|
2008-02-28 20:21:35 +00:00
|
|
|
|
2008-03-07 13:24:23 +00:00
|
|
|
#log to syslog if needed. default is log all
|
2009-01-22 00:34:04 +00:00
|
|
|
$ENV{'XCATCFG'}="";
|
2008-03-07 13:24:23 +00:00
|
|
|
if ($LOG || (keys(%hashL)==0)) {
|
2008-03-07 21:01:14 +00:00
|
|
|
my $head="SNMP $severity received from $host($ip).";
|
2008-03-07 13:24:23 +00:00
|
|
|
my $body;
|
|
|
|
if ($briefmsg) { $body=$briefmsg;}
|
|
|
|
else { $body=$message; }
|
|
|
|
|
|
|
|
openlog("xCATMon Event","","local4");
|
|
|
|
if ($severity_type eq "Informational") {
|
|
|
|
syslog("local4|info", "$head\n$body\n");
|
|
|
|
} else {
|
|
|
|
syslog("local4|err", "$head\n$body\n");
|
|
|
|
}
|
|
|
|
closelog();
|
|
|
|
}
|
2008-02-28 20:21:35 +00:00
|
|
|
|
2010-02-03 21:18:16 +00:00
|
|
|
#save to eventlog table in xCAT database
|
|
|
|
if ($DB) {
|
|
|
|
my $head="SNMP $severity received from $host($ip)\n$briefmsg\n";
|
|
|
|
if (($node1)&& (!$info)) { $info= getMoreInfo($node1);}
|
|
|
|
my $middle="Trap details:\n$message\n";
|
|
|
|
my $event={
|
|
|
|
eventtype => 'event',
|
|
|
|
monitor => 'snmpmon',
|
|
|
|
monnode => $host,
|
|
|
|
node => $node1? $node1:"",
|
|
|
|
application => $appname,
|
|
|
|
component => $errsrc ,
|
|
|
|
id =>$id,
|
|
|
|
severity => $severity_type,
|
|
|
|
message => $message1,
|
|
|
|
rawdata => "$info$head\n$middle",
|
|
|
|
};
|
|
|
|
my @a=();
|
|
|
|
push(@a, $event);
|
|
|
|
xCAT::Utils->logEventsToDatabase(\@a);
|
|
|
|
}
|
|
|
|
|
2008-03-07 13:24:23 +00:00
|
|
|
#run user defined commands if needed.
|
2010-06-01 19:12:44 +00:00
|
|
|
foreach my $k (keys %hashRUN) {
|
|
|
|
if ($hashRUN{$k} == 1) {
|
|
|
|
$k =~ /runcmd(\d*)/;
|
|
|
|
my $scripts=$settings{"cmds$1"};
|
|
|
|
while ($scripts =~ s/^([^,]+)(,)*//) {
|
|
|
|
my $cmd="echo \'host=$host\nip=$ip\n$message\n\' \| $1";
|
|
|
|
`$cmd`;
|
|
|
|
}
|
|
|
|
}
|
2008-03-07 13:24:23 +00:00
|
|
|
}
|
2008-02-28 20:21:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
=head3 getMoreInfo
|
|
|
|
This function returns the node module/type, serial number, position etc.
|
|
|
|
Arguments:
|
|
|
|
node-- name of the node.
|
|
|
|
Returns:
|
|
|
|
A string with node info ready to display.
|
|
|
|
=cut
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
sub getMoreInfo {
|
|
|
|
my $node=shift;
|
2008-05-19 18:51:48 +00:00
|
|
|
my $pos;
|
|
|
|
my $vpd;
|
2008-02-28 20:21:35 +00:00
|
|
|
|
2008-05-19 18:51:48 +00:00
|
|
|
# get module name and serial number from the xCAT DB.
|
|
|
|
my $ref;
|
2008-02-28 20:21:35 +00:00
|
|
|
my $table=xCAT::Table->new("vpd", -create =>1);
|
|
|
|
if ($table) {
|
2008-03-14 14:39:26 +00:00
|
|
|
my $ref = $table->getNodeAttribs($node, ['serial', 'mtm']);
|
2008-02-28 20:21:35 +00:00
|
|
|
if ($ref) {
|
2008-05-19 18:51:48 +00:00
|
|
|
$vpd .= " Type/Mudule: ";
|
|
|
|
if ($ref->{mtm}) { $vpd .= $ref->{mtm};}
|
|
|
|
$vpd .= "\n";
|
|
|
|
$vpd .= " Serial Number: ";
|
|
|
|
if ($ref->{serial}) { $vpd .= $ref->{serial};}
|
|
|
|
$vpd .= "\n";
|
2008-02-28 20:21:35 +00:00
|
|
|
}
|
|
|
|
$table->close();
|
|
|
|
}
|
|
|
|
|
|
|
|
# get the info from rinv command if nothing in the vpd table
|
|
|
|
if (!$vpd) {
|
2010-02-03 21:18:16 +00:00
|
|
|
my $result=`XCATBYPASS=Y $::XCATROOT/bin/rinv $node all 2>&1 | egrep -i '(model|serial)' | grep -v Univ`;
|
2008-03-13 02:13:29 +00:00
|
|
|
if ($? == 0) {#success
|
2008-02-28 20:21:35 +00:00
|
|
|
chomp($result);
|
|
|
|
my @b=split(/\n/, $result);
|
|
|
|
foreach (@b) {
|
|
|
|
s/^(.*)\:(.*)\:(.*)$/$2: $3/;
|
|
|
|
$vpd .= " $_\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-05-19 18:51:48 +00:00
|
|
|
if (!$vpd) {
|
|
|
|
$vpd .= " Type/Mudule: \n";
|
|
|
|
$vpd .= " Serial Number: \n";
|
|
|
|
}
|
2008-02-28 20:21:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
#get the position
|
|
|
|
my $table1=xCAT::Table->new("nodepos", -create =>1);
|
|
|
|
if ($table1) {
|
2008-08-04 15:55:40 +00:00
|
|
|
my $ref1 = $table1->getNodeAttribs($node, ['rack', 'u', 'chassis', 'slot', 'room', 'comments']);
|
|
|
|
if (($ref1) && ($ref1->{room})) { $pos .= " Room: " . $ref1->{room}. "\n"; }
|
|
|
|
if(($ref1) && ($ref1->{rack})) { $pos .= " Rack: ". $ref1->{rack}. "\n";}
|
|
|
|
if(($ref1) && ($ref1->{u})) { $pos .= " Unit: " . $ref1->{u} . "\n"; }
|
|
|
|
if(($ref1) && ($ref1->{chassis})) { $pos .= " Chassis: " . $ref1->{chassis} . "\n";}
|
|
|
|
if(($ref1) && ($ref1->{slot})) { $pos .= " Slot: " . $ref1->{slot} . "\n";}
|
|
|
|
if(($ref1) && ($ref1->{comments})) { $pos .= " Comments: " . $ref1->{comments} . "\n";}
|
|
|
|
|
2008-05-19 18:51:48 +00:00
|
|
|
$pos .= "\n";
|
|
|
|
|
2008-02-28 20:21:35 +00:00
|
|
|
$table1->close();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (($pos) || ($vpd)) {
|
2008-05-19 18:51:48 +00:00
|
|
|
return " Node: $node\n$vpd$pos\n";
|
2008-02-28 20:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-07 13:24:23 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
=head3 parseSettings
|
|
|
|
This function takes a setting string which looks like "key1=value1,key2=value2..."
|
|
|
|
and returns a hash (key1=>value1, key2=>value2...).
|
|
|
|
Arguments:
|
|
|
|
setting the setting string.
|
|
|
|
Returns:
|
|
|
|
A hash.
|
|
|
|
=cut
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
sub parseSettings {
|
|
|
|
my $settings=shift;
|
|
|
|
my %ret=();
|
2010-05-21 15:25:14 +00:00
|
|
|
while (($settings =~ s/^(Informational|Warning|Critical|All|None)()()(,)*//) ||
|
|
|
|
($settings =~ s/^([^\=]+)(=~)(\"[^\"]+\")(,)*//) ||
|
|
|
|
($settings =~ s/^([^\=]+)(=~)([^\"\,]+)(,)*//) ||
|
|
|
|
($settings =~ s/^([^\=]+)(=)(\"[^\"]+\")(,)*//) ||
|
|
|
|
($settings =~ s/^([^\=]+)(=)([^\"\,]+)(,)*//)) {
|
|
|
|
my $val='eq';
|
|
|
|
if ($2 eq "=~") { $val='=~';}
|
|
|
|
if (exists($ret{$1}{$val})) {
|
|
|
|
my $pa=$ret{$1}{$val};
|
|
|
|
push(@$pa, $3);
|
2008-05-19 18:51:48 +00:00
|
|
|
}
|
|
|
|
else {
|
2010-05-21 15:25:14 +00:00
|
|
|
$ret{$1}{$val}=[$3];
|
2008-05-19 18:51:48 +00:00
|
|
|
}
|
2008-03-07 13:24:23 +00:00
|
|
|
}
|
2010-05-21 15:25:14 +00:00
|
|
|
|
|
|
|
#print Dumper(%ret);
|
2008-03-07 13:24:23 +00:00
|
|
|
return %ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
=head3 checkWithOid
|
|
|
|
This function checks the input strings with the setting to see what
|
|
|
|
actions need to be done for this event.
|
|
|
|
Arguments:
|
|
|
|
oid the oid string
|
|
|
|
value the value string
|
|
|
|
Returns:
|
|
|
|
none. The variables $EMAIL, $LOG, $IGNORE and $RUNCMD may be changed.
|
|
|
|
=cut
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
sub checkWithOid {
|
2010-06-01 19:12:44 +00:00
|
|
|
my $o=shift;
|
|
|
|
my $v=shift;
|
2008-03-07 13:24:23 +00:00
|
|
|
|
|
|
|
sub checking {
|
|
|
|
my $hashX=shift;
|
2010-06-01 19:12:44 +00:00
|
|
|
my $o=shift;
|
|
|
|
my $v=shift;
|
2008-03-07 13:24:23 +00:00
|
|
|
|
|
|
|
if (exists($hashX->{'All'})) { return 1; }
|
2008-05-20 18:58:40 +00:00
|
|
|
if (exists($hashX->{'None'})) { return 0; }
|
|
|
|
|
2010-06-01 19:12:44 +00:00
|
|
|
my @a_oid=split('::', $o);
|
2008-05-20 18:58:40 +00:00
|
|
|
my $new_o=$o;
|
|
|
|
if (@a_oid == 2) { $new_o=$a_oid[1]; }
|
2010-05-21 15:25:14 +00:00
|
|
|
#print "o=$o, new_o=$new_o v=$v\n";
|
|
|
|
|
|
|
|
#check for 'contains'
|
|
|
|
if (exists($hashX->{$o})) {
|
|
|
|
my $pa= $hashX->{$o}{'=~'};
|
|
|
|
foreach(@$pa) {
|
|
|
|
if ($v =~ /$_/) {return 1; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (exists($hashX->{$new_o})) {
|
|
|
|
my $pa= $hashX->{$new_o}{'=~'};
|
|
|
|
foreach(@$pa) {
|
|
|
|
if ($v =~ /$_/) {return 1; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#check for 'equals'
|
2008-05-19 18:51:48 +00:00
|
|
|
if (exists($hashX->{$o})) {
|
2008-05-20 18:58:40 +00:00
|
|
|
my $pa= $hashX->{$o}{'eq'};
|
|
|
|
foreach(@$pa) {
|
2010-05-21 15:25:14 +00:00
|
|
|
if ($_ eq $v) { return 1; }
|
2008-05-20 18:58:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (exists($hashX->{$new_o})) {
|
|
|
|
my $pa= $hashX->{$new_o}{'eq'};
|
2008-05-19 18:51:48 +00:00
|
|
|
foreach(@$pa) {
|
2010-05-21 15:25:14 +00:00
|
|
|
if ($_ eq $v) { return 1; }
|
2008-05-19 18:51:48 +00:00
|
|
|
}
|
|
|
|
}
|
2010-05-21 15:25:14 +00:00
|
|
|
|
|
|
|
|
2008-03-07 13:24:23 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-05-19 18:51:48 +00:00
|
|
|
|
2008-03-07 13:24:23 +00:00
|
|
|
if ((!$IGNORE) && (keys(%hashI)>0)) {
|
2010-06-01 19:12:44 +00:00
|
|
|
$IGNORE=checking(\%hashI, $o, $v);
|
2008-03-07 13:24:23 +00:00
|
|
|
if ($IGNORE) { return;}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((!$EMAIL) && (keys(%hashE)>0)) {
|
2010-06-01 19:12:44 +00:00
|
|
|
$EMAIL=checking(\%hashE, $o, $v);
|
2008-03-07 13:24:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((!$LOG) && (keys(%hashL)>0)) {
|
2010-06-01 19:12:44 +00:00
|
|
|
$LOG=checking(\%hashL, $o, $v);
|
2008-03-07 13:24:23 +00:00
|
|
|
}
|
|
|
|
|
2010-02-03 21:18:16 +00:00
|
|
|
if ((!$DB) && (keys(%hashD)>0)) {
|
2010-06-01 19:12:44 +00:00
|
|
|
$DB=checking(\%hashD, $o, $v);
|
2010-02-03 21:18:16 +00:00
|
|
|
}
|
|
|
|
|
2010-06-01 19:12:44 +00:00
|
|
|
foreach my $k (keys %hashRUN) {
|
|
|
|
if ($hashRUN{$k} == 0) { $hashRUN{$k} = checking($hashR{$k}, $o, $v); }
|
2008-03-07 13:24:23 +00:00
|
|
|
}
|
2010-06-01 19:12:44 +00:00
|
|
|
|
2008-03-07 13:24:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-19 18:51:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-02-28 20:21:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|