(file) Return to snmpIndicationHandler.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Handler / snmpIndicationHandler

Diff for /pegasus/src/Pegasus/Handler/snmpIndicationHandler/snmpIndicationHandler.cpp between version 1.37 and 1.45

version 1.37, 2007/05/25 20:48:46 version 1.45, 2013/04/09 10:12:54
Line 1 
Line 1 
 //%2006////////////////////////////////////////////////////////////////////////  //%LICENSE////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development  // Licensed to The Open Group (TOG) under one or more contributor license
 // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.  // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;  // this work for additional information regarding copyright ownership.
 // IBM Corp.; EMC Corporation, The Open Group.  // Each contributor licenses this file to you under the OpenPegasus Open
 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;  // Source License; you may not use this file except in compliance with the
 // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.  // License.
 // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;  
 // EMC Corporation; VERITAS Software Corporation; The Open Group.  
 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;  
 // EMC Corporation; Symantec Corporation; The Open Group.  
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy  // Permission is hereby granted, free of charge, to any person obtaining a
 // of this software and associated documentation files (the "Software"), to  // copy of this software and associated documentation files (the "Software"),
 // deal in the Software without restriction, including without limitation the  // to deal in the Software without restriction, including without limitation
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  // the rights to use, copy, modify, merge, publish, distribute, sublicense,
 // sell copies of the Software, and to permit persons to whom the Software is  // and/or sell copies of the Software, and to permit persons to whom the
 // furnished to do so, subject to the following conditions:  // Software is furnished to do so, subject to the following conditions:
 // //
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  // The above copyright notice and this permission notice shall be included
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  // in all copies or substantial portions of the Software.
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  
 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  
 // //
 //==============================================================================  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
   // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
   // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
   // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
   // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   //
   //////////////////////////////////////////////////////////////////////////
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 123 
Line 121 
  
     try     try
     {     {
         PEG_TRACE ((TRC_INDICATION_GENERATION, Tracer::LEVEL3,          PEG_TRACE ((TRC_INDICATION_GENERATION, Tracer::LEVEL4,
             "snmpIndicationHandler %s:%s.%s processing %s Indication",             "snmpIndicationHandler %s:%s.%s processing %s Indication",
            (const char*)(nameSpace.getCString()),            (const char*)(nameSpace.getCString()),
            (const char*)(handler.getClassName().getString().getCString()),            (const char*)(handler.getClassName().getString().getCString()),
Line 224 
Line 222 
         Uint32 securityNamePos =         Uint32 securityNamePos =
             handler.findProperty(CIMName("SNMPSecurityName"));             handler.findProperty(CIMName("SNMPSecurityName"));
         Uint32 engineIDPos = handler.findProperty(CIMName("SNMPEngineID"));         Uint32 engineIDPos = handler.findProperty(CIMName("SNMPEngineID"));
           Uint32 snmpSecLevelPos =
               handler.findProperty(CIMName("SNMPSecurityLevel"));
           Uint32 snmpSecAuthProtoPos =
               handler.findProperty(CIMName("SNMPSecurityAuthProtocol"));
           Uint32 snmpSecAuthKeyPos =
               handler.findProperty(CIMName("SNMPSecurityAuthKey"));
           Uint32 snmpSecPrivProtoPos =
               handler.findProperty(CIMName("SNMPSecurityPrivProtocol"));
           Uint32 snmpSecPrivKeyPos =
               handler.findProperty(CIMName("SNMPSecurityPrivKey"));
  
         if (targetHostPos == PEG_NOT_FOUND)         if (targetHostPos == PEG_NOT_FOUND)
         {         {
             PEG_TRACE((TRC_DISCARDED_DATA, Tracer::LEVEL3,              PEG_TRACE((TRC_DISCARDED_DATA, Tracer::LEVEL1,
                 "Target host is not set for IndicationHandlerSNMPMapper %s"                 "Target host is not set for IndicationHandlerSNMPMapper %s"
                 " Indication.",                 " Indication.",
                 (const char*)(indication.getClassName().getString().                 (const char*)(indication.getClassName().getString().
Line 240 
Line 248 
         }         }
         if (targetHostFormatPos == PEG_NOT_FOUND)         if (targetHostFormatPos == PEG_NOT_FOUND)
         {         {
             PEG_TRACE((TRC_DISCARDED_DATA, Tracer::LEVEL3,              PEG_TRACE((TRC_DISCARDED_DATA, Tracer::LEVEL1,
                 "Target host format is not set for IndicationHandlerSNMPMapper"                 "Target host format is not set for IndicationHandlerSNMPMapper"
                 " %s Indication.",                 " %s Indication.",
                 (const char*)(indication.getClassName().getString().                 (const char*)(indication.getClassName().getString().
Line 253 
Line 261 
         }         }
         if (snmpVersionPos == PEG_NOT_FOUND)         if (snmpVersionPos == PEG_NOT_FOUND)
         {         {
             PEG_TRACE((TRC_DISCARDED_DATA, Tracer::LEVEL3,              PEG_TRACE((TRC_DISCARDED_DATA, Tracer::LEVEL1,
                 "SNMP Version is not set for IndicationHandlerSNMPMapper %s"                 "SNMP Version is not set for IndicationHandlerSNMPMapper %s"
                 " Indication.",                 " Indication.",
                 (const char*)(indication.getClassName().getString().                 (const char*)(indication.getClassName().getString().
Line 274 
Line 282 
             Uint16 targetHostFormat = 0;             Uint16 targetHostFormat = 0;
             Uint16 snmpVersion = 0;             Uint16 snmpVersion = 0;
             Uint32 portNumber;             Uint32 portNumber;
               Uint8 snmpSecLevel = 1; // noAuthnoPriv
               Uint8 snmpSecAuthProto = 0;
               Array<Uint8> snmpSecAuthKey;// no key
               Uint8 snmpSecPrivProto = 0;
               Array<Uint8> snmpSecPrivKey ;// no key
  
             String trapOid;             String trapOid;
             Boolean trapOidAvailable = false;             Boolean trapOidAvailable = false;
             String exceptionStr;  
             //             //
             //  Get snmpTrapOid from context             //  Get snmpTrapOid from context
             //             //
Line 328 
Line 340 
  
                     if (!trapOidAvailable)                     if (!trapOidAvailable)
                     {                     {
                         exceptionStr = "No MappingStrings for snmp trap"                          PEG_TRACE((
                             "is specified for class: ";                              TRC_IND_HANDLER,
                               Tracer::LEVEL1,
                         exceptionStr.append(                              "No MappingStrings for snmp trap is specified "
                             indication.getClassName().getString());                                  "for class: %s",
                               (const char*)
                                 indication.getClassName().getString().getCString()
                               ));
  
                         PEG_TRACE_STRING(TRC_IND_HANDLER, Tracer::LEVEL4,  
                             exceptionStr);  
                         PEG_METHOD_EXIT();                         PEG_METHOD_EXIT();
  
                         throw PEGASUS_CIM_EXCEPTION_L(CIM_ERR_FAILED,                          throw PEGASUS_CIM_EXCEPTION_L(
                               CIM_ERR_FAILED,
                             MessageLoaderParms(                             MessageLoaderParms(
                                 "Handler.snmpIndicationHandler."                                 "Handler.snmpIndicationHandler."
                                 "snmpIndicationHandler.NO_MS_FOR_SNMP_TRAP",                                 "snmpIndicationHandler.NO_MS_FOR_SNMP_TRAP",
                                 exceptionStr));                                  "No MappingStrings for snmp trap is specified "
                                       "for class: $0",
                                   indication.getClassName().getString()));
                     }                     }
                 }                 }
                 else                 else
                 {                 {
                     PEG_TRACE_CSTRING(TRC_IND_HANDLER, Tracer::LEVEL4,                      PEG_TRACE_CSTRING(TRC_IND_HANDLER, Tracer::LEVEL1,
                         "Qualifier MappingStrings can not be found.");                         "Qualifier MappingStrings can not be found.");
                     PEG_METHOD_EXIT();                     PEG_METHOD_EXIT();
                     MessageLoaderParms parms(                     MessageLoaderParms parms(
Line 387 
Line 403 
                 handler.getProperty(engineIDPos).getValue().get(engineID);                 handler.getProperty(engineIDPos).getValue().get(engineID);
             }             }
  
             PEG_TRACE ((TRC_INDICATION_GENERATION, Tracer::LEVEL3,              if(snmpVersion == 5) // SNMPv3 Trap
               {
                   //fetch the security data
                   if(snmpSecLevelPos != PEG_NOT_FOUND)
                   {
                       handler.getProperty(snmpSecLevelPos).getValue(). \
                           get(snmpSecLevel);
                   }
                   if(snmpSecAuthProtoPos != PEG_NOT_FOUND)
                   {
                       handler.getProperty(snmpSecAuthProtoPos).getValue(). \
                           get(snmpSecAuthProto);
                   }
                   if(snmpSecAuthKeyPos != PEG_NOT_FOUND)
                   {
                       handler.getProperty(snmpSecAuthKeyPos).getValue(). \
                           get(snmpSecAuthKey);
                   }
                   if(snmpSecPrivProtoPos != PEG_NOT_FOUND)
                   {
                       handler.getProperty(snmpSecPrivProtoPos).getValue(). \
                           get(snmpSecPrivProto);
                   }
                   if(snmpSecPrivKeyPos!= PEG_NOT_FOUND)
                   {
                       handler.getProperty(snmpSecPrivKeyPos).getValue(). \
                           get(snmpSecPrivKey);
                   }
               }
   
               PEG_TRACE ((TRC_INDICATION_GENERATION, Tracer::LEVEL4,
                "snmpIndicationHandler sending %s Indication trap %s to target"                "snmpIndicationHandler sending %s Indication trap %s to target"
                " host %s target port %d",                " host %s target port %d",
                (const char*)(indication.getClassName().getString().                (const char*)(indication.getClassName().getString().
Line 403 
Line 449 
                 portNumber,                 portNumber,
                 snmpVersion,                 snmpVersion,
                 engineID,                 engineID,
                   snmpSecLevel,
                   snmpSecAuthProto,
                   snmpSecAuthKey,
                   snmpSecPrivProto,
                   snmpSecPrivKey,
                 propOIDs,                 propOIDs,
                 propTYPEs,                 propTYPEs,
                 propVALUEs);                 propVALUEs);
  
         PEG_TRACE ((TRC_INDICATION_GENERATION, Tracer::LEVEL3,          PEG_TRACE ((TRC_INDICATION_GENERATION, Tracer::LEVEL4,
            "%s Indication trap %s sent to target host %s target port %d "            "%s Indication trap %s sent to target host %s target port %d "
            "successfully",            "successfully",
            (const char*)(indication.getClassName().getString().getCString()),            (const char*)(indication.getClassName().getString().getCString()),
Line 417 
Line 468 
     }     }
     catch (CIMException& c)     catch (CIMException& c)
     {     {
         PEG_TRACE_STRING(TRC_IND_HANDLER, Tracer::LEVEL4, c.getMessage());          PEG_TRACE((TRC_IND_HANDLER, Tracer::LEVEL1, "CIMException %s",
               (const char*)c.getMessage().getCString()));
         PEG_METHOD_EXIT();         PEG_METHOD_EXIT();
         throw PEGASUS_CIM_EXCEPTION(CIM_ERR_FAILED, c.getMessage());         throw PEGASUS_CIM_EXCEPTION(CIM_ERR_FAILED, c.getMessage());
     }     }
     catch (Exception& e)     catch (Exception& e)
     {     {
         PEG_TRACE_STRING(TRC_IND_HANDLER, Tracer::LEVEL4, e.getMessage());          PEG_TRACE((TRC_IND_HANDLER, Tracer::LEVEL1, "Exception %s",
               (const char*)e.getMessage().getCString()));
         PEG_METHOD_EXIT();         PEG_METHOD_EXIT();
  
         throw PEGASUS_CIM_EXCEPTION(CIM_ERR_FAILED, e.getMessage());         throw PEGASUS_CIM_EXCEPTION(CIM_ERR_FAILED, e.getMessage());
     }     }
     catch (...)     catch (...)
     {     {
         PEG_TRACE_CSTRING(TRC_IND_HANDLER, Tracer::LEVEL4,          PEG_TRACE_CSTRING(TRC_IND_HANDLER, Tracer::LEVEL1,
             "Failed to deliver trap.");             "Failed to deliver trap.");
         PEG_METHOD_EXIT();         PEG_METHOD_EXIT();
  


Legend:
Removed from v.1.37  
changed lines
  Added in v.1.45

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2