snmpInform.cpp
上传用户:cnryan
上传日期:2008-12-15
资源大小:260k
文件大小:13k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*_############################################################################
  2.   _## 
  3.   _##  snmpInform.cpp  
  4.   _##
  5.   _##  SNMP++v3.2.21
  6.   _##  -----------------------------------------------
  7.   _##  Copyright (c) 2001-2006 Jochen Katz, Frank Fock
  8.   _##
  9.   _##  This software is based on SNMP++2.6 from Hewlett Packard:
  10.   _##  
  11.   _##    Copyright (c) 1996
  12.   _##    Hewlett-Packard Company
  13.   _##  
  14.   _##  ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  15.   _##  Permission to use, copy, modify, distribute and/or sell this software 
  16.   _##  and/or its documentation is hereby granted without fee. User agrees 
  17.   _##  to display the above copyright notice and this license notice in all 
  18.   _##  copies of the software and any documentation of the software. User 
  19.   _##  agrees to assume all liability for the use of the software; 
  20.   _##  Hewlett-Packard and Jochen Katz make no representations about the 
  21.   _##  suitability of this software for any purpose. It is provided 
  22.   _##  "AS-IS" without warranty of any kind, either express or implied. User 
  23.   _##  hereby grants a royalty-free license to any and all derivatives based
  24.   _##  upon this software code base. 
  25.   _##  
  26.   _##  Stuttgart, Germany, Fri Jun 16 17:48:57 CEST 2006 
  27.   _##  
  28.   _##########################################################################*/
  29. /*
  30.   snmpInform.cpp 
  31.   Copyright (c) 1996
  32.   Hewlett-Packard Company
  33.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  34.   Permission to use, copy, modify, distribute and/or sell this software
  35.   and/or its documentation is hereby granted without fee. User agrees
  36.   to display the above copyright notice and this license notice in all
  37.   copies of the software and any documentation of the software. User
  38.   agrees to assume all liability for the use of the software; Hewlett-Packard
  39.   makes no representations about the suitability of this software for any
  40.   purpose. It is provided "AS-IS" without warranty of any kind,either express
  41.   or implied. User hereby grants a royalty-free license to any and all
  42.   derivatives based upon this software code base.
  43.   Peter E. Mellquist
  44. */
  45. char snmpget_cpp_version[]="@(#) SNMP++ $Id: snmpInform.cpp,v 1.6 2005/10/11 18:08:04 katz Exp $";
  46. #include "snmp_pp/snmp_pp.h"
  47. #include <stdlib.h>
  48. #include <stdio.h>
  49. #ifdef WIN32
  50. #define strcasecmp stricmp
  51. #endif
  52. #ifdef SNMP_PP_NAMESPACE
  53. using namespace Snmp_pp;
  54. #endif
  55. #if (__GNUC__ > 2)
  56. #include <iostream>
  57. using std::cerr;
  58. using std::cout;
  59. using std::endl;
  60. using std::flush;
  61. #else
  62. #include <iostream.h>
  63. #endif
  64. #define COLDSTART "1.3.6.1.6.3.1.1.5.1"
  65. #define PAYLOADID "1.3.6.1.4.1.11.2.16.2"
  66. #define PAYLOAD "SNMP++ Trap Send Test"
  67. #define ENTERPRISE "1.3.6.1.2.1.1.1.2.0.1"
  68. int main(int argc, char **argv)
  69. {
  70.    //---------[ check the arg count ]----------------------------------------
  71.    if ( argc < 2) {
  72.   cout << "Usage:n";
  73.   cout << "snmpInform IpAddress | DNSName [Id] [options]n";
  74.   cout << "Id = default is 1.3.6.1.6.3.1.1.5.1 = ColdStart";
  75.   cout << "options: -vN , use SNMP version 1, 2 or 3, default is 1n";
  76.   cout << "         -PPort , remote port to usen";
  77.   cout << "         -CCommunity_name, specify community default is 'public' n";
  78.   cout << "         -rN , retries default is N = 1 retryn";
  79.   cout << "         -tN , timeout in hundredths of seconds; default is N = 100n";
  80. #ifdef _SNMPv3
  81.           cout << "         -snSecurityName, " << endl;
  82.           cout << "         -slN , securityLevel to use, default N = 3 = authPriv" << endl;
  83.           cout << "         -smN , securityModel to use, only default N = 3 = USM possiblen";
  84.           cout << "         -cnContextName, default empty string" << endl;
  85.           cout << "         -ceContextEngineID, as hex e.g. 800007E580, default empty string" << endl;
  86.           cout << "         -authPROT, use authentication protocol NONE, SHA or MD5n";
  87.           cout << "         -privPROT, use privacy protocol NONE, DES, 3DESEDE, IDEA, AES128, AES192 or AES256n";
  88.           cout << "         -uaAuthPasswordn";
  89.           cout << "         -upPrivPasswordn";
  90. #endif
  91.   return 1;
  92.    }
  93.    Snmp::socket_startup();  // Initialize socket subsystem
  94.    //---------[ make a GenAddress and Oid object to retrieve ]---------------
  95.    UdpAddress address( argv[1]);      // make a SNMP++ Generic address
  96.    if ( !address.valid()) {           // check validity of address
  97.   cout << "Invalid Address or DNS Name, " << argv[1] << "n";
  98.   return 1;
  99.    }
  100.    Oid oid( COLDSTART);    // default is ColdStart 
  101.    if ( argc >= 3) {                  // if 3 args, then use the callers Oid
  102.   if ( strstr( argv[2],"-")==0) {
  103.      oid = argv[2];
  104.      if ( !oid.valid()) {            // check validity of user oid
  105.     cout << "Invalid Oid, " << argv[2] << "n";
  106.     return 1;
  107.          }
  108.       }
  109.    }
  110.    //---------[ determine options to use ]-----------------------------------
  111.    snmp_version version=version1;                  // default is v1
  112.    int retries=1;                                  // default retries is 1
  113.    int timeout=100;                                // default is 1 second
  114.    u_short port=161;                               // default snmp port is 161
  115.    OctetStr community("public");                   // community name
  116.    Oid ent(ENTERPRISE);                            // default enterprise
  117. #ifdef _SNMPv3
  118.    OctetStr privPassword("");
  119.    OctetStr authPassword("");
  120.    OctetStr securityName("");
  121.    int securityModel = SecurityModel_USM;
  122.    int securityLevel = SecurityLevel_authPriv;
  123.    OctetStr contextName("");
  124.    OctetStr contextEngineID("");
  125.    long authProtocol = SNMPv3_usmNoAuthProtocol;
  126.    long privProtocol = SNMPv3_usmNoPrivProtocol;
  127.    v3MP *v3_MP;
  128. #endif
  129.    char *ptr;
  130.    for(int x=1;x<argc;x++) {                           // parse for version
  131.      if ( strstr( argv[x],"-v2")!= 0) {
  132.        version = version2c;
  133.        continue;
  134.      }
  135.      if ( strstr( argv[x],"-r")!= 0) {                 // parse for retries
  136.        ptr = argv[x]; ptr++; ptr++;
  137.        retries = atoi(ptr);
  138.        if (( retries<0)|| (retries>5)) retries=1; 
  139.        continue;
  140.      }
  141.      if ( strstr( argv[x], "-t")!=0) {                 // parse for timeout
  142.        ptr = argv[x]; ptr++; ptr++;
  143.        timeout = atoi( ptr);
  144.        if (( timeout < 100)||( timeout>500)) timeout=100;
  145.        continue;
  146.      }
  147.      if ( strstr( argv[x],"-C")!=0) {
  148.        ptr = argv[x]; ptr++; ptr++;
  149.        community = ptr;
  150.        continue;
  151.      }
  152.      if ( strstr( argv[x],"-P")!=0) {
  153.        ptr = argv[x]; ptr++; ptr++;
  154.        sscanf(ptr, "%hu", &port);
  155.        continue;
  156.      }
  157. #ifdef _SNMPv3
  158.      if ( strstr( argv[x],"-v3")!= 0) {
  159.        version = version3;
  160.        continue;
  161.      }
  162.      if ( strstr( argv[x],"-auth") != 0) {
  163.        ptr = argv[x]; ptr+=5;
  164.        if (strcasecmp(ptr, "SHA") == 0)
  165.    authProtocol = SNMP_AUTHPROTOCOL_HMACSHA;
  166.        else if (strcasecmp(ptr, "MD5") == 0)
  167.    authProtocol = SNMP_AUTHPROTOCOL_HMACMD5;
  168.        else
  169.    authProtocol = SNMP_AUTHPROTOCOL_NONE;
  170.        continue;
  171.      }
  172.      if ( strstr( argv[x],"-priv") != 0) {
  173.        ptr = argv[x]; ptr+=5;
  174.        if (strcasecmp(ptr, "DES") == 0)
  175.    privProtocol = SNMP_PRIVPROTOCOL_DES;
  176.        else if (strcasecmp(ptr, "3DESEDE") == 0)
  177.    privProtocol = SNMP_PRIVPROTOCOL_3DESEDE;
  178.        else if (strcasecmp(ptr, "IDEA") == 0)
  179.    privProtocol = SNMP_PRIVPROTOCOL_IDEA;
  180.        else if (strcasecmp(ptr, "AES128") == 0)
  181.    privProtocol = SNMP_PRIVPROTOCOL_AES128;
  182.        else if (strcasecmp(ptr, "AES192") == 0)
  183.    privProtocol = SNMP_PRIVPROTOCOL_AES192;
  184.        else if (strcasecmp(ptr, "AES256") == 0)
  185.    privProtocol = SNMP_PRIVPROTOCOL_AES256;
  186.        else
  187.    privProtocol = SNMP_PRIVPROTOCOL_NONE;
  188.        printf("nnPrivProt : %ldn", privProtocol);
  189.        continue;
  190.      }
  191.      if ( strstr( argv[x],"-sn")!=0) {
  192.        ptr = argv[x]; ptr+=3;
  193.        securityName = ptr;
  194.        continue;
  195.       }
  196.      if ( strstr( argv[x], "-sl")!=0) {
  197.        ptr = argv[x]; ptr+=3;
  198.        securityLevel = atoi( ptr);
  199.        if (( securityLevel < SecurityLevel_noAuthNoPriv) ||
  200.            ( securityLevel > SecurityLevel_authPriv))
  201.          securityLevel = SecurityLevel_authPriv;
  202.        continue;
  203.      }
  204.      if ( strstr( argv[x], "-sm")!=0) {
  205.        ptr = argv[x]; ptr+=3;
  206.        securityModel = atoi( ptr);
  207.        if (( securityModel < SecurityModel_v1) ||
  208.            ( securityModel > SecurityModel_USM))
  209.          securityModel = SecurityModel_USM;
  210.        continue;
  211.      }
  212.      if ( strstr( argv[x],"-cn")!=0) {
  213.        ptr = argv[x]; ptr+=3;
  214.        contextName = ptr;
  215.        continue;
  216.      }
  217.      if ( strstr( argv[x],"-ce")!=0) {
  218.        ptr = argv[x]; ptr+=3;
  219.        contextEngineID = OctetStr::from_hex_string(ptr);
  220.        continue;
  221.      }
  222.      if ( strstr( argv[x],"-ua")!=0) {
  223.        ptr = argv[x]; ptr+=3;
  224.        authPassword = ptr;
  225.        continue;
  226.      }
  227.      if ( strstr( argv[x],"-up")!=0) {
  228.        ptr = argv[x]; ptr+=3;
  229.        privPassword = ptr;
  230.        continue;
  231.      }
  232. #endif
  233.   }
  234.    //----------[ create a SNMP++ session ]-----------------------------------
  235.    int status;
  236.    Snmp *snmp;
  237.    if (address.get_ip_version() == Address::version_ipv4)
  238.      snmp = new Snmp(status, "0.0.0.0");
  239.    else
  240.      snmp = new Snmp(status, "::");
  241.    if ( status != SNMP_CLASS_SUCCESS) {
  242.       cout << "SNMP++ Session Create Fail, " << snmp->error_msg(status) << "n";
  243.       return 1;
  244.    }
  245.    //---------[ init SnmpV3 ]--------------------------------------------
  246. #ifdef _SNMPv3
  247.    if (version == version3) {
  248.      char *engineId = "InformSender";
  249.      char *filename = "snmpv3_boot_counter";
  250.      unsigned int snmpEngineBoots = 0;
  251.      int status;
  252.      status = getBootCounter(filename, engineId, snmpEngineBoots);
  253.      if ((status != SNMPv3_OK) && (status < SNMPv3_FILEOPEN_ERROR))
  254.      {
  255.        cout << "Error loading snmpEngineBoots counter: " << status << endl;
  256.        return 1;
  257.      }
  258.      snmpEngineBoots++;
  259.      status = saveBootCounter(filename, engineId, snmpEngineBoots);
  260.      if (status != SNMPv3_OK)
  261.      {
  262.        cout << "Error saving snmpEngineBoots counter: " << status << endl;
  263.        return 1;
  264.      }
  265.      int construct_status;
  266.      v3_MP = new v3MP(engineId, snmpEngineBoots, construct_status);
  267.      USM *usm = v3_MP->get_usm();
  268.      usm->add_usm_user(securityName,
  269.        authProtocol, privProtocol,
  270.        authPassword, privPassword);
  271.    }
  272.    else
  273.    {
  274.      // MUST create a dummy v3MP object if _SNMPv3 is enabled!
  275.      int construct_status;
  276.      v3_MP = new v3MP("dummy", 0, construct_status);
  277.    }
  278. #endif
  279.    //--------[ build up SNMP++ object needed ]-------------------------------
  280.    Pdu pdu;                               // construct a Pdu object
  281.    Vb vb;                                 // variable binding object to use
  282.    vb.set_oid(PAYLOADID);                 // example oid for trap payload
  283.    vb.set_value(PAYLOAD);                 // example string for payload
  284.    pdu += vb;                             // append the vb to the pdu
  285.    pdu.set_notify_id( oid);               // set the id of the trap
  286.    pdu.set_notify_enterprise( ent);       // set up the enterprise of the trap
  287.    address.set_port(port);
  288.    CTarget ctarget( address);             // make a target using the address
  289. #ifdef _SNMPv3
  290.    UTarget utarget( address);
  291.    if (version == version3) {
  292.      utarget.set_version( version);          // set the SNMP version SNMPV1 or V2 or V3
  293.      utarget.set_retry( retries);            // set the number of auto retries
  294.      utarget.set_timeout( timeout);          // set timeout
  295.      utarget.set_security_model( securityModel);
  296.      utarget.set_security_name( securityName);
  297.      pdu.set_security_level( securityLevel);
  298.      pdu.set_context_name (contextName);
  299.      pdu.set_context_engine_id(contextEngineID);
  300.    }
  301.    else {
  302. #endif
  303.      ctarget.set_version( version);         // set the SNMP version SNMPV1 or V2
  304.      ctarget.set_retry( retries);           // set the number of auto retries
  305.      ctarget.set_timeout( timeout);         // set timeout
  306.      ctarget.set_readcommunity( community); // set the read community name
  307. #ifdef _SNMPv3
  308.    }
  309. #endif
  310.    //-------[ Send the trap  ]------------------------------------------------
  311.    cout << "SNMP++ Trap to " << argv[1] << " SNMPV"
  312. #ifdef _SNMPv3
  313.         << ((version==version3) ? (version) : (version+1));
  314. #else
  315.         << (version+1);
  316. #endif
  317. #ifdef _SNMPv3
  318.    if (version == version3)
  319.      cout << endl
  320.           << "securityName= " << securityName.get_printable()
  321.           << ", securityLevel= " << securityLevel
  322.           << ", securityModel= " << securityModel << endl
  323.           << "contextName= " << contextName.get_printable()
  324.           << ", contextEngineID= " << contextEngineID.get_printable()
  325.           << endl;
  326.    else
  327. #endif
  328.      cout << " Community=" << community.get_printable() << endl << flush;
  329.    SnmpTarget *target;
  330. #ifdef _SNMPv3
  331.    if (version == version3)
  332.      target = &utarget;
  333.    else
  334. #endif
  335.      target = &ctarget;
  336.    status = snmp->inform( pdu,*target);
  337.    if (status == SNMP_CLASS_SUCCESS)
  338.    {
  339.      pdu.get_vb( vb,0);
  340. #ifdef _SNMPv3
  341.      if (pdu.get_type() == REPORT_MSG) {
  342.        cout << "Received a report pdu: "
  343.             << snmp->error_msg(vb.get_printable_oid()) << endl;
  344.      }
  345. #endif
  346.      cout << "Oid = " << vb.get_printable_oid() << endl
  347.   << "Value = " << vb.get_printable_value() << endl;
  348.    }
  349.    else
  350.    {
  351.      cout << "SNMP++ Inform Error, " << snmp->error_msg( status)
  352.   << " (" << status <<")" << endl ;
  353.    }
  354.    Snmp::socket_cleanup();  // Shut down socket subsystem
  355. }