]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/errstr.c
Document how the configuration option 'reconf' works
[thirdparty/openssl.git] / apps / errstr.c
CommitLineData
846e33c7 1/*
2234212c 2 * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 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
d02b48c6
RE
8 */
9
10#include <stdio.h>
11#include <stdlib.h>
12#include <string.h>
13#include "apps.h"
ec577822 14#include <openssl/bio.h>
ec577822
BM
15#include <openssl/err.h>
16#include <openssl/ssl.h>
d02b48c6 17
7e1b7485 18typedef enum OPTION_choice {
412c8507 19 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP
7e1b7485 20} OPTION_CHOICE;
d02b48c6 21
44c83ebd 22const OPTIONS errstr_options[] = {
7e1b7485
RS
23 {OPT_HELP_STR, 1, '-', "Usage: %s [options] errnum...\n"},
24 {OPT_HELP_STR, 1, '-', " errnum Error number\n"},
25 {"help", OPT_HELP, '-', "Display this summary"},
7e1b7485
RS
26 {NULL}
27};
667ac4ec 28
7e1b7485 29int errstr_main(int argc, char **argv)
0f113f3e 30{
7e1b7485
RS
31 OPTION_CHOICE o;
32 char buf[256], *prog;
33 int ret = 1;
0f113f3e 34 unsigned long l;
d02b48c6 35
7e1b7485
RS
36 prog = opt_init(argc, argv, errstr_options);
37 while ((o = opt_next()) != OPT_EOF) {
38 switch (o) {
39 case OPT_EOF:
40 case OPT_ERR:
41 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
42 goto end;
43 case OPT_HELP:
44 opt_help(errstr_options);
45 ret = 0;
46 goto end;
0f113f3e 47 }
0f113f3e 48 }
d02b48c6 49
7e1b7485
RS
50 ret = 0;
51 for (argv = opt_rest(); *argv; argv++) {
2234212c 52 if (sscanf(*argv, "%lx", &l) == 0) {
0f113f3e 53 ret++;
2234212c 54 } else {
302f7588
MC
55 /* We're not really an SSL application so this won't auto-init, but
56 * we're still interested in SSL error strings
57 */
58 OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS
59 | OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
7e1b7485
RS
60 ERR_error_string_n(l, buf, sizeof buf);
61 BIO_printf(bio_out, "%s\n", buf);
0f113f3e
MC
62 }
63 }
7e1b7485 64 end:
26a7d938 65 return ret;
0f113f3e 66}