(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.38 and 1.46

version 1.38, 2008/06/19 17:57:06 version 1.46, 2013/07/01 10:55: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 45 
Line 43 
 # include "snmpDeliverTrap_emanate.h" # include "snmpDeliverTrap_emanate.h"
 #elif defined (PEGASUS_USE_NET_SNMP) #elif defined (PEGASUS_USE_NET_SNMP)
 # include "snmpDeliverTrap_netsnmp.h" # include "snmpDeliverTrap_netsnmp.h"
 #else  
 # include "snmpDeliverTrap_stub.h"  
 #endif #endif
  
 #include <Pegasus/Common/MessageLoader.h> #include <Pegasus/Common/MessageLoader.h>
Line 64 
Line 60 
     _snmpTrapSender = new snmpDeliverTrap_emanate();     _snmpTrapSender = new snmpDeliverTrap_emanate();
 #elif defined (PEGASUS_USE_NET_SNMP) #elif defined (PEGASUS_USE_NET_SNMP)
     _snmpTrapSender = new snmpDeliverTrap_netsnmp();     _snmpTrapSender = new snmpDeliverTrap_netsnmp();
 #else  
     _snmpTrapSender = new snmpDeliverTrap_stub();  
 #endif #endif
  
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
Line 224 
Line 218 
         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)
         {         {
Line 274 
Line 278 
             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;
Line 390 
Line 399 
                 handler.getProperty(engineIDPos).getValue().get(engineID);                 handler.getProperty(engineIDPos).getValue().get(engineID);
             }             }
  
               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,             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",
Line 406 
Line 445 
                 portNumber,                 portNumber,
                 snmpVersion,                 snmpVersion,
                 engineID,                 engineID,
                   snmpSecLevel,
                   snmpSecAuthProto,
                   snmpSecAuthKey,
                   snmpSecPrivProto,
                   snmpSecPrivKey,
                 propOIDs,                 propOIDs,
                 propTYPEs,                 propTYPEs,
                 propVALUEs);                 propVALUEs);
Line 420 
Line 464 
     }     }
     catch (CIMException& c)     catch (CIMException& c)
     {     {
         PEG_TRACE_STRING(TRC_IND_HANDLER, Tracer::LEVEL1, 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::LEVEL1, 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());


Legend:
Removed from v.1.38  
changed lines
  Added in v.1.46

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2