]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/openssl.c
Add SM2 signature and ECIES schemes
[thirdparty/openssl.git] / apps / openssl.c
CommitLineData
846e33c7 1/*
3c7d0945 2 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3ac82faa 3 *
846e33c7
RS
4 * Licensed under the OpenSSL license (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
3ac82faa
BM
8 */
9
198c42f5 10#include <internal/cryptlib.h>
d02b48c6
RE
11#include <stdio.h>
12#include <string.h>
13#include <stdlib.h>
ec577822
BM
14#include <openssl/bio.h>
15#include <openssl/crypto.h>
16#include <openssl/lhash.h>
17#include <openssl/conf.h>
18#include <openssl/x509.h>
19#include <openssl/pem.h>
20#include <openssl/ssl.h>
0b13e9f0 21#ifndef OPENSSL_NO_ENGINE
0f113f3e 22# include <openssl/engine.h>
0b13e9f0 23#endif
ec577822 24#include <openssl/err.h>
3b061a00
RS
25#include "s_apps.h"
26/* Needed to get the other O_xxx flags. */
27#ifdef OPENSSL_SYS_VMS
28# include <unixio.h>
29#endif
7e1b7485 30#include "apps.h"
dab2cd68
RL
31#define INCLUDE_FUNCTION_TABLE
32#include "progs.h"
7e1b7485 33
296cbb57
P
34/* Structure to hold the number of columns to be displayed and the
35 * field width used to display them.
36 */
37typedef struct {
38 int columns;
39 int width;
40} DISPLAY_COLUMNS;
7e1b7485
RS
41
42/* Special sentinel to exit the program. */
43#define EXIT_THE_PROGRAM (-1)
d02b48c6 44
0f113f3e
MC
45/*
46 * The LHASH callbacks ("hash" & "cmp") have been replaced by functions with
47 * the base prototypes (we cast each variable inside the function to the
48 * required type of "FUNCTION*"). This removes the necessity for
49 * macro-generated wrapper functions.
50 */
0f113f3e
MC
51static LHASH_OF(FUNCTION) *prog_init(void);
52static int do_cmd(LHASH_OF(FUNCTION) *prog, int argc, char *argv[]);
2f58faad 53static void list_pkey(void);
e1631f51 54static void list_pkey_meth(void);
e75138ab 55static void list_type(FUNC_TYPE ft, int one);
a760a380 56static void list_disabled(void);
0f113f3e 57char *default_config_file = NULL;
d02b48c6 58
7e1b7485
RS
59BIO *bio_in = NULL;
60BIO *bio_out = NULL;
0f113f3e 61BIO *bio_err = NULL;
7e1b7485 62
296cbb57
P
63static void calculate_columns(DISPLAY_COLUMNS *dc)
64{
65 FUNCTION *f;
66 int len, maxlen = 0;
67
68 for (f = functions; f->name != NULL; ++f)
69 if (f->type == FT_general || f->type == FT_md || f->type == FT_cipher)
70 if ((len = strlen(f->name)) > maxlen)
71 maxlen = len;
72
73 dc->width = maxlen + 2;
74 dc->columns = (80 - 1) / dc->width;
75}
76
a0a82324 77static int apps_startup()
7e1b7485
RS
78{
79#ifdef SIGPIPE
80 signal(SIGPIPE, SIG_IGN);
81#endif
a0a82324 82
b9f75707 83 /* Set non-default library initialisation settings */
0488c0bb
RL
84 if (!OPENSSL_init_ssl(OPENSSL_INIT_ENGINE_ALL_BUILTIN
85 | OPENSSL_INIT_LOAD_CONFIG, NULL))
0fc32b07 86 return 0;
a0a82324 87
7e1b7485 88 setup_ui_method();
b9f75707 89
a0a82324 90 return 1;
7e1b7485
RS
91}
92
93static void apps_shutdown()
94{
7e1b7485 95 destroy_ui_method();
71bb86f0 96 destroy_prefix_method();
7e1b7485
RS
97}
98
99static char *make_config_name()
100{
cc01d217 101 const char *t;
7e1b7485
RS
102 size_t len;
103 char *p;
104
b0700d2c 105 if ((t = getenv("OPENSSL_CONF")) != NULL)
7644a9ae 106 return OPENSSL_strdup(t);
cc01d217
RS
107
108 t = X509_get_default_cert_area();
109 len = strlen(t) + 1 + strlen(OPENSSL_CONF) + 1;
68dc6824 110 p = app_malloc(len, "config filename buffer");
cc01d217 111 strcpy(p, t);
7e1b7485 112#ifndef OPENSSL_SYS_VMS
cc01d217 113 strcat(p, "/");
d02b48c6 114#endif
cc01d217 115 strcat(p, OPENSSL_CONF);
7e1b7485
RS
116
117 return p;
118}
119
7e1b7485 120int main(int argc, char *argv[])
0f113f3e 121{
0f113f3e 122 FUNCTION f, *fp;
0f113f3e 123 LHASH_OF(FUNCTION) *prog = NULL;
7e1b7485 124 char **copied_argv = NULL;
cc01d217 125 char *p, *pname;
7e1b7485
RS
126 char buf[1024];
127 const char *prompt;
128 ARGS arg;
129 int first, n, i, ret = 0;
8ecef24a 130
7e1b7485
RS
131 arg.argv = NULL;
132 arg.size = 0;
133
7768e116
RS
134 /* Set up some of the environment. */
135 default_config_file = make_config_name();
a60994df
RL
136 bio_in = dup_bio_in(FORMAT_TEXT);
137 bio_out = dup_bio_out(FORMAT_TEXT);
149bd5d6 138 bio_err = dup_bio_err(FORMAT_TEXT);
7768e116 139
368058d0
RL
140#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
141 copied_argv = argv = copy_argv(&argc, argv);
4e155ec4
AP
142#elif defined(_WIN32)
143 /*
144 * Replace argv[] with UTF-8 encoded strings.
145 */
146 win32_utf8argv(&argc, &argv);
7e1b7485
RS
147#endif
148
149 p = getenv("OPENSSL_DEBUG_MEMORY");
bbd86bf5
RS
150 if (p != NULL && strcmp(p, "on") == 0)
151 CRYPTO_set_mem_debug(1);
0f113f3e 152 CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
3ac82faa 153
0f113f3e 154 if (getenv("OPENSSL_FIPS")) {
7768e116
RS
155 BIO_printf(bio_err, "FIPS mode not supported.\n");
156 return 1;
0f113f3e
MC
157 }
158
f2da4a49
RL
159 if (!apps_startup()) {
160 BIO_printf(bio_err,
161 "FATAL: Startup failure (dev note: apps_startup() failed)\n");
162 ERR_print_errors(bio_err);
163 ret = 1;
a0a82324 164 goto end;
f2da4a49 165 }
a0a82324 166
7e1b7485 167 prog = prog_init();
368058d0 168 pname = opt_progname(argv[0]);
0f113f3e 169
0f113f3e 170 /* first check the program name */
0f113f3e
MC
171 f.name = pname;
172 fp = lh_FUNCTION_retrieve(prog, &f);
173 if (fp != NULL) {
368058d0
RL
174 argv[0] = pname;
175 ret = fp->func(argc, argv);
0f113f3e
MC
176 goto end;
177 }
178
7e1b7485
RS
179 /* If there is stuff on the command line, run with that. */
180 if (argc != 1) {
181 argc--;
368058d0
RL
182 argv++;
183 ret = do_cmd(prog, argc, argv);
0f113f3e
MC
184 if (ret < 0)
185 ret = 0;
186 goto end;
187 }
188
7e1b7485 189 /* ok, lets enter interactive mode */
0f113f3e
MC
190 for (;;) {
191 ret = 0;
57d5edad 192 /* Read a line, continue reading if line ends with \ */
cbe29648 193 for (p = buf, n = sizeof(buf), i = 0, first = 1; n > 0; first = 0) {
1c9c2435 194 prompt = first ? "OpenSSL> " : "> ";
0f113f3e 195 p[0] = '\0';
57d5edad 196#ifndef READLINE
0f113f3e
MC
197 fputs(prompt, stdout);
198 fflush(stdout);
199 if (!fgets(p, n, stdin))
200 goto end;
201 if (p[0] == '\0')
202 goto end;
203 i = strlen(p);
204 if (i <= 1)
205 break;
206 if (p[i - 2] != '\\')
207 break;
208 i -= 2;
209 p += i;
210 n -= i;
57d5edad
RS
211#else
212 {
213 extern char *readline(const char *);
214 extern void add_history(const char *cp);
215 char *text;
216
72106aaa 217 text = readline(prompt);
57d5edad
RS
218 if (text == NULL)
219 goto end;
220 i = strlen(text);
221 if (i == 0 || i > n)
222 break;
223 if (text[i - 1] != '\\') {
224 p += strlen(strcpy(p, text));
225 free(text);
226 add_history(buf);
227 break;
228 }
229
230 text[i - 1] = '\0';
231 p += strlen(strcpy(p, text));
232 free(text);
233 n -= i;
234 }
235#endif
0f113f3e 236 }
57d5edad 237
7e1b7485
RS
238 if (!chopup_args(&arg, buf)) {
239 BIO_printf(bio_err, "Can't parse (no memory?)\n");
0f113f3e 240 break;
7e1b7485 241 }
0f113f3e 242
7e1b7485
RS
243 ret = do_cmd(prog, arg.argc, arg.argv);
244 if (ret == EXIT_THE_PROGRAM) {
0f113f3e
MC
245 ret = 0;
246 goto end;
247 }
248 if (ret != 0)
7e1b7485
RS
249 BIO_printf(bio_err, "error in %s\n", arg.argv[0]);
250 (void)BIO_flush(bio_out);
0f113f3e
MC
251 (void)BIO_flush(bio_err);
252 }
0f113f3e
MC
253 ret = 1;
254 end:
b548a1f1 255 OPENSSL_free(copied_argv);
cc01d217 256 OPENSSL_free(default_config_file);
25aaa98a 257 lh_FUNCTION_free(prog);
b548a1f1 258 OPENSSL_free(arg.argv);
3ee1eac2 259 app_RAND_write();
0f113f3e 260
7e1b7485
RS
261 BIO_free(bio_in);
262 BIO_free_all(bio_out);
0f113f3e 263 apps_shutdown();
c2e27310 264#ifndef OPENSSL_NO_CRYPTO_MDEBUG
541e9565
DSH
265 if (CRYPTO_mem_leaks(bio_err) <= 0)
266 ret = 1;
bbd86bf5 267#endif
ca3a82c3 268 BIO_free(bio_err);
aa147792 269 EXIT(ret);
7e1b7485
RS
270}
271
2f58faad
RS
272static void list_cipher_fn(const EVP_CIPHER *c,
273 const char *from, const char *to, void *arg)
274{
2234212c 275 if (c != NULL) {
2f58faad 276 BIO_printf(arg, "%s\n", EVP_CIPHER_name(c));
2234212c
PY
277 } else {
278 if (from == NULL)
2f58faad 279 from = "<undefined>";
2234212c 280 if (to == NULL)
2f58faad
RS
281 to = "<undefined>";
282 BIO_printf(arg, "%s => %s\n", from, to);
283 }
284}
285
286static void list_md_fn(const EVP_MD *m,
287 const char *from, const char *to, void *arg)
288{
2234212c 289 if (m != NULL) {
2f58faad 290 BIO_printf(arg, "%s\n", EVP_MD_name(m));
2234212c
PY
291 } else {
292 if (from == NULL)
2f58faad 293 from = "<undefined>";
2234212c 294 if (to == NULL)
2f58faad
RS
295 to = "<undefined>";
296 BIO_printf((BIO *)arg, "%s => %s\n", from, to);
297 }
298}
299
77297115
RS
300static void list_missing_help(void)
301{
302 const FUNCTION *fp;
303 const OPTIONS *o;
304
305 for (fp = functions; fp->name != NULL; fp++) {
e75138ab
RS
306 if ((o = fp->help) != NULL) {
307 /* If there is help, list what flags are not documented. */
308 for ( ; o->name != NULL; o++) {
309 if (o->helpstr == NULL)
310 BIO_printf(bio_out, "%s %s\n", fp->name, o->name);
311 }
312 } else if (fp->func != dgst_main) {
313 /* If not aliased to the dgst command, */
77297115 314 BIO_printf(bio_out, "%s *\n", fp->name);
77297115
RS
315 }
316 }
317}
318
e75138ab
RS
319static void list_options_for_command(const char *command)
320{
321 const FUNCTION *fp;
322 const OPTIONS *o;
323
324 for (fp = functions; fp->name != NULL; fp++)
325 if (strcmp(fp->name, command) == 0)
326 break;
327 if (fp->name == NULL) {
328 BIO_printf(bio_err, "Invalid command '%s'; type \"help\" for a list.\n",
329 command);
330 return;
331 }
332
333 if ((o = fp->help) == NULL)
334 return;
335
336 for ( ; o->name != NULL; o++) {
337 if (o->name == OPT_HELP_STR
338 || o->name == OPT_MORE_STR
339 || o->name[0] == '\0')
340 continue;
341 BIO_printf(bio_out, "%s %c\n", o->name, o->valtype);
342 }
343}
344
77297115 345
7e1b7485
RS
346/* Unified enum for help and list commands. */
347typedef enum HELPLIST_CHOICE {
e75138ab
RS
348 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP, OPT_ONE,
349 OPT_COMMANDS, OPT_DIGEST_COMMANDS, OPT_OPTIONS,
7e1b7485 350 OPT_DIGEST_ALGORITHMS, OPT_CIPHER_COMMANDS, OPT_CIPHER_ALGORITHMS,
e1631f51 351 OPT_PK_ALGORITHMS, OPT_PK_METHOD, OPT_DISABLED, OPT_MISSING_HELP
7e1b7485
RS
352} HELPLIST_CHOICE;
353
44c83ebd 354const OPTIONS list_options[] = {
7e1b7485 355 {"help", OPT_HELP, '-', "Display this summary"},
e75138ab 356 {"1", OPT_ONE, '-', "List in one column"},
7e1b7485
RS
357 {"commands", OPT_COMMANDS, '-', "List of standard commands"},
358 {"digest-commands", OPT_DIGEST_COMMANDS, '-',
359 "List of message digest commands"},
360 {"digest-algorithms", OPT_DIGEST_ALGORITHMS, '-',
361 "List of message digest algorithms"},
362 {"cipher-commands", OPT_CIPHER_COMMANDS, '-', "List of cipher commands"},
363 {"cipher-algorithms", OPT_CIPHER_ALGORITHMS, '-',
364 "List of cipher algorithms"},
365 {"public-key-algorithms", OPT_PK_ALGORITHMS, '-',
366 "List of public key algorithms"},
e1631f51
DSH
367 {"public-key-methods", OPT_PK_METHOD, '-',
368 "List of public key methods"},
a760a380
DSH
369 {"disabled", OPT_DISABLED, '-',
370 "List of disabled features"},
77297115
RS
371 {"missing-help", OPT_MISSING_HELP, '-',
372 "List missing detailed help strings"},
e75138ab
RS
373 {"options", OPT_OPTIONS, 's',
374 "List options for specified command"},
7e1b7485
RS
375 {NULL}
376};
377
378int list_main(int argc, char **argv)
379{
380 char *prog;
381 HELPLIST_CHOICE o;
e75138ab 382 int one = 0, done = 0;
7e1b7485
RS
383
384 prog = opt_init(argc, argv, list_options);
385 while ((o = opt_next()) != OPT_EOF) {
386 switch (o) {
19948cea 387 case OPT_EOF: /* Never hit, but suppresses warning */
7e1b7485 388 case OPT_ERR:
c27363f5 389opthelp:
7e1b7485
RS
390 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
391 return 1;
392 case OPT_HELP:
393 opt_help(list_options);
394 break;
e75138ab
RS
395 case OPT_ONE:
396 one = 1;
397 break;
7e1b7485 398 case OPT_COMMANDS:
e75138ab 399 list_type(FT_general, one);
2f58faad 400 break;
7e1b7485 401 case OPT_DIGEST_COMMANDS:
e75138ab 402 list_type(FT_md, one);
2f58faad 403 break;
7e1b7485 404 case OPT_DIGEST_ALGORITHMS:
2f58faad
RS
405 EVP_MD_do_all_sorted(list_md_fn, bio_out);
406 break;
7e1b7485 407 case OPT_CIPHER_COMMANDS:
e75138ab 408 list_type(FT_cipher, one);
2f58faad 409 break;
7e1b7485 410 case OPT_CIPHER_ALGORITHMS:
2f58faad
RS
411 EVP_CIPHER_do_all_sorted(list_cipher_fn, bio_out);
412 break;
7e1b7485 413 case OPT_PK_ALGORITHMS:
2f58faad
RS
414 list_pkey();
415 break;
e1631f51
DSH
416 case OPT_PK_METHOD:
417 list_pkey_meth();
418 break;
a760a380
DSH
419 case OPT_DISABLED:
420 list_disabled();
421 break;
77297115
RS
422 case OPT_MISSING_HELP:
423 list_missing_help();
424 break;
e75138ab
RS
425 case OPT_OPTIONS:
426 list_options_for_command(opt_arg());
427 break;
7e1b7485 428 }
19948cea
BL
429 done = 1;
430 }
c27363f5
RS
431 if (opt_num_rest() != 0) {
432 BIO_printf(bio_err, "Extra arguments given.\n");
433 goto opthelp;
7e1b7485
RS
434 }
435
c27363f5
RS
436 if (!done)
437 goto opthelp;
438
7e1b7485
RS
439 return 0;
440}
441
f3b3d7f0
RS
442typedef enum HELP_CHOICE {
443 OPT_hERR = -1, OPT_hEOF = 0, OPT_hHELP
444} HELP_CHOICE;
445
44c83ebd 446const OPTIONS help_options[] = {
da6be198
RL
447 {OPT_HELP_STR, 1, '-', "Usage: help [options]\n"},
448 {OPT_HELP_STR, 1, '-', " help [command]\n"},
f3b3d7f0 449 {"help", OPT_hHELP, '-', "Display this summary"},
7e1b7485
RS
450 {NULL}
451};
452
f3b3d7f0 453
7e1b7485
RS
454int help_main(int argc, char **argv)
455{
456 FUNCTION *fp;
457 int i, nl;
458 FUNC_TYPE tp;
459 char *prog;
f3b3d7f0 460 HELP_CHOICE o;
296cbb57 461 DISPLAY_COLUMNS dc;
7e1b7485
RS
462
463 prog = opt_init(argc, argv, help_options);
f3b3d7f0 464 while ((o = opt_next()) != OPT_hEOF) {
7e1b7485 465 switch (o) {
f3b3d7f0
RS
466 case OPT_hERR:
467 case OPT_hEOF:
7e1b7485
RS
468 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
469 return 1;
f3b3d7f0 470 case OPT_hHELP:
7e1b7485
RS
471 opt_help(help_options);
472 return 0;
473 }
474 }
7e1b7485 475
da6be198
RL
476 if (opt_num_rest() == 1) {
477 char *new_argv[3];
478
479 new_argv[0] = opt_rest()[0];
480 new_argv[1] = "--help";
481 new_argv[2] = NULL;
482 return do_cmd(prog_init(), 2, new_argv);
483 }
5d94e5b6 484 if (opt_num_rest() != 0) {
7e1b7485
RS
485 BIO_printf(bio_err, "Usage: %s\n", prog);
486 return 1;
487 }
488
296cbb57
P
489 calculate_columns(&dc);
490 BIO_printf(bio_err, "Standard commands");
7e1b7485
RS
491 i = 0;
492 tp = FT_none;
493 for (fp = functions; fp->name != NULL; fp++) {
494 nl = 0;
296cbb57 495 if (i++ % dc.columns == 0) {
7e1b7485
RS
496 BIO_printf(bio_err, "\n");
497 nl = 1;
498 }
499 if (fp->type != tp) {
500 tp = fp->type;
501 if (!nl)
502 BIO_printf(bio_err, "\n");
503 if (tp == FT_md) {
504 i = 1;
505 BIO_printf(bio_err,
506 "\nMessage Digest commands (see the `dgst' command for more details)\n");
507 } else if (tp == FT_cipher) {
508 i = 1;
509 BIO_printf(bio_err,
510 "\nCipher commands (see the `enc' command for more details)\n");
511 }
512 }
296cbb57 513 BIO_printf(bio_err, "%-*s", dc.width, fp->name);
7e1b7485
RS
514 }
515 BIO_printf(bio_err, "\n\n");
516 return 0;
517}
8c00f4cf 518
e75138ab 519static void list_type(FUNC_TYPE ft, int one)
7e1b7485
RS
520{
521 FUNCTION *fp;
522 int i = 0;
d16a2c19 523 DISPLAY_COLUMNS dc = {0};
296cbb57
P
524
525 if (!one)
526 calculate_columns(&dc);
7e1b7485 527
e75138ab
RS
528 for (fp = functions; fp->name != NULL; fp++) {
529 if (fp->type != ft)
530 continue;
531 if (one) {
532 BIO_printf(bio_out, "%s\n", fp->name);
533 } else {
296cbb57 534 if (i % dc.columns == 0 && i > 0)
7e1b7485 535 BIO_printf(bio_out, "\n");
296cbb57
P
536 BIO_printf(bio_out, "%-*s", dc.width, fp->name);
537 i++;
7e1b7485 538 }
e75138ab
RS
539 }
540 if (!one)
296cbb57 541 BIO_printf(bio_out, "\n\n");
7e1b7485 542}
fc8ee06b 543
3c1d6bbc 544static int do_cmd(LHASH_OF(FUNCTION) *prog, int argc, char *argv[])
0f113f3e
MC
545{
546 FUNCTION f, *fp;
0f113f3e 547
7e1b7485 548 if (argc <= 0 || argv[0] == NULL)
26a7d938 549 return 0;
0f113f3e
MC
550 f.name = argv[0];
551 fp = lh_FUNCTION_retrieve(prog, &f);
552 if (fp == NULL) {
553 if (EVP_get_digestbyname(argv[0])) {
7e1b7485 554 f.type = FT_md;
0f113f3e
MC
555 f.func = dgst_main;
556 fp = &f;
557 } else if (EVP_get_cipherbyname(argv[0])) {
7e1b7485 558 f.type = FT_cipher;
0f113f3e
MC
559 f.func = enc_main;
560 fp = &f;
561 }
562 }
563 if (fp != NULL) {
26a7d938 564 return fp->func(argc, argv);
7e1b7485
RS
565 }
566 if ((strncmp(argv[0], "no-", 3)) == 0) {
567 /*
568 * User is asking if foo is unsupported, by trying to "run" the
569 * no-foo command. Strange.
570 */
0f113f3e 571 f.name = argv[0] + 3;
7e1b7485
RS
572 if (lh_FUNCTION_retrieve(prog, &f) == NULL) {
573 BIO_printf(bio_out, "%s\n", argv[0]);
26a7d938 574 return 0;
0f113f3e 575 }
7e1b7485
RS
576 BIO_printf(bio_out, "%s\n", argv[0] + 3);
577 return 1;
50acf46b 578 }
7e1b7485
RS
579 if (strcmp(argv[0], "quit") == 0 || strcmp(argv[0], "q") == 0 ||
580 strcmp(argv[0], "exit") == 0 || strcmp(argv[0], "bye") == 0)
581 /* Special value to mean "exit the program. */
582 return EXIT_THE_PROGRAM;
0f113f3e 583
7e1b7485
RS
584 BIO_printf(bio_err, "Invalid command '%s'; type \"help\" for a list.\n",
585 argv[0]);
208fb891 586 return 1;
0f113f3e 587}
50acf46b 588
2f58faad 589static void list_pkey(void)
0f113f3e
MC
590{
591 int i;
7e1b7485 592
0f113f3e
MC
593 for (i = 0; i < EVP_PKEY_asn1_get_count(); i++) {
594 const EVP_PKEY_ASN1_METHOD *ameth;
595 int pkey_id, pkey_base_id, pkey_flags;
596 const char *pinfo, *pem_str;
597 ameth = EVP_PKEY_asn1_get0(i);
598 EVP_PKEY_asn1_get0_info(&pkey_id, &pkey_base_id, &pkey_flags,
599 &pinfo, &pem_str, ameth);
600 if (pkey_flags & ASN1_PKEY_ALIAS) {
7e1b7485
RS
601 BIO_printf(bio_out, "Name: %s\n", OBJ_nid2ln(pkey_id));
602 BIO_printf(bio_out, "\tAlias for: %s\n",
0f113f3e
MC
603 OBJ_nid2ln(pkey_base_id));
604 } else {
7e1b7485
RS
605 BIO_printf(bio_out, "Name: %s\n", pinfo);
606 BIO_printf(bio_out, "\tType: %s Algorithm\n",
0f113f3e
MC
607 pkey_flags & ASN1_PKEY_DYNAMIC ?
608 "External" : "Builtin");
7e1b7485 609 BIO_printf(bio_out, "\tOID: %s\n", OBJ_nid2ln(pkey_id));
0f113f3e
MC
610 if (pem_str == NULL)
611 pem_str = "(none)";
7e1b7485 612 BIO_printf(bio_out, "\tPEM string: %s\n", pem_str);
0f113f3e
MC
613 }
614
615 }
0f113f3e 616}
3c1d6bbc 617
e1631f51
DSH
618static void list_pkey_meth(void)
619{
620 size_t i;
621 size_t meth_count = EVP_PKEY_meth_get_count();
622
623 for (i = 0; i < meth_count; i++) {
624 const EVP_PKEY_METHOD *pmeth = EVP_PKEY_meth_get0(i);
625 int pkey_id, pkey_flags;
626
627 EVP_PKEY_meth_get0_info(&pkey_id, &pkey_flags, pmeth);
628 BIO_printf(bio_out, "%s\n", OBJ_nid2ln(pkey_id));
629 BIO_printf(bio_out, "\tType: %s Algorithm\n",
630 pkey_flags & ASN1_PKEY_DYNAMIC ? "External" : "Builtin");
631 }
632}
633
0f113f3e
MC
634static int function_cmp(const FUNCTION * a, const FUNCTION * b)
635{
636 return strncmp(a->name, b->name, 8);
637}
50acf46b 638
0f113f3e
MC
639static unsigned long function_hash(const FUNCTION * a)
640{
739a1eb1 641 return OPENSSL_LH_strhash(a->name);
0f113f3e 642}
d02b48c6 643
7e1b7485
RS
644static int SortFnByName(const void *_f1, const void *_f2)
645{
646 const FUNCTION *f1 = _f1;
647 const FUNCTION *f2 = _f2;
648
649 if (f1->type != f2->type)
650 return f1->type - f2->type;
651 return strcmp(f1->name, f2->name);
652}
653
a760a380
DSH
654static void list_disabled(void)
655{
d230bd1d 656 BIO_puts(bio_out, "Disabled algorithms:\n");
d42d0a4d
P
657#ifdef OPENSSL_NO_ARIA
658 BIO_puts(bio_out, "ARIA\n");
659#endif
27dae1b0
RL
660#ifdef OPENSSL_NO_BF
661 BIO_puts(bio_out, "BF\n");
662#endif
487d3a72 663#ifdef OPENSSL_NO_BLAKE2
2d0b4412
BC
664 BIO_puts(bio_out, "BLAKE2\n");
665#endif
27dae1b0
RL
666#ifdef OPENSSL_NO_CAMELLIA
667 BIO_puts(bio_out, "CAMELLIA\n");
668#endif
669#ifdef OPENSSL_NO_CAST
670 BIO_puts(bio_out, "CAST\n");
671#endif
56c1ef05
RL
672#ifdef OPENSSL_NO_CMAC
673 BIO_puts(bio_out, "CMAC\n");
674#endif
27dae1b0
RL
675#ifdef OPENSSL_NO_CMS
676 BIO_puts(bio_out, "CMS\n");
677#endif
66b14bab
RL
678#ifdef OPENSSL_NO_COMP
679 BIO_puts(bio_out, "COMP\n");
680#endif
27dae1b0
RL
681#ifdef OPENSSL_NO_DES
682 BIO_puts(bio_out, "DES\n");
683#endif
2df84dd3
RL
684#ifdef OPENSSL_NO_DGRAM
685 BIO_puts(bio_out, "DGRAM\n");
686#endif
a760a380
DSH
687#ifdef OPENSSL_NO_DH
688 BIO_puts(bio_out, "DH\n");
689#endif
690#ifdef OPENSSL_NO_DSA
691 BIO_puts(bio_out, "DSA\n");
692#endif
a5ecdc6a
KR
693#if defined(OPENSSL_NO_DTLS)
694 BIO_puts(bio_out, "DTLS\n");
66b14bab 695#endif
6b01bed2
VD
696#if defined(OPENSSL_NO_DTLS1)
697 BIO_puts(bio_out, "DTLS1\n");
698#endif
699#if defined(OPENSSL_NO_DTLS1_2)
700 BIO_puts(bio_out, "DTLS1_2\n");
701#endif
a760a380
DSH
702#ifdef OPENSSL_NO_EC
703 BIO_puts(bio_out, "EC\n");
704#endif
705#ifdef OPENSSL_NO_EC2M
706 BIO_puts(bio_out, "EC2M\n");
707#endif
27dae1b0
RL
708#ifdef OPENSSL_NO_ENGINE
709 BIO_puts(bio_out, "ENGINE\n");
710#endif
2df84dd3
RL
711#ifdef OPENSSL_NO_GOST
712 BIO_puts(bio_out, "GOST\n");
713#endif
b612799a
RL
714#ifdef OPENSSL_NO_HEARTBEATS
715 BIO_puts(bio_out, "HEARTBEATS\n");
716#endif
27dae1b0
RL
717#ifdef OPENSSL_NO_IDEA
718 BIO_puts(bio_out, "IDEA\n");
719#endif
720#ifdef OPENSSL_NO_MD2
721 BIO_puts(bio_out, "MD2\n");
722#endif
723#ifdef OPENSSL_NO_MD4
724 BIO_puts(bio_out, "MD4\n");
725#endif
726#ifdef OPENSSL_NO_MD5
727 BIO_puts(bio_out, "MD5\n");
728#endif
729#ifdef OPENSSL_NO_MDC2
730 BIO_puts(bio_out, "MDC2\n");
731#endif
2df84dd3
RL
732#ifdef OPENSSL_NO_OCB
733 BIO_puts(bio_out, "OCB\n");
734#endif
27dae1b0
RL
735#ifdef OPENSSL_NO_OCSP
736 BIO_puts(bio_out, "OCSP\n");
737#endif
a760a380
DSH
738#ifdef OPENSSL_NO_PSK
739 BIO_puts(bio_out, "PSK\n");
740#endif
27dae1b0
RL
741#ifdef OPENSSL_NO_RC2
742 BIO_puts(bio_out, "RC2\n");
743#endif
744#ifdef OPENSSL_NO_RC4
745 BIO_puts(bio_out, "RC4\n");
746#endif
747#ifdef OPENSSL_NO_RC5
748 BIO_puts(bio_out, "RC5\n");
749#endif
750#ifdef OPENSSL_NO_RMD160
751 BIO_puts(bio_out, "RMD160\n");
752#endif
d230bd1d
RL
753#ifdef OPENSSL_NO_RSA
754 BIO_puts(bio_out, "RSA\n");
755#endif
66b14bab
RL
756#ifdef OPENSSL_NO_SCRYPT
757 BIO_puts(bio_out, "SCRYPT\n");
758#endif
2df84dd3
RL
759#ifdef OPENSSL_NO_SCTP
760 BIO_puts(bio_out, "SCTP\n");
761#endif
27dae1b0
RL
762#ifdef OPENSSL_NO_SEED
763 BIO_puts(bio_out, "SEED\n");
764#endif
3d328a44
JL
765#ifdef OPENSSL_NO_SM2
766 BIO_puts(bio_out, "SM2\n");
767#endif
14e06391
P
768#ifdef OPENSSL_NO_SM3
769 BIO_puts(bio_out, "SM3\n");
770#endif
771#ifdef OPENSSL_NO_SM4
772 BIO_puts(bio_out, "SM4\n");
773#endif
27dae1b0
RL
774#ifdef OPENSSL_NO_SOCK
775 BIO_puts(bio_out, "SOCK\n");
776#endif
a760a380
DSH
777#ifdef OPENSSL_NO_SRP
778 BIO_puts(bio_out, "SRP\n");
779#endif
66b14bab
RL
780#ifdef OPENSSL_NO_SRTP
781 BIO_puts(bio_out, "SRTP\n");
782#endif
783#ifdef OPENSSL_NO_SSL3
784 BIO_puts(bio_out, "SSL3\n");
785#endif
6b01bed2
VD
786#ifdef OPENSSL_NO_TLS1
787 BIO_puts(bio_out, "TLS1\n");
788#endif
789#ifdef OPENSSL_NO_TLS1_1
790 BIO_puts(bio_out, "TLS1_1\n");
791#endif
792#ifdef OPENSSL_NO_TLS1_2
793 BIO_puts(bio_out, "TLS1_2\n");
794#endif
27dae1b0
RL
795#ifdef OPENSSL_NO_WHIRLPOOL
796 BIO_puts(bio_out, "WHIRLPOOL\n");
797#endif
d230bd1d
RL
798#ifndef ZLIB
799 BIO_puts(bio_out, "ZLIB\n");
800#endif
a760a380
DSH
801}
802
0f113f3e
MC
803static LHASH_OF(FUNCTION) *prog_init(void)
804{
391e987e
RL
805 static LHASH_OF(FUNCTION) *ret = NULL;
806 static int prog_inited = 0;
0f113f3e
MC
807 FUNCTION *f;
808 size_t i;
809
391e987e
RL
810 if (prog_inited)
811 return ret;
812
813 prog_inited = 1;
814
7e1b7485 815 /* Sort alphabetically within category. For nicer help displays. */
391e987e
RL
816 for (i = 0, f = functions; f->name != NULL; ++f, ++i)
817 ;
b4faea50 818 qsort(functions, i, sizeof(*functions), SortFnByName);
0f113f3e 819
62d0577e 820 if ((ret = lh_FUNCTION_new(function_hash, function_cmp)) == NULL)
26a7d938 821 return NULL;
0f113f3e
MC
822
823 for (f = functions; f->name != NULL; f++)
824 (void)lh_FUNCTION_insert(ret, f);
296cbb57 825 return ret;
0f113f3e 826}