OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [net/] [snmp/] [lib/] [current/] [include/] [snmp.h] - Blame information for rev 786

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
//==========================================================================
2
//
3
//      ./lib/current/include/snmp.h
4
//
5
//
6
//==========================================================================
7
// ####ECOSGPLCOPYRIGHTBEGIN####                                            
8
// -------------------------------------------                              
9
// This file is part of eCos, the Embedded Configurable Operating System.   
10
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
11
//
12
// eCos is free software; you can redistribute it and/or modify it under    
13
// the terms of the GNU General Public License as published by the Free     
14
// Software Foundation; either version 2 or (at your option) any later      
15
// version.                                                                 
16
//
17
// eCos is distributed in the hope that it will be useful, but WITHOUT      
18
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or    
19
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License    
20
// for more details.                                                        
21
//
22
// You should have received a copy of the GNU General Public License        
23
// along with eCos; if not, write to the Free Software Foundation, Inc.,    
24
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.            
25
//
26
// As a special exception, if other files instantiate templates or use      
27
// macros or inline functions from this file, or you compile this file      
28
// and link it with other works to produce a work based on this file,       
29
// this file does not by itself cause the resulting work to be covered by   
30
// the GNU General Public License. However the source code for this file    
31
// must still be made available in accordance with section (3) of the GNU   
32
// General Public License v2.                                               
33
//
34
// This exception does not invalidate any other reasons why a work based    
35
// on this file might be covered by the GNU General Public License.         
36
// -------------------------------------------                              
37
// ####ECOSGPLCOPYRIGHTEND####                                              
38
//####UCDSNMPCOPYRIGHTBEGIN####
39
//
40
// -------------------------------------------
41
//
42
// Portions of this software may have been derived from the UCD-SNMP
43
// project,  <http://ucd-snmp.ucdavis.edu/>  from the University of
44
// California at Davis, which was originally based on the Carnegie Mellon
45
// University SNMP implementation.  Portions of this software are therefore
46
// covered by the appropriate copyright disclaimers included herein.
47
//
48
// The release used was version 4.1.2 of May 2000.  "ucd-snmp-4.1.2"
49
// -------------------------------------------
50
//
51
//####UCDSNMPCOPYRIGHTEND####
52
//==========================================================================
53
//#####DESCRIPTIONBEGIN####
54
//
55
// Author(s):    hmt
56
// Contributors: hmt
57
// Date:         2000-05-30
58
// Purpose:      Port of UCD-SNMP distribution to eCos.
59
// Description:  
60
//              
61
//
62
//####DESCRIPTIONEND####
63
//
64
//==========================================================================
65
/********************************************************************
66
       Copyright 1989, 1991, 1992 by Carnegie Mellon University
67
 
68
                          Derivative Work -
69
Copyright 1996, 1998, 1999, 2000 The Regents of the University of California
70
 
71
                         All Rights Reserved
72
 
73
Permission to use, copy, modify and distribute this software and its
74
documentation for any purpose and without fee is hereby granted,
75
provided that the above copyright notice appears in all copies and
76
that both that copyright notice and this permission notice appear in
77
supporting documentation, and that the name of CMU and The Regents of
78
the University of California not be used in advertising or publicity
79
pertaining to distribution of the software without specific written
80
permission.
81
 
82
CMU AND THE REGENTS OF THE UNIVERSITY OF CALIFORNIA DISCLAIM ALL
83
WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
84
WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL CMU OR
85
THE REGENTS OF THE UNIVERSITY OF CALIFORNIA BE LIABLE FOR ANY SPECIAL,
86
INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
87
FROM THE LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
88
CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
89
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
90
*********************************************************************/
91
#ifndef SNMP_H
92
#define SNMP_H
93
 
94
#ifdef __cplusplus
95
extern "C" {
96
#endif
97
/*
98
 * Definitions for the Simple Network Management Protocol (RFC 1067).
99
 *
100
 *
101
 */
102
/***********************************************************
103
        Copyright 1988, 1989 by Carnegie Mellon University
104
 
105
                      All Rights Reserved
106
 
107
Permission to use, copy, modify, and distribute this software and its
108
documentation for any purpose and without fee is hereby granted,
109
provided that the above copyright notice appear in all copies and that
110
both that copyright notice and this permission notice appear in
111
supporting documentation, and that the name of CMU not be
112
used in advertising or publicity pertaining to distribution of the
113
software without specific, written prior permission.
114
 
115
CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
116
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
117
CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
118
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
119
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
120
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
121
SOFTWARE.
122
******************************************************************/
123
 
124
 
125
#define SNMP_PORT           161         /* standard UDP port for SNMP agents
126
                                           to receive requests messages */
127
#define SNMP_TRAP_PORT      162         /* standard UDP port for SNMP
128
                                           managers to receive notificaion
129
                                          (trap and inform) messages */
130
 
131
#define SNMP_MAX_LEN        1500        /* typical maximum message size */
132
#define SNMP_MIN_MAX_LEN    484         /* minimum maximum message size */
133
 
134
/* SNMP versions */
135
/* There currently exists the following SNMP versions.
136
 * (Note that only SNMPv1 is in widespread usage, and this code supports
137
 *  only SNMPv1, SNMPv2c, and SNMPv3.
138
 *
139
 *  SNMPv1 - (full) the original version, defined by RFC 1157
140
 *  SNMPsec - (historic) the first attempt to add strong security
141
 *             to SNMPv1, defined by RFCs 1351, 1352, and 1353.
142
 *  SNMPv2p - (historic) party-based SNMP, which was another
143
 *             attempt to add strong security to SNMP, defined
144
 *             by RFCs 1441, 1445, 1446, 1448, and 1449.
145
 *  SNMPv2c - (experimental) community string-based SNMPv2,
146
 *             which was an attempt to combine the protocol
147
 *             operations of SNMPv2 with the security of
148
 *             SNMPv1, defined by RFCs 1901, 1905, and 1906.
149
 *  SNMPv2u - (experimental) user-based SNMPv2, which provided
150
 *             security based on user names and protocol
151
 *             operations of SNMPv2, defined by RFCs 1905,
152
 *             1909, and 1910.
153
 *  SNMPv2* (or SNMPv2star) - (experimental) an attempt to add the
154
 *             best features of SNMPv2p and SNMPv2u, defined
155
 *             by unpublished documents found at WEB site
156
 *             owned by SNMP Research (a leading SNMP vendor)
157
 *  SNMPv3 - the current attempt by the IETF working group to merge
158
 *             the SNMPv2u and SNMPv2* proposals into a more widly
159
 *             accepted SNMPv3.  It is defined by not yet published
160
 *             documents of the IETF SNMPv3 WG.
161
 *
162
 * SNMPv1, SNMPv2c, SNMPv2u, and SNMPv3 messages have a common
163
 * form, which is an ASN.1 sequence containing a message version
164
 * field, followed by version dependent fields.
165
 * SNMPsec, SNMPv2p, and SNMPv2* messages have a common form,
166
 * which is a tagged ASN.1 context specific sequence containing
167
 * message dependent fields.
168
 *
169
 * In the #defines for the message versions below, the value
170
 * for SNMPv1, SNMPv2c, SNMPv2u, and SNMPv3 messages is the
171
 * value of the message version field. Since SNMPsec, SNMPv2p,
172
 * and SNMPv2* messages do not have a message version field,
173
 * the value in the defines for them is choosen to be a large
174
 * arbitrary number.
175
 *
176
 * Note that many of the version ID's are defined below purely for
177
 * documentational purposes.  At this point the only protocol planned
178
 * for future implementations is SNMP3, as the other v2 protocols will
179
 * not be supported by the IETF (ie, v2u, v2sec, v2star) or used by
180
 * the snmp community at large (at the time of this writing).  */
181
 
182
/* versions based on version field */
183
#define SNMP_VERSION_1     0
184
#define SNMP_VERSION_2c    1
185
#define SNMP_VERSION_2u    2   /* not (will never be) supported by this code */
186
#define SNMP_VERSION_3     3   
187
 
188
/* versions not based on a version field */
189
#define SNMP_VERSION_sec   128 /* not (will never be) supported by this code */
190
#define SNMP_VERSION_2p    129
191
#define SNMP_VERSION_2star 130 /* not (will never be) supported by this code */
192
 
193
/* PDU types in SNMPv1, SNMPsec, SNMPv2p, SNMPv2c, SNMPv2u, SNMPv2*, and SNMPv3 */
194
#define SNMP_MSG_GET        (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x0)
195
#define SNMP_MSG_GETNEXT    (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x1)
196
#define SNMP_MSG_RESPONSE   (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x2)
197
#define SNMP_MSG_SET        (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x3)
198
 
199
/* PDU types in SNMPv1 and SNMPsec */
200
#define SNMP_MSG_TRAP       (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x4)
201
 
202
/* PDU types in SNMPv2p, SNMPv2c, SNMPv2u, SNMPv2*, and SNMPv3 */
203
#define SNMP_MSG_GETBULK    (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x5)
204
#define SNMP_MSG_INFORM     (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x6)
205
#define SNMP_MSG_TRAP2      (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x7)
206
 
207
/* PDU types in SNMPv2u, SNMPv2*, and SNMPv3 */
208
#define SNMP_MSG_REPORT     (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x8)
209
 
210
/* test for member of Confirmed Class i.e., reportable */
211
#define SNMP_CMD_CONFIRMED(c) (c == SNMP_MSG_INFORM || c == SNMP_MSG_GETBULK ||\
212
                               c == SNMP_MSG_GETNEXT || c == SNMP_MSG_GET || \
213
                               c == SNMP_MSG_SET)
214
 
215
/* Exception values for SNMPv2p, SNMPv2c, SNMPv2u, SNMPv2*, and SNMPv3 */
216
#define SNMP_NOSUCHOBJECT    (ASN_CONTEXT | ASN_PRIMITIVE | 0x0)
217
#define SNMP_NOSUCHINSTANCE  (ASN_CONTEXT | ASN_PRIMITIVE | 0x1)
218
#define SNMP_ENDOFMIBVIEW    (ASN_CONTEXT | ASN_PRIMITIVE | 0x2)
219
 
220
/* Error codes (the value of the field error-status in PDUs) */
221
 
222
/* in SNMPv1, SNMPsec, SNMPv2p, SNMPv2c, SNMPv2u, SNMPv2*, and SNMPv3 PDUs */
223
#define SNMP_ERR_NOERROR                (0)     /* XXX  Used only for PDUs? */
224
#define SNMP_ERR_TOOBIG                 (1)
225
#define SNMP_ERR_NOSUCHNAME             (2)
226
#define SNMP_ERR_BADVALUE               (3)
227
#define SNMP_ERR_READONLY               (4)
228
#define SNMP_ERR_GENERR                 (5)
229
 
230
/* in SNMPv2p, SNMPv2c, SNMPv2u, SNMPv2*, and SNMPv3 PDUs */
231
#define SNMP_ERR_NOACCESS               (6)
232
#define SNMP_ERR_WRONGTYPE              (7)
233
#define SNMP_ERR_WRONGLENGTH            (8)
234
#define SNMP_ERR_WRONGENCODING          (9)
235
#define SNMP_ERR_WRONGVALUE             (10)
236
#define SNMP_ERR_NOCREATION             (11)
237
#define SNMP_ERR_INCONSISTENTVALUE      (12)
238
#define SNMP_ERR_RESOURCEUNAVAILABLE    (13)
239
#define SNMP_ERR_COMMITFAILED           (14)
240
#define SNMP_ERR_UNDOFAILED             (15)
241
#define SNMP_ERR_AUTHORIZATIONERROR     (16)
242
#define SNMP_ERR_NOTWRITABLE            (17)
243
 
244
/* in SNMPv2c, SNMPv2u, SNMPv2*, and SNMPv3 PDUs */
245
#define SNMP_ERR_INCONSISTENTNAME       (18)
246
 
247
#define MAX_SNMP_ERR    18
248
 
249
 
250
/* values of the generic-trap field in trap PDUs */
251
#define SNMP_TRAP_COLDSTART             (0)
252
#define SNMP_TRAP_WARMSTART             (1)
253
#define SNMP_TRAP_LINKDOWN              (2)
254
#define SNMP_TRAP_LINKUP                (3)
255
#define SNMP_TRAP_AUTHFAIL              (4)
256
#define SNMP_TRAP_EGPNEIGHBORLOSS       (5)
257
#define SNMP_TRAP_ENTERPRISESPECIFIC    (6)
258
 
259
/* row status values */
260
#define SNMP_ROW_NONEXISTENT            0
261
#define SNMP_ROW_ACTIVE                 1
262
#define SNMP_ROW_NOTINSERVICE           2
263
#define SNMP_ROW_NOTREADY               3
264
#define SNMP_ROW_CREATEANDGO            4
265
#define SNMP_ROW_CREATEANDWAIT          5
266
#define SNMP_ROW_DESTROY                6
267
 
268
/* row storage values */
269
#define SNMP_STORAGE_OTHER              1
270
#define SNMP_STORAGE_VOLATILE           2
271
#define SNMP_STORAGE_NONVOLATILE        3
272
#define SNMP_STORAGE_PERMANENT          4
273
#define SNMP_STORAGE_READONLY           5
274
 
275
/* message processing models */
276
#define SNMP_MP_MODEL_SNMPv1            0
277
#define SNMP_MP_MODEL_SNMPv2c           1
278
#define SNMP_MP_MODEL_SNMPv2u           2
279
#define SNMP_MP_MODEL_SNMPv3            3
280
#define SNMP_MP_MODEL_SNMPv2p           256
281
 
282
/* security values */
283
#define SNMP_SEC_MODEL_ANY              0
284
#define SNMP_SEC_MODEL_SNMPv1           1
285
#define SNMP_SEC_MODEL_SNMPv2c          2
286
#define SNMP_SEC_MODEL_USM              3
287
#define SNMP_SEC_MODEL_SNMPv2p          256
288
 
289
#define SNMP_SEC_LEVEL_NOAUTH           1
290
#define SNMP_SEC_LEVEL_AUTHNOPRIV       2
291
#define SNMP_SEC_LEVEL_AUTHPRIV         3
292
 
293
#define SNMP_MSG_FLAG_AUTH_BIT          0x01
294
#define SNMP_MSG_FLAG_PRIV_BIT          0x02
295
#define SNMP_MSG_FLAG_RPRT_BIT          0x04
296
 
297
        /* control PDU handling characteristics */
298
#define UCD_MSG_FLAG_RESPONSE_PDU            0x100
299
#define UCD_MSG_FLAG_EXPECT_RESPONSE         0x200
300
#define UCD_MSG_FLAG_FORCE_PDU_COPY          0x400
301
#define UCD_MSG_FLAG_ALWAYS_IN_VIEW          0x800
302
 
303
/* view status */
304
#define SNMP_VIEW_INCLUDED              1
305
#define SNMP_VIEW_EXCLUDED              2
306
 
307
/* basic oid values */
308
#define SNMP_OID_INTERNET               1, 3, 6, 1
309
#define SNMP_OID_ENTERPRISES            SNMP_OID_INTERNET, 4, 1
310
#define SNMP_OID_MIB2                   SNMP_OID_INTERNET, 2, 1
311
#define SNMP_OID_SNMPV2                 SNMP_OID_INTERNET, 6
312
#define SNMP_OID_SNMPMODULES            SNMP_OID_SNMPV2, 3
313
 
314
/* lengths as defined by TCs */
315
#define SNMPADMINLENGTH 255
316
 
317
 
318
#ifdef CMU_COMPATIBLE
319
/* PDU types in SNMPv1, SNMPsec, SNMPv2p, SNMPv2c, SNMPv2u, SNMPv2*, and SNMPv3 */
320
#define GET_REQ_MSG         SNMP_MSG_GET
321
#define GETNEXT_REQ_MSG     SNMP_MSG_GETNEXT
322
#define GET_RSP_MSG         SNMP_MSG_RESPONSE
323
#define SET_REQ_MSG         SNMP_MSG_SET
324
 
325
/* PDU types in SNMPv1 and SNMPsec */
326
#define TRP_REQ_MSG         SNMP_MSG_TRAP
327
 
328
/* PDU types in SNMPv2p, SNMPv2c, SNMPv2u, SNMPv2*, and SNMPv3 */
329
#define BULK_REQ_MSG        SNMP_MSG_GETBULK
330
#define INFORM_REQ_MSG      SNMP_MSG_INFORM
331
#define TRP2_REQ_MSG        SNMP_MSG_TRAP2
332
 
333
/* PDU types in SNMPv2u, SNMPv2*, and SNMPv3 */
334
#define REPORT_RSP_MSG      SNMP_MSG_REPORT
335
 
336
/* since CMU V1.5 */
337
 
338
#define SNMP_PDU_GET        SNMP_MSG_GET
339
#define SNMP_PDU_GETNEXT    SNMP_MSG_GETNEXT
340
#define SNMP_PDU_RESPONSE   SNMP_MSG_RESPONSE
341
#define SNMP_PDU_SET        SNMP_MSG_SET
342
#define SNMP_PDU_GETBULK    SNMP_MSG_GETBULK
343
#define SNMP_PDU_INFORM     SNMP_MSG_INFORM
344
#define SNMP_PDU_V2TRAP     SNMP_MSG_TRAP2
345
#define SNMP_PDU_REPORT     SNMP_MSG_REPORT
346
 
347
#define SNMP_TRAP_AUTHENTICATIONFAILURE SNMP_TRAP_AUTHFAIL
348
 
349
#define SMI_INTEGER     ASN_INTEGER
350
#define SMI_STRING      ASN_OCTET_STR
351
#define SMI_OBJID       ASN_OBJECT_ID
352
#define SMI_NULLOBJ     ASN_NULL
353
#define SMI_IPADDRESS   ASN_IPADDRESS
354
#define SMI_COUNTER32       ASN_COUNTER
355
#define SMI_GAUGE32         ASN_GAUGE
356
#define SMI_UNSIGNED32 SMI_GAUGE32
357
#define SMI_TIMETICKS   ASN_TIMETICKS
358
#define SMI_OPAQUE ASN_OPAQUE
359
#define SMI_COUNTER64   ASN_COUNTER64
360
 
361
int mib_TxtToOid (char *, oid **, size_t *);
362
int mib_OidToTxt (oid *, size_t , char *, size_t );
363
 
364
struct snmp_pdu;
365
char *snmp_pdu_type (struct snmp_pdu *);
366
 
367
struct snmp_session;
368
u_char * cmu_snmp_parse (struct snmp_session *session,
369
    struct snmp_pdu *pdu,
370
    u_char *data,
371
    size_t length);
372
 
373
#endif /* CMU_COMPATIBLE */
374
 
375
char *uptime_string (u_long, char *);
376
void xdump (const u_char *, size_t, const char *);
377
u_char *snmp_parse_var_op (u_char *, oid *, size_t *, u_char *, size_t *,
378
                               u_char **, size_t *);
379
u_char *snmp_build_var_op (u_char *, oid *, size_t *, u_char, size_t, u_char *,
380
                               size_t *);
381
#ifdef __cplusplus
382
}
383
#endif
384
 
385
#endif /* SNMP_H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.