Import of old SSLeay release: SSLeay 0.9.0b
[openssl.git] / apps / asn1pars.c
1 /* apps/asn1pars.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 <stdlib.h>
61 #include <string.h>
62 #include "apps.h"
63 #include "err.h"
64 #include "evp.h"
65 #include "x509.h"
66 #include "pem.h"
67
68 #define FORMAT_UNDEF    0
69 #define FORMAT_ASN1     1
70 #define FORMAT_TEXT     2
71 #define FORMAT_PEM      3
72
73 /* -inform arg  - input format - default PEM (DER or PEM)
74  * -in arg      - input file - default stdin
75  * -i           - indent the details by depth
76  * -offset      - where in the file to start
77  * -length      - how many bytes to use
78  * -oid file    - extra oid decription file
79  */
80
81 #undef PROG
82 #define PROG    asn1parse_main
83
84 int MAIN(argc, argv)
85 int argc;
86 char **argv;
87         {
88         int i,badops=0,offset=0,ret=1;
89         unsigned int length=0;
90         long num;
91         BIO *in=NULL,*out=NULL,*b64=NULL;
92         int informat,indent=0;
93         char *infile=NULL,*str=NULL,*prog,*oidfile=NULL;
94         BUF_MEM *buf=NULL;
95
96         informat=FORMAT_PEM;
97
98         apps_startup();
99
100         if (bio_err == NULL)
101                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
102                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
103
104         prog=argv[0];
105         argc--;
106         argv++;
107         while (argc >= 1)
108                 {
109                 if      (strcmp(*argv,"-inform") == 0)
110                         {
111                         if (--argc < 1) goto bad;
112                         informat=str2fmt(*(++argv));
113                         }
114                 else if (strcmp(*argv,"-in") == 0)
115                         {
116                         if (--argc < 1) goto bad;
117                         infile= *(++argv);
118                         }
119                 else if (strcmp(*argv,"-i") == 0)
120                         {
121                         indent=1;
122                         }
123                 else if (strcmp(*argv,"-oid") == 0)
124                         {
125                         if (--argc < 1) goto bad;
126                         oidfile= *(++argv);
127                         }
128                 else if (strcmp(*argv,"-offset") == 0)
129                         {
130                         if (--argc < 1) goto bad;
131                         offset= atoi(*(++argv));
132                         }
133                 else if (strcmp(*argv,"-length") == 0)
134                         {
135                         if (--argc < 1) goto bad;
136                         length= atoi(*(++argv));
137                         if (length == 0) goto bad;
138                         }
139                 else
140                         {
141                         BIO_printf(bio_err,"unknown option %s\n",*argv);
142                         badops=1;
143                         break;
144                         }
145                 argc--;
146                 argv++;
147                 }
148
149         if (badops)
150                 {
151 bad:
152                 BIO_printf(bio_err,"%s [options] <infile\n",prog);
153                 BIO_printf(bio_err,"where options are\n");
154                 BIO_printf(bio_err," -inform arg   input format - one of DER TXT PEM\n");
155                 BIO_printf(bio_err," -in arg       inout file\n");
156                 BIO_printf(bio_err," -offset arg   offset into file\n");
157                 BIO_printf(bio_err," -length arg   lenth of section in file\n");
158                 BIO_printf(bio_err," -i            indent entries\n");
159                 BIO_printf(bio_err," -oid file     file of extra oid definitions\n");
160                 goto end;
161                 }
162
163         ERR_load_crypto_strings();
164
165         in=BIO_new(BIO_s_file());
166         out=BIO_new(BIO_s_file());
167         if ((in == NULL) || (out == NULL))
168                 {
169                 ERR_print_errors(bio_err);
170                 goto end;
171                 }
172         BIO_set_fp(out,stdout,BIO_NOCLOSE|BIO_FP_TEXT);
173
174         if (oidfile != NULL)
175                 {
176                 if (BIO_read_filename(in,oidfile) <= 0)
177                         {
178                         BIO_printf(bio_err,"problems opening %s\n",oidfile);
179                         ERR_print_errors(bio_err);
180                         goto end;
181                         }
182                 OBJ_create_objects(in);
183                 }
184
185         if (infile == NULL)
186                 BIO_set_fp(in,stdin,BIO_NOCLOSE);
187         else
188                 {
189                 if (BIO_read_filename(in,infile) <= 0)
190                         {
191                         perror(infile);
192                         goto end;
193                         }
194                 }
195
196         if ((buf=BUF_MEM_new()) == NULL) goto end;
197         if (!BUF_MEM_grow(buf,BUFSIZ*8)) goto end; /* Pre-allocate :-) */
198
199         if (informat == FORMAT_PEM)
200                 {
201                 BIO *tmp;
202
203                 if ((b64=BIO_new(BIO_f_base64())) == NULL)
204                         goto end;
205                 BIO_push(b64,in);
206                 tmp=in;
207                 in=b64;
208                 b64=tmp;
209                 }
210
211         num=0;
212         for (;;)
213                 {
214                 if (!BUF_MEM_grow(buf,(int)num+BUFSIZ)) goto end;
215                 i=BIO_read(in,&(buf->data[num]),BUFSIZ);
216                 if (i <= 0) break;
217                 num+=i;
218                 }
219         str=buf->data;
220
221         if (length == 0) length=(unsigned int)num;
222         if (!ASN1_parse(out,(unsigned char *)&(str[offset]),length,indent))
223                 {
224                 ERR_print_errors(bio_err);
225                 goto end;
226                 }
227         ret=0;
228 end:
229         if (in != NULL) BIO_free(in);
230         if (out != NULL) BIO_free(out);
231         if (b64 != NULL) BIO_free(b64);
232         if (ret != 0)
233                 ERR_print_errors(bio_err);
234         if (buf != NULL) BUF_MEM_free(buf);
235         OBJ_cleanup();
236         EXIT(ret);
237         }
238