Add PKEY_CTX setter tests for TLS1-PRF
[openssl.git] / apps / version.c
1 /*
2  * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
3  *
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
8  */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include "apps.h"
14 #include <openssl/evp.h>
15 #include <openssl/crypto.h>
16 #include <openssl/bn.h>
17 #ifndef OPENSSL_NO_MD2
18 # include <openssl/md2.h>
19 #endif
20 #ifndef OPENSSL_NO_RC4
21 # include <openssl/rc4.h>
22 #endif
23 #ifndef OPENSSL_NO_DES
24 # include <openssl/des.h>
25 #endif
26 #ifndef OPENSSL_NO_IDEA
27 # include <openssl/idea.h>
28 #endif
29 #ifndef OPENSSL_NO_BF
30 # include <openssl/blowfish.h>
31 #endif
32
33 typedef enum OPTION_choice {
34     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
35     OPT_B, OPT_D, OPT_E, OPT_F, OPT_O, OPT_P, OPT_V, OPT_A, OPT_R
36 } OPTION_CHOICE;
37
38 const OPTIONS version_options[] = {
39     {"help", OPT_HELP, '-', "Display this summary"},
40     {"a", OPT_A, '-', "Show all data"},
41     {"b", OPT_B, '-', "Show build date"},
42     {"d", OPT_D, '-', "Show configuration directory"},
43     {"e", OPT_E, '-', "Show engines directory"},
44     {"f", OPT_F, '-', "Show compiler flags used"},
45     {"o", OPT_O, '-', "Show some internal datatype options"},
46     {"p", OPT_P, '-', "Show target build platform"},
47     {"r", OPT_R, '-', "Show random seeding options"},
48     {"v", OPT_V, '-', "Show library version"},
49     {NULL}
50 };
51
52 #if defined(OPENSSL_RAND_SEED_DEVRANDOM) || defined(OPENSSL_RAND_SEED_EGD)
53 static void printlist(const char *prefix, const char **dev)
54 {
55     printf("%s (", prefix);
56     for ( ; *dev != NULL; dev++)
57         printf(" \"%s\"", *dev);
58     printf(" )");
59 }
60 #endif
61
62 int version_main(int argc, char **argv)
63 {
64     int ret = 1, dirty = 0, seed = 0;
65     int cflags = 0, version = 0, date = 0, options = 0, platform = 0, dir = 0;
66     int engdir = 0;
67     char *prog;
68     OPTION_CHOICE o;
69
70     prog = opt_init(argc, argv, version_options);
71     while ((o = opt_next()) != OPT_EOF) {
72         switch (o) {
73         case OPT_EOF:
74         case OPT_ERR:
75             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
76             goto end;
77         case OPT_HELP:
78             opt_help(version_options);
79             ret = 0;
80             goto end;
81         case OPT_B:
82             dirty = date = 1;
83             break;
84         case OPT_D:
85             dirty = dir = 1;
86             break;
87         case OPT_E:
88             dirty = engdir = 1;
89             break;
90         case OPT_F:
91             dirty = cflags = 1;
92             break;
93         case OPT_O:
94             dirty = options = 1;
95             break;
96         case OPT_P:
97             dirty = platform = 1;
98             break;
99         case OPT_R:
100             dirty = seed = 1;
101             break;
102         case OPT_V:
103             dirty = version = 1;
104             break;
105         case OPT_A:
106             seed = cflags = version = date = platform = dir = engdir = 1;
107             break;
108         }
109     }
110     if (!dirty)
111         version = 1;
112
113     if (version) {
114         if (OpenSSL_version_num() == OPENSSL_VERSION_NUMBER)
115             printf("%s\n", OpenSSL_version(OPENSSL_VERSION));
116         else
117             printf("%s (Library: %s)\n",
118                    OPENSSL_VERSION_TEXT, OpenSSL_version(OPENSSL_VERSION));
119     }
120     if (date)
121         printf("%s\n", OpenSSL_version(OPENSSL_BUILT_ON));
122     if (platform)
123         printf("%s\n", OpenSSL_version(OPENSSL_PLATFORM));
124     if (options) {
125         printf("options:  ");
126         printf("%s ", BN_options());
127 #ifndef OPENSSL_NO_MD2
128         printf("%s ", MD2_options());
129 #endif
130 #ifndef OPENSSL_NO_RC4
131         printf("%s ", RC4_options());
132 #endif
133 #ifndef OPENSSL_NO_DES
134         printf("%s ", DES_options());
135 #endif
136 #ifndef OPENSSL_NO_IDEA
137         printf("%s ", IDEA_options());
138 #endif
139 #ifndef OPENSSL_NO_BF
140         printf("%s ", BF_options());
141 #endif
142         printf("\n");
143     }
144     if (cflags)
145         printf("%s\n", OpenSSL_version(OPENSSL_CFLAGS));
146     if (dir)
147         printf("%s\n", OpenSSL_version(OPENSSL_DIR));
148     if (engdir)
149         printf("%s\n", OpenSSL_version(OPENSSL_ENGINES_DIR));
150     if (seed) {
151         printf("Seeding source:");
152 #ifdef OPENSSL_RAND_SEED_RTDSC
153         printf(" rtdsc");
154 #endif
155 #ifdef OPENSSL_RAND_SEED_RDCPU
156         printf(" rdrand ( rdseed rdrand )");
157 #endif
158 #ifdef OPENSSL_RAND_SEED_LIBRANDOM
159         printf(" C-library-random");
160 #endif
161 #ifdef OPENSSL_RAND_SEED_GETRANDOM
162         printf(" getrandom-syscall");
163 #endif
164 #ifdef OPENSSL_RAND_SEED_DEVRANDOM
165         {
166             static const char *dev[] = { DEVRANDOM, NULL };
167             printlist(" random-device", dev);
168         }
169 #endif
170 #ifdef OPENSSL_RAND_SEED_EGD
171         {
172             static const char *dev[] = { DEVRANDOM_EGD, NULL };
173             printlist(" EGD", dev);
174         }
175 #endif
176 #ifdef OPENSSL_RAND_SEED_NONE
177         printf(" none");
178 #endif
179 #ifdef OPENSSL_RAND_SEED_OS
180         printf(" os-specific");
181 #endif
182         printf("\n");
183     }
184     ret = 0;
185  end:
186     return (ret);
187 }