summaryrefslogtreecommitdiff
path: root/trunk/ACE/ASNMP/asnmp/target.h
blob: 084088e5f4f04466d2cf0d22282049f2bcec48b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260


#ifndef TARGET_
#define TARGET_
//=============================================================================
/**
 *  @file    target.h
 *
 *  $Id$
 *
 *  @brief
 *
 *  @author Peter E Mellquist Michael R. MacFaden (ported to ACE)
 */
//=============================================================================

/*===================================================================
  Copyright (c) 1996
  Hewlett-Packard Company

  ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  Permission to use, copy, modify, distribute and/or sell this software
  and/or its documentation is hereby granted without fee. User agrees
  to display the above copyright notice and this license notice in all
  copies of the software and any documentation of the software. User
  agrees to assume all liability for the use of the software; Hewlett-Packard
  makes no representations about the suitability of this software for any
  purpose. It is provided "AS-IS" without warranty of any kind,either express
  or implied. User hereby grants a royalty-free license to any and all
  derivatives based upon this software code base.
=====================================================================*/

//----[ includes ]------------------------------------------------
#include "ace/INET_Addr.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "asnmp/address.h"
#include "asnmp/oid.h"
#include "asnmp/octet.h"

//----[ enumerated types for SNMP versions ]-------------------------
enum snmp_version {
   version1,       // 0
   version2c,       // 1 (Cisco IOS does not have IOS v2c agent available yet)
   version3        // 2 (IETF working on this version)
};

// targets contain the following default properties
enum ASNMP_Defs {
  DEF_TIMEOUT = 1,              // unit: seconds
  DEF_RETRIES = 1,              // no retry default
  DEF_MAX_SNMP_PACKET = 1430,   // maximum pdu len on the wire (eth mtu-ip hdr)
                                // split bigger pdus (not implemented yet)
  DEF_AGENT_PORT = 161,         // port # for SNMP agent
  DEF_TRAP_PORT = 162,          // port # for SNMP trap receiver
  DEF_VERSION = version1,       // default SNMP version
  MAX_COMM_STR_LEN = 255,       // max value this impl will accept from client
  MAX_TARGET_STRING_REP = 2048  // max value this impl will accept from client
};

#define READ_COMM_STR "public"
#define WRITE_COMM_STR "private"

// Abstract class used to provide a virtual interface into Targets
//
/**
 * @class SnmpTarget
 *
 * @brief Abstract Base class SnmpTarget is used to Collect all transmission
 * details to communicate with an SNMP
 */
class ASNMP_Export SnmpTarget
{
 public:

    /// allow destruction of derived classes
    virtual ~SnmpTarget();

    /// return validity of target
    int valid() const;

    /// set the retry value
    void set_retry( const int r);

    /// set the object's timeout (in seconds)
    void set_timeout( const unsigned long t);

    /// set the instance version
    void set_version( const snmp_version v);

    /// all classes constructed will have this write community string
    void set_max_pdu_size(const unsigned long max_pdu_sz);

    /// change the "class" default default timeout (in seconds)
    void set_default_timeout( const unsigned long t);

    /// change the default send retries
    void set_default_retry( const int r);

    /// all classes constructed will have this write community string
    void set_default_max_pdu_size(const unsigned long max_pdu_sz);

    /// change class default
    void set_default_version( const snmp_version v);

    // *** get methods ***

    /// get the retry value
    int get_default_retry() const;

    /// get the timeout (seconds)
    unsigned long get_timeout() const;

    /// get instance max buffer size
    unsigned long get_max_pdu_size() const;

    /// all classes constructed will have this write community string
    void get_default_max_pdu_size(const unsigned long max_pdu_sz);

    /// get the version
    snmp_version get_version() const;

    snmp_version get_default_version() const;

    /// return send retry number for this instancd
    int get_retry() const;

    /**
     * virtual clone operation for creating a new SnmpTarget from an existing
     * SnmpTarget.  The caller MUST use the delete operation on the return
     * value when done.
     */
    virtual SnmpTarget *clone() const = 0;

   /// manipulate the base part
   friend bool operator==(const SnmpTarget& lhs, const SnmpTarget& rhs);

   SnmpTarget& operator=(const SnmpTarget& lhs);

   protected:
     ///     SnmpTarget(const SnmpTarget &);
     SnmpTarget();

    /// used by derived class instances
    int validity_;

    /// instance value xmit timeout in milli secs
    unsigned long timeout_;

    /// instance value number of retries
    int retries_;

    /// size of pdu
    unsigned max_pdu_size_;

    /// instance value the snmp version
    snmp_version version_;

    // class wide default values
    /// xmit timeout in secs
    static unsigned long default_timeout_;

    /// number of retries
    static int default_retries_;

    /// snmp protocol version
    static unsigned long default_max_pdu_size_;
    static snmp_version default_version_;
};

//----[  UdpTarget class ]----------------------------------------------
// UDP/IP transport using "community string" based agents  (targets)
//
/**
 * @class UdpTarget
 *
 * @brief Concrete class UdpTarget contains all Details for communicating
 * with a SNMPv1 agent over UDP/IPv4 transport
 */
class ASNMP_Export UdpTarget : public SnmpTarget
{
  public:
    UdpTarget();

    /**
     * constructor with only address
     * assumes default as public, public
     * can be constructed with IP address object
     */
    UdpTarget( const UdpAddress& udp);

    /// can be constructed with Udp address object TODO: merge addresses
    UdpTarget( ACE_INET_Addr& ace_inet_addr);

    /// destructor
    ~UdpTarget();

    // ** set ***

    /// set the read community using an OctetStr
    void set_read_community( const OctetStr& new_read_community);

    /// set the write community using an OctetStr
    void set_write_community( const OctetStr& write_community);

    /// set the address
    int set_address( UdpAddress &udp_address);

    // ** get ***

    /// get the read community as an Octet Str object
    void get_read_community( OctetStr& read_community_oct) const;

    /// get the write community as an OctetStr
    void get_write_community( OctetStr &write_community_oct) const;

    /// get the address
    void get_address( UdpAddress& address) const;

    /// all classes constructed will have this read community string
    void set_default_read_community(const OctetStr& rd_community);

    /// all classes constructed will have this write community string
    void set_default_write_community(const OctetStr& wr_community);

    /// all classes constructed will have this read community string
    void get_default_read_community(OctetStr& rd_community) const;

    /// all classes constructed will have this write community string
    void get_default_write_community(OctetStr& wr_community) const;

    /// overloaded assignment
    UdpTarget& operator=( const UdpTarget& target);

    /// compare two C targets
    friend bool operator==( const UdpTarget &lhs, const UdpTarget &rhs);

    /// string representation of object
    const char *to_string();

    /// clone from existing UdpTarget
    SnmpTarget *clone() const;

  protected:
    static OctetStr default_rd_community_;
    static OctetStr default_wr_community_;
    OctetStr read_community_;
    OctetStr write_community_;
    UdpAddress udp_address_;
    snmp_version version_;

    /// to_string() rep of data
    char output_buffer_[MAX_TARGET_STRING_REP];
};


#endif //TARGET_