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

Linux/Unix编程

开发平台:

Unix_Linux

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