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