Add -Wconditional-uninitialized to clang strict warnings.
[openssl.git] / apps / openssl.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57 /* ====================================================================
58  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
59  *
60  * Redistribution and use in source and binary forms, with or without
61  * modification, are permitted provided that the following conditions
62  * are met:
63  *
64  * 1. Redistributions of source code must retain the above copyright
65  *    notice, this list of conditions and the following disclaimer.
66  *
67  * 2. Redistributions in binary form must reproduce the above copyright
68  *    notice, this list of conditions and the following disclaimer in
69  *    the documentation and/or other materials provided with the
70  *    distribution.
71  *
72  * 3. All advertising materials mentioning features or use of this
73  *    software must display the following acknowledgment:
74  *    "This product includes software developed by the OpenSSL Project
75  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
76  *
77  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
78  *    endorse or promote products derived from this software without
79  *    prior written permission. For written permission, please contact
80  *    openssl-core@openssl.org.
81  *
82  * 5. Products derived from this software may not be called "OpenSSL"
83  *    nor may "OpenSSL" appear in their names without prior written
84  *    permission of the OpenSSL Project.
85  *
86  * 6. Redistributions of any form whatsoever must retain the following
87  *    acknowledgment:
88  *    "This product includes software developed by the OpenSSL Project
89  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
90  *
91  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
92  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
93  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
95  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
96  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
98  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
100  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
101  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102  * OF THE POSSIBILITY OF SUCH DAMAGE.
103  * ====================================================================
104  *
105  * This product includes cryptographic software written by Eric Young
106  * (eay@cryptsoft.com).  This product includes software written by Tim
107  * Hudson (tjh@cryptsoft.com).
108  *
109  */
110
111 #include <stdio.h>
112 #include <string.h>
113 #include <stdlib.h>
114 #include <openssl/bio.h>
115 #include <openssl/crypto.h>
116 #include <openssl/rand.h>
117 #include <openssl/lhash.h>
118 #include <openssl/conf.h>
119 #include <openssl/x509.h>
120 #include <openssl/pem.h>
121 #include <openssl/ssl.h>
122 #ifndef OPENSSL_NO_ENGINE
123 # include <openssl/engine.h>
124 #endif
125 #include <openssl/err.h>
126 #ifdef OPENSSL_FIPS
127 # include <openssl/fips.h>
128 #endif
129 #define USE_SOCKETS /* needed for the _O_BINARY defs in the MS world */
130 #include "s_apps.h"
131 /* Needed to get the other O_xxx flags. */
132 #ifdef OPENSSL_SYS_VMS
133 # include <unixio.h>
134 #endif
135 #ifndef NO_SYS_TYPES_H
136 # include <sys/types.h>
137 #endif
138 #ifndef OPENSSL_NO_POSIX_IO
139 # include <sys/stat.h>
140 # include <fcntl.h>
141 #endif
142 #define INCLUDE_FUNCTION_TABLE
143 #include "apps.h"
144
145
146 #ifdef OPENSSL_NO_CAMELLIA
147 # define FORMAT "%-15s"
148 # define COLUMNS 5
149 #else
150 # define FORMAT "%-18s"
151 # define COLUMNS 4
152 #endif
153
154 /* Special sentinel to exit the program. */
155 #define EXIT_THE_PROGRAM (-1)
156
157 /*
158  * The LHASH callbacks ("hash" & "cmp") have been replaced by functions with
159  * the base prototypes (we cast each variable inside the function to the
160  * required type of "FUNCTION*"). This removes the necessity for
161  * macro-generated wrapper functions.
162  */
163 DECLARE_LHASH_OF(FUNCTION);
164 static LHASH_OF(FUNCTION) *prog_init(void);
165 static int do_cmd(LHASH_OF(FUNCTION) *prog, int argc, char *argv[]);
166 static void list_pkey(void);
167 static void list_type(FUNC_TYPE ft);
168 char *default_config_file = NULL;
169
170 CONF *config = NULL;
171 BIO *bio_in = NULL;
172 BIO *bio_out = NULL;
173 BIO *bio_err = NULL;
174
175 static void apps_startup()
176 {
177 #ifdef SIGPIPE
178     signal(SIGPIPE, SIG_IGN);
179 #endif
180     CRYPTO_malloc_init();
181     ERR_load_crypto_strings();
182     ERR_load_SSL_strings();
183     OpenSSL_add_all_algorithms();
184     OpenSSL_add_ssl_algorithms();
185     OPENSSL_load_builtin_modules();
186     setup_ui_method();
187     /*SSL_library_init();*/
188 #ifndef OPENSSL_NO_ENGINE
189     ENGINE_load_builtin_engines();
190 #endif
191 }
192
193 static void apps_shutdown()
194 {
195 #ifndef OPENSSL_NO_ENGINE
196     ENGINE_cleanup();
197 #endif
198     destroy_ui_method();
199     CONF_modules_unload(1);
200 #ifndef OPENSSL_NO_COMP
201     COMP_zlib_cleanup();
202     SSL_COMP_free_compression_methods();
203 #endif
204     OBJ_cleanup();
205     EVP_cleanup();
206     CRYPTO_cleanup_all_ex_data();
207     ERR_remove_thread_state(NULL);
208     RAND_cleanup();
209     ERR_free_strings();
210 }
211
212 static char *make_config_name()
213 {
214     const char *t;
215     size_t len;
216     char *p;
217
218     if ((t = getenv("OPENSSL_CONF")) != NULL
219         || (t = getenv("SSLEAY_CONF")) != NULL)
220         return BUF_strdup(t);
221
222     t = X509_get_default_cert_area();
223     len = strlen(t) + 1 + strlen(OPENSSL_CONF) + 1;
224     p = app_malloc(len, "config filename buffer");
225     strcpy(p, t);
226 #ifndef OPENSSL_SYS_VMS
227     strcat(p, "/");
228 #endif
229     strcat(p, OPENSSL_CONF);
230
231     return p;
232 }
233
234 static void lock_dbg_cb(int mode, int type, const char *file, int line)
235 {
236     static int modes[CRYPTO_NUM_LOCKS];
237     const char *errstr = NULL;
238     int rw = mode & (CRYPTO_READ | CRYPTO_WRITE);
239
240     if (rw != CRYPTO_READ && rw != CRYPTO_WRITE) {
241         errstr = "invalid mode";
242         goto err;
243     }
244
245     if (type < 0 || type >= CRYPTO_NUM_LOCKS) {
246         errstr = "type out of bounds";
247         goto err;
248     }
249
250     if (mode & CRYPTO_LOCK) {
251         if (modes[type]) {
252             errstr = "already locked";
253             /* must not happen in a single-threaded program --> deadlock! */
254             goto err;
255         }
256         modes[type] = rw;
257     } else if (mode & CRYPTO_UNLOCK) {
258         if (!modes[type]) {
259             errstr = "not locked";
260             goto err;
261         }
262
263         if (modes[type] != rw) {
264             errstr = (rw == CRYPTO_READ) ?
265                 "CRYPTO_r_unlock on write lock" :
266                 "CRYPTO_w_unlock on read lock";
267         }
268
269         modes[type] = 0;
270     } else {
271         errstr = "invalid mode";
272         goto err;
273     }
274
275  err:
276     if (errstr) {
277         BIO_printf(bio_err,
278                    "openssl (lock_dbg_cb): %s (mode=%d, type=%d) at %s:%d\n",
279                    errstr, mode, type, file, line);
280     }
281 }
282
283 BIO *dup_bio_in(void)
284 {
285     return BIO_new_fp(stdin, BIO_NOCLOSE | BIO_FP_TEXT);
286 }
287
288 BIO *dup_bio_out(void)
289 {
290     BIO *b = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT);
291 #ifdef OPENSSL_SYS_VMS
292     b = BIO_push(BIO_new(BIO_f_linebuffer()), b);
293 #endif
294     return b;
295 }
296
297 void unbuffer(FILE *fp)
298 {
299     setbuf(fp, NULL);
300 }
301
302 /*
303  * Open a file for writing, owner-read-only.
304  */
305 BIO *bio_open_owner(const char *filename, const char *modestr, int private)
306 {
307     FILE *fp = NULL;
308     BIO *b = NULL;
309     int fd = -1, bflags, mode, binmode;
310
311     if (!private || filename == NULL || strcmp(filename, "-") == 0)
312         return bio_open_default(filename, modestr);
313
314     mode = O_WRONLY;
315 #ifdef O_CREAT
316     mode |= O_CREAT;
317 #endif
318 #ifdef O_TRUNC
319     mode |= O_TRUNC;
320 #endif
321     binmode = strchr(modestr, 'b') != NULL;
322     if (binmode) {
323 #ifdef O_BINARY
324         mode |= O_BINARY;
325 #elif defined(_O_BINARY)
326         mode |= _O_BINARY;
327 #endif
328     }
329
330     fd = open(filename, mode, 0600);
331     if (fd < 0)
332         goto err;
333     fp = fdopen(fd, modestr);
334     if (fp == NULL)
335         goto err;
336     bflags = BIO_CLOSE;
337     if (!binmode)
338         bflags |= BIO_FP_TEXT;
339     b = BIO_new_fp(fp, bflags);
340     if (b)
341         return b;
342
343  err:
344     BIO_printf(bio_err, "%s: Can't open \"%s\" for writing, %s\n",
345                opt_getprog(), filename, strerror(errno));
346     ERR_print_errors(bio_err);
347     /* If we have fp, then fdopen took over fd, so don't close both. */
348     if (fp)
349         fclose(fp);
350     else if (fd >= 0)
351         close(fd);
352     return NULL;
353 }
354
355 static BIO *bio_open_default_(const char *filename, const char *mode, int quiet)
356 {
357     BIO *ret;
358
359     if (filename == NULL || strcmp(filename, "-") == 0) {
360         ret = *mode == 'r' ? dup_bio_in() : dup_bio_out();
361         if (quiet) {
362             ERR_clear_error();
363             return ret;
364         }
365         if (ret != NULL)
366             return ret;
367         BIO_printf(bio_err,
368                    "Can't open %s, %s\n",
369                    *mode == 'r' ? "stdin" : "stdout", strerror(errno));
370     } else {
371         ret = BIO_new_file(filename, mode);
372         if (quiet) {
373             ERR_clear_error();
374             return ret;
375         }
376         if (ret != NULL)
377             return ret;
378         BIO_printf(bio_err,
379                    "Can't open %s for %s, %s\n",
380                    filename,
381                    *mode == 'r' ? "reading" : "writing", strerror(errno));
382     }
383     ERR_print_errors(bio_err);
384     return NULL;
385 }
386
387 BIO *bio_open_default(const char *filename, const char *mode)
388 {
389     return bio_open_default_(filename, mode, 0);
390 }
391
392 BIO *bio_open_default_quiet(const char *filename, const char *mode)
393 {
394     return bio_open_default_(filename, mode, 1);
395 }
396
397 #if defined( OPENSSL_SYS_VMS)
398 extern char **copy_argv(int *argc, char **argv);
399 #endif
400
401 int main(int argc, char *argv[])
402 {
403     FUNCTION f, *fp;
404     LHASH_OF(FUNCTION) *prog = NULL;
405     char **copied_argv = NULL;
406     char *p, *pname;
407     char buf[1024];
408     const char *prompt;
409     ARGS arg;
410     int first, n, i, ret = 0;
411
412     arg.argv = NULL;
413     arg.size = 0;
414
415     /* Set up some of the environment. */
416     default_config_file = make_config_name();
417     bio_in = dup_bio_in();
418     bio_out = dup_bio_out();
419     bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
420
421 #if defined( OPENSSL_SYS_VMS)
422     copied_argv = argv = copy_argv(&argc, argv);
423 #endif
424
425     p = getenv("OPENSSL_DEBUG_MEMORY");
426     if (p == NULL)
427         /* if not set, use compiled-in default */
428         ;
429     else if (strcmp(p, "off") != 0) {
430         CRYPTO_malloc_debug_init();
431         CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
432     } else {
433         CRYPTO_set_mem_debug_functions(0, 0, 0, 0, 0);
434     }
435     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
436     CRYPTO_set_locking_callback(lock_dbg_cb);
437
438     if (getenv("OPENSSL_FIPS")) {
439 #ifdef OPENSSL_FIPS
440         if (!FIPS_mode_set(1)) {
441             ERR_load_crypto_strings();
442             ERR_print_errors(bio_err);
443             return 1;
444         }
445 #else
446         BIO_printf(bio_err, "FIPS mode not supported.\n");
447         return 1;
448 #endif
449     }
450
451     apps_startup();
452
453     /*
454      * If first argument is a colon, skip it.  Because in "interactive"
455      * mode our prompt is a colon and we can cut/paste whole lines
456      * by doing this hack.
457      */
458     if (argv[1] && strcmp(argv[1], ":") == 0) {
459         argv[1] = argv[0];
460         argc--;
461         argv++;
462     }
463     prog = prog_init();
464     pname = opt_progname(argv[0]);
465
466     /* first check the program name */
467     f.name = pname;
468     fp = lh_FUNCTION_retrieve(prog, &f);
469     if (fp != NULL) {
470         argv[0] = pname;
471         ret = fp->func(argc, argv);
472         goto end;
473     }
474
475     /* If there is stuff on the command line, run with that. */
476     if (argc != 1) {
477         argc--;
478         argv++;
479         ret = do_cmd(prog, argc, argv);
480         if (ret < 0)
481             ret = 0;
482         goto end;
483     }
484
485     /* ok, lets enter interactive mode */
486     for (;;) {
487         ret = 0;
488         /* Read a line, continue reading if line ends with \ */
489         for (p = buf, n = sizeof buf, i = 0, first = 1; n > 0; first = 0) {
490             prompt = first ? "openssl : " : "> ";
491             p[0] = '\0';
492 #ifndef READLINE
493             fputs(prompt, stdout);
494             fflush(stdout);
495             if (!fgets(p, n, stdin))
496                 goto end;
497             if (p[0] == '\0')
498                 goto end;
499             i = strlen(p);
500             if (i <= 1)
501                 break;
502             if (p[i - 2] != '\\')
503                 break;
504             i -= 2;
505             p += i;
506             n -= i;
507 #else
508             {
509                 extern char *readline(const char *);
510                 extern void add_history(const char *cp);
511                 char *text;
512
513                 char *text = readline(prompt);
514                 if (text == NULL)
515                     goto end;
516                 i = strlen(text);
517                 if (i == 0 || i > n)
518                     break;
519                 if (text[i - 1] != '\\') {
520                     p += strlen(strcpy(p, text));
521                     free(text);
522                     add_history(buf);
523                     break;
524                 }
525
526                 text[i - 1] = '\0';
527                 p += strlen(strcpy(p, text));
528                 free(text);
529                 n -= i;
530             }
531 #endif
532         }
533
534         if (!chopup_args(&arg, buf)) {
535             BIO_printf(bio_err, "Can't parse (no memory?)\n");
536             break;
537         }
538
539         ret = do_cmd(prog, arg.argc, arg.argv);
540         if (ret == EXIT_THE_PROGRAM) {
541             ret = 0;
542             goto end;
543         }
544         if (ret != 0)
545             BIO_printf(bio_err, "error in %s\n", arg.argv[0]);
546         (void)BIO_flush(bio_out);
547         (void)BIO_flush(bio_err);
548     }
549     ret = 1;
550  end:
551     OPENSSL_free(copied_argv);
552     OPENSSL_free(default_config_file);
553     NCONF_free(config);
554     config = NULL;
555     lh_FUNCTION_free(prog);
556     OPENSSL_free(arg.argv);
557
558     BIO_free(bio_in);
559     BIO_free_all(bio_out);
560     apps_shutdown();
561     CRYPTO_mem_leaks(bio_err);
562     BIO_free(bio_err);
563     return (ret);
564 }
565
566 OPTIONS exit_options[] = {
567     {NULL}
568 };
569
570 static void list_cipher_fn(const EVP_CIPHER *c,
571                            const char *from, const char *to, void *arg)
572 {
573     if (c)
574         BIO_printf(arg, "%s\n", EVP_CIPHER_name(c));
575     else {
576         if (!from)
577             from = "<undefined>";
578         if (!to)
579             to = "<undefined>";
580         BIO_printf(arg, "%s => %s\n", from, to);
581     }
582 }
583
584 static void list_md_fn(const EVP_MD *m,
585                        const char *from, const char *to, void *arg)
586 {
587     if (m)
588         BIO_printf(arg, "%s\n", EVP_MD_name(m));
589     else {
590         if (!from)
591             from = "<undefined>";
592         if (!to)
593             to = "<undefined>";
594         BIO_printf((BIO *)arg, "%s => %s\n", from, to);
595     }
596 }
597
598 /* Unified enum for help and list commands. */
599 typedef enum HELPLIST_CHOICE {
600     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
601     OPT_COMMANDS, OPT_DIGEST_COMMANDS,
602     OPT_DIGEST_ALGORITHMS, OPT_CIPHER_COMMANDS, OPT_CIPHER_ALGORITHMS,
603     OPT_PK_ALGORITHMS
604 } HELPLIST_CHOICE;
605
606 OPTIONS list_options[] = {
607     {"help", OPT_HELP, '-', "Display this summary"},
608     {"commands", OPT_COMMANDS, '-', "List of standard commands"},
609     {"digest-commands", OPT_DIGEST_COMMANDS, '-',
610      "List of message digest commands"},
611     {"digest-algorithms", OPT_DIGEST_ALGORITHMS, '-',
612      "List of message digest algorithms"},
613     {"cipher-commands", OPT_CIPHER_COMMANDS, '-', "List of cipher commands"},
614     {"cipher-algorithms", OPT_CIPHER_ALGORITHMS, '-',
615      "List of cipher algorithms"},
616     {"public-key-algorithms", OPT_PK_ALGORITHMS, '-',
617      "List of public key algorithms"},
618     {NULL}
619 };
620
621 int list_main(int argc, char **argv)
622 {
623     char *prog;
624     HELPLIST_CHOICE o;
625
626     prog = opt_init(argc, argv, list_options);
627     while ((o = opt_next()) != OPT_EOF) {
628         switch (o) {
629         case OPT_EOF:
630         case OPT_ERR:
631             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
632             return 1;
633         case OPT_HELP:
634             opt_help(list_options);
635             break;
636         case OPT_COMMANDS:
637             list_type(FT_general);
638             break;
639         case OPT_DIGEST_COMMANDS:
640             list_type(FT_md);
641             break;
642         case OPT_DIGEST_ALGORITHMS:
643             EVP_MD_do_all_sorted(list_md_fn, bio_out);
644             break;
645         case OPT_CIPHER_COMMANDS:
646             list_type(FT_cipher);
647             break;
648         case OPT_CIPHER_ALGORITHMS:
649             EVP_CIPHER_do_all_sorted(list_cipher_fn, bio_out);
650             break;
651         case OPT_PK_ALGORITHMS:
652             list_pkey();
653             break;
654         }
655     }
656
657     return 0;
658 }
659
660 OPTIONS help_options[] = {
661     {"help", OPT_HELP, '-', "Display this summary"},
662     {NULL}
663 };
664
665 int help_main(int argc, char **argv)
666 {
667     FUNCTION *fp;
668     int i, nl;
669     FUNC_TYPE tp;
670     char *prog;
671     HELPLIST_CHOICE o;
672
673     prog = opt_init(argc, argv, help_options);
674     while ((o = opt_next()) != OPT_EOF) {
675         switch (o) {
676         default:
677             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
678             return 1;
679         case OPT_HELP:
680             opt_help(help_options);
681             return 0;
682         }
683     }
684     argc = opt_num_rest();
685     argv = opt_rest();
686
687     if (argc != 0) {
688         BIO_printf(bio_err, "Usage: %s\n", prog);
689         return 1;
690     }
691
692     BIO_printf(bio_err, "\nStandard commands");
693     i = 0;
694     tp = FT_none;
695     for (fp = functions; fp->name != NULL; fp++) {
696         nl = 0;
697         if (((i++) % COLUMNS) == 0) {
698             BIO_printf(bio_err, "\n");
699             nl = 1;
700         }
701         if (fp->type != tp) {
702             tp = fp->type;
703             if (!nl)
704                 BIO_printf(bio_err, "\n");
705             if (tp == FT_md) {
706                 i = 1;
707                 BIO_printf(bio_err,
708                            "\nMessage Digest commands (see the `dgst' command for more details)\n");
709             } else if (tp == FT_cipher) {
710                 i = 1;
711                 BIO_printf(bio_err,
712                            "\nCipher commands (see the `enc' command for more details)\n");
713             }
714         }
715         BIO_printf(bio_err, FORMAT, fp->name);
716     }
717     BIO_printf(bio_err, "\n\n");
718     return 0;
719 }
720
721 int exit_main(int argc, char **argv)
722 {
723     return EXIT_THE_PROGRAM;
724 }
725
726 static void list_type(FUNC_TYPE ft)
727 {
728     FUNCTION *fp;
729     int i = 0;
730
731     for (fp = functions; fp->name != NULL; fp++)
732         if (fp->type == ft) {
733             if ((i++ % COLUMNS) == 0)
734                 BIO_printf(bio_out, "\n");
735             BIO_printf(bio_out, FORMAT, fp->name);
736         }
737     BIO_printf(bio_out, "\n");
738 }
739
740 static int do_cmd(LHASH_OF(FUNCTION) *prog, int argc, char *argv[])
741 {
742     FUNCTION f, *fp;
743
744     if (argc <= 0 || argv[0] == NULL)
745         return (0);
746     f.name = argv[0];
747     fp = lh_FUNCTION_retrieve(prog, &f);
748     if (fp == NULL) {
749         if (EVP_get_digestbyname(argv[0])) {
750             f.type = FT_md;
751             f.func = dgst_main;
752             fp = &f;
753         } else if (EVP_get_cipherbyname(argv[0])) {
754             f.type = FT_cipher;
755             f.func = enc_main;
756             fp = &f;
757         }
758     }
759     if (fp != NULL) {
760         return (fp->func(argc, argv));
761     }
762     if ((strncmp(argv[0], "no-", 3)) == 0) {
763         /*
764          * User is asking if foo is unsupported, by trying to "run" the
765          * no-foo command.  Strange.
766          */
767         f.name = argv[0] + 3;
768         if (lh_FUNCTION_retrieve(prog, &f) == NULL) {
769             BIO_printf(bio_out, "%s\n", argv[0]);
770             return (0);
771         }
772         BIO_printf(bio_out, "%s\n", argv[0] + 3);
773         return 1;
774     }
775     if (strcmp(argv[0], "quit") == 0 || strcmp(argv[0], "q") == 0 ||
776         strcmp(argv[0], "exit") == 0 || strcmp(argv[0], "bye") == 0)
777         /* Special value to mean "exit the program. */
778         return EXIT_THE_PROGRAM;
779
780     BIO_printf(bio_err, "Invalid command '%s'; type \"help\" for a list.\n",
781                argv[0]);
782     return (1);
783 }
784
785 static void list_pkey(void)
786 {
787     int i;
788
789     for (i = 0; i < EVP_PKEY_asn1_get_count(); i++) {
790         const EVP_PKEY_ASN1_METHOD *ameth;
791         int pkey_id, pkey_base_id, pkey_flags;
792         const char *pinfo, *pem_str;
793         ameth = EVP_PKEY_asn1_get0(i);
794         EVP_PKEY_asn1_get0_info(&pkey_id, &pkey_base_id, &pkey_flags,
795                                 &pinfo, &pem_str, ameth);
796         if (pkey_flags & ASN1_PKEY_ALIAS) {
797             BIO_printf(bio_out, "Name: %s\n", OBJ_nid2ln(pkey_id));
798             BIO_printf(bio_out, "\tAlias for: %s\n",
799                        OBJ_nid2ln(pkey_base_id));
800         } else {
801             BIO_printf(bio_out, "Name: %s\n", pinfo);
802             BIO_printf(bio_out, "\tType: %s Algorithm\n",
803                        pkey_flags & ASN1_PKEY_DYNAMIC ?
804                        "External" : "Builtin");
805             BIO_printf(bio_out, "\tOID: %s\n", OBJ_nid2ln(pkey_id));
806             if (pem_str == NULL)
807                 pem_str = "(none)";
808             BIO_printf(bio_out, "\tPEM string: %s\n", pem_str);
809         }
810
811     }
812 }
813
814 static int function_cmp(const FUNCTION * a, const FUNCTION * b)
815 {
816     return strncmp(a->name, b->name, 8);
817 }
818
819 static IMPLEMENT_LHASH_COMP_FN(function, FUNCTION)
820
821 static unsigned long function_hash(const FUNCTION * a)
822 {
823     return lh_strhash(a->name);
824 }
825
826 static IMPLEMENT_LHASH_HASH_FN(function, FUNCTION)
827
828 static int SortFnByName(const void *_f1, const void *_f2)
829 {
830     const FUNCTION *f1 = _f1;
831     const FUNCTION *f2 = _f2;
832
833     if (f1->type != f2->type)
834         return f1->type - f2->type;
835     return strcmp(f1->name, f2->name);
836 }
837
838 static LHASH_OF(FUNCTION) *prog_init(void)
839 {
840     LHASH_OF(FUNCTION) *ret;
841     FUNCTION *f;
842     size_t i;
843
844     /* Sort alphabetically within category. For nicer help displays. */
845     for (i = 0, f = functions; f->name != NULL; ++f, ++i) ;
846     qsort(functions, i, sizeof(*functions), SortFnByName);
847
848     if ((ret = lh_FUNCTION_new()) == NULL)
849         return (NULL);
850
851     for (f = functions; f->name != NULL; f++)
852         (void)lh_FUNCTION_insert(ret, f);
853     return (ret);
854 }