2 * Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997
3 * John Robert LoVerso. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 * This implementation has been influenced by the CMU SNMP release,
29 * by Steve Waldbusser. However, this shares no code with that system.
30 * Additional ASN.1 insight gained from Marshall T. Rose's _The_Open_Book_.
31 * Earlier forms of this implementation were derived and/or inspired by an
32 * awk script originally written by C. Philip Wood of LANL (but later
33 * heavily modified by John Robert LoVerso). The copyright notice for
34 * that work is preserved below, even though it may not rightly apply
37 * Support for SNMPv2c/SNMPv3 and the ability to link the module against
38 * the libsmi was added by J. Schoenwaelder, Copyright (c) 1999.
40 * This started out as a very simple program, but the incremental decoding
41 * (into the BE structure) complicated things.
43 # Los Alamos National Laboratory
45 # Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997
46 # This software was produced under a U.S. Government contract
47 # (W-7405-ENG-36) by Los Alamos National Laboratory, which is
48 # operated by the University of California for the U.S. Department
49 # of Energy. The U.S. Government is licensed to use, reproduce,
50 # and distribute this software. Permission is granted to the
51 # public to copy and use this software without charge, provided
52 # that this Notice and any statement of authorship are reproduced
53 # on all copies. Neither the Government nor the University makes
54 # any warranty, express or implied, or assumes any liability or
55 # responsibility for the use of this software.
56 # @(#)snmp.awk.x 1.1 (LANL) 1/15/90
60 static const char rcsid
[] =
61 "@(#) $Header: /tcpdump/master/tcpdump/print-snmp.c,v 1.52 2002-05-07 18:27:40 fenner Exp $ (LBL)";
68 #include <sys/param.h>
79 #include "interface.h"
80 #include "addrtoname.h"
83 * Universal ASN.1 types
84 * (we only care about the tag values for those allowed in the Internet SMI)
99 "U-8","U-9","U-10","U-11", /* 8-11 */
100 "U-12","U-13","U-14","U-15", /* 12-15 */
107 * Application-wide ASN.1 types from the Internet SMI and their tags
109 char *Application
[] = {
126 * Context-specific ASN.1 types for the SNMP PDUs and their tags
149 #define NOTIFY_CLASS(x) (x == TRAP || x == V2TRAP || x == INFORMREQ)
150 #define READ_CLASS(x) (x == GETREQ || x == GETNEXTREQ || x == GETBULKREQ)
151 #define WRITE_CLASS(x) (x == SETREQ)
152 #define RESPONSE_CLASS(x) (x == GETRESP)
153 #define INTERNAL_CLASS(x) (x == REPORT)
156 * Context-specific ASN.1 types for the SNMP Exceptions and their tags
158 char *Exceptions
[] = {
160 #define NOSUCHOBJECT 0
162 #define NOSUCHINSTANCE 1
164 #define ENDOFMIBVIEW 2
168 * Private ASN.1 types
169 * The Internet SMI does not specify any
176 * error-status values for any SNMP PDU
178 char *ErrorStatus
[] = {
192 "resourceUnavailable",
195 "authorizationError",
199 #define DECODE_ErrorStatus(e) \
200 ( e >= 0 && e < sizeof(ErrorStatus)/sizeof(ErrorStatus[0]) \
202 : (snprintf(errbuf, sizeof(errbuf), "err=%u", e), errbuf))
205 * generic-trap values in the SNMP Trap-PDU
207 char *GenericTrap
[] = {
212 "authenticationFailure",
215 #define GT_ENTERPRISE 7
217 #define DECODE_GenericTrap(t) \
218 ( t >= 0 && t < sizeof(GenericTrap)/sizeof(GenericTrap[0]) \
220 : (snprintf(buf, sizeof(buf), "gt=%d", t), buf))
223 * ASN.1 type class table
224 * Ties together the preceding Universal, Application, Context, and Private
227 #define defineCLASS(x) { "x", x, sizeof(x)/sizeof(x[0]) } /* not ANSI-C */
233 defineCLASS(Universal
),
235 defineCLASS(Application
),
236 #define APPLICATION 1
237 defineCLASS(Context
),
239 defineCLASS(Private
),
241 defineCLASS(Exceptions
),
246 * defined forms for ASN.1 types
252 #define CONSTRUCTED 1
256 * A structure for the OID tree for the compiled-in MIB.
257 * This is stored as a general-order tree.
260 char *desc
; /* name of object */
261 u_char oid
; /* sub-id following parent */
262 u_char type
; /* object type (unused) */
263 struct obj
*child
, *next
; /* child and next sibling pointers */
267 * Include the compiled in SNMP MIB. "mib.h" is produced by feeding
268 * RFC-1156 format files into "makemib". "mib.h" MUST define at least
269 * a value for `mibroot'.
271 * In particular, this is gross, as this is including initialized structures,
272 * and by right shouldn't be an "include" file.
277 * This defines a list of OIDs which will be abbreviated on output.
278 * Currently, this includes the prefixes for the Internet MIB, the
279 * private enterprises tree, and the experimental tree.
282 char *prefix
; /* prefix for this abrev */
283 struct obj
*node
; /* pointer into object table */
284 char *oid
; /* ASN.1 encoded OID */
285 } obj_abrev_list
[] = {
287 /* .iso.org.dod.internet.mgmt.mib */
288 { "", &_mib_obj
, "\53\6\1\2\1" },
290 #ifndef NO_ABREV_ENTER
291 /* .iso.org.dod.internet.private.enterprises */
292 { "E:", &_enterprises_obj
, "\53\6\1\4\1" },
294 #ifndef NO_ABREV_EXPERI
295 /* .iso.org.dod.internet.experimental */
296 { "X:", &_experimental_obj
, "\53\6\1\3" },
298 #ifndef NO_ABBREV_SNMPMODS
299 /* .iso.org.dod.internet.snmpV2.snmpModules */
300 { "S:", &_snmpModules_obj
, "\53\6\1\6\3" },
306 * This is used in the OID print routine to walk down the object tree
307 * rooted at `mibroot'.
309 #define OBJ_PRINT(o, suppressdot) \
313 if ((o) == objp->oid) \
315 } while ((objp = objp->next) != NULL); \
318 printf(suppressdot?"%s":".%s", objp->desc); \
319 objp = objp->child; \
321 printf(suppressdot?"%u":".%u", (o)); \
325 * This is the definition for the Any-Data-Type storage used purely for
326 * temporary internal representation while decoding an ASN.1 data stream.
341 u_char form
, class; /* tag info */
352 #define BE_INETADDR 8
355 #define BE_NOSUCHOBJECT 128
356 #define BE_NOSUCHINST 129
357 #define BE_ENDOFMIBVIEW 130
361 * SNMP versions recognized by this module
363 char *SnmpVersion
[] = {
365 #define SNMP_VERSION_1 0
367 #define SNMP_VERSION_2 1
369 #define SNMP_VERSION_2U 2
371 #define SNMP_VERSION_3 3
375 * Defaults for SNMP PDU components
377 #define DEF_COMMUNITY "public"
380 * constants for ASN.1 decoding
383 #define ASNLEN_INETADDR 4
386 #define ASN_BIT8 0x80
387 #define ASN_LONGLEN 0x80
389 #define ASN_ID_BITS 0x1f
390 #define ASN_FORM_BITS 0x20
391 #define ASN_FORM_SHIFT 5
392 #define ASN_CLASS_BITS 0xc0
393 #define ASN_CLASS_SHIFT 6
395 #define ASN_ID_EXT 0x1f /* extension ID in tag field */
398 * truncated==1 means the packet was complete, but we don't have all of
401 static int truncated
;
402 #define ifNotTruncated if (truncated) fputs("[|snmp]", stdout); else
405 * This decodes the next ASN.1 object in the stream pointed to by "p"
406 * (and of real-length "len") and stores the intermediate data in the
407 * provided BE object.
409 * This returns -l if it fails (i.e., the ASN.1 stream is not valid).
410 * O/w, this returns the number of bytes parsed from "p".
413 asn1_parse(register const u_char
*p
, u_int len
, struct be
*elem
)
415 u_char form
, class, id
;
421 ifNotTruncated
fputs("[nothing to parse]", stdout
);
426 * it would be nice to use a bit field, but you can't depend on them.
427 * +---+---+---+---+---+---+---+---+
429 * +---+---+---+---+---+---+---+---+
432 id
= *p
& ASN_ID_BITS
; /* lower 5 bits, range 00-1f */
434 form
= (*p
& 0xe0) >> 5; /* move upper 3 bits to lower 3 */
435 class = form
>> 1; /* bits 7&6 -> bits 1&0, range 0-3 */
436 form
&= 0x1; /* bit 5 -> bit 0, range 0-1 */
438 form
= (u_char
)(*p
& ASN_FORM_BITS
) >> ASN_FORM_SHIFT
;
439 class = (u_char
)(*p
& ASN_CLASS_BITS
) >> ASN_CLASS_SHIFT
;
445 /* extended tag field */
446 if (id
== ASN_ID_EXT
) {
447 for (id
= 0; *p
& ASN_BIT8
&& len
> 0; len
--, hdr
++, p
++)
448 id
= (id
<< 7) | (*p
& ~ASN_BIT8
);
449 if (len
== 0 && *p
& ASN_BIT8
) {
450 ifNotTruncated
fputs("[Xtagfield?]", stdout
);
453 elem
->id
= id
= (id
<< 7) | *p
;
459 ifNotTruncated
fputs("[no asnlen]", stdout
);
464 if (elem
->asnlen
& ASN_BIT8
) {
465 int noct
= elem
->asnlen
% ASN_BIT8
;
468 ifNotTruncated
printf("[asnlen? %d<%d]", len
, noct
);
471 for (; noct
-- > 0; len
--, hdr
++)
472 elem
->asnlen
= (elem
->asnlen
<< ASN_SHIFT8
) | *p
++;
474 if (len
< elem
->asnlen
) {
476 printf("[len%d<asnlen%u]", len
, elem
->asnlen
);
479 /* maybe should check at least 4? */
482 if (form
>= sizeof(Form
)/sizeof(Form
[0])) {
483 ifNotTruncated
printf("[form?%d]", form
);
486 if (class >= sizeof(Class
)/sizeof(Class
[0])) {
487 ifNotTruncated
printf("[class?%c/%d]", *Form
[form
], class);
490 if ((int)id
>= Class
[class].numIDs
) {
491 ifNotTruncated
printf("[id?%c/%s/%d]", *Form
[form
],
492 Class
[class].name
, id
);
507 register int32_t data
;
511 if (*p
& ASN_BIT8
) /* negative */
513 for (i
= elem
->asnlen
; i
-- > 0; p
++)
514 data
= (data
<< ASN_SHIFT8
) | *p
;
515 elem
->data
.integer
= data
;
521 elem
->data
.raw
= (caddr_t
)p
;
525 elem
->type
= BE_NULL
;
526 elem
->data
.raw
= NULL
;
530 elem
->type
= BE_OCTET
;
531 elem
->data
.raw
= (caddr_t
)p
;
533 Class
[class].Id
[id
]);
541 elem
->type
= BE_INETADDR
;
542 elem
->data
.raw
= (caddr_t
)p
;
548 register u_int32_t data
;
551 for (i
= elem
->asnlen
; i
-- > 0; p
++)
552 data
= (data
<< 8) + *p
;
553 elem
->data
.uns
= data
;
558 register u_int32_t high
, low
;
559 elem
->type
= BE_UNS64
;
561 for (i
= elem
->asnlen
; i
-- > 0; p
++) {
563 ((low
& 0xFF000000) >> 24);
564 low
= (low
<< 8) | *p
;
566 elem
->data
.uns64
.high
= high
;
567 elem
->data
.uns64
.low
= low
;
572 elem
->type
= BE_OCTET
;
573 elem
->data
.raw
= (caddr_t
)p
;
575 Class
[class].Id
[id
]);
583 elem
->type
= BE_NOSUCHOBJECT
;
584 elem
->data
.raw
= NULL
;
588 elem
->type
= BE_NOSUCHINST
;
589 elem
->data
.raw
= NULL
;
593 elem
->type
= BE_ENDOFMIBVIEW
;
594 elem
->data
.raw
= NULL
;
600 elem
->type
= BE_OCTET
;
601 elem
->data
.raw
= (caddr_t
)p
;
603 Class
[class].name
, Class
[class].Id
[id
]);
614 elem
->data
.raw
= (caddr_t
)p
;
618 elem
->type
= BE_OCTET
;
619 elem
->data
.raw
= (caddr_t
)p
;
620 printf("C/U/%s", Class
[class].Id
[id
]);
627 elem
->data
.raw
= (caddr_t
)p
;
631 elem
->type
= BE_OCTET
;
632 elem
->data
.raw
= (caddr_t
)p
;
634 Class
[class].name
, Class
[class].Id
[id
]);
641 return elem
->asnlen
+ hdr
;
645 * Display the ASN.1 object represented by the BE object.
646 * This used to be an integral part of asn1_parse() before the intermediate
650 asn1_print(struct be
*elem
)
652 u_char
*p
= (u_char
*)elem
->data
.raw
;
653 u_int32_t asnlen
= elem
->asnlen
;
656 switch (elem
->type
) {
659 for (i
= asnlen
; i
-- > 0; p
++)
667 int o
= 0, first
= -1, i
= asnlen
;
669 if (!sflag
&& !nflag
&& asnlen
> 2) {
670 struct obj_abrev
*a
= &obj_abrev_list
[0];
671 for (; a
->node
; a
++) {
672 if (!memcmp(a
->oid
, (char *)p
,
674 objp
= a
->node
->child
;
677 fputs(a
->prefix
, stdout
);
684 for (; !sflag
&& i
-- > 0; p
++) {
685 o
= (o
<< ASN_SHIFT7
) + (*p
& ~ASN_BIT8
);
686 if (*p
& ASN_LONGLEN
)
690 * first subitem encodes two items with 1st*OIDMUX+2nd
691 * (see X.690:1997 clause 8.19 for the details)
712 printf("%d", elem
->data
.integer
);
716 printf("%u", elem
->data
.uns
);
719 case BE_UNS64
: { /* idea borrowed from by Marshall Rose */
722 char *cpf
, *cpl
, last
[6], first
[30];
723 if (elem
->data
.uns64
.high
== 0) {
724 printf("%u", elem
->data
.uns64
.low
);
727 d
= elem
->data
.uns64
.high
* 4294967296.0; /* 2^32 */
728 if (elem
->data
.uns64
.high
<= 0x1fffff) {
729 d
+= elem
->data
.uns64
.low
;
730 #if 0 /*is looks illegal, but what is the intention?*/
737 d
+= (elem
->data
.uns64
.low
& 0xfffff000);
738 #if 0 /*is looks illegal, but what is the intention?*/
739 snprintf(first
, sizeof(first
), "%.f", d
);
741 snprintf(first
, sizeof(first
), "%f", d
);
743 snprintf(last
, sizeof(last
), "%5.5d",
744 elem
->data
.uns64
.low
& 0xfff);
745 for (carry
= 0, cpf
= first
+strlen(first
)-1, cpl
= last
+4;
748 j
= carry
+ (*cpf
- '0') + (*cpl
- '0');
757 fputs(first
, stdout
);
762 register int printable
= 1, first
= 1;
763 const u_char
*p
= elem
->data
.str
;
764 for (i
= asnlen
; printable
&& i
-- > 0; p
++)
765 printable
= isprint(*p
) || isspace(*p
);
769 (void)fn_print(p
, p
+ asnlen
);
772 for (i
= asnlen
; i
-- > 0; p
++) {
773 printf(first
? "%.2x" : "_%.2x", *p
);
780 printf("Seq(%u)", elem
->asnlen
);
784 if (asnlen
!= ASNLEN_INETADDR
)
785 printf("[inetaddr len!=%d]", ASNLEN_INETADDR
);
786 for (i
= asnlen
; i
-- > 0; p
++) {
787 printf((i
== asnlen
-1) ? "%u" : ".%u", *p
);
791 case BE_NOSUCHOBJECT
:
793 case BE_ENDOFMIBVIEW
:
794 printf("[%s]", Class
[EXCEPTIONS
].Id
[elem
->id
]);
799 Class
[CONTEXT
].Id
[elem
->id
], elem
->asnlen
);
803 fputs("[BE_ANY!?]", stdout
);
807 fputs("[be!?]", stdout
);
814 * This is a brute force ASN.1 printer: recurses to dump an entire structure.
815 * This will work for any ASN.1 stream, not just an SNMP PDU.
817 * By adding newlines and spaces at the correct places, this would print in
820 * This is not currently used.
823 asn1_decode(u_char
*p
, u_int length
)
828 while (i
>= 0 && length
> 0) {
829 i
= asn1_parse(p
, length
, &elem
);
833 if (elem
.type
== BE_SEQ
|| elem
.type
== BE_PDU
) {
835 asn1_decode(elem
.data
.raw
, elem
.asnlen
);
848 SmiBasetype basetype
;
852 static struct smi2be smi2betab
[] = {
853 { SMI_BASETYPE_INTEGER32
, BE_INT
},
854 { SMI_BASETYPE_OCTETSTRING
, BE_STR
},
855 { SMI_BASETYPE_OCTETSTRING
, BE_INETADDR
},
856 { SMI_BASETYPE_OBJECTIDENTIFIER
, BE_OID
},
857 { SMI_BASETYPE_UNSIGNED32
, BE_UNS
},
858 { SMI_BASETYPE_INTEGER64
, BE_NONE
},
859 { SMI_BASETYPE_UNSIGNED64
, BE_UNS64
},
860 { SMI_BASETYPE_FLOAT32
, BE_NONE
},
861 { SMI_BASETYPE_FLOAT64
, BE_NONE
},
862 { SMI_BASETYPE_FLOAT128
, BE_NONE
},
863 { SMI_BASETYPE_ENUM
, BE_INT
},
864 { SMI_BASETYPE_BITS
, BE_STR
},
865 { SMI_BASETYPE_UNKNOWN
, BE_NONE
}
868 static void smi_decode_oid(struct be
*elem
, unsigned int *oid
,
869 unsigned int oidsize
, unsigned int *oidlen
)
871 u_char
*p
= (u_char
*)elem
->data
.raw
;
872 u_int32_t asnlen
= elem
->asnlen
;
873 int o
= 0, first
= -1, i
= asnlen
;
875 for (*oidlen
= 0; sflag
&& i
-- > 0; p
++) {
876 o
= (o
<< ASN_SHIFT7
) + (*p
& ~ASN_BIT8
);
877 if (*p
& ASN_LONGLEN
)
881 * first subitem encodes two items with 1st*OIDMUX+2nd
882 * (see X.690:1997 clause 8.19 for the details)
886 if (*oidlen
< oidsize
) {
887 oid
[*oidlen
] = o
/ OIDMUX
;
888 if (oid
[*oidlen
] > 2) oid
[*oidlen
] = 2;
890 o
-= oid
[*oidlen
] * OIDMUX
;
891 if (*oidlen
< oidsize
) (*oidlen
)++;
893 if (*oidlen
< oidsize
) {
894 oid
[(*oidlen
)++] = o
;
900 static int smi_check_type(SmiBasetype basetype
, int be
)
904 for (i
= 0; smi2betab
[i
].basetype
!= SMI_BASETYPE_UNKNOWN
; i
++) {
905 if (smi2betab
[i
].basetype
== basetype
&& smi2betab
[i
].be
== be
) {
913 static int smi_check_a_range(SmiType
*smiType
, SmiRange
*smiRange
,
918 switch (smiType
->basetype
) {
919 case SMI_BASETYPE_OBJECTIDENTIFIER
:
920 case SMI_BASETYPE_OCTETSTRING
:
921 if (smiRange
->minValue
.value
.unsigned32
922 == smiRange
->maxValue
.value
.unsigned32
) {
923 ok
= (elem
->asnlen
== smiRange
->minValue
.value
.unsigned32
);
925 ok
= (elem
->asnlen
>= smiRange
->minValue
.value
.unsigned32
926 && elem
->asnlen
<= smiRange
->maxValue
.value
.unsigned32
);
930 case SMI_BASETYPE_INTEGER32
:
931 ok
= (elem
->data
.integer
>= smiRange
->minValue
.value
.integer32
932 && elem
->data
.integer
<= smiRange
->maxValue
.value
.integer32
);
935 case SMI_BASETYPE_UNSIGNED32
:
936 ok
= (elem
->data
.uns
>= smiRange
->minValue
.value
.unsigned32
937 && elem
->data
.uns
<= smiRange
->maxValue
.value
.unsigned32
);
940 case SMI_BASETYPE_UNSIGNED64
:
944 /* case SMI_BASETYPE_INTEGER64: SMIng */
945 /* case SMI_BASETYPE_FLOAT32: SMIng */
946 /* case SMI_BASETYPE_FLOAT64: SMIng */
947 /* case SMI_BASETYPE_FLOAT128: SMIng */
949 case SMI_BASETYPE_ENUM
:
950 case SMI_BASETYPE_BITS
:
951 case SMI_BASETYPE_UNKNOWN
:
959 static int smi_check_range(SmiType
*smiType
, struct be
*elem
)
964 for (smiRange
= smiGetFirstRange(smiType
);
966 smiRange
= smiGetNextRange(smiRange
)) {
968 ok
= smi_check_a_range(smiType
, smiRange
, elem
);
977 parentType
= smiGetParentType(smiType
);
979 ok
= smi_check_range(parentType
, elem
);
986 static SmiNode
*smi_print_variable(struct be
*elem
)
988 unsigned int oid
[128], oidlen
;
989 SmiNode
*smiNode
= NULL
;
992 smi_decode_oid(elem
, oid
, sizeof(oid
)/sizeof(unsigned int), &oidlen
);
993 smiNode
= smiGetNodeByOID(oidlen
, oid
);
999 fputs(smiGetNodeModule(smiNode
)->name
, stdout
);
1000 fputs("::", stdout
);
1002 fputs(smiNode
->name
, stdout
);
1003 if (smiNode
->oidlen
< oidlen
) {
1004 for (i
= smiNode
->oidlen
; i
< oidlen
; i
++) {
1005 printf(".%u", oid
[i
]);
1011 static void smi_print_value(SmiNode
*smiNode
, u_char pduid
, struct be
*elem
)
1013 unsigned int oid
[128], oidlen
;
1018 if (! smiNode
|| ! (smiNode
->nodekind
1019 & (SMI_NODEKIND_SCALAR
| SMI_NODEKIND_COLUMN
))) {
1024 if (elem
->type
== BE_NOSUCHOBJECT
1025 || elem
->type
== BE_NOSUCHINST
1026 || elem
->type
== BE_ENDOFMIBVIEW
) {
1031 if (NOTIFY_CLASS(pduid
) && smiNode
->access
< SMI_ACCESS_NOTIFY
) {
1032 fputs("[notNotifyable]", stdout
);
1035 if (READ_CLASS(pduid
) && smiNode
->access
< SMI_ACCESS_READ_ONLY
) {
1036 fputs("[notReadable]", stdout
);
1039 if (WRITE_CLASS(pduid
) && smiNode
->access
< SMI_ACCESS_READ_WRITE
) {
1040 fputs("[notWritable]", stdout
);
1043 if (RESPONSE_CLASS(pduid
)
1044 && smiNode
->access
== SMI_ACCESS_NOT_ACCESSIBLE
) {
1045 fputs("[noAccess]", stdout
);
1048 smiType
= smiGetNodeType(smiNode
);
1054 if (! smi_check_type(smiType
->basetype
, elem
->type
)) {
1055 fputs("[wrongType]", stdout
);
1058 if (! smi_check_range(smiType
, elem
)) {
1059 fputs("[outOfRange]", stdout
);
1062 /* resolve bits to named bits */
1064 /* check whether instance identifier is valid */
1066 /* apply display hints (integer, octetstring) */
1068 /* convert instance identifier to index type values */
1070 switch (elem
->type
) {
1072 if (smiType
->basetype
== SMI_BASETYPE_BITS
) {
1073 /* print bit labels */
1075 smi_decode_oid(elem
, oid
,
1076 sizeof(oid
)/sizeof(unsigned int),
1078 smiNode
= smiGetNodeByOID(oidlen
, oid
);
1081 fputs(smiGetNodeModule(smiNode
)->name
, stdout
);
1082 fputs("::", stdout
);
1084 fputs(smiNode
->name
, stdout
);
1085 if (smiNode
->oidlen
< oidlen
) {
1086 for (i
= smiNode
->oidlen
;
1088 printf(".%u", oid
[i
]);
1097 if (smiType
->basetype
== SMI_BASETYPE_ENUM
) {
1098 for (nn
= smiGetFirstNamedNumber(smiType
);
1100 nn
= smiGetNextNamedNumber(nn
)) {
1101 if (nn
->value
.value
.integer32
1102 == elem
->data
.integer
) {
1103 fputs(nn
->name
, stdout
);
1104 printf("(%d)", elem
->data
.integer
);
1120 * General SNMP header
1122 * version INTEGER {version-1(0)},
1123 * community OCTET STRING,
1126 * PDUs for all but Trap: (see rfc1157 from page 15 on)
1128 * request-id INTEGER,
1129 * error-status INTEGER,
1130 * error-index INTEGER,
1131 * varbindlist SEQUENCE OF
1139 * enterprise OBJECT IDENTIFIER,
1140 * agent-addr NetworkAddress,
1141 * generic-trap INTEGER,
1142 * specific-trap INTEGER,
1143 * time-stamp TimeTicks,
1144 * varbindlist SEQUENCE OF
1153 * Decode SNMP varBind
1156 varbind_print(u_char pduid
, const u_char
*np
, u_int length
)
1161 SmiNode
*smiNode
= NULL
;
1164 /* Sequence of varBind */
1165 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1167 if (elem
.type
!= BE_SEQ
) {
1168 fputs("[!SEQ of varbind]", stdout
);
1173 printf("[%d extra after SEQ of varbind]", length
- count
);
1175 length
= elem
.asnlen
;
1176 np
= (u_char
*)elem
.data
.raw
;
1178 for (ind
= 1; length
> 0; ind
++) {
1179 const u_char
*vbend
;
1185 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1187 if (elem
.type
!= BE_SEQ
) {
1188 fputs("[!varbind]", stdout
);
1193 vblength
= length
- count
;
1195 length
= elem
.asnlen
;
1196 np
= (u_char
*)elem
.data
.raw
;
1199 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1201 if (elem
.type
!= BE_OID
) {
1202 fputs("[objName!=OID]", stdout
);
1207 smiNode
= smi_print_variable(&elem
);
1214 if (pduid
!= GETREQ
&& pduid
!= GETNEXTREQ
1215 && pduid
!= GETBULKREQ
)
1219 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1221 if (pduid
== GETREQ
|| pduid
== GETNEXTREQ
1222 || pduid
== GETBULKREQ
) {
1223 if (elem
.type
!= BE_NULL
) {
1224 fputs("[objVal!=NULL]", stdout
);
1228 if (elem
.type
!= BE_NULL
) {
1230 smi_print_value(smiNode
, pduid
, &elem
);
1242 * Decode SNMP PDUs: GetRequest, GetNextRequest, GetResponse, SetRequest,
1243 * GetBulk, Inform, V2Trap, and Report
1246 snmppdu_print(u_char pduid
, const u_char
*np
, u_int length
)
1249 int count
= 0, error
;
1251 /* reqId (Integer) */
1252 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1254 if (elem
.type
!= BE_INT
) {
1255 fputs("[reqId!=INT]", stdout
);
1260 printf("R=%d ", elem
.data
.integer
);
1264 /* errorStatus (Integer) */
1265 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1267 if (elem
.type
!= BE_INT
) {
1268 fputs("[errorStatus!=INT]", stdout
);
1273 if ((pduid
== GETREQ
|| pduid
== GETNEXTREQ
|| pduid
== SETREQ
1274 || pduid
== INFORMREQ
|| pduid
== V2TRAP
|| pduid
== REPORT
)
1275 && elem
.data
.integer
!= 0) {
1277 printf("[errorStatus(%s)!=0]",
1278 DECODE_ErrorStatus(elem
.data
.integer
));
1279 } else if (pduid
== GETBULKREQ
) {
1280 printf(" N=%d", elem
.data
.integer
);
1281 } else if (elem
.data
.integer
!= 0) {
1283 printf(" %s", DECODE_ErrorStatus(elem
.data
.integer
));
1284 error
= elem
.data
.integer
;
1289 /* errorIndex (Integer) */
1290 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1292 if (elem
.type
!= BE_INT
) {
1293 fputs("[errorIndex!=INT]", stdout
);
1297 if ((pduid
== GETREQ
|| pduid
== GETNEXTREQ
|| pduid
== SETREQ
1298 || pduid
== INFORMREQ
|| pduid
== V2TRAP
|| pduid
== REPORT
)
1299 && elem
.data
.integer
!= 0)
1300 printf("[errorIndex(%d)!=0]", elem
.data
.integer
);
1301 else if (pduid
== GETBULKREQ
)
1302 printf(" M=%d", elem
.data
.integer
);
1303 else if (elem
.data
.integer
!= 0) {
1305 printf("[errorIndex(%d) w/o errorStatus]",
1308 printf("@%d", elem
.data
.integer
);
1309 error
= elem
.data
.integer
;
1312 fputs("[errorIndex==0]", stdout
);
1318 varbind_print(pduid
, np
, length
);
1323 * Decode SNMP Trap PDU
1326 trappdu_print(const u_char
*np
, u_int length
)
1329 int count
= 0, generic
;
1333 /* enterprise (oid) */
1334 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1336 if (elem
.type
!= BE_OID
) {
1337 fputs("[enterprise!=OID]", stdout
);
1347 /* agent-addr (inetaddr) */
1348 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1350 if (elem
.type
!= BE_INETADDR
) {
1351 fputs("[agent-addr!=INETADDR]", stdout
);
1359 /* generic-trap (Integer) */
1360 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1362 if (elem
.type
!= BE_INT
) {
1363 fputs("[generic-trap!=INT]", stdout
);
1367 generic
= elem
.data
.integer
;
1370 printf(" %s", DECODE_GenericTrap(generic
));
1375 /* specific-trap (Integer) */
1376 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1378 if (elem
.type
!= BE_INT
) {
1379 fputs("[specific-trap!=INT]", stdout
);
1383 if (generic
!= GT_ENTERPRISE
) {
1384 if (elem
.data
.integer
!= 0)
1385 printf("[specific-trap(%d)!=0]", elem
.data
.integer
);
1387 printf(" s=%d", elem
.data
.integer
);
1393 /* time-stamp (TimeTicks) */
1394 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1396 if (elem
.type
!= BE_UNS
) { /* XXX */
1397 fputs("[time-stamp!=TIMETICKS]", stdout
);
1405 varbind_print (TRAP
, np
, length
);
1410 * Decode arbitrary SNMP PDUs.
1413 pdu_print(const u_char
*np
, u_int length
, int version
)
1419 if ((count
= asn1_parse(np
, length
, &pdu
)) < 0)
1421 if (pdu
.type
!= BE_PDU
) {
1422 fputs("[no PDU]", stdout
);
1426 printf("[%d extra after PDU]", length
- count
);
1428 fputs("{ ", stdout
);
1432 /* descend into PDU */
1433 length
= pdu
.asnlen
;
1434 np
= (u_char
*)pdu
.data
.raw
;
1436 if (version
== SNMP_VERSION_1
&&
1437 (pdu
.id
== GETBULKREQ
|| pdu
.id
== INFORMREQ
||
1438 pdu
.id
== V2TRAP
|| pdu
.id
== REPORT
)) {
1439 printf("[v2 PDU in v1 message]");
1443 if (version
== SNMP_VERSION_2
&& pdu
.id
== TRAP
) {
1444 printf("[v1 PDU in v2 message]");
1450 trappdu_print(np
, length
);
1460 snmppdu_print(pdu
.id
, np
, length
);
1465 fputs(" } ", stdout
);
1470 * Decode a scoped SNMP PDU.
1473 scopedpdu_print(const u_char
*np
, u_int length
, int version
)
1479 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1481 if (elem
.type
!= BE_SEQ
) {
1482 fputs("[!scoped PDU]", stdout
);
1486 length
= elem
.asnlen
;
1487 np
= (u_char
*)elem
.data
.raw
;
1489 /* contextEngineID (OCTET STRING) */
1490 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1492 if (elem
.type
!= BE_STR
) {
1493 fputs("[contextEngineID!=STR]", stdout
);
1500 fputs("E= ", stdout
);
1501 for (i
= 0; i
< (int)elem
.asnlen
; i
++) {
1502 printf("0x%02X", elem
.data
.str
[i
]);
1506 /* contextName (OCTET STRING) */
1507 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1509 if (elem
.type
!= BE_STR
) {
1510 fputs("[contextName!=STR]", stdout
);
1517 printf("C=%.*s ", (int)elem
.asnlen
, elem
.data
.str
);
1519 pdu_print(np
, length
, version
);
1523 * Decode SNMP Community Header (SNMPv1 and SNMPv2c)
1526 community_print(const u_char
*np
, u_int length
, int version
)
1531 /* Community (String) */
1532 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1534 if (elem
.type
!= BE_STR
) {
1535 fputs("[comm!=STR]", stdout
);
1539 /* default community */
1540 if (strncmp((char *)elem
.data
.str
, DEF_COMMUNITY
,
1541 sizeof(DEF_COMMUNITY
) - 1))
1543 printf("C=%.*s ", (int)elem
.asnlen
, elem
.data
.str
);
1547 pdu_print(np
, length
, version
);
1551 * Decode SNMPv3 User-based Security Message Header (SNMPv3)
1554 usm_print(const u_char
*np
, u_int length
)
1560 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1562 if (elem
.type
!= BE_SEQ
) {
1563 fputs("[!usm]", stdout
);
1567 length
= elem
.asnlen
;
1568 np
= (u_char
*)elem
.data
.raw
;
1570 /* msgAuthoritativeEngineID (OCTET STRING) */
1571 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1573 if (elem
.type
!= BE_STR
) {
1574 fputs("[msgAuthoritativeEngineID!=STR]", stdout
);
1581 /* msgAuthoritativeEngineBoots (INTEGER) */
1582 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1584 if (elem
.type
!= BE_INT
) {
1585 fputs("[msgAuthoritativeEngineBoots!=INT]", stdout
);
1590 printf("B=%d ", elem
.data
.integer
);
1594 /* msgAuthoritativeEngineTime (INTEGER) */
1595 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1597 if (elem
.type
!= BE_INT
) {
1598 fputs("[msgAuthoritativeEngineTime!=INT]", stdout
);
1603 printf("T=%d ", elem
.data
.integer
);
1607 /* msgUserName (OCTET STRING) */
1608 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1610 if (elem
.type
!= BE_STR
) {
1611 fputs("[msgUserName!=STR]", stdout
);
1618 printf("U=%.*s ", (int)elem
.asnlen
, elem
.data
.str
);
1620 /* msgAuthenticationParameters (OCTET STRING) */
1621 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1623 if (elem
.type
!= BE_STR
) {
1624 fputs("[msgAuthenticationParameters!=STR]", stdout
);
1631 /* msgPrivacyParameters (OCTET STRING) */
1632 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1634 if (elem
.type
!= BE_STR
) {
1635 fputs("[msgPrivacyParameters!=STR]", stdout
);
1643 printf("[%d extra after usm SEQ]", length
- count
);
1647 * Decode SNMPv3 Message Header (SNMPv3)
1650 v3msg_print(const u_char
*np
, u_int length
)
1656 const u_char
*xnp
= np
;
1657 int xlength
= length
;
1660 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1662 if (elem
.type
!= BE_SEQ
) {
1663 fputs("[!message]", stdout
);
1667 length
= elem
.asnlen
;
1668 np
= (u_char
*)elem
.data
.raw
;
1671 fputs("{ ", stdout
);
1674 /* msgID (INTEGER) */
1675 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1677 if (elem
.type
!= BE_INT
) {
1678 fputs("[msgID!=INT]", stdout
);
1685 /* msgMaxSize (INTEGER) */
1686 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1688 if (elem
.type
!= BE_INT
) {
1689 fputs("[msgMaxSize!=INT]", stdout
);
1696 /* msgFlags (OCTET STRING) */
1697 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1699 if (elem
.type
!= BE_STR
) {
1700 fputs("[msgFlags!=STR]", stdout
);
1704 if (elem
.asnlen
!= 1) {
1705 printf("[msgFlags size %d]", elem
.asnlen
);
1708 flags
= elem
.data
.str
[0];
1709 if (flags
!= 0x00 && flags
!= 0x01 && flags
!= 0x03
1710 && flags
!= 0x04 && flags
!= 0x05 && flags
!= 0x07) {
1711 printf("[msgFlags=0x%02X]", flags
);
1717 fputs("F=", stdout
);
1718 if (flags
& 0x01) fputs("a", stdout
);
1719 if (flags
& 0x02) fputs("p", stdout
);
1720 if (flags
& 0x04) fputs("r", stdout
);
1723 /* msgSecurityModel (INTEGER) */
1724 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1726 if (elem
.type
!= BE_INT
) {
1727 fputs("[msgSecurityModel!=INT]", stdout
);
1731 model
= elem
.data
.integer
;
1736 printf("[%d extra after message SEQ]", length
- count
);
1739 fputs("} ", stdout
);
1744 fputs("{ USM ", stdout
);
1747 printf("[security model %d]", model
);
1751 np
= xnp
+ (np
- xnp
);
1752 length
= xlength
- (np
- xnp
);
1754 /* msgSecurityParameters (OCTET STRING) */
1755 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1757 if (elem
.type
!= BE_STR
) {
1758 fputs("[msgSecurityParameters!=STR]", stdout
);
1766 usm_print(elem
.data
.str
, elem
.asnlen
);
1768 fputs("} ", stdout
);
1773 fputs("{ ScopedPDU ", stdout
);
1776 scopedpdu_print(np
, length
, 3);
1779 fputs("} ", stdout
);
1784 * Decode SNMP header and pass on to PDU printing routines
1787 snmp_print(const u_char
*np
, u_int length
)
1795 /* truncated packet? */
1796 if (np
+ length
> snapend
) {
1798 length
= snapend
- np
;
1803 /* initial Sequence */
1804 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1806 if (elem
.type
!= BE_SEQ
) {
1807 fputs("[!init SEQ]", stdout
);
1812 printf("[%d extra after iSEQ]", length
- count
);
1814 length
= elem
.asnlen
;
1815 np
= (u_char
*)elem
.data
.raw
;
1817 /* Version (INTEGER) */
1818 if ((count
= asn1_parse(np
, length
, &elem
)) < 0)
1820 if (elem
.type
!= BE_INT
) {
1821 fputs("[version!=INT]", stdout
);
1826 switch (elem
.data
.integer
) {
1827 case SNMP_VERSION_1
:
1828 case SNMP_VERSION_2
:
1829 case SNMP_VERSION_3
:
1831 printf("{ %s ", SnmpVersion
[elem
.data
.integer
]);
1834 printf("[version = %d]", elem
.data
.integer
);
1837 version
= elem
.data
.integer
;
1842 case SNMP_VERSION_1
:
1843 case SNMP_VERSION_2
:
1844 community_print(np
, length
, version
);
1846 case SNMP_VERSION_3
:
1847 v3msg_print(np
, length
);
1850 printf("[version = %d]", elem
.data
.integer
);
1855 fputs("} ", stdout
);