Deprecate most of debug-memory
[oweals/openssl.git] / apps / openssl.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 <internal/cryptlib.h>
11 #include <stdio.h>
12 #include <string.h>
13 #include <stdlib.h>
14 #include <openssl/bio.h>
15 #include <openssl/crypto.h>
16 #include <openssl/trace.h>
17 #include <openssl/lhash.h>
18 #include <openssl/conf.h>
19 #include <openssl/x509.h>
20 #include <openssl/pem.h>
21 #include <openssl/ssl.h>
22 #ifndef OPENSSL_NO_ENGINE
23 # include <openssl/engine.h>
24 #endif
25 #include <openssl/err.h>
26 /* Needed to get the other O_xxx flags. */
27 #ifdef OPENSSL_SYS_VMS
28 # include <unixio.h>
29 #endif
30 #include "apps.h"
31 #include "progs.h"
32
33 /* Special sentinel to exit the program. */
34 #define EXIT_THE_PROGRAM (-1)
35
36 /*
37  * The LHASH callbacks ("hash" & "cmp") have been replaced by functions with
38  * the base prototypes (we cast each variable inside the function to the
39  * required type of "FUNCTION*"). This removes the necessity for
40  * macro-generated wrapper functions.
41  */
42 static LHASH_OF(FUNCTION) *prog_init(void);
43 static int do_cmd(LHASH_OF(FUNCTION) *prog, int argc, char *argv[]);
44 char *default_config_file = NULL;
45
46 BIO *bio_in = NULL;
47 BIO *bio_out = NULL;
48 BIO *bio_err = NULL;
49
50 static int apps_startup(void)
51 {
52 #ifdef SIGPIPE
53     signal(SIGPIPE, SIG_IGN);
54 #endif
55
56     /* Set non-default library initialisation settings */
57     if (!OPENSSL_init_ssl(OPENSSL_INIT_ENGINE_ALL_BUILTIN
58                           | OPENSSL_INIT_LOAD_CONFIG, NULL))
59         return 0;
60
61     setup_ui_method();
62
63     return 1;
64 }
65
66 static void apps_shutdown(void)
67 {
68     destroy_ui_method();
69 }
70
71 static char *make_config_name(void)
72 {
73     const char *t;
74     size_t len;
75     char *p;
76
77     if ((t = getenv("OPENSSL_CONF")) != NULL)
78         return OPENSSL_strdup(t);
79
80     t = X509_get_default_cert_area();
81     len = strlen(t) + 1 + strlen(OPENSSL_CONF) + 1;
82     p = app_malloc(len, "config filename buffer");
83     strcpy(p, t);
84 #ifndef OPENSSL_SYS_VMS
85     strcat(p, "/");
86 #endif
87     strcat(p, OPENSSL_CONF);
88
89     return p;
90 }
91
92
93 #ifndef OPENSSL_NO_TRACE
94 typedef struct tracedata_st {
95     BIO *bio;
96     unsigned int ingroup:1;
97 } tracedata;
98
99 static size_t internal_trace_cb(const char *buf, size_t cnt,
100                                 int category, int cmd, void *vdata)
101 {
102     int ret = 0;
103     tracedata *trace_data = vdata;
104     char buffer[256], *hex;
105     CRYPTO_THREAD_ID tid;
106
107     switch (cmd) {
108     case OSSL_TRACE_CTRL_BEGIN:
109         if (!ossl_assert(!trace_data->ingroup))
110             return 0;
111         trace_data->ingroup = 1;
112
113         tid = CRYPTO_THREAD_get_current_id();
114         hex = OPENSSL_buf2hexstr((const unsigned char *)&tid, sizeof(tid));
115         BIO_snprintf(buffer, sizeof(buffer), "TRACE[%s]:%s: ",
116                      hex == NULL ? "<null>" : hex,
117                      OSSL_trace_get_category_name(category));
118         OPENSSL_free(hex);
119         BIO_ctrl(trace_data->bio, PREFIX_CTRL_SET_PREFIX,
120                  strlen(buffer), buffer);
121         break;
122     case OSSL_TRACE_CTRL_WRITE:
123         if (!ossl_assert(trace_data->ingroup))
124             return 0;
125
126         ret = BIO_write(trace_data->bio, buf, cnt);
127         break;
128     case OSSL_TRACE_CTRL_END:
129         if (!ossl_assert(trace_data->ingroup))
130             return 0;
131         trace_data->ingroup = 0;
132
133         BIO_ctrl(trace_data->bio, PREFIX_CTRL_SET_PREFIX, 0, NULL);
134
135         break;
136     }
137
138     return ret < 0 ? 0 : ret;
139 }
140
141 DEFINE_STACK_OF(tracedata)
142 static STACK_OF(tracedata) *trace_data_stack;
143
144 static void tracedata_free(tracedata *data)
145 {
146     BIO_free_all(data->bio);
147     OPENSSL_free(data);
148 }
149
150 static STACK_OF(tracedata) *trace_data_stack;
151
152 static void cleanup_trace(void)
153 {
154     sk_tracedata_pop_free(trace_data_stack, tracedata_free);
155 }
156
157 static void setup_trace_category(int category)
158 {
159     BIO *channel;
160     tracedata *trace_data;
161
162     if (OSSL_trace_enabled(category))
163         return;
164
165     channel = BIO_push(BIO_new(apps_bf_prefix()),
166                        dup_bio_err(FORMAT_TEXT));
167     trace_data = OPENSSL_zalloc(sizeof(*trace_data));
168
169     if (trace_data == NULL
170         || (trace_data->bio = channel) == NULL
171         || OSSL_trace_set_callback(category, internal_trace_cb,
172                                    trace_data) == 0
173         || sk_tracedata_push(trace_data_stack, trace_data) == 0) {
174
175         fprintf(stderr,
176                 "warning: unable to setup trace callback for category '%s'.\n",
177                 OSSL_trace_get_category_name(category));
178
179         OSSL_trace_set_callback(category, NULL, NULL);
180         BIO_free_all(channel);
181     }
182 }
183
184 static void setup_trace(const char *str)
185 {
186     char *val;
187
188     /*
189      * We add this handler as early as possible to ensure it's executed
190      * as late as possible, i.e. after the TRACE code has done its cleanup
191      * (which happens last in OPENSSL_cleanup).
192      */
193     atexit(cleanup_trace);
194
195     trace_data_stack = sk_tracedata_new_null();
196     val = OPENSSL_strdup(str);
197
198     if (val != NULL) {
199         char *valp = val;
200         char *item;
201
202         for (valp = val; (item = strtok(valp, ",")) != NULL; valp = NULL) {
203             int category = OSSL_trace_get_category_num(item);
204
205             if (category == OSSL_TRACE_CATEGORY_ALL) {
206                 while (++category < OSSL_TRACE_CATEGORY_NUM)
207                     setup_trace_category(category);
208                 break;
209             } else if (category > 0) {
210                 setup_trace_category(category);
211             } else {
212                 fprintf(stderr,
213                         "warning: unknown trace category: '%s'.\n", item);
214             }
215         }
216     }
217
218     OPENSSL_free(val);
219 }
220 #endif /* OPENSSL_NO_TRACE */
221
222 int main(int argc, char *argv[])
223 {
224     FUNCTION f, *fp;
225     LHASH_OF(FUNCTION) *prog = NULL;
226     char *p, *pname;
227     char buf[1024];
228     const char *prompt;
229     ARGS arg;
230     int first, n, i, ret = 0;
231
232     arg.argv = NULL;
233     arg.size = 0;
234
235     /* Set up some of the environment. */
236     default_config_file = make_config_name();
237     bio_in = dup_bio_in(FORMAT_TEXT);
238     bio_out = dup_bio_out(FORMAT_TEXT);
239     bio_err = dup_bio_err(FORMAT_TEXT);
240
241 #if defined(OPENSSL_SYS_VMS) && defined(__DECC)
242     argv = copy_argv(&argc, argv);
243 #elif defined(_WIN32)
244     /*
245      * Replace argv[] with UTF-8 encoded strings.
246      */
247     win32_utf8argv(&argc, &argv);
248 #endif
249
250     /*
251      * We use the prefix method to get the trace output we want.  Since some
252      * trace outputs happen with OPENSSL_cleanup(), which is run automatically
253      * after exit(), we need to destroy the prefix method as late as possible.
254      */
255     atexit(destroy_prefix_method);
256
257 #ifndef OPENSSL_NO_TRACE
258     setup_trace(getenv("OPENSSL_TRACE"));
259 #endif
260
261     if (getenv("OPENSSL_FIPS")) {
262         BIO_printf(bio_err, "FIPS mode not supported.\n");
263         return 1;
264     }
265
266     if (!apps_startup()) {
267         BIO_printf(bio_err,
268                    "FATAL: Startup failure (dev note: apps_startup() failed)\n");
269         ERR_print_errors(bio_err);
270         ret = 1;
271         goto end;
272     }
273
274     prog = prog_init();
275     if (prog == NULL) {
276         BIO_printf(bio_err,
277                    "FATAL: Startup failure (dev note: prog_init() failed)\n");
278         ERR_print_errors(bio_err);
279         ret = 1;
280         goto end;
281     }
282     pname = opt_progname(argv[0]);
283
284     /* first check the program name */
285     f.name = pname;
286     fp = lh_FUNCTION_retrieve(prog, &f);
287     if (fp != NULL) {
288         argv[0] = pname;
289         ret = fp->func(argc, argv);
290         goto end;
291     }
292
293     /* If there is stuff on the command line, run with that. */
294     if (argc != 1) {
295         argc--;
296         argv++;
297         ret = do_cmd(prog, argc, argv);
298         if (ret < 0)
299             ret = 0;
300         goto end;
301     }
302
303     /* ok, lets enter interactive mode */
304     for (;;) {
305         ret = 0;
306         /* Read a line, continue reading if line ends with \ */
307         for (p = buf, n = sizeof(buf), i = 0, first = 1; n > 0; first = 0) {
308             prompt = first ? "OpenSSL> " : "> ";
309             p[0] = '\0';
310 #ifndef READLINE
311             fputs(prompt, stdout);
312             fflush(stdout);
313             if (!fgets(p, n, stdin))
314                 goto end;
315             if (p[0] == '\0')
316                 goto end;
317             i = strlen(p);
318             if (i <= 1)
319                 break;
320             if (p[i - 2] != '\\')
321                 break;
322             i -= 2;
323             p += i;
324             n -= i;
325 #else
326             {
327                 extern char *readline(const char *);
328                 extern void add_history(const char *cp);
329                 char *text;
330
331                 text = readline(prompt);
332                 if (text == NULL)
333                     goto end;
334                 i = strlen(text);
335                 if (i == 0 || i > n)
336                     break;
337                 if (text[i - 1] != '\\') {
338                     p += strlen(strcpy(p, text));
339                     free(text);
340                     add_history(buf);
341                     break;
342                 }
343
344                 text[i - 1] = '\0';
345                 p += strlen(strcpy(p, text));
346                 free(text);
347                 n -= i;
348             }
349 #endif
350         }
351
352         if (!chopup_args(&arg, buf)) {
353             BIO_printf(bio_err, "Can't parse (no memory?)\n");
354             break;
355         }
356
357         ret = do_cmd(prog, arg.argc, arg.argv);
358         if (ret == EXIT_THE_PROGRAM) {
359             ret = 0;
360             goto end;
361         }
362         if (ret != 0)
363             BIO_printf(bio_err, "error in %s\n", arg.argv[0]);
364         (void)BIO_flush(bio_out);
365         (void)BIO_flush(bio_err);
366     }
367     ret = 1;
368  end:
369     OPENSSL_free(default_config_file);
370     lh_FUNCTION_free(prog);
371     OPENSSL_free(arg.argv);
372     app_RAND_write();
373
374     BIO_free(bio_in);
375     BIO_free_all(bio_out);
376     apps_shutdown();
377     BIO_free(bio_err);
378     EXIT(ret);
379 }
380
381 typedef enum HELP_CHOICE {
382     OPT_hERR = -1, OPT_hEOF = 0, OPT_hHELP
383 } HELP_CHOICE;
384
385 const OPTIONS help_options[] = {
386     {OPT_HELP_STR, 1, '-', "Usage: help [options] [command]\n"},
387
388     OPT_SECTION("General"),
389     {"help", OPT_hHELP, '-', "Display this summary"},
390
391     OPT_PARAMETERS(),
392     {"command", 0, 0, "Name of command to display help (optional)"},
393     {NULL}
394 };
395
396
397 int help_main(int argc, char **argv)
398 {
399     FUNCTION *fp;
400     int i, nl;
401     FUNC_TYPE tp;
402     char *prog;
403     HELP_CHOICE o;
404     DISPLAY_COLUMNS dc;
405
406     prog = opt_init(argc, argv, help_options);
407     while ((o = opt_next()) != OPT_hEOF) {
408         switch (o) {
409         case OPT_hERR:
410         case OPT_hEOF:
411             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
412             return 1;
413         case OPT_hHELP:
414             opt_help(help_options);
415             return 0;
416         }
417     }
418
419     if (opt_num_rest() == 1) {
420         char *new_argv[3];
421
422         new_argv[0] = opt_rest()[0];
423         new_argv[1] = "--help";
424         new_argv[2] = NULL;
425         return do_cmd(prog_init(), 2, new_argv);
426     }
427     if (opt_num_rest() != 0) {
428         BIO_printf(bio_err, "Usage: %s\n", prog);
429         return 1;
430     }
431
432     calculate_columns(functions, &dc);
433     BIO_printf(bio_err, "Standard commands");
434     i = 0;
435     tp = FT_none;
436     for (fp = functions; fp->name != NULL; fp++) {
437         nl = 0;
438         if (i++ % dc.columns == 0) {
439             BIO_printf(bio_err, "\n");
440             nl = 1;
441         }
442         if (fp->type != tp) {
443             tp = fp->type;
444             if (!nl)
445                 BIO_printf(bio_err, "\n");
446             if (tp == FT_md) {
447                 i = 1;
448                 BIO_printf(bio_err,
449                            "\nMessage Digest commands (see the `dgst' command for more details)\n");
450             } else if (tp == FT_cipher) {
451                 i = 1;
452                 BIO_printf(bio_err,
453                            "\nCipher commands (see the `enc' command for more details)\n");
454             }
455         }
456         BIO_printf(bio_err, "%-*s", dc.width, fp->name);
457     }
458     BIO_printf(bio_err, "\n\n");
459     return 0;
460 }
461
462 static int do_cmd(LHASH_OF(FUNCTION) *prog, int argc, char *argv[])
463 {
464     FUNCTION f, *fp;
465
466     if (argc <= 0 || argv[0] == NULL)
467         return 0;
468     f.name = argv[0];
469     fp = lh_FUNCTION_retrieve(prog, &f);
470     if (fp == NULL) {
471         if (EVP_get_digestbyname(argv[0])) {
472             f.type = FT_md;
473             f.func = dgst_main;
474             fp = &f;
475         } else if (EVP_get_cipherbyname(argv[0])) {
476             f.type = FT_cipher;
477             f.func = enc_main;
478             fp = &f;
479         }
480     }
481     if (fp != NULL) {
482         return fp->func(argc, argv);
483     }
484     if ((strncmp(argv[0], "no-", 3)) == 0) {
485         /*
486          * User is asking if foo is unsupported, by trying to "run" the
487          * no-foo command.  Strange.
488          */
489         f.name = argv[0] + 3;
490         if (lh_FUNCTION_retrieve(prog, &f) == NULL) {
491             BIO_printf(bio_out, "%s\n", argv[0]);
492             return 0;
493         }
494         BIO_printf(bio_out, "%s\n", argv[0] + 3);
495         return 1;
496     }
497     if (strcmp(argv[0], "quit") == 0 || strcmp(argv[0], "q") == 0 ||
498         strcmp(argv[0], "exit") == 0 || strcmp(argv[0], "bye") == 0)
499         /* Special value to mean "exit the program. */
500         return EXIT_THE_PROGRAM;
501
502     BIO_printf(bio_err, "Invalid command '%s'; type \"help\" for a list.\n",
503                argv[0]);
504     return 1;
505 }
506
507 static int function_cmp(const FUNCTION * a, const FUNCTION * b)
508 {
509     return strncmp(a->name, b->name, 8);
510 }
511
512 static unsigned long function_hash(const FUNCTION * a)
513 {
514     return OPENSSL_LH_strhash(a->name);
515 }
516
517 static int SortFnByName(const void *_f1, const void *_f2)
518 {
519     const FUNCTION *f1 = _f1;
520     const FUNCTION *f2 = _f2;
521
522     if (f1->type != f2->type)
523         return f1->type - f2->type;
524     return strcmp(f1->name, f2->name);
525 }
526
527 static LHASH_OF(FUNCTION) *prog_init(void)
528 {
529     static LHASH_OF(FUNCTION) *ret = NULL;
530     static int prog_inited = 0;
531     FUNCTION *f;
532     size_t i;
533
534     if (prog_inited)
535         return ret;
536
537     prog_inited = 1;
538
539     /* Sort alphabetically within category. For nicer help displays. */
540     for (i = 0, f = functions; f->name != NULL; ++f, ++i)
541         ;
542     qsort(functions, i, sizeof(*functions), SortFnByName);
543
544     if ((ret = lh_FUNCTION_new(function_hash, function_cmp)) == NULL)
545         return NULL;
546
547     for (f = functions; f->name != NULL; f++)
548         (void)lh_FUNCTION_insert(ret, f);
549     return ret;
550 }