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

Diff for /pegasus/src/Pegasus/Handler/snmpIndicationHandler/snmpDeliverTrap_emanate.cpp between version 1.1.2.3 and 1.11

version 1.1.2.3, 2001/12/10 13:09:42 version 1.11, 2002/08/29 00:27:52
Line 1 
Line 1 
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 BMC Software, Hewlett Packard, IBM, The Open Group,  // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,
 // Tivoli Systems  // The Open Group, Tivoli Systems
 // //
 // 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 copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 28 
Line 28 
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
   #include <Pegasus/Common/System.h>
   #include <Pegasus/Common/Destroyer.h>
 #include <fcntl.h> #include <fcntl.h>
 #include <unistd.h> #include <unistd.h>
   #include <ctype.h>
 #include <sys/stat.h> #include <sys/stat.h>
 #include "snmpDeliverTrap_emanate.h" #include "snmpDeliverTrap_emanate.h"
   #include "prnt_lib.h"
   
   static char *sr_filename = __FILE__;
   
   IPCFunctionP IPCfp;  /* IPC functions pointer  */
   
   // This code should be generated by Emanate
   // Since we do not have MIB objects defined,
   // just defined here to load subagent as library
   
   // The objects internal to the agent
   ObjectInfo OidList[] =
   {
   { { 0, NULL },
   #ifndef LIGHT
       NULL,
   #endif /* LIGHT */
       0, 0, 0, 0,
       NULL, NULL }
   };
   
   // This code should be generated by Emanate in k_* routine
   // Since we do not have MIB objects defined,
   // just defined here to pass compile
   
   // Called by the master agent during initialization */
   int k_initialize()
   {
      return 1;
   }
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 PEGASUS_USING_STD; PEGASUS_USING_STD;
  
 void snmpDeliverTrap_emanate::deliverTrap(const String& trapOid,  snmpDeliverTrap_emanate::snmpDeliverTrap_emanate()
     const String& enterprise,  {
   
   }
   
   snmpDeliverTrap_emanate::~snmpDeliverTrap_emanate()
   {
   
   }
   
   void snmpDeliverTrap_emanate::initialize()
   {
   #ifndef SR_UDS_IPC
       InitIPCArrayTCP(&IPCfp);
   #else /* SR_UDS_IPC */
       InitIPCArrayUDS(&IPCfp);
   #endif /* SR_UDS_IPC */
   
       if(InitSubagent() == -1)
       {
           cout << "InitSubagent Failed to initialize" << endl;
           exit(1);
       }
   }
   
   void snmpDeliverTrap_emanate::deliverTrap(
       const String& trapOid,
       const String& community,
     const String& destination,     const String& destination,
     const String& trapType,     const String& trapType,
     Array<String>& vbOids,     Array<String>& vbOids,
     Array<String>& vbTypes,     Array<String>& vbTypes,
     Array<String>& vbValues)     Array<String>& vbValues)
 { {
     int            fifo_fd;      OctetString*    newValue;
     struct stat    sbuf;  
       VarBind *vb = NULL;
       VarBind *vb2 = NULL;
       VarBind *vb3 = NULL;
   
       OID     *object = NULL;
   
       // Initializing with Master agent
       initialize();
   
       // TRAP OID: getting trapOid
       CString _trapOid = trapOid.getCString();
       _trapOid[strlen(_trapOid)-1] = '\0';
       OID *sendtrapOid = MakeOIDFromDot(_trapOid);
   
       // Destination : converting destination into Transport
       TransportInfo   global_ti;
       global_ti.type = SR_IP_TRANSPORT;
       global_ti.t_ipAddr = inet_addr(destination.getCString());
       global_ti.t_ipPort = htons((unsigned short)GetSNMPTrapPort());
   
       // Community Name
       OctetString* community_name = MakeOctetStringFromText(
                                         community.getCString());
   
       // getting IP address of the host
       char **p;
       struct hostent *hp;
       struct in_addr in;
       hp=gethostbyname(System::getHostName().getCString());
       p = hp->h_addr_list;
       (void)memcpy(&in.s_addr, *p, sizeof(in.s_addr));
       char* IP_string = inet_ntoa(in);
   
       // formatting agent(host) address into OctetString format
       OctetString* agent_addr;
   
       SR_INT32 s1, s2, s3, s4;
       SR_UINT32 ipaddr;
   
       // pull out each of the 4 octet values from IP address
       sscanf(IP_string,"%d.%d.%d.%d", &s1, &s2, &s3, &s4);
   
       // Probably should perform some checks on values for
       // s1, s2, s3, and s4 here to make sure values are
       // between 0 and 255
   
       // create an empty 4 length OctetString
       agent_addr = MakeOctetString(NULL,4);
   
       // fill in values for OctetString
       agent_addr->octet_ptr[0] = (unsigned char)s1;
       agent_addr->octet_ptr[1] = (unsigned char)s2;
       agent_addr->octet_ptr[2] = (unsigned char)s3;
       agent_addr->octet_ptr[3] = (unsigned char)s4;
   
       // specTrap from trapOid.
       SR_INT32 genTrap = 0;
       SR_INT32 specTrap = 0;
   
       OID* enterpriseOid ;
   
       Array<String> standard_traps;
   
       standard_traps.append(String("1.3.6.1.6.3.1.1.5.1"));
       standard_traps.append(String("1.3.6.1.6.3.1.1.5.2"));
       standard_traps.append(String("1.3.6.1.6.3.1.1.5.3"));
       standard_traps.append(String("1.3.6.1.6.3.1.1.5.4"));
       standard_traps.append(String("1.3.6.1.6.3.1.1.5.5"));
       standard_traps.append(String("1.3.6.1.6.3.1.1.5.6"));
   
       Array<String> oids;
       String tmpoid = trapOid;
   
       while(tmpoid.find(".") != PEG_NOT_FOUND)
       {
           oids.append(tmpoid.subString(0, tmpoid.find(".")));
           tmpoid = tmpoid.subString(tmpoid.find(".") + 1);
       }
       oids.append(tmpoid);
  
     trapHeader myTrapHeader;      String ent;
     trapHeader myTrapData;      if (oids[oids.size()-2] == "0")
       {
           ent = oids[0];
           for (Uint8 i = 1; i < oids.size()-2; i++)
               ent = ent + "." + oids[i];
       }
  
     cout << "NITIN: calling deliverTrap()" << endl;      if (Contains(standard_traps, trapOid))
       {
           ent = oids[0];
           for (Uint8 i = 1; i < oids.size()-1; i++)
               ent = ent + "." + oids[i];
  
     if (stat(_SNMP_FIFO, &sbuf) == -1)          genTrap = atoi(ent.getCString()) - 1;
         cout << "The fifo is not opened by EMANATE subagent" << endl;          enterpriseOid = sendtrapOid;
       }
     else     else
     {     {
         if ((fifo_fd = open (_SNMP_FIFO, O_WRONLY|O_NONBLOCK)) == -1)          genTrap = 6;
             cout << "The fifo is not opened for reading. Subagent is not running" << endl;  
           ent = oids[0];
           for (Uint8 i = 1; i < oids.size()-1; i++)
               ent = ent + "." + oids[i];
           specTrap = atoi(oids[oids.size()-1].getCString());
   
           if (oids[oids.size()-2] == "0")
           {
               ent = oids[0];
               for (Uint8 i = 1; i < oids.size()-2; i++)
                   ent = ent + "." + oids[i];
   
               enterpriseOid = MakeOIDFromDot(ent.getCString());
           }
         else         else
         {         {
             strcpy(myTrapHeader.destination, _CString(destination));              ent = oids[0];
             strcpy(myTrapHeader.snmpType, "SNMPV2");              for (Uint8 i = 1; i < oids.size()-1; i++)
             strcpy(myTrapHeader.enterprise, _CString(enterprise));                  ent = ent + "." + oids[i];
             strcpy(myTrapHeader.trapOid, _CString(trapOid));  
             myTrapHeader.variable_packets =  vbOids.size();  
  
             if (write(fifo_fd, &myTrapHeader, sizeof(myTrapHeader)) <=0)              enterpriseOid = MakeOIDFromDot(ent.getCString());
                 cout << "Error in writing" << endl;          }
       }
   
       for(Uint32 i = 0; i < vbOids.size(); i++)
       {
           if ((object = MakeOIDFromDot(vbOids[i].getCString())) == NULL)
           {
               cout << "Invalid OID received: " << vbOids[i] << endl;
               return;
           }
   
           if (vbTypes[i] == String("OctetString"))
           {
               newValue = CloneOctetString(MakeOctetStringFromText(vbValues[i].getCString()));
               if (newValue == NULL)
               {
                   cout << "Invalid Value provided : " << vbValues[i] << endl;
                   return;
               }
               if ((vb2 = MakeVarBindWithValue(object,
                   (OID *) NULL,
                   OCTET_PRIM_TYPE,
                   newValue)) == NULL)
               {
                   cout << "Invalid OctetString value: " << vbValues[i] << endl;
                   return;
               }
           }
             else             else
             {             {
                 for(int packets = 0; packets<vbOids.size(); packets++)              int vbvalue = atoi(_vbValue.getPointer());
               void* value = &vbvalue;
   
               if (newValue == NULL)
                 {                 {
                     trapData myTrapData;                  cout << "Invalid Value provided : " << vbValues[i] << endl;
                     strcpy(myTrapData.vbOid, _CString(vbOids[packets]));                  return;
                     strcpy(myTrapData.vbType, _CString(vbTypes[packets]));  
                     strcpy(myTrapData.vbValue, _CString(vbValues[packets]));  
                     write(fifo_fd, &myTrapData, sizeof(myTrapData));  
                 }                 }
               if ((vb2 = MakeVarBindWithValue(object,
                   (OID *) NULL,
                   INTEGER_TYPE,
                   value)) == NULL)
               {
                   cout << "Invalid Integer Value: " << vbValues[i] << endl;
                   return;
             }             }
         }         }
         close (fifo_fd);          if (i == 0)
           {
               vb = vb2;
               vb3 = vb2;
           }
           else
           {
               vb3->next_var = vb2;
               vb3 = vb3->next_var;
           }
   
           FreeOID(object);
     }     }
   
       vb3->next_var = NULL;
   
       // Now sending the trap
       if (trapType == String("SNMPv1"))
       {
           SendNotificationToDestSMIv1Params(
               1,                                  // notifyType - TRAP
               genTrap,                            // genTrap
               specTrap,                           // specTrap
               enterpriseOid,                      // enterprise
               agent_addr,                         // agent_addr
               vb,                                 // vb
               NULL,                               // contextName
               1,                                  // retryCount
               1,                                  // timeout
               community_name,                     // securityName,
               SR_SECURITY_LEVEL_NOAUTH,           // securityLevel
               SR_SECURITY_MODEL_V1,               // securityModel
               &global_ti,                         // Transport Info
               0);                                 // cfg_chk
       }
       else if (trapType == String("SNMPv2"))
       {
           SendNotificationToDestSMIv2Params(
               1,                                  // notifyType - NOTIFICATION
               sendtrapOid,                        // snmpTrapOID
               agent_addr,                         // agent_addr
               vb,                                 // vb
               NULL,                               // contextName
               1,                                  // retryCount
               100,                                // timeout
               community_name,                     // securityName or community
               SR_SECURITY_LEVEL_NOAUTH,           // securityLevel
               SR_SECURITY_MODEL_V1,               // securityModel
               &global_ti,                         // TransportInfo
               0);                                 // cfg_chk
           FreeVarBindList(vb);
           FreeVarBindList(vb2);
       }
       else
       {
           cout << "Trap type not supported : " << trapType << endl;
           exit(2);
       }
   
       FreeVarBindList(vb);
       FreeVarBindList(vb2);
       FreeVarBindList(vb3);
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.1.2.3  
changed lines
  Added in v.1.11

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2