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 SNMP_PP_NAMESPACE
  52. using namespace Snmp_pp;
  53. #endif
  54. #if (__GNUC__ > 2)
  55. #include <iostream>
  56. using std::cerr;
  57. using std::cout;
  58. using std::endl;
  59. using std::flush;
  60. #else
  61. #include <iostream.h>
  62. #endif
  63. int main(int argc, char **argv)
  64. {
  65.    //---------[ check the arg count ]----------------------------------------
  66.    if ( argc < 2) {
  67.   cout << "Usage:n";
  68.   cout << argv[0] << " IpAddress | DNSName [Oid] [options]n";
  69.   cout << "Oid: sysDescr object is defaultn";
  70.   cout << "options: -vN , use SNMP version 1, 2 or 3, default is 1n";
  71.   cout << "         -PPort , remote port to usen";
  72.   cout << "         -CCommunity_name, specify community default is 'public' n";
  73.   cout << "         -rN , retries default is N = 1 retryn";
  74.   cout << "         -tN , timeout in hundredths of seconds; default is N = 100n";
  75. #ifdef _SNMPv3
  76.           cout << "         -snSecurityName, " << endl;
  77.           cout << "         -slN , securityLevel to use, default N = 3 = authPriv" << endl;
  78.           cout << "         -smN , securityModel to use, only default N = 3 = USM possiblen";
  79.           cout << "         -cnContextName, default empty string" << endl;
  80.           cout << "         -ceContextEngineID, as hex e.g. 800007E580, default empty string" << endl;
  81.           cout << "         -authPROT, use authentication protocol NONE, SHA or MD5n";
  82.           cout << "         -privPROT, use privacy protocol NONE, DES, 3DESEDE, IDEA, AES128, AES192 or AES256n";
  83.           cout << "         -uaAuthPasswordn";
  84.           cout << "         -upPrivPasswordn";
  85. #endif
  86.   return 1;
  87.    }
  88.    // Set filter for logging
  89.    DefaultLog::log()->set_filter(ERROR_LOG, 7);
  90.    DefaultLog::log()->set_filter(WARNING_LOG, 7);
  91.    DefaultLog::log()->set_filter(EVENT_LOG, 7);
  92.    DefaultLog::log()->set_filter(INFO_LOG, 7);
  93.    DefaultLog::log()->set_filter(DEBUG_LOG, 7);
  94.    Snmp::socket_startup();  // Initialize socket subsystem
  95.    //---------[ make a GenAddress and Oid object to retrieve ]---------------
  96.    UdpAddress address( argv[1]);      // make a SNMP++ Generic address
  97.    if ( !address.valid()) {           // check validity of address
  98.   cout << "Invalid Address or DNS Name, " << argv[1] << "n";
  99.   return 1;
  100.    }
  101.    Oid oid("1.3.6.1.2.1.1.1");      // default is sysDescr
  102.    if ( argc >= 3) {                  // if 3 args, then use the callers Oid
  103.   if ( strstr( argv[2],"-")==0) {
  104.      oid = argv[2];
  105.      if ( !oid.valid()) {            // check validity of user oid
  106.     cout << "Invalid Oid, " << argv[2] << "n";
  107.     return 1;
  108.          }
  109.       }
  110.    }
  111.    //---------[ determine options to use ]-----------------------------------
  112.    snmp_version version=version1;                  // default is v1
  113.    int retries=1;                                  // default retries is 1
  114.    int timeout=100;                                // default is 1 second
  115.    u_short port=161;                               // default snmp port is 161
  116.    OctetStr community("public");                   // community name
  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.    // bind to any port and use IPv6 if needed
  237.    Snmp snmp(status, 0, (address.get_ip_version() == Address::version_ipv6));
  238.    if ( status != SNMP_CLASS_SUCCESS) {
  239.       cout << "SNMP++ Session Create Fail, " << snmp.error_msg(status) << "n";
  240.       return 1;
  241.    }
  242.    //---------[ init SnmpV3 ]--------------------------------------------
  243. #ifdef _SNMPv3
  244.    if (version == version3) {
  245.      char *engineId = "snmpNext";
  246.      char *filename = "snmpv3_boot_counter";
  247.      unsigned int snmpEngineBoots = 0;
  248.      int status;
  249.      status = getBootCounter(filename, engineId, snmpEngineBoots);
  250.      if ((status != SNMPv3_OK) && (status < SNMPv3_FILEOPEN_ERROR))
  251.      {
  252.        cout << "Error loading snmpEngineBoots counter: " << status << endl;
  253.        return 1;
  254.      }
  255.      snmpEngineBoots++;
  256.      status = saveBootCounter(filename, engineId, snmpEngineBoots);
  257.      if (status != SNMPv3_OK)
  258.      {
  259.        cout << "Error saving snmpEngineBoots counter: " << status << endl;
  260.        return 1;
  261.      }
  262.      int construct_status;
  263.      v3_MP = new v3MP(engineId, snmpEngineBoots, construct_status);
  264.      USM *usm = v3_MP->get_usm();
  265.      usm->add_usm_user(securityName,
  266.        authProtocol, privProtocol,
  267.        authPassword, privPassword);
  268.    }
  269.    else
  270.    {
  271.      // MUST create a dummy v3MP object if _SNMPv3 is enabled!
  272.      int construct_status;
  273.      v3_MP = new v3MP("dummy", 0, construct_status);
  274.    }
  275. #endif
  276.    //--------[ build up SNMP++ object needed ]-------------------------------
  277.    Pdu pdu;                               // construct a Pdu object
  278.    Vb vb;                                 // construct a Vb object
  279.    vb.set_oid( oid);                      // set the Oid portion of the Vb
  280.    pdu += vb;                             // add the vb to the Pdu
  281.    address.set_port(port);
  282.    CTarget ctarget( address);             // make a target using the address
  283. #ifdef _SNMPv3
  284.    UTarget utarget( address);
  285.    if (version == version3) {
  286.      utarget.set_version( version);          // set the SNMP version SNMPV1 or V2 or V3
  287.      utarget.set_retry( retries);            // set the number of auto retries
  288.      utarget.set_timeout( timeout);          // set timeout
  289.      utarget.set_security_model( securityModel);
  290.      utarget.set_security_name( securityName);
  291.      pdu.set_security_level( securityLevel);
  292.      pdu.set_context_name (contextName);
  293.      pdu.set_context_engine_id(contextEngineID);
  294.    }
  295.    else {
  296. #endif
  297.      ctarget.set_version( version);         // set the SNMP version SNMPV1 or V2
  298.      ctarget.set_retry( retries);           // set the number of auto retries
  299.      ctarget.set_timeout( timeout);         // set timeout
  300.      ctarget.set_readcommunity( community); // set the read community name
  301. #ifdef _SNMPv3
  302.    }
  303. #endif
  304.    //-------[ issue the request, blocked mode ]-----------------------------
  305.    cout << "SNMP++ GetNext to " << argv[1] << " SNMPV"
  306. #ifdef _SNMPv3
  307.         << ((version==version3) ? (version) : (version+1))
  308. #else
  309.         << (version+1)
  310. #endif
  311.         << " Retries=" << retries
  312.         << " Timeout=" << timeout * 10 <<"ms";
  313. #ifdef _SNMPv3
  314.    if (version == version3)
  315.      cout << endl
  316.           << "securityName= " << securityName.get_printable()
  317.           << ", securityLevel= " << securityLevel
  318.           << ", securityModel= " << securityModel << endl
  319.           << "contextName= " << contextName.get_printable()
  320.           << ", contextEngineID= " << contextEngineID.get_printable()
  321.           << endl;
  322.    else
  323. #endif
  324.      cout << " Community=" << community.get_printable() << endl << flush;
  325.    SnmpTarget *target;
  326. #ifdef _SNMPv3
  327.    if (version == version3)
  328.      target = &utarget;
  329.    else
  330. #endif
  331.      target = &ctarget;
  332.    status = snmp.get_next( pdu, *target);
  333.    if (status == SNMP_CLASS_SUCCESS)
  334.    {
  335.      pdu.get_vb( vb,0);
  336. #ifdef _SNMPv3
  337.      if (pdu.get_type() == REPORT_MSG) {
  338.        cout << "Received a report pdu: "
  339.             << snmp.error_msg(vb.get_printable_oid()) << endl;
  340.      }
  341. #endif
  342.      cout << "Oid = " << vb.get_printable_oid() << endl
  343.   << "Value = " << vb.get_printable_value() << endl;
  344.    }
  345.    else
  346.    {
  347.      cout << "SNMP++ GetNext Error, " << snmp.error_msg( status)
  348.   << " (" << status <<")" << endl;
  349.    }
  350.    Snmp::socket_cleanup();  // Shut down socket subsystem
  351. }