Fix uninitialised p error.
[openssl.git] / crypto / asn1 / asn1_par.c
1 /* crypto/asn1/asn1_par.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <stdio.h>
60 #include "internal/cryptlib.h"
61 #include <openssl/buffer.h>
62 #include <openssl/objects.h>
63 #include <openssl/asn1.h>
64
65 #ifndef ASN1_PARSE_MAXDEPTH
66 #define ASN1_PARSE_MAXDEPTH 128
67 #endif
68
69 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed,
70                            int indent);
71 static int asn1_parse2(BIO *bp, const unsigned char **pp, long length,
72                        int offset, int depth, int indent, int dump);
73 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed,
74                            int indent)
75 {
76     static const char fmt[] = "%-18s";
77     char str[128];
78     const char *p;
79
80     if (constructed & V_ASN1_CONSTRUCTED)
81         p = "cons: ";
82     else
83         p = "prim: ";
84     if (BIO_write(bp, p, 6) < 6)
85         goto err;
86     BIO_indent(bp, indent, 128);
87
88     p = str;
89     if ((xclass & V_ASN1_PRIVATE) == V_ASN1_PRIVATE)
90         BIO_snprintf(str, sizeof str, "priv [ %d ] ", tag);
91     else if ((xclass & V_ASN1_CONTEXT_SPECIFIC) == V_ASN1_CONTEXT_SPECIFIC)
92         BIO_snprintf(str, sizeof str, "cont [ %d ]", tag);
93     else if ((xclass & V_ASN1_APPLICATION) == V_ASN1_APPLICATION)
94         BIO_snprintf(str, sizeof str, "appl [ %d ]", tag);
95     else if (tag > 30)
96         BIO_snprintf(str, sizeof str, "<ASN1 %d>", tag);
97     else
98         p = ASN1_tag2str(tag);
99
100     if (BIO_printf(bp, fmt, p) <= 0)
101         goto err;
102     return (1);
103  err:
104     return (0);
105 }
106
107 int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent)
108 {
109     return (asn1_parse2(bp, &pp, len, 0, 0, indent, 0));
110 }
111
112 int ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent,
113                     int dump)
114 {
115     return (asn1_parse2(bp, &pp, len, 0, 0, indent, dump));
116 }
117
118 static int asn1_parse2(BIO *bp, const unsigned char **pp, long length,
119                        int offset, int depth, int indent, int dump)
120 {
121     const unsigned char *p, *ep, *tot, *op, *opp;
122     long len;
123     int tag, xclass, ret = 0;
124     int nl, hl, j, r;
125     ASN1_OBJECT *o = NULL;
126     ASN1_OCTET_STRING *os = NULL;
127     /* ASN1_BMPSTRING *bmp=NULL; */
128     int dump_indent;
129
130     if (depth > ASN1_PARSE_MAXDEPTH) {
131             BIO_puts(bp, "BAD RECURSION DEPTH\n");
132             return 0;
133     }
134
135     dump_indent = 6;            /* Because we know BIO_dump_indent() */
136     p = *pp;
137     tot = p + length;
138     op = p - 1;
139     while ((p < tot) && (op < p)) {
140         op = p;
141         j = ASN1_get_object(&p, &len, &tag, &xclass, length);
142         if (j & 0x80) {
143             if (BIO_write(bp, "Error in encoding\n", 18) <= 0)
144                 goto end;
145             ret = 0;
146             goto end;
147         }
148         hl = (p - op);
149         length -= hl;
150         /*
151          * if j == 0x21 it is a constructed indefinite length object
152          */
153         if (BIO_printf(bp, "%5ld:", (long)offset + (long)(op - *pp))
154             <= 0)
155             goto end;
156
157         if (j != (V_ASN1_CONSTRUCTED | 1)) {
158             if (BIO_printf(bp, "d=%-2d hl=%ld l=%4ld ",
159                            depth, (long)hl, len) <= 0)
160                 goto end;
161         } else {
162             if (BIO_printf(bp, "d=%-2d hl=%ld l=inf  ", depth, (long)hl) <= 0)
163                 goto end;
164         }
165         if (!asn1_print_info(bp, tag, xclass, j, (indent) ? depth : 0))
166             goto end;
167         if (j & V_ASN1_CONSTRUCTED) {
168             ep = p + len;
169             if (BIO_write(bp, "\n", 1) <= 0)
170                 goto end;
171             if (len > length) {
172                 BIO_printf(bp, "length is greater than %ld\n", length);
173                 ret = 0;
174                 goto end;
175             }
176             if ((j == 0x21) && (len == 0)) {
177                 for (;;) {
178                     r = asn1_parse2(bp, &p, (long)(tot - p),
179                                     offset + (p - *pp), depth + 1,
180                                     indent, dump);
181                     if (r == 0) {
182                         ret = 0;
183                         goto end;
184                     }
185                     if ((r == 2) || (p >= tot))
186                         break;
187                 }
188             } else
189                 while (p < ep) {
190                     r = asn1_parse2(bp, &p, (long)len,
191                                     offset + (p - *pp), depth + 1,
192                                     indent, dump);
193                     if (r == 0) {
194                         ret = 0;
195                         goto end;
196                     }
197                 }
198         } else if (xclass != 0) {
199             p += len;
200             if (BIO_write(bp, "\n", 1) <= 0)
201                 goto end;
202         } else {
203             nl = 0;
204             if ((tag == V_ASN1_PRINTABLESTRING) ||
205                 (tag == V_ASN1_T61STRING) ||
206                 (tag == V_ASN1_IA5STRING) ||
207                 (tag == V_ASN1_VISIBLESTRING) ||
208                 (tag == V_ASN1_NUMERICSTRING) ||
209                 (tag == V_ASN1_UTF8STRING) ||
210                 (tag == V_ASN1_UTCTIME) || (tag == V_ASN1_GENERALIZEDTIME)) {
211                 if (BIO_write(bp, ":", 1) <= 0)
212                     goto end;
213                 if ((len > 0) && BIO_write(bp, (const char *)p, (int)len)
214                     != (int)len)
215                     goto end;
216             } else if (tag == V_ASN1_OBJECT) {
217                 opp = op;
218                 if (d2i_ASN1_OBJECT(&o, &opp, len + hl) != NULL) {
219                     if (BIO_write(bp, ":", 1) <= 0)
220                         goto end;
221                     i2a_ASN1_OBJECT(bp, o);
222                 } else {
223                     if (BIO_write(bp, ":BAD OBJECT", 11) <= 0)
224                         goto end;
225                 }
226             } else if (tag == V_ASN1_BOOLEAN) {
227                 if (len != 1) {
228                     if (BIO_write(bp, "Bad boolean\n", 12) <= 0)
229                         goto end;
230                 }
231                 BIO_printf(bp, ":%u", p[0]);
232             } else if (tag == V_ASN1_BMPSTRING) {
233                 /* do the BMP thang */
234             } else if (tag == V_ASN1_OCTET_STRING) {
235                 int i, printable = 1;
236
237                 opp = op;
238                 os = d2i_ASN1_OCTET_STRING(NULL, &opp, len + hl);
239                 if (os != NULL && os->length > 0) {
240                     opp = os->data;
241                     /*
242                      * testing whether the octet string is printable
243                      */
244                     for (i = 0; i < os->length; i++) {
245                         if (((opp[i] < ' ') &&
246                              (opp[i] != '\n') &&
247                              (opp[i] != '\r') &&
248                              (opp[i] != '\t')) || (opp[i] > '~')) {
249                             printable = 0;
250                             break;
251                         }
252                     }
253                     if (printable)
254                         /* printable string */
255                     {
256                         if (BIO_write(bp, ":", 1) <= 0)
257                             goto end;
258                         if (BIO_write(bp, (const char *)opp, os->length) <= 0)
259                             goto end;
260                     } else if (!dump)
261                         /*
262                          * not printable => print octet string as hex dump
263                          */
264                     {
265                         if (BIO_write(bp, "[HEX DUMP]:", 11) <= 0)
266                             goto end;
267                         for (i = 0; i < os->length; i++) {
268                             if (BIO_printf(bp, "%02X", opp[i]) <= 0)
269                                 goto end;
270                         }
271                     } else
272                         /* print the normal dump */
273                     {
274                         if (!nl) {
275                             if (BIO_write(bp, "\n", 1) <= 0)
276                                 goto end;
277                         }
278                         if (BIO_dump_indent(bp,
279                                             (const char *)opp,
280                                             ((dump == -1 || dump >
281                                               os->
282                                               length) ? os->length : dump),
283                                             dump_indent) <= 0)
284                             goto end;
285                         nl = 1;
286                     }
287                 }
288                 ASN1_OCTET_STRING_free(os);
289                 os = NULL;
290             } else if (tag == V_ASN1_INTEGER) {
291                 ASN1_INTEGER *bs;
292                 int i;
293
294                 opp = op;
295                 bs = d2i_ASN1_INTEGER(NULL, &opp, len + hl);
296                 if (bs != NULL) {
297                     if (BIO_write(bp, ":", 1) <= 0)
298                         goto end;
299                     if (bs->type == V_ASN1_NEG_INTEGER)
300                         if (BIO_write(bp, "-", 1) <= 0)
301                             goto end;
302                     for (i = 0; i < bs->length; i++) {
303                         if (BIO_printf(bp, "%02X", bs->data[i]) <= 0)
304                             goto end;
305                     }
306                     if (bs->length == 0) {
307                         if (BIO_write(bp, "00", 2) <= 0)
308                             goto end;
309                     }
310                 } else {
311                     if (BIO_write(bp, "BAD INTEGER", 11) <= 0)
312                         goto end;
313                 }
314                 ASN1_INTEGER_free(bs);
315             } else if (tag == V_ASN1_ENUMERATED) {
316                 ASN1_ENUMERATED *bs;
317                 int i;
318
319                 opp = op;
320                 bs = d2i_ASN1_ENUMERATED(NULL, &opp, len + hl);
321                 if (bs != NULL) {
322                     if (BIO_write(bp, ":", 1) <= 0)
323                         goto end;
324                     if (bs->type == V_ASN1_NEG_ENUMERATED)
325                         if (BIO_write(bp, "-", 1) <= 0)
326                             goto end;
327                     for (i = 0; i < bs->length; i++) {
328                         if (BIO_printf(bp, "%02X", bs->data[i]) <= 0)
329                             goto end;
330                     }
331                     if (bs->length == 0) {
332                         if (BIO_write(bp, "00", 2) <= 0)
333                             goto end;
334                     }
335                 } else {
336                     if (BIO_write(bp, "BAD ENUMERATED", 14) <= 0)
337                         goto end;
338                 }
339                 ASN1_ENUMERATED_free(bs);
340             } else if (len > 0 && dump) {
341                 if (!nl) {
342                     if (BIO_write(bp, "\n", 1) <= 0)
343                         goto end;
344                 }
345                 if (BIO_dump_indent(bp, (const char *)p,
346                                     ((dump == -1 || dump > len) ? len : dump),
347                                     dump_indent) <= 0)
348                     goto end;
349                 nl = 1;
350             }
351
352             if (!nl) {
353                 if (BIO_write(bp, "\n", 1) <= 0)
354                     goto end;
355             }
356             p += len;
357             if ((tag == V_ASN1_EOC) && (xclass == 0)) {
358                 ret = 2;        /* End of sequence */
359                 goto end;
360             }
361         }
362         length -= len;
363     }
364     ret = 1;
365  end:
366     ASN1_OBJECT_free(o);
367     ASN1_OCTET_STRING_free(os);
368     *pp = p;
369     return (ret);
370 }
371
372 const char *ASN1_tag2str(int tag)
373 {
374     static const char *const tag2str[] = {
375         /* 0-4 */
376         "EOC", "BOOLEAN", "INTEGER", "BIT STRING", "OCTET STRING",
377         /* 5-9 */
378         "NULL", "OBJECT", "OBJECT DESCRIPTOR", "EXTERNAL", "REAL",
379         /* 10-13 */
380         "ENUMERATED", "<ASN1 11>", "UTF8STRING", "<ASN1 13>",
381         /* 15-17 */
382         "<ASN1 14>", "<ASN1 15>", "SEQUENCE", "SET",
383         /* 18-20 */
384         "NUMERICSTRING", "PRINTABLESTRING", "T61STRING",
385         /* 21-24 */
386         "VIDEOTEXSTRING", "IA5STRING", "UTCTIME", "GENERALIZEDTIME",
387         /* 25-27 */
388         "GRAPHICSTRING", "VISIBLESTRING", "GENERALSTRING",
389         /* 28-30 */
390         "UNIVERSALSTRING", "<ASN1 29>", "BMPSTRING"
391     };
392
393     if ((tag == V_ASN1_NEG_INTEGER) || (tag == V_ASN1_NEG_ENUMERATED))
394         tag &= ~0x100;
395
396     if (tag < 0 || tag > 30)
397         return "(unknown)";
398     return tag2str[tag];
399 }