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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*_############################################################################
  2.   _## 
  3.   _##  snmpNext.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.   snmpNext.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 snmpnext_cpp_version[]="@(#) SNMP++ $Id: snmpNext.cpp,v 1.8 2005/10/11 18:08:04 katz Exp $";
  47. #include "snmp_pp/snmp_pp.h"
  48. #include "snmp_pp/log.h"
  49. #include <stdlib.h>
  50. #include <stdio.h>
  51. #ifdef WIN32
  52. #define strcasecmp stricmp
  53. #endif
  54. #ifdef SNMP_PP_NAMESPACE
  55. using namespace Snmp_pp;
  56. #endif
  57. #if (__GNUC__ > 2)
  58. #include <iostream>
  59. using std::cerr;
  60. using std::cout;
  61. using std::endl;
  62. using std::flush;
  63. #else
  64. #include <iostream.h>
  65. #endif
  66. int main(int argc, char **argv)
  67. {
  68.    //---------[ check the arg count ]----------------------------------------
  69.    if ( argc < 2) {
  70.   cout << "Usage:n";
  71.   cout << argv[0] << " IpAddress | DNSName [Oid] [options]n";
  72.   cout << "Oid: sysDescr object is defaultn";
  73.   cout << "options: -vN , use SNMP version 1, 2 or 3, default is 1n";
  74.   cout << "         -PPort , remote port to usen";
  75.   cout << "         -CCommunity_name, specify community default is 'public' n";
  76.   cout << "         -rN , retries default is N = 1 retryn";
  77.   cout << "         -tN , timeout in hundredths of seconds; default is N = 100n";
  78. #ifdef _SNMPv3
  79.           cout << "         -snSecurityName, " << endl;
  80.           cout << "         -slN , securityLevel to use, default N = 3 = authPriv" << endl;
  81.           cout << "         -smN , securityModel to use, only default N = 3 = USM possiblen";
  82.           cout << "         -cnContextName, default empty string" << endl;
  83.           cout << "         -ceContextEngineID, as hex e.g. 800007E580, default empty string" << endl;
  84.           cout << "         -authPROT, use authentication protocol NONE, SHA or MD5n";
  85.           cout << "         -privPROT, use privacy protocol NONE, DES, 3DESEDE, IDEA, AES128, AES192 or AES256n";
  86.           cout << "         -uaAuthPasswordn";
  87.           cout << "         -upPrivPasswordn";
  88. #endif
  89.   return 1;
  90.    }
  91.    // Set filter for logging
  92.    DefaultLog::log()->set_filter(ERROR_LOG, 7);
  93.    DefaultLog::log()->set_filter(WARNING_LOG, 7);
  94.    DefaultLog::log()->set_filter(EVENT_LOG, 7);
  95.    DefaultLog::log()->set_filter(INFO_LOG, 7);
  96.    DefaultLog::log()->set_filter(DEBUG_LOG, 7);
  97.    Snmp::socket_startup();  // Initialize socket subsystem
  98.    //---------[ make a GenAddress and Oid object to retrieve ]---------------
  99.    UdpAddress address( argv[1]);      // make a SNMP++ Generic address
  100.    if ( !address.valid()) {           // check validity of address
  101.   cout << "Invalid Address or DNS Name, " << argv[1] << "n";
  102.   return 1;
  103.    }
  104.    Oid oid("1.3.6.1.2.1.1.1");      // default is sysDescr
  105.    if ( argc >= 3) {                  // if 3 args, then use the callers Oid
  106.   if ( strstr( argv[2],"-")==0) {
  107.      oid = argv[2];
  108.      if ( !oid.valid()) {            // check validity of user oid
  109.     cout << "Invalid Oid, " << argv[2] << "n";
  110.     return 1;
  111.          }
  112.       }
  113.    }
  114.    //---------[ determine options to use ]-----------------------------------
  115.    snmp_version version=version1;                  // default is v1
  116.    int retries=1;                                  // default retries is 1
  117.    int timeout=100;                                // default is 1 second
  118.    u_short port=161;                               // default snmp port is 161
  119.    OctetStr community("public");                   // community name
  120. #ifdef _SNMPv3
  121.    OctetStr privPassword("");
  122.    OctetStr authPassword("");
  123.    OctetStr securityName("");
  124.    int securityModel = SecurityModel_USM;
  125.    int securityLevel = SecurityLevel_authPriv;
  126.    OctetStr contextName("");
  127.    OctetStr contextEngineID("");
  128.    long authProtocol = SNMPv3_usmNoAuthProtocol;
  129.    long privProtocol = SNMPv3_usmNoPrivProtocol;
  130.    v3MP *v3_MP;
  131. #endif
  132.    char *ptr;
  133.    for(int x=1;x<argc;x++) {                           // parse for version
  134.      if ( strstr( argv[x],"-v2")!= 0) {
  135.        version = version2c;
  136.        continue;
  137.      }
  138.      if ( strstr( argv[x],"-r")!= 0) {                 // parse for retries
  139.        ptr = argv[x]; ptr++; ptr++;
  140.        retries = atoi(ptr);
  141.        if (( retries<0)|| (retries>5)) retries=1; 
  142.        continue;
  143.      }
  144.      if ( strstr( argv[x], "-t")!=0) {                 // parse for timeout
  145.        ptr = argv[x]; ptr++; ptr++;
  146.        timeout = atoi( ptr);
  147.        if (( timeout < 100)||( timeout>500)) timeout=100;
  148.        continue;
  149.      }
  150.      if ( strstr( argv[x],"-C")!=0) {
  151.        ptr = argv[x]; ptr++; ptr++;
  152.        community = ptr;
  153.        continue;
  154.      }
  155.      if ( strstr( argv[x],"-P")!=0) {
  156.        ptr = argv[x]; ptr++; ptr++;
  157.        sscanf(ptr, "%hu", &port);
  158.        continue;
  159.      }
  160. #ifdef _SNMPv3
  161.      if ( strstr( argv[x],"-v3")!= 0) {
  162.        version = version3;
  163.        continue;
  164.      }
  165.      if ( strstr( argv[x],"-auth") != 0) {
  166.        ptr = argv[x]; ptr+=5;
  167.        if (strcasecmp(ptr, "SHA") == 0)
  168.    authProtocol = SNMP_AUTHPROTOCOL_HMACSHA;
  169.        else if (strcasecmp(ptr, "MD5") == 0)
  170.    authProtocol = SNMP_AUTHPROTOCOL_HMACMD5;
  171.        else
  172.    authProtocol = SNMP_AUTHPROTOCOL_NONE;
  173.        continue;
  174.      }
  175.      if ( strstr( argv[x],"-priv") != 0) {
  176.        ptr = argv[x]; ptr+=5;
  177.        if (strcasecmp(ptr, "DES") == 0)
  178.    privProtocol = SNMP_PRIVPROTOCOL_DES;
  179.        else if (strcasecmp(ptr, "3DESEDE") == 0)
  180.    privProtocol = SNMP_PRIVPROTOCOL_3DESEDE;
  181.        else if (strcasecmp(ptr, "IDEA") == 0)
  182.    privProtocol = SNMP_PRIVPROTOCOL_IDEA;
  183.        else if (strcasecmp(ptr, "AES128") == 0)
  184.    privProtocol = SNMP_PRIVPROTOCOL_AES128;
  185.        else if (strcasecmp(ptr, "AES192") == 0)
  186.    privProtocol = SNMP_PRIVPROTOCOL_AES192;
  187.        else if (strcasecmp(ptr, "AES256") == 0)
  188.    privProtocol = SNMP_PRIVPROTOCOL_AES256;
  189.        else
  190.    privProtocol = SNMP_PRIVPROTOCOL_NONE;
  191.        printf("nnPrivProt : %ldn", privProtocol);
  192.        continue;
  193.      }
  194.      if ( strstr( argv[x],"-sn")!=0) {
  195.        ptr = argv[x]; ptr+=3;
  196.        securityName = ptr;
  197.        continue;
  198.       }
  199.      if ( strstr( argv[x], "-sl")!=0) {
  200.        ptr = argv[x]; ptr+=3;
  201.        securityLevel = atoi( ptr);
  202.        if (( securityLevel < SecurityLevel_noAuthNoPriv) ||
  203.            ( securityLevel > SecurityLevel_authPriv))
  204.          securityLevel = SecurityLevel_authPriv;
  205.        continue;
  206.      }
  207.      if ( strstr( argv[x], "-sm")!=0) {
  208.        ptr = argv[x]; ptr+=3;
  209.        securityModel = atoi( ptr);
  210.        if (( securityModel < SecurityModel_v1) ||
  211.            ( securityModel > SecurityModel_USM))
  212.          securityModel = SecurityModel_USM;
  213.        continue;
  214.      }
  215.      if ( strstr( argv[x],"-cn")!=0) {
  216.        ptr = argv[x]; ptr+=3;
  217.        contextName = ptr;
  218.        continue;
  219.      }
  220.      if ( strstr( argv[x],"-ce")!=0) {
  221.        ptr = argv[x]; ptr+=3;
  222.        contextEngineID = OctetStr::from_hex_string(ptr);
  223.        continue;
  224.      }
  225.      if ( strstr( argv[x],"-ua")!=0) {
  226.        ptr = argv[x]; ptr+=3;
  227.        authPassword = ptr;
  228.        continue;
  229.      }
  230.      if ( strstr( argv[x],"-up")!=0) {
  231.        ptr = argv[x]; ptr+=3;
  232.        privPassword = ptr;
  233.        continue;
  234.      }
  235. #endif
  236.   }
  237.    //----------[ create a SNMP++ session ]-----------------------------------
  238.    int status;
  239.    // bind to any port and use IPv6 if needed
  240.    Snmp snmp(status, 0, (address.get_ip_version() == Address::version_ipv6));
  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 = "snmpNext";
  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;                                 // construct a Vb object
  282.    vb.set_oid( oid);                      // set the Oid portion of the Vb
  283.    pdu += vb;                             // add the vb to the Pdu
  284.    address.set_port(port);
  285.    CTarget ctarget( address);             // make a target using the address
  286. #ifdef _SNMPv3
  287.    UTarget utarget( address);
  288.    if (version == version3) {
  289.      utarget.set_version( version);          // set the SNMP version SNMPV1 or V2 or V3
  290.      utarget.set_retry( retries);            // set the number of auto retries
  291.      utarget.set_timeout( timeout);          // set timeout
  292.      utarget.set_security_model( securityModel);
  293.      utarget.set_security_name( securityName);
  294.      pdu.set_security_level( securityLevel);
  295.      pdu.set_context_name (contextName);
  296.      pdu.set_context_engine_id(contextEngineID);
  297.    }
  298.    else {
  299. #endif
  300.      ctarget.set_version( version);         // set the SNMP version SNMPV1 or V2
  301.      ctarget.set_retry( retries);           // set the number of auto retries
  302.      ctarget.set_timeout( timeout);         // set timeout
  303.      ctarget.set_readcommunity( community); // set the read community name
  304. #ifdef _SNMPv3
  305.    }
  306. #endif
  307.    //-------[ issue the request, blocked mode ]-----------------------------
  308.    cout << "SNMP++ GetNext to " << argv[1] << " SNMPV"
  309. #ifdef _SNMPv3
  310.         << ((version==version3) ? (version) : (version+1))
  311. #else
  312.         << (version+1)
  313. #endif
  314.         << " Retries=" << retries
  315.         << " Timeout=" << timeout * 10 <<"ms";
  316. #ifdef _SNMPv3
  317.    if (version == version3)
  318.      cout << endl
  319.           << "securityName= " << securityName.get_printable()
  320.           << ", securityLevel= " << securityLevel
  321.           << ", securityModel= " << securityModel << endl
  322.           << "contextName= " << contextName.get_printable()
  323.           << ", contextEngineID= " << contextEngineID.get_printable()
  324.           << endl;
  325.    else
  326. #endif
  327.      cout << " Community=" << community.get_printable() << endl << flush;
  328.    SnmpTarget *target;
  329. #ifdef _SNMPv3
  330.    if (version == version3)
  331.      target = &utarget;
  332.    else
  333. #endif
  334.      target = &ctarget;
  335.    status = snmp.get_next( pdu, *target);
  336.    if (status == SNMP_CLASS_SUCCESS)
  337.    {
  338.      pdu.get_vb( vb,0);
  339. #ifdef _SNMPv3
  340.      if (pdu.get_type() == REPORT_MSG) {
  341.        cout << "Received a report pdu: "
  342.             << snmp.error_msg(vb.get_printable_oid()) << endl;
  343.      }
  344. #endif
  345.      cout << "Oid = " << vb.get_printable_oid() << endl
  346.   << "Value = " << vb.get_printable_value() << endl;
  347.    }
  348.    else
  349.    {
  350.      cout << "SNMP++ GetNext Error, " << snmp.error_msg( status)
  351.   << " (" << status <<")" << endl;
  352.    }
  353.    Snmp::socket_cleanup();  // Shut down socket subsystem
  354. }