ebc2885a3b4061d48020997e3520158d31e240f4
[openssl.git] / apps / openssl.c
1 /* apps/openssl.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 #ifndef DEBUG
60 #undef DEBUG
61 #endif
62
63 #include <stdio.h>
64 #include <string.h>
65 #include <stdlib.h>
66 #include <openssl/bio.h>
67 #include <openssl/crypto.h>
68 #include <openssl/lhash.h>
69 #include <openssl/conf.h>
70 #include <openssl/x509.h>
71 #include <openssl/pem.h>
72 #include <openssl/ssl.h>
73 #define SSLEAY  /* turn off a few special case MONOLITH macros */
74 #define USE_SOCKETS /* needed for the _O_BINARY defs in the MS world */
75 #define SSLEAY_SRC
76 #include "apps.h"
77 #include "s_apps.h"
78 #include <openssl/err.h>
79
80 /*
81 #ifdef WINDOWS
82 #include "bss_file.c"
83 #endif
84 */
85
86 static unsigned long MS_CALLBACK hash(FUNCTION *a);
87 static int MS_CALLBACK cmp(FUNCTION *a,FUNCTION *b);
88 static LHASH *prog_init(void );
89 static int do_cmd(LHASH *prog,int argc,char *argv[]);
90 LHASH *config=NULL;
91 char *default_config_file=NULL;
92
93 #ifdef DEBUG
94 static void sig_stop(int i)
95         {
96         char *a=NULL;
97
98         *a='\0';
99         }
100 #endif
101
102 /* Make sure there is only one when MONOLITH is defined */
103 #ifdef MONOLITH
104 BIO *bio_err=NULL;
105 #endif
106
107 int main(int Argc, char *Argv[])
108         {
109         ARGS arg;
110 #define PROG_NAME_SIZE  16
111         char pname[PROG_NAME_SIZE];
112         FUNCTION f,*fp;
113         MS_STATIC char *prompt,buf[1024],config_name[256];
114         int n,i,ret=0;
115         int argc;
116         char **argv,*p;
117         LHASH *prog=NULL;
118         long errline;
119  
120         arg.data=NULL;
121         arg.count=0;
122
123         /* SSLeay_add_ssl_algorithms(); is called in apps_startup() */
124         apps_startup();
125
126 #if defined(DEBUG) && !defined(WINDOWS) && !defined(MSDOS)
127 #ifdef SIGBUS
128         signal(SIGBUS,sig_stop);
129 #endif
130 #ifdef SIGSEGV
131         signal(SIGSEGV,sig_stop);
132 #endif
133 #endif
134
135         if (bio_err == NULL)
136                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
137                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
138
139         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
140
141         ERR_load_crypto_strings();
142
143         /* Lets load up our environment a little */
144         p=getenv("OPENSSL_CONF");
145         if (p == NULL)
146                 p=getenv("SSLEAY_CONF");
147         if (p == NULL)
148                 {
149                 strcpy(config_name,X509_get_default_cert_area());
150                 strcat(config_name,"/lib/");
151                 strcat(config_name,OPENSSL_CONF);
152                 p=config_name;
153                 }
154
155         default_config_file=p;
156
157         config=CONF_load(config,p,&errline);
158         if (config == NULL) ERR_clear_error();
159
160         prog=prog_init();
161
162         /* first check the program name */
163         program_name(Argv[0],pname,PROG_NAME_SIZE);
164
165         f.name=pname;
166         fp=(FUNCTION *)lh_retrieve(prog,(char *)&f);
167         if (fp != NULL)
168                 {
169                 Argv[0]=pname;
170                 ret=fp->func(Argc,Argv);
171                 goto end;
172                 }
173
174         /* ok, now check that there are not arguments, if there are,
175          * run with them, shifting the ssleay off the front */
176         if (Argc != 1)
177                 {
178                 Argc--;
179                 Argv++;
180                 ret=do_cmd(prog,Argc,Argv);
181                 if (ret < 0) ret=0;
182                 goto end;
183                 }
184
185         /* ok, lets enter the old 'OpenSSL>' mode */
186         
187         for (;;)
188                 {
189                 ret=0;
190                 p=buf;
191                 n=1024;
192                 i=0;
193                 for (;;)
194                         {
195                         p[0]='\0';
196                         if (i++)
197                                 prompt=">";
198                         else    prompt="OpenSSL> ";
199                         fputs(prompt,stdout);
200                         fflush(stdout);
201                         fgets(p,n,stdin);
202                         if (p[0] == '\0') goto end;
203                         i=strlen(p);
204                         if (i <= 1) break;
205                         if (p[i-2] != '\\') break;
206                         i-=2;
207                         p+=i;
208                         n-=i;
209                         }
210                 if (!chopup_args(&arg,buf,&argc,&argv)) break;
211
212                 ret=do_cmd(prog,argc,argv);
213                 if (ret < 0)
214                         {
215                         ret=0;
216                         goto end;
217                         }
218                 if (ret != 0)
219                         BIO_printf(bio_err,"error in %s\n",argv[0]);
220                 BIO_flush(bio_err);
221                 }
222         BIO_printf(bio_err,"bad exit\n");
223         ret=1;
224 end:
225         if (config != NULL)
226                 {
227                 CONF_free(config);
228                 config=NULL;
229                 }
230         if (prog != NULL) lh_free(prog);
231         if (arg.data != NULL) Free(arg.data);
232         ERR_remove_state(0);
233
234         EVP_cleanup();
235         ERR_free_strings();
236
237         CRYPTO_mem_leaks(bio_err);
238         if (bio_err != NULL)
239                 {
240                 BIO_free(bio_err);
241                 bio_err=NULL;
242                 }
243         EXIT(ret);
244         }
245
246 #define LIST_STANDARD_COMMANDS "list-standard-commands"
247 #define LIST_MESSAGE_DIGEST_COMMANDS "list-message-digest-commands"
248 #define LIST_CIPHER_COMMANDS "list-cipher-commands"
249
250 static int do_cmd(LHASH *prog, int argc, char *argv[])
251         {
252         FUNCTION f,*fp;
253         int i,ret=1,tp,nl;
254
255         if ((argc <= 0) || (argv[0] == NULL))
256                 { ret=0; goto end; }
257         f.name=argv[0];
258         fp=(FUNCTION *)lh_retrieve(prog,(char *)&f);
259         if (fp != NULL)
260                 {
261                 ret=fp->func(argc,argv);
262                 }
263         else if ((strcmp(argv[0],"quit") == 0) ||
264                 (strcmp(argv[0],"q") == 0) ||
265                 (strcmp(argv[0],"exit") == 0) ||
266                 (strcmp(argv[0],"bye") == 0))
267                 {
268                 ret= -1;
269                 goto end;
270                 }
271         else if ((strcmp(argv[0],LIST_STANDARD_COMMANDS) == 0) ||
272                 (strcmp(argv[0],LIST_MESSAGE_DIGEST_COMMANDS) == 0) ||
273                 (strcmp(argv[0],LIST_CIPHER_COMMANDS) == 0))
274                 {
275                 int list_type;
276                 BIO *bio_stdout;
277
278                 if (strcmp(argv[0],LIST_STANDARD_COMMANDS) == 0)
279                         list_type = FUNC_TYPE_GENERAL;
280                 else if (strcmp(argv[0],LIST_MESSAGE_DIGEST_COMMANDS) == 0)
281                         list_type = FUNC_TYPE_MD;
282                 else /* strcmp(argv[0],LIST_CIPHER_COMMANDS) == 0 */
283                         list_type = FUNC_TYPE_CIPHER;
284                 bio_stdout = BIO_new_fp(stdout,BIO_NOCLOSE);
285                 
286                 for (fp=functions; fp->name != NULL; fp++)
287                         if (fp->type == list_type)
288                                 BIO_printf(bio_stdout, "%s\n", fp->name);
289                 BIO_free(bio_stdout);
290                 ret=0;
291                 goto end;
292                 }
293         else
294                 {
295                 BIO_printf(bio_err,"openssl:Error: '%s' is an invalid command.\n",
296                         argv[0]);
297                 BIO_printf(bio_err, "\nStandard commands");
298                 i=0;
299                 tp=0;
300                 for (fp=functions; fp->name != NULL; fp++)
301                         {
302                         nl=0;
303                         if (((i++) % 5) == 0)
304                                 {
305                                 BIO_printf(bio_err,"\n");
306                                 nl=1;
307                                 }
308                         if (fp->type != tp)
309                                 {
310                                 tp=fp->type;
311                                 if (!nl) BIO_printf(bio_err,"\n");
312                                 if (tp == FUNC_TYPE_MD)
313                                         {
314                                         i=1;
315                                         BIO_printf(bio_err,
316                                                 "\nMessage Digest commands (see the `dgst' command for more details)\n");
317                                         }
318                                 else if (tp == FUNC_TYPE_CIPHER)
319                                         {
320                                         i=1;
321                                         BIO_printf(bio_err,"\nCipher commands (see the `enc' command for more details)\n");
322                                         }
323                                 }
324                         BIO_printf(bio_err,"%-15s",fp->name);
325                         }
326                 BIO_printf(bio_err,"\n\n");
327                 ret=0;
328                 }
329 end:
330         return(ret);
331         }
332
333 static int SortFnByName(const void *_f1,const void *_f2)
334     {
335     const FUNCTION *f1=_f1;
336     const FUNCTION *f2=_f2;
337
338     if(f1->type != f2->type)
339         return f1->type-f2->type;
340     return strcmp(f1->name,f2->name);
341     }
342
343 static LHASH *prog_init(void)
344         {
345         LHASH *ret;
346         FUNCTION *f;
347         int i;
348
349         /* Purely so it looks nice when the user hits ? */
350         for(i=0,f=functions ; f->name != NULL ; ++f,++i)
351             ;
352         qsort(functions,i,sizeof *functions,SortFnByName);
353
354         if ((ret=lh_new(hash,cmp)) == NULL) return(NULL);
355
356         for (f=functions; f->name != NULL; f++)
357                 lh_insert(ret,(char *)f);
358         return(ret);
359         }
360
361 static int MS_CALLBACK cmp(FUNCTION *a, FUNCTION *b)
362         {
363         return(strncmp(a->name,b->name,8));
364         }
365
366 static unsigned long MS_CALLBACK hash(FUNCTION *a)
367         {
368         return(lh_strhash(a->name));
369         }
370
371 #undef SSLEAY