Consistent naming for context gettable param queries .
[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         if (o->name == OPT_HELP_STR
335                 || o->name == OPT_MORE_STR
336                 || o->name[0] == '\0')
337             continue;
338         BIO_printf(bio_out, "%s %c\n", o->name, o->valtype);
339     }
340 }
341
342 static void list_type(FUNC_TYPE ft, int one)
343 {
344     FUNCTION *fp;
345     int i = 0;
346     DISPLAY_COLUMNS dc;
347
348     memset(&dc, 0, sizeof(dc));
349     if (!one)
350         calculate_columns(functions, &dc);
351
352     for (fp = functions; fp->name != NULL; fp++) {
353         if (fp->type != ft)
354             continue;
355         if (one) {
356             BIO_printf(bio_out, "%s\n", fp->name);
357         } else {
358             if (i % dc.columns == 0 && i > 0)
359                 BIO_printf(bio_out, "\n");
360             BIO_printf(bio_out, "%-*s", dc.width, fp->name);
361             i++;
362         }
363     }
364     if (!one)
365         BIO_printf(bio_out, "\n\n");
366 }
367
368 static void list_pkey(void)
369 {
370     int i;
371
372     for (i = 0; i < EVP_PKEY_asn1_get_count(); i++) {
373         const EVP_PKEY_ASN1_METHOD *ameth;
374         int pkey_id, pkey_base_id, pkey_flags;
375         const char *pinfo, *pem_str;
376         ameth = EVP_PKEY_asn1_get0(i);
377         EVP_PKEY_asn1_get0_info(&pkey_id, &pkey_base_id, &pkey_flags,
378                                 &pinfo, &pem_str, ameth);
379         if (pkey_flags & ASN1_PKEY_ALIAS) {
380             BIO_printf(bio_out, "Name: %s\n", OBJ_nid2ln(pkey_id));
381             BIO_printf(bio_out, "\tAlias for: %s\n",
382                        OBJ_nid2ln(pkey_base_id));
383         } else {
384             BIO_printf(bio_out, "Name: %s\n", pinfo);
385             BIO_printf(bio_out, "\tType: %s Algorithm\n",
386                        pkey_flags & ASN1_PKEY_DYNAMIC ?
387                        "External" : "Builtin");
388             BIO_printf(bio_out, "\tOID: %s\n", OBJ_nid2ln(pkey_id));
389             if (pem_str == NULL)
390                 pem_str = "(none)";
391             BIO_printf(bio_out, "\tPEM string: %s\n", pem_str);
392         }
393
394     }
395 }
396
397 static void list_pkey_meth(void)
398 {
399     size_t i;
400     size_t meth_count = EVP_PKEY_meth_get_count();
401
402     for (i = 0; i < meth_count; i++) {
403         const EVP_PKEY_METHOD *pmeth = EVP_PKEY_meth_get0(i);
404         int pkey_id, pkey_flags;
405
406         EVP_PKEY_meth_get0_info(&pkey_id, &pkey_flags, pmeth);
407         BIO_printf(bio_out, "%s\n", OBJ_nid2ln(pkey_id));
408         BIO_printf(bio_out, "\tType: %s Algorithm\n",
409                    pkey_flags & ASN1_PKEY_DYNAMIC ?  "External" : "Builtin");
410     }
411 }
412
413 static void list_engines(void)
414 {
415 #ifndef OPENSSL_NO_ENGINE
416     ENGINE *e;
417
418     BIO_puts(bio_out, "Engines:\n");
419     e = ENGINE_get_first();
420     while (e) {
421         BIO_printf(bio_out, "%s\n", ENGINE_get_id(e));
422         e = ENGINE_get_next(e);
423     }
424 #else
425     BIO_puts(bio_out, "Engine support is disabled.\n");
426 #endif
427 }
428
429 static void list_disabled(void)
430 {
431     BIO_puts(bio_out, "Disabled algorithms:\n");
432 #ifdef OPENSSL_NO_ARIA
433     BIO_puts(bio_out, "ARIA\n");
434 #endif
435 #ifdef OPENSSL_NO_BF
436     BIO_puts(bio_out, "BF\n");
437 #endif
438 #ifdef OPENSSL_NO_BLAKE2
439     BIO_puts(bio_out, "BLAKE2\n");
440 #endif
441 #ifdef OPENSSL_NO_CAMELLIA
442     BIO_puts(bio_out, "CAMELLIA\n");
443 #endif
444 #ifdef OPENSSL_NO_CAST
445     BIO_puts(bio_out, "CAST\n");
446 #endif
447 #ifdef OPENSSL_NO_CMAC
448     BIO_puts(bio_out, "CMAC\n");
449 #endif
450 #ifdef OPENSSL_NO_CMS
451     BIO_puts(bio_out, "CMS\n");
452 #endif
453 #ifdef OPENSSL_NO_COMP
454     BIO_puts(bio_out, "COMP\n");
455 #endif
456 #ifdef OPENSSL_NO_DES
457     BIO_puts(bio_out, "DES\n");
458 #endif
459 #ifdef OPENSSL_NO_DGRAM
460     BIO_puts(bio_out, "DGRAM\n");
461 #endif
462 #ifdef OPENSSL_NO_DH
463     BIO_puts(bio_out, "DH\n");
464 #endif
465 #ifdef OPENSSL_NO_DSA
466     BIO_puts(bio_out, "DSA\n");
467 #endif
468 #if defined(OPENSSL_NO_DTLS)
469     BIO_puts(bio_out, "DTLS\n");
470 #endif
471 #if defined(OPENSSL_NO_DTLS1)
472     BIO_puts(bio_out, "DTLS1\n");
473 #endif
474 #if defined(OPENSSL_NO_DTLS1_2)
475     BIO_puts(bio_out, "DTLS1_2\n");
476 #endif
477 #ifdef OPENSSL_NO_EC
478     BIO_puts(bio_out, "EC\n");
479 #endif
480 #ifdef OPENSSL_NO_EC2M
481     BIO_puts(bio_out, "EC2M\n");
482 #endif
483 #ifdef OPENSSL_NO_ENGINE
484     BIO_puts(bio_out, "ENGINE\n");
485 #endif
486 #ifdef OPENSSL_NO_GOST
487     BIO_puts(bio_out, "GOST\n");
488 #endif
489 #ifdef OPENSSL_NO_IDEA
490     BIO_puts(bio_out, "IDEA\n");
491 #endif
492 #ifdef OPENSSL_NO_MD2
493     BIO_puts(bio_out, "MD2\n");
494 #endif
495 #ifdef OPENSSL_NO_MD4
496     BIO_puts(bio_out, "MD4\n");
497 #endif
498 #ifdef OPENSSL_NO_MD5
499     BIO_puts(bio_out, "MD5\n");
500 #endif
501 #ifdef OPENSSL_NO_MDC2
502     BIO_puts(bio_out, "MDC2\n");
503 #endif
504 #ifdef OPENSSL_NO_OCB
505     BIO_puts(bio_out, "OCB\n");
506 #endif
507 #ifdef OPENSSL_NO_OCSP
508     BIO_puts(bio_out, "OCSP\n");
509 #endif
510 #ifdef OPENSSL_NO_PSK
511     BIO_puts(bio_out, "PSK\n");
512 #endif
513 #ifdef OPENSSL_NO_RC2
514     BIO_puts(bio_out, "RC2\n");
515 #endif
516 #ifdef OPENSSL_NO_RC4
517     BIO_puts(bio_out, "RC4\n");
518 #endif
519 #ifdef OPENSSL_NO_RC5
520     BIO_puts(bio_out, "RC5\n");
521 #endif
522 #ifdef OPENSSL_NO_RMD160
523     BIO_puts(bio_out, "RMD160\n");
524 #endif
525 #ifdef OPENSSL_NO_RSA
526     BIO_puts(bio_out, "RSA\n");
527 #endif
528 #ifdef OPENSSL_NO_SCRYPT
529     BIO_puts(bio_out, "SCRYPT\n");
530 #endif
531 #ifdef OPENSSL_NO_SCTP
532     BIO_puts(bio_out, "SCTP\n");
533 #endif
534 #ifdef OPENSSL_NO_SEED
535     BIO_puts(bio_out, "SEED\n");
536 #endif
537 #ifdef OPENSSL_NO_SM2
538     BIO_puts(bio_out, "SM2\n");
539 #endif
540 #ifdef OPENSSL_NO_SM3
541     BIO_puts(bio_out, "SM3\n");
542 #endif
543 #ifdef OPENSSL_NO_SM4
544     BIO_puts(bio_out, "SM4\n");
545 #endif
546 #ifdef OPENSSL_NO_SOCK
547     BIO_puts(bio_out, "SOCK\n");
548 #endif
549 #ifdef OPENSSL_NO_SRP
550     BIO_puts(bio_out, "SRP\n");
551 #endif
552 #ifdef OPENSSL_NO_SRTP
553     BIO_puts(bio_out, "SRTP\n");
554 #endif
555 #ifdef OPENSSL_NO_SSL3
556     BIO_puts(bio_out, "SSL3\n");
557 #endif
558 #ifdef OPENSSL_NO_TLS1
559     BIO_puts(bio_out, "TLS1\n");
560 #endif
561 #ifdef OPENSSL_NO_TLS1_1
562     BIO_puts(bio_out, "TLS1_1\n");
563 #endif
564 #ifdef OPENSSL_NO_TLS1_2
565     BIO_puts(bio_out, "TLS1_2\n");
566 #endif
567 #ifdef OPENSSL_NO_WHIRLPOOL
568     BIO_puts(bio_out, "WHIRLPOOL\n");
569 #endif
570 #ifndef ZLIB
571     BIO_puts(bio_out, "ZLIB\n");
572 #endif
573 }
574
575 /* Unified enum for help and list commands. */
576 typedef enum HELPLIST_CHOICE {
577     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP, OPT_ONE, OPT_VERBOSE,
578     OPT_COMMANDS, OPT_DIGEST_COMMANDS, OPT_MAC_ALGORITHMS, OPT_OPTIONS,
579     OPT_DIGEST_ALGORITHMS, OPT_CIPHER_COMMANDS, OPT_CIPHER_ALGORITHMS,
580     OPT_PK_ALGORITHMS, OPT_PK_METHOD, OPT_ENGINES, OPT_DISABLED,
581     OPT_KDF_ALGORITHMS, OPT_MISSING_HELP, OPT_OBJECTS
582 } HELPLIST_CHOICE;
583
584 const OPTIONS list_options[] = {
585     {"help", OPT_HELP, '-', "Display this summary"},
586     {"1", OPT_ONE, '-', "List in one column"},
587     {"verbose", OPT_VERBOSE, '-', "Verbose listing"},
588     {"commands", OPT_COMMANDS, '-', "List of standard commands"},
589     {"digest-commands", OPT_DIGEST_COMMANDS, '-',
590      "List of message digest commands"},
591     {"digest-algorithms", OPT_DIGEST_ALGORITHMS, '-',
592      "List of message digest algorithms"},
593     {"kdf-algorithms", OPT_KDF_ALGORITHMS, '-',
594      "List of key derivation and pseudo random function algorithms"},
595     {"mac-algorithms", OPT_MAC_ALGORITHMS, '-',
596      "List of message authentication code algorithms"},
597     {"cipher-commands", OPT_CIPHER_COMMANDS, '-', "List of cipher commands"},
598     {"cipher-algorithms", OPT_CIPHER_ALGORITHMS, '-',
599      "List of cipher algorithms"},
600     {"public-key-algorithms", OPT_PK_ALGORITHMS, '-',
601      "List of public key algorithms"},
602     {"public-key-methods", OPT_PK_METHOD, '-',
603      "List of public key methods"},
604     {"engines", OPT_ENGINES, '-',
605      "List of loaded engines"},
606     {"disabled", OPT_DISABLED, '-',
607      "List of disabled features"},
608     {"missing-help", OPT_MISSING_HELP, '-',
609      "List missing detailed help strings"},
610     {"options", OPT_OPTIONS, 's',
611      "List options for specified command"},
612     {"objects", OPT_OBJECTS, '-',
613      "List built in objects (OID<->name mappings)"},
614     {NULL}
615 };
616
617 int list_main(int argc, char **argv)
618 {
619     char *prog;
620     HELPLIST_CHOICE o;
621     int one = 0, done = 0;
622     struct {
623         unsigned int commands:1;
624         unsigned int digest_commands:1;
625         unsigned int digest_algorithms:1;
626         unsigned int kdf_algorithms:1;
627         unsigned int mac_algorithms:1;
628         unsigned int cipher_commands:1;
629         unsigned int cipher_algorithms:1;
630         unsigned int pk_algorithms:1;
631         unsigned int pk_method:1;
632         unsigned int engines:1;
633         unsigned int disabled:1;
634         unsigned int missing_help:1;
635         unsigned int objects:1;
636         unsigned int options:1;
637     } todo = { 0, };
638
639     verbose = 0;                 /* Clear a possible previous call */
640
641     prog = opt_init(argc, argv, list_options);
642     while ((o = opt_next()) != OPT_EOF) {
643         switch (o) {
644         case OPT_EOF:  /* Never hit, but suppresses warning */
645         case OPT_ERR:
646 opthelp:
647             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
648             return 1;
649         case OPT_HELP:
650             opt_help(list_options);
651             break;
652         case OPT_ONE:
653             one = 1;
654             break;
655         case OPT_COMMANDS:
656             todo.commands = 1;
657             break;
658         case OPT_DIGEST_COMMANDS:
659             todo.digest_commands = 1;
660             break;
661         case OPT_DIGEST_ALGORITHMS:
662             todo.digest_algorithms = 1;
663             break;
664         case OPT_KDF_ALGORITHMS:
665             todo.kdf_algorithms = 1;
666             break;
667         case OPT_MAC_ALGORITHMS:
668             todo.mac_algorithms = 1;
669             break;
670         case OPT_CIPHER_COMMANDS:
671             todo.cipher_commands = 1;
672             break;
673         case OPT_CIPHER_ALGORITHMS:
674             todo.cipher_algorithms = 1;
675             break;
676         case OPT_PK_ALGORITHMS:
677             todo.pk_algorithms = 1;
678             break;
679         case OPT_PK_METHOD:
680             todo.pk_method = 1;
681             break;
682         case OPT_ENGINES:
683             todo.engines = 1;
684             break;
685         case OPT_DISABLED:
686             todo.disabled = 1;
687             break;
688         case OPT_MISSING_HELP:
689             todo.missing_help = 1;
690             break;
691         case OPT_OBJECTS:
692             todo.objects = 1;
693             break;
694         case OPT_OPTIONS:
695             list_options_for_command(opt_arg());
696             break;
697         case OPT_VERBOSE:
698             verbose = 1;
699             break;
700         }
701         done = 1;
702     }
703     if (opt_num_rest() != 0) {
704         BIO_printf(bio_err, "Extra arguments given.\n");
705         goto opthelp;
706     }
707
708     if (todo.commands)
709         list_type(FT_general, one);
710     if (todo.digest_commands)
711         list_type(FT_md, one);
712     if (todo.digest_algorithms)
713         list_digests();
714     if (todo.kdf_algorithms)
715         list_kdfs();
716     if (todo.mac_algorithms)
717         list_macs();
718     if (todo.cipher_commands)
719         list_type(FT_cipher, one);
720     if (todo.cipher_algorithms)
721         list_ciphers();
722     if (todo.pk_algorithms)
723         list_pkey();
724     if (todo.pk_method)
725         list_pkey_meth();
726     if (todo.engines)
727         list_engines();
728     if (todo.disabled)
729         list_disabled();
730     if (todo.missing_help)
731         list_missing_help();
732     if (todo.objects)
733         list_objects();
734
735     if (!done)
736         goto opthelp;
737
738     return 0;
739 }