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