target.h
上传用户:ets1996
上传日期:2014-09-30
资源大小:353k
文件大小:18k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  target.h  
  4.   _##
  5.   _##  SNMP++v3.2.22
  6.   _##  -----------------------------------------------
  7.   _##  Copyright (c) 2001-2007 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, Wed May  2 23:22:30 CEST 2007 
  27.   _##  
  28.   _##########################################################################*/
  29. /*===================================================================
  30.   Copyright (c) 1999
  31.   Hewlett-Packard Company
  32.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  33.   Permission to use, copy, modify, distribute and/or sell this software
  34.   and/or its documentation is hereby granted without fee. User agrees
  35.   to display the above copyright notice and this license notice in all
  36.   copies of the software and any documentation of the software. User
  37.   agrees to assume all liability for the use of the software; Hewlett-Packard
  38.   makes no representations about the suitability of this software for any
  39.   purpose. It is provided "AS-IS" without warranty of any kind,either express
  40.   or implied. User hereby grants a royalty-free license to any and all
  41.   derivatives based upon this software code base.
  42.   SNMP++  T A R G E T . H
  43.   TARGET CLASS DEFINITION
  44.   DESIGN + AUTHOR:
  45.   Peter E Mellquist
  46.   LANGUAGE:
  47.   ANSI C++
  48.   OPERATING SYSTEMS:
  49.   DOS/WINDOWS 3.1
  50.   BSD UNIX
  51.   DESCRIPTION:
  52.   Target class defines target SNMP agents.
  53. =====================================================================*/
  54. // $Id: target.h 292 2007-04-30 12:49:55Z katz $
  55. #ifndef _TARGET
  56. #define _TARGET
  57. //----[ includes ]-----------------------------------------------------
  58. #include "snmp_pp/config_snmp_pp.h"
  59. #include "snmp_pp/address.h"
  60. #include "snmp_pp/octet.h"
  61. #include "snmp_pp/collect.h"
  62. #ifdef SNMP_PP_NAMESPACE
  63. namespace Snmp_pp {
  64. #endif
  65. //----[ enumerated types for SNMP versions ]---------------------------
  66. /**
  67.  * The SNMP version to use is passed with this enum.
  68.  */
  69. enum snmp_version
  70. {
  71.   version1,         ///< (0) SNMPv1 
  72.   version2c         ///< (1) SNMPv2c
  73. #ifdef _SNMPv3
  74.   ,version2stern,   ///< (2) Dont use this!
  75.   version3          ///< (3) SNMPv3
  76. #endif
  77. };
  78. //----[ Target class ]-------------------------------------------------
  79. /**
  80.  * Abstract class used to provide a virtual interface into Targets.
  81.  *
  82.  * @note Although it is possible to create an object of this class,
  83.  *       you won't be happy with that...
  84.  */
  85. class DLLOPT SnmpTarget
  86. {
  87.  public:
  88.   /**
  89.    * Enum to identify a target object through SnmpTarget::get_type() method.
  90.    */
  91.   enum target_type
  92.   {
  93.     type_base,    ///< It is a SnmpTarget object
  94.     type_ctarget, ///< It is a CTarget object
  95.     type_utarget  ///< It is a Utarget object
  96.   };
  97.   /**
  98.    * Create a SnmpTarget object with default values.
  99.    * The validity of the target will be false.
  100.    */
  101.   SnmpTarget()
  102.     : validity(false), timeout(default_timeout), retries(default_retries),
  103.     version(version1), ttype(type_base) {};
  104.   /**
  105.    * Create a SnmpTarget object with the given Address.
  106.    */
  107.   SnmpTarget( const Address &address)
  108.     : validity(false), timeout(default_timeout), retries(default_retries),
  109.     version(version1), ttype(type_base), my_address(address)
  110.     { if (my_address.valid()) validity = true; };
  111.   /**
  112.    * Destructor that has nothing to do.
  113.    */
  114.   virtual ~SnmpTarget() {};
  115.   /**
  116.    * Return the type of the target object.
  117.    *
  118.    * If a SNMP message is received through a callback (that only
  119.    * passes a SnmpTarget pointer to the callback function), this
  120.    * method can be used to check the type of the object before doing a
  121.    * cast to CTarget or UTarget.
  122.    */
  123.   target_type get_type() const { return ttype; };
  124.   /**
  125.    * Returns the validity of the target object.
  126.    *
  127.    * @return true, if the target is valid.
  128.    */
  129.   bool valid() const { return validity;};
  130.   /**
  131.    * Set the retry value.
  132.    *
  133.    * @param r - The number of retries if no response is received.
  134.    */
  135.   void set_retry( const int r) { retries = r; };
  136.   /**
  137.    * Get the retry value.
  138.    *
  139.    * @return The number of retries on timeout.
  140.    */
  141.   int get_retry() const { return retries; };
  142.   /**
  143.    * Set the timeout for requests.
  144.    *
  145.    * The default timeout for requests is 1 second (100).
  146.    *
  147.    * @param t - Timeout in 10ms, so 100 will set the timeout to 1 second.
  148.    */
  149.   void set_timeout( const unsigned long t) { timeout = t; };
  150.   /**
  151.    * Get the timeout.
  152.    *
  153.    * @return The timeout for requests sent using this target object.
  154.    */
  155.   unsigned long get_timeout() const { return timeout; };
  156.   /**
  157.    * Change the default timeout.
  158.    *
  159.    * Changing the default timeout value will only have an effect for
  160.    * target objects that are created after setting this value.
  161.    *
  162.    * @param t - The new default timeout value
  163.    */
  164.   static void set_default_timeout(const unsigned long t)
  165.     { default_timeout = t; };
  166.   /**
  167.    * Change the default retries vlaue.
  168.    *
  169.    * Changing the default retries value will only have an effect for
  170.    * target objects that are created after setting this value.
  171.    *
  172.    * @param r - The new retries value
  173.    */
  174.   static void set_default_retries(const int r) { default_retries = r; };
  175.   /**
  176.    * Clone operator.
  177.    *
  178.    * Virtual clone operation for creating a new SnmpTarget from an existing
  179.    * SnmpTarget.
  180.    *
  181.    * @note The caller MUST use the delete operation on the return
  182.    *       value when done.
  183.    *
  184.    * @return A pointer to the new object on success, 0 on failure.
  185.    */
  186.   virtual SnmpTarget *clone() const;
  187.   /**
  188.    * Get the address object.
  189.    *
  190.    * @param address - GenAddress object to store the target address.
  191.    * @return TRUE on success.
  192.    */
  193.   int get_address(GenAddress &address) const;
  194.   /**
  195.    * Get the address object.
  196.    *
  197.    * @return The target address.
  198.    */
  199.   const GenAddress &get_address() const { return my_address; };
  200.   /**
  201.    * Set the address object.
  202.    *
  203.    * @param address - The address that this target should use.
  204.    * @return TRUE on success.
  205.    */
  206.   virtual int set_address(const Address &address);
  207.   /**
  208.    * Get the SNMP version for this target.
  209.    *
  210.    * @return The SNMP version of this target object.
  211.    * @see enum snmp_version
  212.    */
  213.   snmp_version get_version() const { return version;};
  214.   /**
  215.    * Set the SNMP version of this target.
  216.    *
  217.    * @param v - The SNMP version that should be used for sending messages.
  218.    */
  219.   void set_version(const snmp_version v) { version = v; };
  220.   /**
  221.    * Overloeaded compare operator.
  222.    *
  223.    * Two SnmpTarget objects are considered equal, if all member
  224.    * variables are equal.
  225.    *
  226.    * @return 1 if targets are equal, 0 if not.
  227.    */
  228.   int operator==(const SnmpTarget &rhs) const;
  229.   /**
  230.    * Reset the object.
  231.    */
  232.   virtual void clear();
  233.  protected:
  234.   bool validity;         ///< Validity of the object
  235.   unsigned long timeout; ///< xmit timeout in 10 milli secs
  236.   int retries;           ///< number of retries
  237.   snmp_version version;  ///< SNMP version to use
  238.   target_type ttype;     ///< Type of the target
  239.   GenAddress my_address; ///< Address object
  240.   static unsigned long default_timeout; ///< default timeout for new objects
  241.   static int default_retries;           ///< default retries for new objects
  242. };
  243. //----[  CTarget class ]----------------------------------------------
  244. /**
  245.  * Community based target object.
  246.  * This target can be used for SNMPv1 and SNMPv2c messages.
  247.  */
  248. class DLLOPT CTarget: public SnmpTarget
  249. {
  250.  public:
  251.   /**
  252.    * Constructor with no args.
  253.    * The validity of the target will be false.
  254.    */
  255.   CTarget();
  256.   /**
  257.    * Constructor with all args.
  258.    *
  259.    * @param address - Address of the target host (cann be any address object)
  260.    * @param read_community_name - Community for get requests
  261.    * @param write_community_name - Community for set requests
  262.    */
  263.   CTarget( const Address &address,
  264.    const char *read_community_name,
  265.    const char *write_community_name);
  266.   /**
  267.    * Constructor with all args.
  268.    *
  269.    * @param address - Address of the target host (cann be any address object)
  270.    * @param read_community_name - Community for get requests
  271.    * @param write_community_name - Community for set requests
  272.    */
  273.   CTarget( const Address &address,
  274.    const OctetStr &read_community_name,
  275.    const OctetStr &write_community_name);
  276.   /**
  277.    * Constructor with only address.
  278.    *
  279.    * The read and write community names will be set to "public".
  280.    *
  281.    * @param address - Address of the target host (cann be any address object)
  282.    */
  283.   CTarget( const Address &address);
  284.   /**
  285.    * Constructor from existing CTarget.
  286.    */
  287.   CTarget( const CTarget &target);
  288.   /**
  289.    * Destructor, that has nothing to do.
  290.    */
  291.   ~CTarget() {};
  292.   /**
  293.    * Clone operator.
  294.    *
  295.    * Clone operation for creating a new CTarget from an existing
  296.    * CTarget.
  297.    *
  298.    * @note The caller MUST use the delete operation on the return
  299.    *       value when done.
  300.    *
  301.    * @return A pointer to the new object on success, 0 on failure.
  302.    */
  303.   SnmpTarget *clone() const { return (SnmpTarget *) new CTarget(*this); };
  304.   /**
  305.    * Get the read community name.
  306.    *
  307.    * @return C string of the read community.
  308.    */
  309.   const char * get_readcommunity() const
  310.     { return (const char *) read_community.get_printable(); };
  311.   /**
  312.    * Get the read community name.
  313.    *
  314.    * @param oct - OctetStr that will be filled with the read community name.
  315.    */
  316.   void get_readcommunity( OctetStr& oct) const { oct = read_community; };
  317.   /**
  318.    * Set the read community name.
  319.    *
  320.    * @param str - The new read community name
  321.    */
  322.   void set_readcommunity( const char * str) { read_community = str; };
  323.   /**
  324.    * Set the read community name.
  325.    *
  326.    * @param oct - The new read community name
  327.    */
  328.   void set_readcommunity( const OctetStr& oct) { read_community = oct; };
  329.   /**
  330.    * Get the write community name.
  331.    *
  332.    * @return C string of the write community.
  333.    */
  334.   const char * get_writecommunity() const
  335.     { return (const char *) write_community.get_printable(); };
  336.   /**
  337.    * Get the write community name.
  338.    *
  339.    * @param oct - OctetStr that will be filled with the write community name.
  340.    */
  341.   void get_writecommunity( OctetStr &oct) const { oct = write_community; };
  342.   /**
  343.    * Set the write community name.
  344.    *
  345.    * @param str - The new write community name
  346.    */
  347.   void set_writecommunity( const char * str) { write_community = str; };
  348.   /**
  349.    * Set the write community name.
  350.    *
  351.    * @param oct - The new write community name
  352.    */
  353.   void set_writecommunity( const OctetStr &oct) { write_community = oct; };
  354.   /**
  355.    * Overloaded assignment operator.
  356.    */
  357.   CTarget& operator=( const CTarget& target);
  358.   /**
  359.    * Overloeaded compare operator.
  360.    *
  361.    * Two CTarget objects are considered equal, if all member variables
  362.    * and the base classes are equal.
  363.    *
  364.    * @return 1 if targets are equal, 0 if not.
  365.    */
  366.   int operator==( const CTarget &rhs) const;
  367.   /**
  368.    * Get all values of a CTarget object.
  369.    *
  370.    * @param read_comm  - Read community name
  371.    * @param write_comm - Write community name
  372.    * @param address    - Address of the target
  373.    * @param t          - Timeout value
  374.    * @param r          - Retries value
  375.    * @param v          - The SNMP version of this target
  376.    *
  377.    * @return TRUE on success and FALSE on failure.
  378.    */
  379.   int resolve_to_C( OctetStr& read_comm,
  380.     OctetStr& write_comm,
  381.     GenAddress &address,
  382.     unsigned long &t,
  383.     int &r,
  384.     unsigned char &v) const;
  385.   /**
  386.    * Reset the object.
  387.    */
  388.   void clear();
  389.  protected:
  390.   OctetStr read_community;        //  get community
  391.   OctetStr write_community;       //  set community
  392. };
  393. // create OidCollection type
  394. typedef SnmpCollection<SnmpTarget> TargetCollection;
  395. #ifdef _SNMPv3
  396. #define INITIAL_USER "initial"
  397. #else
  398. #define INITIAL_USER "public"
  399. #endif
  400. //----[  UTarget class ]----------------------------------------------
  401. /**
  402.  * User based Target.
  403.  *
  404.  * This class is used for SNMPv3 targets.
  405.  */
  406. class DLLOPT UTarget: public SnmpTarget
  407. {
  408.  public:
  409.   /**
  410.    * Constructor with no args.
  411.    * The validity of the target will be false.
  412.    */
  413.   UTarget();
  414.   /**
  415.    * Constructor with all args.
  416.    *
  417.    * @param address   - Address of the target host (cann be any address object)
  418.    * @param sec_name   - The security name
  419.    * @param sec_model - The security model to use
  420.    */
  421.   UTarget( const Address &address,
  422.    const char *sec_name,
  423.    const int sec_model);
  424.   /**
  425.    * Constructor with all args.
  426.    *
  427.    * @param address   - Address of the target host (cann be any address object)
  428.    * @param sec_name  - The security name
  429.    * @param sec_model - The security model to use
  430.    */
  431.   UTarget( const Address &address,
  432.    const OctetStr &sec_name,
  433.    const int sec_model);
  434.   /**
  435.    * Constructor with only address.
  436.    *
  437.    * Assumes the following defaults: security_name: initial, version: SNMPv3,
  438.    * security_model: v3MP.
  439.    *
  440.    * @param address - Address of the target host (cann be any address object)
  441.    */
  442.   UTarget( const Address &address);
  443.   /**
  444.    * Constructor from existing UTarget.
  445.    */
  446.   UTarget( const UTarget &target);
  447.   /**
  448.    * Destructor, that has nothing to do.
  449.    */
  450.   ~UTarget() {};
  451.   /**
  452.    * Clone operator.
  453.    *
  454.    * Clone operation for creating a new UTarget from an existing
  455.    * UTarget.
  456.    *
  457.    * @note The caller MUST use the delete operation on the return
  458.    *       value when done.
  459.    *
  460.    * @return A pointer to the new object on success, 0 on failure.
  461.    */
  462.   SnmpTarget *clone() const { return (SnmpTarget *) new UTarget(*this); };
  463.   /**
  464.    * Set the address object.
  465.    *
  466.    * This method is the same as in SnmpTarget, but it deletes engine_id.
  467.    *
  468.    * @param address - The address that this target should use.
  469.    * @return TRUE on success.
  470.    */
  471.   int set_address(const Address &address);
  472.   /**
  473.    * Get the security name.
  474.    *
  475.    * @return A const reference to the security name.
  476.    */
  477.   const OctetStr& get_security_name() const { return security_name;} ;
  478.   /**
  479.    * Get the security name.
  480.    *
  481.    * @param oct - OctetStr that will be filled with the security name.
  482.    */
  483.   void get_security_name( OctetStr& oct) const { oct = security_name; };
  484.   /**
  485.    * Set the security name.
  486.    *
  487.    * @param str - The new security name
  488.    */
  489.   void set_security_name( const char * str) { security_name = str; };
  490.   /**
  491.    * Set the security name.
  492.    *
  493.    * @param oct - The new security name
  494.    */
  495.   void set_security_name( const OctetStr& oct) { security_name = oct; };
  496. #ifdef _SNMPv3
  497.   /**
  498.    * Set the engine id.
  499.    *
  500.    * In most cases it is not necessary for the user to set the engine
  501.    * id as snmp++ performs engine id discovery. If the engine id is
  502.    * set by the user, no engine_id discovery is made, even if the
  503.    * engine id set by the user is wrong.
  504.    *
  505.    * @param str - The engine id to use
  506.    */
  507.   void set_engine_id( const char * str) { engine_id = str; };
  508.   /**
  509.    * Set the engine id.
  510.    *
  511.    * In most cases it is not necessary for the user to set the engine
  512.    * id as snmp++ performs engine id discovery. If the engine id is
  513.    * set by the user, no engine_id discovery is made, even if the
  514.    * engine id set by the user is wrong.
  515.    *
  516.    * @param oct - The engine id to use
  517.    */
  518.   void set_engine_id( const OctetStr &oct) { engine_id = oct; };
  519.   /**
  520.    * Get the engine id.
  521.    *
  522.    * @return A const reference to the enigne id of this target.
  523.    */
  524.   const OctetStr& get_engine_id() const { return engine_id; };
  525.   /**
  526.    * Get the engine id.
  527.    *
  528.    * @param oct - OctetStr that will be filled with the engine id
  529.    */
  530.   void get_engine_id( OctetStr& oct) const { oct = engine_id; };
  531. #endif
  532.   /**
  533.    * Get the security_model.
  534.    *
  535.    * @return An integer representing the security_model of this target.
  536.    */
  537.   int get_security_model() const { return security_model; };
  538.   /**
  539.    * Set the security_model.
  540.    *
  541.    * @param sec_model - The security model to use.
  542.    */
  543.   void set_security_model(int sec_model) { security_model = sec_model; };
  544.   /**
  545.    * Overloaded assignment operator.
  546.    */
  547.   UTarget& operator=( const UTarget& target);
  548.   /**
  549.    * Overloeaded compare operator.
  550.    *
  551.    * Two UTarget objects are considered equal, if all member variables
  552.    * (beside the engine id) and the base classes are equal.
  553.    *
  554.    * @return 1 if targets are equal, 0 if not.
  555.    */
  556.   virtual int operator==( const UTarget &rhs) const;
  557.   /**
  558.    * Get all values of a UTarget object.
  559.    *
  560.    * @param sec_name   - security name
  561.    * @param sec_model  - security model
  562.    * @param address    - Address of the target
  563.    * @param t          - Timeout value
  564.    * @param r          - Retries value
  565.    * @param v          - The SNMP version of this target
  566.    *
  567.    * @return TRUE on success and FALSE on failure.
  568.    */
  569.   int resolve_to_U( OctetStr&  sec_name,
  570.     int &sec_model,
  571.     GenAddress &address,
  572.     unsigned long &t,
  573.     int &r,
  574.     unsigned char &v) const;
  575.   /**
  576.    * Reset the object.
  577.    */
  578.   void clear();
  579.  protected:
  580.   OctetStr security_name;
  581.   int security_model;
  582. #ifdef _SNMPv3
  583.   OctetStr engine_id;
  584. #endif
  585. };
  586. #ifdef SNMP_PP_NAMESPACE
  587. } // end of namespace Snmp_pp
  588. #endif 
  589. #endif //_TARGET