2 * Copyright (c) 1997 - 2005 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include <sys/types.h>
42 __RCSID("$Heimdal: asn1_print.c 19539 2006-12-28 17:15:05Z lha $"
45 static int indent_flag
= 1;
47 static unsigned long indefinite_form_loop
;
48 static unsigned long indefinite_form_loop_max
= 10000;
51 loop (unsigned char *buf
, size_t len
, int indent
)
53 unsigned char *start_buf
= buf
;
62 size_t loop_length
= 0;
66 ret
= der_get_tag (buf
, len
, &class, &type
, &tag
, &sz
);
68 errx (1, "der_get_tag: %s", error_message (ret
));
70 errx (1, "unreasonable length (%u) > %u",
71 (unsigned)sz
, (unsigned)len
);
76 for (i
= 0; i
< indent
; ++i
)
79 printf ("%s %s ", der_get_class_name(class), der_get_type_name(type
));
80 tagname
= der_get_tag_name(tag
);
81 if (class == ASN1_C_UNIV
&& tagname
!= NULL
)
82 printf ("%s = ", tagname
);
84 printf ("tag %d = ", tag
);
85 ret
= der_get_length (buf
, len
, &length
, &sz
);
87 errx (1, "der_get_tag: %s", error_message (ret
));
89 errx (1, "unreasonable tag length (%u) > %u",
90 (unsigned)sz
, (unsigned)len
);
93 if (length
== ASN1_INDEFINITE
) {
94 if ((class == ASN1_C_UNIV
&& type
== PRIM
&& tag
== UT_OctetString
) ||
95 (class == ASN1_C_CONTEXT
&& type
== CONS
) ||
96 (class == ASN1_C_UNIV
&& type
== CONS
&& tag
== UT_Sequence
) ||
97 (class == ASN1_C_UNIV
&& type
== CONS
&& tag
== UT_Set
)) {
98 printf("*INDEFINITE FORM*");
101 errx(1, "indef form used on unsupported object");
104 if (indefinite_form_loop
> indefinite_form_loop_max
)
105 errx(1, "indefinite form used recursively more then %lu "
106 "times, aborting", indefinite_form_loop_max
);
107 indefinite_form_loop
++;
109 } else if (length
> len
) {
112 errx (1, "unreasonable inner length (%u) > %u",
113 (unsigned)length
, (unsigned)len
);
115 if (class == ASN1_C_CONTEXT
|| class == ASN1_C_APPL
) {
116 printf ("%lu bytes [%u]", (unsigned long)length
, tag
);
119 loop_length
= loop (buf
, length
, indent
+ 2);
121 printf(" IMPLICIT content\n");
123 } else if (class == ASN1_C_UNIV
) {
125 case UT_EndOfContent
:
126 printf (" INDEFINITE length was %lu\n",
127 (unsigned long)(buf
- start_buf
));
131 printf ("%lu bytes {\n", (unsigned long)length
);
132 loop_length
= loop (buf
, length
, indent
+ 2);
135 for (i
= 0; i
< indent
; ++i
)
139 printf ("} indent = %d\n", indent
/ 2);
144 if (length
<= sizeof(val
)) {
145 ret
= der_get_integer (buf
, length
, &val
, NULL
);
147 errx (1, "der_get_integer: %s", error_message (ret
));
148 printf ("integer %d\n", val
);
153 ret
= der_get_heim_integer(buf
, length
, &vali
, NULL
);
155 errx (1, "der_get_heim_integer: %s",
156 error_message (ret
));
157 ret
= der_print_hex_heim_integer(&vali
, &p
);
159 errx (1, "der_print_hex_heim_integer: %s",
160 error_message (ret
));
161 printf ("BIG NUM integer: length %lu %s\n",
162 (unsigned long)length
, p
);
167 case UT_OctetString
: {
168 heim_octet_string str
;
172 ret
= der_get_octet_string (buf
, length
, &str
, NULL
);
174 errx (1, "der_get_octet_string: %s", error_message (ret
));
175 printf ("(length %lu), ", (unsigned long)length
);
176 uc
= (unsigned char *)str
.data
;
177 for (i
= 0; i
< min(16,length
); ++i
)
178 printf ("%02x", uc
[i
]);
183 case UT_GeneralizedTime
:
184 case UT_GeneralString
:
185 case UT_PrintableString
:
186 case UT_VisibleString
: {
187 heim_general_string str
;
189 ret
= der_get_general_string (buf
, length
, &str
, NULL
);
191 errx (1, "der_get_general_string: %s",
192 error_message (ret
));
193 printf ("\"%s\"\n", str
);
201 ret
= der_get_oid(buf
, length
, &o
, NULL
);
203 errx (1, "der_get_oid: %s", error_message (ret
));
204 ret
= der_print_heim_oid(&o
, '.', &p
);
207 errx (1, "der_print_heim_oid: %s", error_message (ret
));
213 case UT_Enumerated
: {
216 ret
= der_get_integer (buf
, length
, &num
, NULL
);
218 errx (1, "der_get_enum: %s", error_message (ret
));
224 printf ("%lu bytes\n", (unsigned long)length
);
229 if (loop_length
== 0)
230 errx(1, "zero length INDEFINITE data ? indent = %d\n",
232 if (loop_length
< length
)
233 length
= loop_length
;
234 if (indefinite_form_loop
== 0)
235 errx(1, "internal error in indefinite form loop detection");
236 indefinite_form_loop
--;
237 } else if (loop_length
)
238 errx(1, "internal error for INDEFINITE form");
246 doit (const char *filename
)
248 int fd
= open (filename
, O_RDONLY
);
255 err (1, "opening %s for read", filename
);
256 if (fstat (fd
, &sb
) < 0)
257 err (1, "stat %s", filename
);
260 if (read (fd
, buf
, len
) != len
)
261 errx (1, "read failed");
263 ret
= loop (buf
, len
, 0);
269 static int version_flag
;
270 static int help_flag
;
271 struct getargs args
[] = {
272 { "indent", 0, arg_negative_flag
, &indent_flag
},
273 { "version", 0, arg_flag
, &version_flag
},
274 { "help", 0, arg_flag
, &help_flag
}
276 int num_args
= sizeof(args
) / sizeof(args
[0]);
281 arg_printusage(args
, num_args
, NULL
, "dump-file");
286 main(int argc
, char **argv
)
290 setprogname (argv
[0]);
291 initialize_asn1_error_table ();
292 if(getarg(args
, num_args
, argc
, argv
, &optidx
))
304 return doit (argv
[0]);