Support for ASN1 ENUMERATED type. This copies and duplicates the ASN1_INTEGER
[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 "cryptlib.h"
61 #include "buffer.h"
62 #include "objects.h"
63 #include "x509.h"
64
65 #ifndef NOPROTO
66 static int asn1_print_info(BIO *bp, int tag, int xclass,int constructed,
67         int indent);
68 static int asn1_parse2(BIO *bp, unsigned char **pp, long length,
69         int offset, int depth, int indent);
70 #else
71 static int asn1_print_info();
72 static int asn1_parse2();
73 #endif
74
75 static int asn1_print_info(bp, tag, xclass, constructed,indent)
76 BIO *bp;
77 int tag;
78 int xclass;
79 int constructed;
80 int indent;
81         {
82         static char *fmt="%-18s";
83         static char *fmt2="%2d %-15s";
84         char *p,str[128],*p2=NULL;
85
86         if (constructed & V_ASN1_CONSTRUCTED)
87                 p="cons: ";
88         else
89                 p="prim: ";
90         if (BIO_write(bp,p,6) < 6) goto err;
91         if (indent)
92                 {
93                 if (indent > 128) indent=128;
94                 memset(str,' ',indent);
95                 if (BIO_write(bp,str,indent) < indent) goto err;
96                 }
97
98         p=str;
99         if ((xclass & V_ASN1_PRIVATE) == V_ASN1_PRIVATE)
100                 sprintf(str,"priv [ %d ] ",tag);
101         else if ((xclass & V_ASN1_CONTEXT_SPECIFIC) == V_ASN1_CONTEXT_SPECIFIC)
102                 sprintf(str,"cont [ %d ]",tag);
103         else if ((xclass & V_ASN1_APPLICATION) == V_ASN1_APPLICATION)
104                 sprintf(str,"appl [ %d ]",tag);
105         else if ((tag == V_ASN1_EOC) /* && (xclass == V_ASN1_UNIVERSAL) */)
106                 p="EOC";
107         else if (tag == V_ASN1_BOOLEAN)
108                 p="BOOLEAN";
109         else if (tag == V_ASN1_INTEGER)
110                 p="INTEGER";
111         else if (tag == V_ASN1_ENUMERATED)
112                 p="ENUMERATED";
113         else if (tag == V_ASN1_BIT_STRING)
114                 p="BIT STRING";
115         else if (tag == V_ASN1_OCTET_STRING)
116                 p="OCTET STRING";
117         else if (tag == V_ASN1_NULL)
118                 p="NULL";
119         else if (tag == V_ASN1_OBJECT)
120                 p="OBJECT";
121         else if (tag == V_ASN1_SEQUENCE)
122                 p="SEQUENCE";
123         else if (tag == V_ASN1_SET)
124                 p="SET";
125         else if (tag == V_ASN1_PRINTABLESTRING)
126                 p="PRINTABLESTRING";
127         else if (tag == V_ASN1_T61STRING)
128                 p="T61STRING";
129         else if (tag == V_ASN1_IA5STRING)
130                 p="IA5STRING";
131         else if (tag == V_ASN1_UTCTIME)
132                 p="UTCTIME";
133
134         /* extras */
135         else if (tag == V_ASN1_NUMERICSTRING)
136                 p="NUMERICSTRING";
137         else if (tag == V_ASN1_VIDEOTEXSTRING)
138                 p="VIDEOTEXSTRING";
139         else if (tag == V_ASN1_GENERALIZEDTIME)
140                 p="GENERALIZEDTIME";
141         else if (tag == V_ASN1_GRAPHICSTRING)
142                 p="GRAPHICSTRING";
143         else if (tag == V_ASN1_ISO64STRING)
144                 p="ISO64STRING";
145         else if (tag == V_ASN1_GENERALSTRING)
146                 p="GENERALSTRING";
147         else if (tag == V_ASN1_UNIVERSALSTRING)
148                 p="UNIVERSALSTRING";
149         else if (tag == V_ASN1_BMPSTRING)
150                 p="BMPSTRING";
151         else
152                 p2="(unknown)";
153                 
154         if (p2 != NULL)
155                 {
156                 if (BIO_printf(bp,fmt2,tag,p2) <= 0) goto err;
157                 }
158         else
159                 {
160                 if (BIO_printf(bp,fmt,p) <= 0) goto err;
161                 }
162         return(1);
163 err:
164         return(0);
165         }
166
167 int ASN1_parse(bp, pp, len, indent)
168 BIO *bp;
169 unsigned char *pp;
170 long len;
171 int indent;
172         {
173         return(asn1_parse2(bp,&pp,len,0,0,indent));
174         }
175
176 static int asn1_parse2(bp, pp, length, offset, depth, indent)
177 BIO *bp;
178 unsigned char **pp;
179 long length;
180 int offset;
181 int depth;
182 int indent;
183         {
184         unsigned char *p,*ep,*tot,*op,*opp;
185         long len;
186         int tag,xclass,ret=0;
187         int nl,hl,j,r;
188         ASN1_OBJECT *o=NULL;
189         ASN1_OCTET_STRING *os=NULL;
190         /* ASN1_BMPSTRING *bmp=NULL;*/
191
192         p= *pp;
193         tot=p+length;
194         op=p-1;
195         while ((p < tot) && (op < p))
196                 {
197                 op=p;
198                 j=ASN1_get_object(&p,&len,&tag,&xclass,length);
199 #ifdef LINT
200                 j=j;
201 #endif
202                 if (j & 0x80)
203                         {
204                         if (BIO_write(bp,"Error in encoding\n",18) <= 0)
205                                 goto end;
206                         ret=0;
207                         goto end;
208                         }
209                 hl=(p-op);
210                 length-=hl;
211                 /* if j == 0x21 it is a constructed indefinite length object */
212                 if (BIO_printf(bp,"%5ld:",(long)offset+(long)(op- *pp))
213                         <= 0) goto end;
214
215                 if (j != (V_ASN1_CONSTRUCTED | 1))
216                         {
217                         if (BIO_printf(bp,"d=%-2d hl=%ld l=%4ld ",
218                                 depth,(long)hl,len) <= 0)
219                                 goto end;
220                         }
221                 else
222                         {
223                         if (BIO_printf(bp,"d=%-2d hl=%ld l=inf  ",
224                                 depth,(long)hl) <= 0)
225                                 goto end;
226                         }
227                 if (!asn1_print_info(bp,tag,xclass,j,(indent)?depth:0))
228                         goto end;
229                 if (j & V_ASN1_CONSTRUCTED)
230                         {
231                         ep=p+len;
232                         if (BIO_write(bp,"\n",1) <= 0) goto end;
233                         if (len > length)
234                                 {
235                                 BIO_printf(bp,
236                                         "length is greater than %ld\n",length);
237                                 ret=0;
238                                 goto end;
239                                 }
240                         if ((j == 0x21) && (len == 0))
241                                 {
242                                 for (;;)
243                                         {
244                                         r=asn1_parse2(bp,&p,(long)(tot-p),
245                                                 offset+(p - *pp),depth+1,
246                                                 indent);
247                                         if (r == 0) { ret=0; goto end; }
248                                         if ((r == 2) || (p >= tot)) break;
249                                         }
250                                 }
251                         else
252                                 while (p < ep)
253                                         {
254                                         r=asn1_parse2(bp,&p,(long)len,
255                                                 offset+(p - *pp),depth+1,
256                                                 indent);
257                                         if (r == 0) { ret=0; goto end; }
258                                         }
259                         }
260                 else if (xclass != 0)
261                         {
262                         p+=len;
263                         if (BIO_write(bp,"\n",1) <= 0) goto end;
264                         }
265                 else
266                         {
267                         nl=0;
268                         if (    (tag == V_ASN1_PRINTABLESTRING) ||
269                                 (tag == V_ASN1_T61STRING) ||
270                                 (tag == V_ASN1_IA5STRING) ||
271                                 (tag == V_ASN1_UTCTIME) ||
272                                 (tag == V_ASN1_GENERALIZEDTIME))
273                                 {
274                                 if (BIO_write(bp,":",1) <= 0) goto end;
275                                 if ((len > 0) &&
276                                         BIO_write(bp,(char *)p,(int)len)
277                                         != (int)len)
278                                         goto end;
279                                 }
280                         else if (tag == V_ASN1_OBJECT)
281                                 {
282                                 opp=op;
283                                 if (d2i_ASN1_OBJECT(&o,&opp,len+hl) != NULL)
284                                         {
285                                         if (BIO_write(bp,":",1) <= 0) goto end;
286                                         i2a_ASN1_OBJECT(bp,o);
287                                         }
288                                 else
289                                         {
290                                         if (BIO_write(bp,":BAD OBJECT",11) <= 0)
291                                                 goto end;
292                                         }
293                                 }
294                         else if (tag == V_ASN1_BOOLEAN)
295                                 {
296                                 int ii;
297
298                                 opp=op;
299                                 ii=d2i_ASN1_BOOLEAN(NULL,&opp,len+hl);
300                                 if (ii < 0)
301                                         {
302                                         if (BIO_write(bp,"Bad boolean\n",12))
303                                                 goto end;
304                                         }
305                                 BIO_printf(bp,":%d",ii);
306                                 }
307                         else if (tag == V_ASN1_BMPSTRING)
308                                 {
309                                 /* do the BMP thang */
310                                 }
311                         else if (tag == V_ASN1_OCTET_STRING)
312                                 {
313                                 int i,printable=1;
314
315                                 opp=op;
316                                 os=d2i_ASN1_OCTET_STRING(NULL,&opp,len+hl);
317                                 if (os != NULL)
318                                         {
319                                         opp=os->data;
320                                         for (i=0; i<os->length; i++)
321                                                 {
322                                                 if ((   (opp[i] < ' ') &&
323                                                         (opp[i] != '\n') &&
324                                                         (opp[i] != '\r') &&
325                                                         (opp[i] != '\t')) ||
326                                                         (opp[i] > '~'))
327                                                         {
328                                                         printable=0;
329                                                         break;
330                                                         }
331                                                 }
332                                         if (printable && (os->length > 0))
333                                                 {
334                                                 if (BIO_write(bp,":",1) <= 0)
335                                                         goto end;
336                                                 if (BIO_write(bp,(char *)opp,
337                                                         os->length) <= 0)
338                                                         goto end;
339                                                 }
340                                         ASN1_OCTET_STRING_free(os);
341                                         os=NULL;
342                                         }
343                                 }
344                         else if (tag == V_ASN1_INTEGER)
345                                 {
346                                 ASN1_INTEGER *bs;
347                                 int i;
348
349                                 opp=op;
350                                 bs=d2i_ASN1_INTEGER(NULL,&opp,len+hl);
351                                 if (bs != NULL)
352                                         {
353                                         if (BIO_write(bp,":",1) <= 0) goto end;
354                                         if (bs->type == V_ASN1_NEG_INTEGER)
355                                                 if (BIO_write(bp,"-",1) <= 0)
356                                                         goto end;
357                                         for (i=0; i<bs->length; i++)
358                                                 {
359                                                 if (BIO_printf(bp,"%02X",
360                                                         bs->data[i]) <= 0)
361                                                         goto end;
362                                                 }
363                                         if (bs->length == 0)
364                                                 {
365                                                 if (BIO_write(bp,"00",2) <= 0)
366                                                         goto end;
367                                                 }
368                                         }
369                                 else
370                                         {
371                                         if (BIO_write(bp,"BAD INTEGER",11) <= 0)
372                                                 goto end;
373                                         }
374                                 ASN1_INTEGER_free(bs);
375                                 }
376                         else if (tag == V_ASN1_ENUMERATED)
377                                 {
378                                 ASN1_ENUMERATED *bs;
379                                 int i;
380
381                                 opp=op;
382                                 bs=d2i_ASN1_ENUMERATED(NULL,&opp,len+hl);
383                                 if (bs != NULL)
384                                         {
385                                         if (BIO_write(bp,":",1) <= 0) goto end;
386                                         if (bs->type == V_ASN1_NEG_ENUMERATED)
387                                                 if (BIO_write(bp,"-",1) <= 0)
388                                                         goto end;
389                                         for (i=0; i<bs->length; i++)
390                                                 {
391                                                 if (BIO_printf(bp,"%02X",
392                                                         bs->data[i]) <= 0)
393                                                         goto end;
394                                                 }
395                                         if (bs->length == 0)
396                                                 {
397                                                 if (BIO_write(bp,"00",2) <= 0)
398                                                         goto end;
399                                                 }
400                                         }
401                                 else
402                                         {
403                                         if (BIO_write(bp,"BAD ENUMERATED",11) <= 0)
404                                                 goto end;
405                                         }
406                                 ASN1_ENUMERATED_free(bs);
407                                 }
408
409                         if (!nl) 
410                                 {
411                                 if (BIO_write(bp,"\n",1) <= 0) goto end;
412                                 }
413                         p+=len;
414                         if ((tag == V_ASN1_EOC) && (xclass == 0))
415                                 {
416                                 ret=2; /* End of sequence */
417                                 goto end;
418                                 }
419                         }
420                 length-=len;
421                 }
422         ret=1;
423 end:
424         if (o != NULL) ASN1_OBJECT_free(o);
425         if (os != NULL) ASN1_OCTET_STRING_free(os);
426         *pp=p;
427         return(ret);
428         }