911772649a46a3600aa7797fff7b0aebc854bbf7
[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 /* needed for the _O_BINARY defs in the MS world */
126 #define USE_SOCKETS
127 #include "s_apps.h"
128 #include <openssl/err.h>
129 #ifdef OPENSSL_FIPS
130 # include <openssl/fips.h>
131 #endif
132 #define INCLUDE_FUNCTION_TABLE
133 #include "apps.h"
134
135
136 #ifdef OPENSSL_NO_CAMELLIA
137 # define FORMAT "%-15s"
138 # define COLUMNS 5
139 #else
140 # define FORMAT "%-18s"
141 # define COLUMNS 4
142 #endif
143
144 /* Special sentinel to exit the program. */
145 #define EXIT_THE_PROGRAM (-1)
146
147 /*
148  * The LHASH callbacks ("hash" & "cmp") have been replaced by functions with
149  * the base prototypes (we cast each variable inside the function to the
150  * required type of "FUNCTION*"). This removes the necessity for
151  * macro-generated wrapper functions.
152  */
153 DECLARE_LHASH_OF(FUNCTION);
154 static LHASH_OF(FUNCTION) *prog_init(void);
155 static int do_cmd(LHASH_OF(FUNCTION) *prog, int argc, char *argv[]);
156 static void list_pkey(void);
157 static void list_type(FUNC_TYPE ft);
158 char *default_config_file = NULL;
159
160 CONF *config = NULL;
161 BIO *bio_in = NULL;
162 BIO *bio_out = NULL;
163 BIO *bio_err = NULL;
164
165 static void apps_startup()
166 {
167 #ifdef SIGPIPE
168     signal(SIGPIPE, SIG_IGN);
169 #endif
170     CRYPTO_malloc_init();
171     ERR_load_crypto_strings();
172     ERR_load_SSL_strings();
173     OpenSSL_add_all_algorithms();
174     OpenSSL_add_ssl_algorithms();
175     OPENSSL_load_builtin_modules();
176     setup_ui_method();
177     /*SSL_library_init();*/
178 #ifndef OPENSSL_NO_ENGINE
179     ENGINE_load_builtin_engines();
180 #endif
181 }
182
183 static void apps_shutdown()
184 {
185 #ifndef OPENSSL_NO_ENGINE
186     ENGINE_cleanup();
187 #endif
188     destroy_ui_method();
189     CONF_modules_unload(1);
190 #ifndef OPENSSL_NO_COMP
191     COMP_zlib_cleanup();
192     SSL_COMP_free_compression_methods();
193 #endif
194     OBJ_cleanup();
195     EVP_cleanup();
196     CRYPTO_cleanup_all_ex_data();
197     ERR_remove_thread_state(NULL);
198     RAND_cleanup();
199     ERR_free_strings();
200 }
201
202 static char *make_config_name()
203 {
204     const char *t;
205     size_t len;
206     char *p;
207
208     if ((t = getenv("OPENSSL_CONF")) != NULL
209         || (t = getenv("SSLEAY_CONF")) != NULL)
210         return BUF_strdup(t);
211
212     t = X509_get_default_cert_area();
213     len = strlen(t) + 1 + strlen(OPENSSL_CONF) + 1;
214     p = app_malloc(len, "config filename buffer");
215     strcpy(p, t);
216 #ifndef OPENSSL_SYS_VMS
217     strcat(p, "/");
218 #endif
219     strcat(p, OPENSSL_CONF);
220
221     return p;
222 }
223
224 static void lock_dbg_cb(int mode, int type, const char *file, int line)
225 {
226     static int modes[CRYPTO_NUM_LOCKS];
227     const char *errstr = NULL;
228     int rw = mode & (CRYPTO_READ | CRYPTO_WRITE);
229
230     if (rw != CRYPTO_READ && rw != CRYPTO_WRITE) {
231         errstr = "invalid mode";
232         goto err;
233     }
234
235     if (type < 0 || type >= CRYPTO_NUM_LOCKS) {
236         errstr = "type out of bounds";
237         goto err;
238     }
239
240     if (mode & CRYPTO_LOCK) {
241         if (modes[type]) {
242             errstr = "already locked";
243             /* must not happen in a single-threaded program --> deadlock! */
244             goto err;
245         }
246         modes[type] = rw;
247     } else if (mode & CRYPTO_UNLOCK) {
248         if (!modes[type]) {
249             errstr = "not locked";
250             goto err;
251         }
252
253         if (modes[type] != rw) {
254             errstr = (rw == CRYPTO_READ) ?
255                 "CRYPTO_r_unlock on write lock" :
256                 "CRYPTO_w_unlock on read lock";
257         }
258
259         modes[type] = 0;
260     } else {
261         errstr = "invalid mode";
262         goto err;
263     }
264
265  err:
266     if (errstr) {
267         BIO_printf(bio_err,
268                    "openssl (lock_dbg_cb): %s (mode=%d, type=%d) at %s:%d\n",
269                    errstr, mode, type, file, line);
270     }
271 }
272
273 BIO *dup_bio_in(void)
274 {
275     return BIO_new_fp(stdin, BIO_NOCLOSE | BIO_FP_TEXT);
276 }
277
278 BIO *dup_bio_out(void)
279 {
280     BIO *b = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT);
281 #ifdef OPENSSL_SYS_VMS
282     b = BIO_push(BIO_new(BIO_f_linebuffer()), b);
283 #endif
284     return b;
285 }
286
287 void unbuffer(FILE *fp)
288 {
289     setbuf(fp, NULL);
290 }
291
292 static BIO *bio_open_default_(const char *filename, const char *mode, int quiet)
293 {
294     BIO *ret;
295
296     if (filename == NULL || strcmp(filename, "-") == 0) {
297         ret = *mode == 'r' ? dup_bio_in() : dup_bio_out();
298         if (quiet) {
299             ERR_clear_error();
300             return ret;
301         }
302         if (ret != NULL)
303             return ret;
304         BIO_printf(bio_err,
305                    "Can't open %s, %s\n",
306                    *mode == 'r' ? "stdin" : "stdout", strerror(errno));
307     } else {
308         ret = BIO_new_file(filename, mode);
309         if (quiet) {
310             ERR_clear_error();
311             return ret;
312         }
313         if (ret != NULL)
314             return ret;
315         BIO_printf(bio_err,
316                    "Can't open %s for %s, %s\n",
317                    filename,
318                    *mode == 'r' ? "reading" : "writing", strerror(errno));
319     }
320     ERR_print_errors(bio_err);
321     return NULL;
322 }
323 BIO *bio_open_default(const char *filename, const char *mode)
324 {
325     return bio_open_default_(filename, mode, 0);
326 }
327 BIO *bio_open_default_quiet(const char *filename, const char *mode)
328 {
329     return bio_open_default_(filename, mode, 1);
330 }
331
332 #if defined( OPENSSL_SYS_VMS)
333 extern char **copy_argv(int *argc, char **argv);
334 #endif
335
336 int main(int argc, char *argv[])
337 {
338     FUNCTION f, *fp;
339     LHASH_OF(FUNCTION) *prog = NULL;
340     char **copied_argv = NULL;
341     char *p, *pname;
342     char buf[1024];
343     const char *prompt;
344     ARGS arg;
345     int first, n, i, ret = 0;
346
347     arg.argv = NULL;
348     arg.size = 0;
349
350     /* Set up some of the environment. */
351     default_config_file = make_config_name();
352     bio_in = dup_bio_in();
353     bio_out = dup_bio_out();
354     bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
355
356 #if defined( OPENSSL_SYS_VMS)
357     copied_argv = argv = copy_argv(&argc, argv);
358 #endif
359
360     p = getenv("OPENSSL_DEBUG_MEMORY");
361     if (p == NULL)
362         /* if not set, use compiled-in default */
363         ;
364     else if (strcmp(p, "off") != 0) {
365         CRYPTO_malloc_debug_init();
366         CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
367     } else {
368         CRYPTO_set_mem_debug_functions(0, 0, 0, 0, 0);
369     }
370     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
371     CRYPTO_set_locking_callback(lock_dbg_cb);
372
373     if (getenv("OPENSSL_FIPS")) {
374 #ifdef OPENSSL_FIPS
375         if (!FIPS_mode_set(1)) {
376             ERR_load_crypto_strings();
377             ERR_print_errors(bio_err);
378             return 1;
379         }
380 #else
381         BIO_printf(bio_err, "FIPS mode not supported.\n");
382         return 1;
383 #endif
384     }
385
386     apps_startup();
387
388     /*
389      * If first argument is a colon, skip it.  Because in "interactive"
390      * mode our prompt is a colon and we can cut/paste whole lines
391      * by doing this hack.
392      */
393     if (argv[1] && strcmp(argv[1], ":") == 0) {
394         argv[1] = argv[0];
395         argc--;
396         argv++;
397     }
398     prog = prog_init();
399     pname = opt_progname(argv[0]);
400
401     /* first check the program name */
402     f.name = pname;
403     fp = lh_FUNCTION_retrieve(prog, &f);
404     if (fp != NULL) {
405         argv[0] = pname;
406         ret = fp->func(argc, argv);
407         goto end;
408     }
409
410     /* If there is stuff on the command line, run with that. */
411     if (argc != 1) {
412         argc--;
413         argv++;
414         ret = do_cmd(prog, argc, argv);
415         if (ret < 0)
416             ret = 0;
417         goto end;
418     }
419
420     /* ok, lets enter interactive mode */
421     for (;;) {
422         ret = 0;
423         /* Read a line, continue reading if line ends with \ */
424         for (p = buf, n = sizeof buf, i = 0, first = 1; n > 0; first = 0) {
425             prompt = first ? "openssl : " : "> ";
426             p[0] = '\0';
427 #ifndef READLINE
428             fputs(prompt, stdout);
429             fflush(stdout);
430             if (!fgets(p, n, stdin))
431                 goto end;
432             if (p[0] == '\0')
433                 goto end;
434             i = strlen(p);
435             if (i <= 1)
436                 break;
437             if (p[i - 2] != '\\')
438                 break;
439             i -= 2;
440             p += i;
441             n -= i;
442 #else
443             {
444                 extern char *readline(const char *);
445                 extern void add_history(const char *cp);
446                 char *text;
447
448                 char *text = readline(prompt);
449                 if (text == NULL)
450                     goto end;
451                 i = strlen(text);
452                 if (i == 0 || i > n)
453                     break;
454                 if (text[i - 1] != '\\') {
455                     p += strlen(strcpy(p, text));
456                     free(text);
457                     add_history(buf);
458                     break;
459                 }
460
461                 text[i - 1] = '\0';
462                 p += strlen(strcpy(p, text));
463                 free(text);
464                 n -= i;
465             }
466 #endif
467         }
468
469         if (!chopup_args(&arg, buf)) {
470             BIO_printf(bio_err, "Can't parse (no memory?)\n");
471             break;
472         }
473
474         ret = do_cmd(prog, arg.argc, arg.argv);
475         if (ret == EXIT_THE_PROGRAM) {
476             ret = 0;
477             goto end;
478         }
479         if (ret != 0)
480             BIO_printf(bio_err, "error in %s\n", arg.argv[0]);
481         (void)BIO_flush(bio_out);
482         (void)BIO_flush(bio_err);
483     }
484     ret = 1;
485  end:
486     OPENSSL_free(copied_argv);
487     OPENSSL_free(default_config_file);
488     NCONF_free(config);
489     config = NULL;
490     lh_FUNCTION_free(prog);
491     OPENSSL_free(arg.argv);
492
493     BIO_free(bio_in);
494     BIO_free_all(bio_out);
495     apps_shutdown();
496     CRYPTO_mem_leaks(bio_err);
497     BIO_free(bio_err);
498     return (ret);
499 }
500
501 OPTIONS exit_options[] = {
502     {NULL}
503 };
504
505 static void list_cipher_fn(const EVP_CIPHER *c,
506                            const char *from, const char *to, void *arg)
507 {
508     if (c)
509         BIO_printf(arg, "%s\n", EVP_CIPHER_name(c));
510     else {
511         if (!from)
512             from = "<undefined>";
513         if (!to)
514             to = "<undefined>";
515         BIO_printf(arg, "%s => %s\n", from, to);
516     }
517 }
518
519 static void list_md_fn(const EVP_MD *m,
520                        const char *from, const char *to, void *arg)
521 {
522     if (m)
523         BIO_printf(arg, "%s\n", EVP_MD_name(m));
524     else {
525         if (!from)
526             from = "<undefined>";
527         if (!to)
528             to = "<undefined>";
529         BIO_printf((BIO *)arg, "%s => %s\n", from, to);
530     }
531 }
532
533 /* Unified enum for help and list commands. */
534 typedef enum HELPLIST_CHOICE {
535     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
536     OPT_COMMANDS, OPT_DIGEST_COMMANDS,
537     OPT_DIGEST_ALGORITHMS, OPT_CIPHER_COMMANDS, OPT_CIPHER_ALGORITHMS,
538     OPT_PK_ALGORITHMS
539 } HELPLIST_CHOICE;
540
541 OPTIONS list_options[] = {
542     {"help", OPT_HELP, '-', "Display this summary"},
543     {"commands", OPT_COMMANDS, '-', "List of standard commands"},
544     {"digest-commands", OPT_DIGEST_COMMANDS, '-',
545      "List of message digest commands"},
546     {"digest-algorithms", OPT_DIGEST_ALGORITHMS, '-',
547      "List of message digest algorithms"},
548     {"cipher-commands", OPT_CIPHER_COMMANDS, '-', "List of cipher commands"},
549     {"cipher-algorithms", OPT_CIPHER_ALGORITHMS, '-',
550      "List of cipher algorithms"},
551     {"public-key-algorithms", OPT_PK_ALGORITHMS, '-',
552      "List of public key algorithms"},
553     {NULL}
554 };
555
556 int list_main(int argc, char **argv)
557 {
558     char *prog;
559     HELPLIST_CHOICE o;
560
561     prog = opt_init(argc, argv, list_options);
562     while ((o = opt_next()) != OPT_EOF) {
563         switch (o) {
564         case OPT_EOF:
565         case OPT_ERR:
566             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
567             return 1;
568         case OPT_HELP:
569             opt_help(list_options);
570             break;
571         case OPT_COMMANDS:
572             list_type(FT_general);
573             break;
574         case OPT_DIGEST_COMMANDS:
575             list_type(FT_md);
576             break;
577         case OPT_DIGEST_ALGORITHMS:
578             EVP_MD_do_all_sorted(list_md_fn, bio_out);
579             break;
580         case OPT_CIPHER_COMMANDS:
581             list_type(FT_cipher);
582             break;
583         case OPT_CIPHER_ALGORITHMS:
584             EVP_CIPHER_do_all_sorted(list_cipher_fn, bio_out);
585             break;
586         case OPT_PK_ALGORITHMS:
587             list_pkey();
588             break;
589         }
590     }
591
592     return 0;
593 }
594
595 OPTIONS help_options[] = {
596     {"help", OPT_HELP, '-', "Display this summary"},
597     {NULL}
598 };
599
600 int help_main(int argc, char **argv)
601 {
602     FUNCTION *fp;
603     int i, nl;
604     FUNC_TYPE tp;
605     char *prog;
606     HELPLIST_CHOICE o;
607
608     prog = opt_init(argc, argv, help_options);
609     while ((o = opt_next()) != OPT_EOF) {
610         switch (o) {
611         default:
612             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
613             return 1;
614         case OPT_HELP:
615             opt_help(help_options);
616             return 0;
617         }
618     }
619     argc = opt_num_rest();
620     argv = opt_rest();
621
622     if (argc != 0) {
623         BIO_printf(bio_err, "Usage: %s\n", prog);
624         return 1;
625     }
626
627     BIO_printf(bio_err, "\nStandard commands");
628     i = 0;
629     tp = FT_none;
630     for (fp = functions; fp->name != NULL; fp++) {
631         nl = 0;
632         if (((i++) % COLUMNS) == 0) {
633             BIO_printf(bio_err, "\n");
634             nl = 1;
635         }
636         if (fp->type != tp) {
637             tp = fp->type;
638             if (!nl)
639                 BIO_printf(bio_err, "\n");
640             if (tp == FT_md) {
641                 i = 1;
642                 BIO_printf(bio_err,
643                            "\nMessage Digest commands (see the `dgst' command for more details)\n");
644             } else if (tp == FT_cipher) {
645                 i = 1;
646                 BIO_printf(bio_err,
647                            "\nCipher commands (see the `enc' command for more details)\n");
648             }
649         }
650         BIO_printf(bio_err, FORMAT, fp->name);
651     }
652     BIO_printf(bio_err, "\n\n");
653     return 0;
654 }
655
656 int exit_main(int argc, char **argv)
657 {
658     return EXIT_THE_PROGRAM;
659 }
660
661 static void list_type(FUNC_TYPE ft)
662 {
663     FUNCTION *fp;
664     int i = 0;
665
666     for (fp = functions; fp->name != NULL; fp++)
667         if (fp->type == ft) {
668             if ((i++ % COLUMNS) == 0)
669                 BIO_printf(bio_out, "\n");
670             BIO_printf(bio_out, FORMAT, fp->name);
671         }
672     BIO_printf(bio_out, "\n");
673 }
674
675 static int do_cmd(LHASH_OF(FUNCTION) *prog, int argc, char *argv[])
676 {
677     FUNCTION f, *fp;
678
679     if (argc <= 0 || argv[0] == NULL)
680         return (0);
681     f.name = argv[0];
682     fp = lh_FUNCTION_retrieve(prog, &f);
683     if (fp == NULL) {
684         if (EVP_get_digestbyname(argv[0])) {
685             f.type = FT_md;
686             f.func = dgst_main;
687             fp = &f;
688         } else if (EVP_get_cipherbyname(argv[0])) {
689             f.type = FT_cipher;
690             f.func = enc_main;
691             fp = &f;
692         }
693     }
694     if (fp != NULL) {
695         return (fp->func(argc, argv));
696     }
697     if ((strncmp(argv[0], "no-", 3)) == 0) {
698         /*
699          * User is asking if foo is unsupported, by trying to "run" the
700          * no-foo command.  Strange.
701          */
702         f.name = argv[0] + 3;
703         if (lh_FUNCTION_retrieve(prog, &f) == NULL) {
704             BIO_printf(bio_out, "%s\n", argv[0]);
705             return (0);
706         }
707         BIO_printf(bio_out, "%s\n", argv[0] + 3);
708         return 1;
709     }
710     if (strcmp(argv[0], "quit") == 0 || strcmp(argv[0], "q") == 0 ||
711         strcmp(argv[0], "exit") == 0 || strcmp(argv[0], "bye") == 0)
712         /* Special value to mean "exit the program. */
713         return EXIT_THE_PROGRAM;
714
715     BIO_printf(bio_err, "Invalid command '%s'; type \"help\" for a list.\n",
716                argv[0]);
717     return (1);
718 }
719
720 static void list_pkey(void)
721 {
722     int i;
723
724     for (i = 0; i < EVP_PKEY_asn1_get_count(); i++) {
725         const EVP_PKEY_ASN1_METHOD *ameth;
726         int pkey_id, pkey_base_id, pkey_flags;
727         const char *pinfo, *pem_str;
728         ameth = EVP_PKEY_asn1_get0(i);
729         EVP_PKEY_asn1_get0_info(&pkey_id, &pkey_base_id, &pkey_flags,
730                                 &pinfo, &pem_str, ameth);
731         if (pkey_flags & ASN1_PKEY_ALIAS) {
732             BIO_printf(bio_out, "Name: %s\n", OBJ_nid2ln(pkey_id));
733             BIO_printf(bio_out, "\tAlias for: %s\n",
734                        OBJ_nid2ln(pkey_base_id));
735         } else {
736             BIO_printf(bio_out, "Name: %s\n", pinfo);
737             BIO_printf(bio_out, "\tType: %s Algorithm\n",
738                        pkey_flags & ASN1_PKEY_DYNAMIC ?
739                        "External" : "Builtin");
740             BIO_printf(bio_out, "\tOID: %s\n", OBJ_nid2ln(pkey_id));
741             if (pem_str == NULL)
742                 pem_str = "(none)";
743             BIO_printf(bio_out, "\tPEM string: %s\n", pem_str);
744         }
745
746     }
747 }
748
749 static int function_cmp(const FUNCTION * a, const FUNCTION * b)
750 {
751     return strncmp(a->name, b->name, 8);
752 }
753
754 static IMPLEMENT_LHASH_COMP_FN(function, FUNCTION)
755
756 static unsigned long function_hash(const FUNCTION * a)
757 {
758     return lh_strhash(a->name);
759 }
760
761 static IMPLEMENT_LHASH_HASH_FN(function, FUNCTION)
762
763 static int SortFnByName(const void *_f1, const void *_f2)
764 {
765     const FUNCTION *f1 = _f1;
766     const FUNCTION *f2 = _f2;
767
768     if (f1->type != f2->type)
769         return f1->type - f2->type;
770     return strcmp(f1->name, f2->name);
771 }
772
773 static LHASH_OF(FUNCTION) *prog_init(void)
774 {
775     LHASH_OF(FUNCTION) *ret;
776     FUNCTION *f;
777     size_t i;
778
779     /* Sort alphabetically within category. For nicer help displays. */
780     for (i = 0, f = functions; f->name != NULL; ++f, ++i) ;
781     qsort(functions, i, sizeof(*functions), SortFnByName);
782
783     if ((ret = lh_FUNCTION_new()) == NULL)
784         return (NULL);
785
786     for (f = functions; f->name != NULL; f++)
787         (void)lh_FUNCTION_insert(ret, f);
788     return (ret);
789 }