Add BN_check_prime()
[openssl.git] / apps / list.c
1 /*
2  * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <string.h>
11 #include <openssl/evp.h>
12 #include <openssl/err.h>
13 #include <openssl/provider.h>
14 #include <openssl/safestack.h>
15 #include <openssl/kdf.h>
16 #include "apps.h"
17 #include "app_params.h"
18 #include "progs.h"
19 #include "opt.h"
20
21 static int verbose = 0;
22
23 static void legacy_cipher_fn(const EVP_CIPHER *c,
24                              const char *from, const char *to, void *arg)
25 {
26     if (c != NULL) {
27         BIO_printf(arg, "  %s\n", EVP_CIPHER_name(c));
28     } else {
29         if (from == NULL)
30             from = "<undefined>";
31         if (to == NULL)
32             to = "<undefined>";
33         BIO_printf(arg, "  %s => %s\n", from, to);
34     }
35 }
36
37 DEFINE_STACK_OF(EVP_CIPHER)
38 static int cipher_cmp(const EVP_CIPHER * const *a,
39                       const EVP_CIPHER * const *b)
40 {
41     int ret = strcasecmp(EVP_CIPHER_name(*a), EVP_CIPHER_name(*b));
42
43     if (ret == 0)
44         ret = strcmp(OSSL_PROVIDER_name(EVP_CIPHER_provider(*a)),
45                      OSSL_PROVIDER_name(EVP_CIPHER_provider(*b)));
46
47     return ret;
48 }
49
50 static void collect_ciphers(EVP_CIPHER *cipher, void *stack)
51 {
52     STACK_OF(EVP_CIPHER) *cipher_stack = stack;
53
54     if (sk_EVP_CIPHER_push(cipher_stack, cipher) > 0)
55         EVP_CIPHER_up_ref(cipher);
56 }
57
58 static void list_ciphers(void)
59 {
60     STACK_OF(EVP_CIPHER) *ciphers = sk_EVP_CIPHER_new(cipher_cmp);
61     int i;
62
63     BIO_printf(bio_out, "Legacy:\n");
64     EVP_CIPHER_do_all_sorted(legacy_cipher_fn, bio_out);
65
66     BIO_printf(bio_out, "Provided:\n");
67     EVP_CIPHER_do_all_ex(NULL, collect_ciphers, ciphers);
68     sk_EVP_CIPHER_sort(ciphers);
69     for (i = 0; i < sk_EVP_CIPHER_num(ciphers); i++) {
70         const EVP_CIPHER *c = sk_EVP_CIPHER_value(ciphers, i);
71
72         BIO_printf(bio_out, "  %s", EVP_CIPHER_name(c));
73         BIO_printf(bio_out, " @ %s\n",
74                    OSSL_PROVIDER_name(EVP_CIPHER_provider(c)));
75         if (verbose) {
76             print_param_types("retrievable algorithm parameters",
77                               EVP_CIPHER_gettable_params(c), 4);
78             print_param_types("retrievable operation parameters",
79                               EVP_CIPHER_gettable_ctx_params(c), 4);
80             print_param_types("settable operation parameters",
81                               EVP_CIPHER_settable_ctx_params(c), 4);
82         }
83     }
84     sk_EVP_CIPHER_pop_free(ciphers, EVP_CIPHER_free);
85 }
86
87 static void list_md_fn(const EVP_MD *m,
88                        const char *from, const char *to, void *arg)
89 {
90     if (m != NULL) {
91         BIO_printf(arg, "  %s\n", EVP_MD_name(m));
92     } else {
93         if (from == NULL)
94             from = "<undefined>";
95         if (to == NULL)
96             to = "<undefined>";
97         BIO_printf((BIO *)arg, "  %s => %s\n", from, to);
98     }
99 }
100
101 DEFINE_STACK_OF(EVP_MD)
102 static int md_cmp(const EVP_MD * const *a, const EVP_MD * const *b)
103 {
104     int ret = strcasecmp(EVP_MD_name(*a), EVP_MD_name(*b));
105
106     if (ret == 0)
107         ret = strcmp(OSSL_PROVIDER_name(EVP_MD_provider(*a)),
108                      OSSL_PROVIDER_name(EVP_MD_provider(*b)));
109
110     return ret;
111 }
112
113 static void collect_digests(EVP_MD *md, void *stack)
114 {
115     STACK_OF(EVP_MD) *digest_stack = stack;
116
117     if (sk_EVP_MD_push(digest_stack, md) > 0)
118         EVP_MD_up_ref(md);
119 }
120
121 static void list_digests(void)
122 {
123     STACK_OF(EVP_MD) *digests = sk_EVP_MD_new(md_cmp);
124     int i;
125
126     BIO_printf(bio_out, "Legacy:\n");
127     EVP_MD_do_all_sorted(list_md_fn, bio_out);
128
129     BIO_printf(bio_out, "Provided:\n");
130     EVP_MD_do_all_ex(NULL, collect_digests, digests);
131     sk_EVP_MD_sort(digests);
132     for (i = 0; i < sk_EVP_MD_num(digests); i++) {
133         const EVP_MD *m = sk_EVP_MD_value(digests, i);
134
135         BIO_printf(bio_out, "  %s", EVP_MD_name(m));
136         BIO_printf(bio_out, " @ %s\n",
137                    OSSL_PROVIDER_name(EVP_MD_provider(m)));
138         if (verbose) {
139             print_param_types("retrievable algorithm parameters",
140                               EVP_MD_gettable_params(m), 4);
141             print_param_types("retrievable operation parameters",
142                               EVP_MD_gettable_ctx_params(m), 4);
143             print_param_types("settable operation parameters",
144                               EVP_MD_settable_ctx_params(m), 4);
145         }
146     }
147     sk_EVP_MD_pop_free(digests, EVP_MD_free);
148 }
149
150 DEFINE_STACK_OF(EVP_MAC)
151 static int mac_cmp(const EVP_MAC * const *a, const EVP_MAC * const *b)
152 {
153     int ret = strcasecmp(EVP_MAC_name(*a), EVP_MAC_name(*b));
154
155     if (ret == 0)
156         ret = strcmp(OSSL_PROVIDER_name(EVP_MAC_provider(*a)),
157                      OSSL_PROVIDER_name(EVP_MAC_provider(*b)));
158
159     return ret;
160 }
161
162 static void collect_macs(EVP_MAC *mac, void *stack)
163 {
164     STACK_OF(EVP_MAC) *mac_stack = stack;
165
166     if (sk_EVP_MAC_push(mac_stack, mac) > 0)
167         EVP_MAC_up_ref(mac);
168 }
169
170 static void list_macs(void)
171 {
172     STACK_OF(EVP_MAC) *macs = sk_EVP_MAC_new(mac_cmp);
173     int i;
174
175     BIO_printf(bio_out, "Provided MACs:\n");
176     EVP_MAC_do_all_ex(NULL, collect_macs, macs);
177     sk_EVP_MAC_sort(macs);
178     for (i = 0; i < sk_EVP_MAC_num(macs); i++) {
179         const EVP_MAC *m = sk_EVP_MAC_value(macs, i);
180
181         BIO_printf(bio_out, "  %s", EVP_MAC_name(m));
182         BIO_printf(bio_out, " @ %s\n",
183                    OSSL_PROVIDER_name(EVP_MAC_provider(m)));
184
185         if (verbose) {
186             print_param_types("retrievable algorithm parameters",
187                               EVP_MAC_gettable_params(m), 4);
188             print_param_types("retrievable operation parameters",
189                               EVP_MAC_gettable_ctx_params(m), 4);
190             print_param_types("settable operation parameters",
191                               EVP_MAC_settable_ctx_params(m), 4);
192         }
193     }
194     sk_EVP_MAC_pop_free(macs, EVP_MAC_free);
195 }
196
197 /*
198  * KDFs and PRFs
199  */
200 DEFINE_STACK_OF(EVP_KDF)
201 static int kdf_cmp(const EVP_KDF * const *a, const EVP_KDF * const *b)
202 {
203     int ret = strcasecmp(EVP_KDF_name(*a), EVP_KDF_name(*b));
204
205     if (ret == 0)
206         ret = strcmp(OSSL_PROVIDER_name(EVP_KDF_provider(*a)),
207                      OSSL_PROVIDER_name(EVP_KDF_provider(*b)));
208
209     return ret;
210 }
211
212 static void collect_kdfs(EVP_KDF *kdf, void *stack)
213 {
214     STACK_OF(EVP_KDF) *kdf_stack = stack;
215
216     sk_EVP_KDF_push(kdf_stack, kdf);
217     EVP_KDF_up_ref(kdf);
218 }
219
220 static void list_kdfs(void)
221 {
222     STACK_OF(EVP_KDF) *kdfs = sk_EVP_KDF_new(kdf_cmp);
223     int i;
224
225     BIO_printf(bio_out, "Provided KDFs and PDFs:\n");
226     EVP_KDF_do_all_ex(NULL, collect_kdfs, kdfs);
227     sk_EVP_KDF_sort(kdfs);
228     for (i = 0; i < sk_EVP_KDF_num(kdfs); i++) {
229         const EVP_KDF *m = sk_EVP_KDF_value(kdfs, i);
230
231         BIO_printf(bio_out, "  %s", EVP_KDF_name(m));
232         BIO_printf(bio_out, " @ %s\n",
233                    OSSL_PROVIDER_name(EVP_KDF_provider(m)));
234
235         if (verbose) {
236             print_param_types("retrievable algorithm parameters",
237                               EVP_KDF_gettable_params(m), 4);
238             print_param_types("retrievable operation parameters",
239                               EVP_KDF_gettable_ctx_params(m), 4);
240             print_param_types("settable operation parameters",
241                               EVP_KDF_settable_ctx_params(m), 4);
242         }
243     }
244     sk_EVP_KDF_pop_free(kdfs, EVP_KDF_free);
245 }
246
247 static void list_missing_help(void)
248 {
249     const FUNCTION *fp;
250     const OPTIONS *o;
251
252     for (fp = functions; fp->name != NULL; fp++) {
253         if ((o = fp->help) != NULL) {
254             /* If there is help, list what flags are not documented. */
255             for ( ; o->name != NULL; o++) {
256                 if (o->helpstr == NULL)
257                     BIO_printf(bio_out, "%s %s\n", fp->name, o->name);
258             }
259         } else if (fp->func != dgst_main) {
260             /* If not aliased to the dgst command, */
261             BIO_printf(bio_out, "%s *\n", fp->name);
262         }
263     }
264 }
265
266 static void list_objects(void)
267 {
268     int max_nid = OBJ_new_nid(0);
269     int i;
270     char *oid_buf = NULL;
271     int oid_size = 0;
272
273     /* Skip 0, since that's NID_undef */
274     for (i = 1; i < max_nid; i++) {
275         const ASN1_OBJECT *obj = OBJ_nid2obj(i);
276         const char *sn = OBJ_nid2sn(i);
277         const char *ln = OBJ_nid2ln(i);
278         int n = 0;
279
280         /*
281          * If one of the retrieved objects somehow generated an error,
282          * we ignore it.  The check for NID_undef below will detect the
283          * error and simply skip to the next NID.
284          */
285         ERR_clear_error();
286
287         if (OBJ_obj2nid(obj) == NID_undef)
288             continue;
289
290         if ((n = OBJ_obj2txt(NULL, 0, obj, 1)) == 0) {
291             BIO_printf(bio_out, "# None-OID object: %s, %s\n", sn, ln);
292             continue;
293         }
294         if (n < 0)
295             break;               /* Error */
296
297         if (n > oid_size) {
298             oid_buf = OPENSSL_realloc(oid_buf, n + 1);
299             if (oid_buf == NULL) {
300                 BIO_printf(bio_err, "ERROR: Memory allocation\n");
301                 break;           /* Error */
302             }
303             oid_size = n + 1;
304         }
305         if (OBJ_obj2txt(oid_buf, oid_size, obj, 1) < 0)
306             break;               /* Error */
307         if (ln == NULL || strcmp(sn, ln) == 0)
308             BIO_printf(bio_out, "%s = %s\n", sn, oid_buf);
309         else
310             BIO_printf(bio_out, "%s = %s, %s\n", sn, ln, oid_buf);
311     }
312
313     OPENSSL_free(oid_buf);
314 }
315
316 static void list_options_for_command(const char *command)
317 {
318     const FUNCTION *fp;
319     const OPTIONS *o;
320
321     for (fp = functions; fp->name != NULL; fp++)
322         if (strcmp(fp->name, command) == 0)
323             break;
324     if (fp->name == NULL) {
325         BIO_printf(bio_err, "Invalid command '%s'; type \"help\" for a list.\n",
326                 command);
327         return;
328     }
329
330     if ((o = fp->help) == NULL)
331         return;
332
333     for ( ; o->name != NULL; o++) {
334         char c = o->valtype;
335
336         if (o->name == OPT_HELP_STR
337                 || o->name == OPT_MORE_STR
338                 || o->name[0] == '\0')
339             continue;
340         BIO_printf(bio_out, "%s %c\n", o->name, o->valtype);
341         BIO_printf(bio_out, "%s %c\n", o->name, c == '\0' ? '-' : c);
342     }
343     /* Always output the -- marker since it is sometimes documented. */
344     BIO_printf(bio_out, "- -\n");
345 }
346
347 static void list_type(FUNC_TYPE ft, int one)
348 {
349     FUNCTION *fp;
350     int i = 0;
351     DISPLAY_COLUMNS dc;
352
353     memset(&dc, 0, sizeof(dc));
354     if (!one)
355         calculate_columns(functions, &dc);
356
357     for (fp = functions; fp->name != NULL; fp++) {
358         if (fp->type != ft)
359             continue;
360         if (one) {
361             BIO_printf(bio_out, "%s\n", fp->name);
362         } else {
363             if (i % dc.columns == 0 && i > 0)
364                 BIO_printf(bio_out, "\n");
365             BIO_printf(bio_out, "%-*s", dc.width, fp->name);
366             i++;
367         }
368     }
369     if (!one)
370         BIO_printf(bio_out, "\n\n");
371 }
372
373 static void list_pkey(void)
374 {
375     int i;
376
377     for (i = 0; i < EVP_PKEY_asn1_get_count(); i++) {
378         const EVP_PKEY_ASN1_METHOD *ameth;
379         int pkey_id, pkey_base_id, pkey_flags;
380         const char *pinfo, *pem_str;
381         ameth = EVP_PKEY_asn1_get0(i);
382         EVP_PKEY_asn1_get0_info(&pkey_id, &pkey_base_id, &pkey_flags,
383                                 &pinfo, &pem_str, ameth);
384         if (pkey_flags & ASN1_PKEY_ALIAS) {
385             BIO_printf(bio_out, "Name: %s\n", OBJ_nid2ln(pkey_id));
386             BIO_printf(bio_out, "\tAlias for: %s\n",
387                        OBJ_nid2ln(pkey_base_id));
388         } else {
389             BIO_printf(bio_out, "Name: %s\n", pinfo);
390             BIO_printf(bio_out, "\tType: %s Algorithm\n",
391                        pkey_flags & ASN1_PKEY_DYNAMIC ?
392                        "External" : "Builtin");
393             BIO_printf(bio_out, "\tOID: %s\n", OBJ_nid2ln(pkey_id));
394             if (pem_str == NULL)
395                 pem_str = "(none)";
396             BIO_printf(bio_out, "\tPEM string: %s\n", pem_str);
397         }
398
399     }
400 }
401
402 static void list_pkey_meth(void)
403 {
404     size_t i;
405     size_t meth_count = EVP_PKEY_meth_get_count();
406
407     for (i = 0; i < meth_count; i++) {
408         const EVP_PKEY_METHOD *pmeth = EVP_PKEY_meth_get0(i);
409         int pkey_id, pkey_flags;
410
411         EVP_PKEY_meth_get0_info(&pkey_id, &pkey_flags, pmeth);
412         BIO_printf(bio_out, "%s\n", OBJ_nid2ln(pkey_id));
413         BIO_printf(bio_out, "\tType: %s Algorithm\n",
414                    pkey_flags & ASN1_PKEY_DYNAMIC ?  "External" : "Builtin");
415     }
416 }
417
418 static void list_engines(void)
419 {
420 #ifndef OPENSSL_NO_ENGINE
421     ENGINE *e;
422
423     BIO_puts(bio_out, "Engines:\n");
424     e = ENGINE_get_first();
425     while (e) {
426         BIO_printf(bio_out, "%s\n", ENGINE_get_id(e));
427         e = ENGINE_get_next(e);
428     }
429 #else
430     BIO_puts(bio_out, "Engine support is disabled.\n");
431 #endif
432 }
433
434 static void list_disabled(void)
435 {
436     BIO_puts(bio_out, "Disabled algorithms:\n");
437 #ifdef OPENSSL_NO_ARIA
438     BIO_puts(bio_out, "ARIA\n");
439 #endif
440 #ifdef OPENSSL_NO_BF
441     BIO_puts(bio_out, "BF\n");
442 #endif
443 #ifdef OPENSSL_NO_BLAKE2
444     BIO_puts(bio_out, "BLAKE2\n");
445 #endif
446 #ifdef OPENSSL_NO_CAMELLIA
447     BIO_puts(bio_out, "CAMELLIA\n");
448 #endif
449 #ifdef OPENSSL_NO_CAST
450     BIO_puts(bio_out, "CAST\n");
451 #endif
452 #ifdef OPENSSL_NO_CMAC
453     BIO_puts(bio_out, "CMAC\n");
454 #endif
455 #ifdef OPENSSL_NO_CMS
456     BIO_puts(bio_out, "CMS\n");
457 #endif
458 #ifdef OPENSSL_NO_COMP
459     BIO_puts(bio_out, "COMP\n");
460 #endif
461 #ifdef OPENSSL_NO_DES
462     BIO_puts(bio_out, "DES\n");
463 #endif
464 #ifdef OPENSSL_NO_DGRAM
465     BIO_puts(bio_out, "DGRAM\n");
466 #endif
467 #ifdef OPENSSL_NO_DH
468     BIO_puts(bio_out, "DH\n");
469 #endif
470 #ifdef OPENSSL_NO_DSA
471     BIO_puts(bio_out, "DSA\n");
472 #endif
473 #if defined(OPENSSL_NO_DTLS)
474     BIO_puts(bio_out, "DTLS\n");
475 #endif
476 #if defined(OPENSSL_NO_DTLS1)
477     BIO_puts(bio_out, "DTLS1\n");
478 #endif
479 #if defined(OPENSSL_NO_DTLS1_2)
480     BIO_puts(bio_out, "DTLS1_2\n");
481 #endif
482 #ifdef OPENSSL_NO_EC
483     BIO_puts(bio_out, "EC\n");
484 #endif
485 #ifdef OPENSSL_NO_EC2M
486     BIO_puts(bio_out, "EC2M\n");
487 #endif
488 #ifdef OPENSSL_NO_ENGINE
489     BIO_puts(bio_out, "ENGINE\n");
490 #endif
491 #ifdef OPENSSL_NO_GOST
492     BIO_puts(bio_out, "GOST\n");
493 #endif
494 #ifdef OPENSSL_NO_IDEA
495     BIO_puts(bio_out, "IDEA\n");
496 #endif
497 #ifdef OPENSSL_NO_MD2
498     BIO_puts(bio_out, "MD2\n");
499 #endif
500 #ifdef OPENSSL_NO_MD4
501     BIO_puts(bio_out, "MD4\n");
502 #endif
503 #ifdef OPENSSL_NO_MD5
504     BIO_puts(bio_out, "MD5\n");
505 #endif
506 #ifdef OPENSSL_NO_MDC2
507     BIO_puts(bio_out, "MDC2\n");
508 #endif
509 #ifdef OPENSSL_NO_OCB
510     BIO_puts(bio_out, "OCB\n");
511 #endif
512 #ifdef OPENSSL_NO_OCSP
513     BIO_puts(bio_out, "OCSP\n");
514 #endif
515 #ifdef OPENSSL_NO_PSK
516     BIO_puts(bio_out, "PSK\n");
517 #endif
518 #ifdef OPENSSL_NO_RC2
519     BIO_puts(bio_out, "RC2\n");
520 #endif
521 #ifdef OPENSSL_NO_RC4
522     BIO_puts(bio_out, "RC4\n");
523 #endif
524 #ifdef OPENSSL_NO_RC5
525     BIO_puts(bio_out, "RC5\n");
526 #endif
527 #ifdef OPENSSL_NO_RMD160
528     BIO_puts(bio_out, "RMD160\n");
529 #endif
530 #ifdef OPENSSL_NO_RSA
531     BIO_puts(bio_out, "RSA\n");
532 #endif
533 #ifdef OPENSSL_NO_SCRYPT
534     BIO_puts(bio_out, "SCRYPT\n");
535 #endif
536 #ifdef OPENSSL_NO_SCTP
537     BIO_puts(bio_out, "SCTP\n");
538 #endif
539 #ifdef OPENSSL_NO_SEED
540     BIO_puts(bio_out, "SEED\n");
541 #endif
542 #ifdef OPENSSL_NO_SM2
543     BIO_puts(bio_out, "SM2\n");
544 #endif
545 #ifdef OPENSSL_NO_SM3
546     BIO_puts(bio_out, "SM3\n");
547 #endif
548 #ifdef OPENSSL_NO_SM4
549     BIO_puts(bio_out, "SM4\n");
550 #endif
551 #ifdef OPENSSL_NO_SOCK
552     BIO_puts(bio_out, "SOCK\n");
553 #endif
554 #ifdef OPENSSL_NO_SRP
555     BIO_puts(bio_out, "SRP\n");
556 #endif
557 #ifdef OPENSSL_NO_SRTP
558     BIO_puts(bio_out, "SRTP\n");
559 #endif
560 #ifdef OPENSSL_NO_SSL3
561     BIO_puts(bio_out, "SSL3\n");
562 #endif
563 #ifdef OPENSSL_NO_TLS1
564     BIO_puts(bio_out, "TLS1\n");
565 #endif
566 #ifdef OPENSSL_NO_TLS1_1
567     BIO_puts(bio_out, "TLS1_1\n");
568 #endif
569 #ifdef OPENSSL_NO_TLS1_2
570     BIO_puts(bio_out, "TLS1_2\n");
571 #endif
572 #ifdef OPENSSL_NO_WHIRLPOOL
573     BIO_puts(bio_out, "WHIRLPOOL\n");
574 #endif
575 #ifndef ZLIB
576     BIO_puts(bio_out, "ZLIB\n");
577 #endif
578 }
579
580 /* Unified enum for help and list commands. */
581 typedef enum HELPLIST_CHOICE {
582     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP, OPT_ONE, OPT_VERBOSE,
583     OPT_COMMANDS, OPT_DIGEST_COMMANDS, OPT_MAC_ALGORITHMS, OPT_OPTIONS,
584     OPT_DIGEST_ALGORITHMS, OPT_CIPHER_COMMANDS, OPT_CIPHER_ALGORITHMS,
585     OPT_PK_ALGORITHMS, OPT_PK_METHOD, OPT_ENGINES, OPT_DISABLED,
586     OPT_KDF_ALGORITHMS, OPT_MISSING_HELP, OPT_OBJECTS
587 } HELPLIST_CHOICE;
588
589 const OPTIONS list_options[] = {
590     {"help", OPT_HELP, '-', "Display this summary"},
591     {"1", OPT_ONE, '-', "List in one column"},
592     {"verbose", OPT_VERBOSE, '-', "Verbose listing"},
593     {"commands", OPT_COMMANDS, '-', "List of standard commands"},
594     {"digest-commands", OPT_DIGEST_COMMANDS, '-',
595      "List of message digest commands"},
596     {"digest-algorithms", OPT_DIGEST_ALGORITHMS, '-',
597      "List of message digest algorithms"},
598     {"kdf-algorithms", OPT_KDF_ALGORITHMS, '-',
599      "List of key derivation and pseudo random function algorithms"},
600     {"mac-algorithms", OPT_MAC_ALGORITHMS, '-',
601      "List of message authentication code algorithms"},
602     {"cipher-commands", OPT_CIPHER_COMMANDS, '-', "List of cipher commands"},
603     {"cipher-algorithms", OPT_CIPHER_ALGORITHMS, '-',
604      "List of cipher algorithms"},
605     {"public-key-algorithms", OPT_PK_ALGORITHMS, '-',
606      "List of public key algorithms"},
607     {"public-key-methods", OPT_PK_METHOD, '-',
608      "List of public key methods"},
609     {"engines", OPT_ENGINES, '-',
610      "List of loaded engines"},
611     {"disabled", OPT_DISABLED, '-',
612      "List of disabled features"},
613     {"missing-help", OPT_MISSING_HELP, '-',
614      "List missing detailed help strings"},
615     {"options", OPT_OPTIONS, 's',
616      "List options for specified command"},
617     {"objects", OPT_OBJECTS, '-',
618      "List built in objects (OID<->name mappings)"},
619     {NULL}
620 };
621
622 int list_main(int argc, char **argv)
623 {
624     char *prog;
625     HELPLIST_CHOICE o;
626     int one = 0, done = 0;
627     struct {
628         unsigned int commands:1;
629         unsigned int digest_commands:1;
630         unsigned int digest_algorithms:1;
631         unsigned int kdf_algorithms:1;
632         unsigned int mac_algorithms:1;
633         unsigned int cipher_commands:1;
634         unsigned int cipher_algorithms:1;
635         unsigned int pk_algorithms:1;
636         unsigned int pk_method:1;
637         unsigned int engines:1;
638         unsigned int disabled:1;
639         unsigned int missing_help:1;
640         unsigned int objects:1;
641         unsigned int options:1;
642     } todo = { 0, };
643
644     verbose = 0;                 /* Clear a possible previous call */
645
646     prog = opt_init(argc, argv, list_options);
647     while ((o = opt_next()) != OPT_EOF) {
648         switch (o) {
649         case OPT_EOF:  /* Never hit, but suppresses warning */
650         case OPT_ERR:
651 opthelp:
652             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
653             return 1;
654         case OPT_HELP:
655             opt_help(list_options);
656             break;
657         case OPT_ONE:
658             one = 1;
659             break;
660         case OPT_COMMANDS:
661             todo.commands = 1;
662             break;
663         case OPT_DIGEST_COMMANDS:
664             todo.digest_commands = 1;
665             break;
666         case OPT_DIGEST_ALGORITHMS:
667             todo.digest_algorithms = 1;
668             break;
669         case OPT_KDF_ALGORITHMS:
670             todo.kdf_algorithms = 1;
671             break;
672         case OPT_MAC_ALGORITHMS:
673             todo.mac_algorithms = 1;
674             break;
675         case OPT_CIPHER_COMMANDS:
676             todo.cipher_commands = 1;
677             break;
678         case OPT_CIPHER_ALGORITHMS:
679             todo.cipher_algorithms = 1;
680             break;
681         case OPT_PK_ALGORITHMS:
682             todo.pk_algorithms = 1;
683             break;
684         case OPT_PK_METHOD:
685             todo.pk_method = 1;
686             break;
687         case OPT_ENGINES:
688             todo.engines = 1;
689             break;
690         case OPT_DISABLED:
691             todo.disabled = 1;
692             break;
693         case OPT_MISSING_HELP:
694             todo.missing_help = 1;
695             break;
696         case OPT_OBJECTS:
697             todo.objects = 1;
698             break;
699         case OPT_OPTIONS:
700             list_options_for_command(opt_arg());
701             break;
702         case OPT_VERBOSE:
703             verbose = 1;
704             break;
705         }
706         done = 1;
707     }
708     if (opt_num_rest() != 0) {
709         BIO_printf(bio_err, "Extra arguments given.\n");
710         goto opthelp;
711     }
712
713     if (todo.commands)
714         list_type(FT_general, one);
715     if (todo.digest_commands)
716         list_type(FT_md, one);
717     if (todo.digest_algorithms)
718         list_digests();
719     if (todo.kdf_algorithms)
720         list_kdfs();
721     if (todo.mac_algorithms)
722         list_macs();
723     if (todo.cipher_commands)
724         list_type(FT_cipher, one);
725     if (todo.cipher_algorithms)
726         list_ciphers();
727     if (todo.pk_algorithms)
728         list_pkey();
729     if (todo.pk_method)
730         list_pkey_meth();
731     if (todo.engines)
732         list_engines();
733     if (todo.disabled)
734         list_disabled();
735     if (todo.missing_help)
736         list_missing_help();
737     if (todo.objects)
738         list_objects();
739
740     if (!done)
741         goto opthelp;
742
743     return 0;
744 }