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