target.h
上传用户:uncom666
上传日期:2020-03-30
资源大小:1426k
文件大小:18k
源码类别:

SNMP编程

开发平台:

Visual C++

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