Branch data Line data Source code
1 : : /* apps/openssl.c */
2 : : /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 : : * All rights reserved.
4 : : *
5 : : * This package is an SSL implementation written
6 : : * by Eric Young (eay@cryptsoft.com).
7 : : * The implementation was written so as to conform with Netscapes SSL.
8 : : *
9 : : * This library is free for commercial and non-commercial use as long as
10 : : * the following conditions are aheared to. The following conditions
11 : : * apply to all code found in this distribution, be it the RC4, RSA,
12 : : * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 : : * included with this distribution is covered by the same copyright terms
14 : : * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 : : *
16 : : * Copyright remains Eric Young's, and as such any Copyright notices in
17 : : * the code are not to be removed.
18 : : * If this package is used in a product, Eric Young should be given attribution
19 : : * as the author of the parts of the library used.
20 : : * This can be in the form of a textual message at program startup or
21 : : * in documentation (online or textual) provided with the package.
22 : : *
23 : : * Redistribution and use in source and binary forms, with or without
24 : : * modification, are permitted provided that the following conditions
25 : : * are met:
26 : : * 1. Redistributions of source code must retain the copyright
27 : : * notice, this list of conditions and the following disclaimer.
28 : : * 2. Redistributions in binary form must reproduce the above copyright
29 : : * notice, this list of conditions and the following disclaimer in the
30 : : * documentation and/or other materials provided with the distribution.
31 : : * 3. All advertising materials mentioning features or use of this software
32 : : * must display the following acknowledgement:
33 : : * "This product includes cryptographic software written by
34 : : * Eric Young (eay@cryptsoft.com)"
35 : : * The word 'cryptographic' can be left out if the rouines from the library
36 : : * being used are not cryptographic related :-).
37 : : * 4. If you include any Windows specific code (or a derivative thereof) from
38 : : * the apps directory (application code) you must include an acknowledgement:
39 : : * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 : : *
41 : : * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 : : * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 : : * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 : : * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 : : * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 : : * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 : : * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 : : * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 : : * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 : : * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 : : * SUCH DAMAGE.
52 : : *
53 : : * The licence and distribution terms for any publically available version or
54 : : * derivative of this code cannot be changed. i.e. this code cannot simply be
55 : : * copied and put under another distribution licence
56 : : * [including the GNU Public Licence.]
57 : : */
58 : : /* ====================================================================
59 : : * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
60 : : *
61 : : * Redistribution and use in source and binary forms, with or without
62 : : * modification, are permitted provided that the following conditions
63 : : * are met:
64 : : *
65 : : * 1. Redistributions of source code must retain the above copyright
66 : : * notice, this list of conditions and the following disclaimer.
67 : : *
68 : : * 2. Redistributions in binary form must reproduce the above copyright
69 : : * notice, this list of conditions and the following disclaimer in
70 : : * the documentation and/or other materials provided with the
71 : : * distribution.
72 : : *
73 : : * 3. All advertising materials mentioning features or use of this
74 : : * software must display the following acknowledgment:
75 : : * "This product includes software developed by the OpenSSL Project
76 : : * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77 : : *
78 : : * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79 : : * endorse or promote products derived from this software without
80 : : * prior written permission. For written permission, please contact
81 : : * openssl-core@openssl.org.
82 : : *
83 : : * 5. Products derived from this software may not be called "OpenSSL"
84 : : * nor may "OpenSSL" appear in their names without prior written
85 : : * permission of the OpenSSL Project.
86 : : *
87 : : * 6. Redistributions of any form whatsoever must retain the following
88 : : * acknowledgment:
89 : : * "This product includes software developed by the OpenSSL Project
90 : : * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91 : : *
92 : : * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93 : : * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94 : : * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95 : : * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
96 : : * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97 : : * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98 : : * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99 : : * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100 : : * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101 : : * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102 : : * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103 : : * OF THE POSSIBILITY OF SUCH DAMAGE.
104 : : * ====================================================================
105 : : *
106 : : * This product includes cryptographic software written by Eric Young
107 : : * (eay@cryptsoft.com). This product includes software written by Tim
108 : : * Hudson (tjh@cryptsoft.com).
109 : : *
110 : : */
111 : :
112 : :
113 : : #include <stdio.h>
114 : : #include <string.h>
115 : : #include <stdlib.h>
116 : : #define OPENSSL_C /* tells apps.h to use complete apps_startup() */
117 : : #include "apps.h"
118 : : #include <openssl/bio.h>
119 : : #include <openssl/crypto.h>
120 : : #include <openssl/rand.h>
121 : : #include <openssl/lhash.h>
122 : : #include <openssl/conf.h>
123 : : #include <openssl/x509.h>
124 : : #include <openssl/pem.h>
125 : : #include <openssl/ssl.h>
126 : : #ifndef OPENSSL_NO_ENGINE
127 : : #include <openssl/engine.h>
128 : : #endif
129 : : #define USE_SOCKETS /* needed for the _O_BINARY defs in the MS world */
130 : : #include "progs.h"
131 : : #include "s_apps.h"
132 : : #include <openssl/err.h>
133 : : #ifdef OPENSSL_FIPS
134 : : #include <openssl/fips.h>
135 : : #endif
136 : :
137 : : /* The LHASH callbacks ("hash" & "cmp") have been replaced by functions with the
138 : : * base prototypes (we cast each variable inside the function to the required
139 : : * type of "FUNCTION*"). This removes the necessity for macro-generated wrapper
140 : : * functions. */
141 : :
142 : : static LHASH_OF(FUNCTION) *prog_init(void );
143 : : static int do_cmd(LHASH_OF(FUNCTION) *prog,int argc,char *argv[]);
144 : : static void list_pkey(BIO *out);
145 : : static void list_cipher(BIO *out);
146 : : static void list_md(BIO *out);
147 : : char *default_config_file=NULL;
148 : :
149 : : /* Make sure there is only one when MONOLITH is defined */
150 : : #ifdef MONOLITH
151 : : CONF *config=NULL;
152 : : BIO *bio_err=NULL;
153 : : #endif
154 : :
155 : :
156 : 140874230 : static void lock_dbg_cb(int mode, int type, const char *file, int line)
157 : : {
158 : : static int modes[CRYPTO_NUM_LOCKS]; /* = {0, 0, ... } */
159 : 140874230 : const char *errstr = NULL;
160 : : int rw;
161 : :
162 : 140874230 : rw = mode & (CRYPTO_READ|CRYPTO_WRITE);
163 [ + - ]: 140874230 : if (!((rw == CRYPTO_READ) || (rw == CRYPTO_WRITE)))
164 : : {
165 : : errstr = "invalid mode";
166 : : goto err;
167 : : }
168 : :
169 [ + - ]: 140874230 : if (type < 0 || type >= CRYPTO_NUM_LOCKS)
170 : : {
171 : : errstr = "type out of bounds";
172 : : goto err;
173 : : }
174 : :
175 [ + + ]: 140874230 : if (mode & CRYPTO_LOCK)
176 : : {
177 [ + - ]: 70437115 : if (modes[type])
178 : : {
179 : : errstr = "already locked";
180 : : /* must not happen in a single-threaded program
181 : : * (would deadlock) */
182 : : goto err;
183 : : }
184 : :
185 : 70437115 : modes[type] = rw;
186 : : }
187 [ + - ]: 70437115 : else if (mode & CRYPTO_UNLOCK)
188 : : {
189 [ + - ]: 70437115 : if (!modes[type])
190 : : {
191 : : errstr = "not locked";
192 : : goto err;
193 : : }
194 : :
195 [ - + ]: 70437115 : if (modes[type] != rw)
196 : : {
197 : 0 : errstr = (rw == CRYPTO_READ) ?
198 [ # # ]: 0 : "CRYPTO_r_unlock on write lock" :
199 : : "CRYPTO_w_unlock on read lock";
200 : : }
201 : :
202 : 70437115 : modes[type] = 0;
203 : : }
204 : : else
205 : : {
206 : : errstr = "invalid mode";
207 : : goto err;
208 : : }
209 : :
210 : : err:
211 [ - + ]: 140874230 : if (errstr)
212 : : {
213 : : /* we cannot use bio_err here */
214 : 0 : fprintf(stderr, "openssl (lock_dbg_cb): %s (mode=%d, type=%d) at %s:%d\n",
215 : : errstr, mode, type, file, line);
216 : : }
217 : 140874230 : }
218 : :
219 : : #if defined( OPENSSL_SYS_VMS) && (__INITIAL_POINTER_SIZE == 64)
220 : : # define ARGV _Argv
221 : : #else
222 : : # define ARGV Argv
223 : : #endif
224 : :
225 : 725 : int main(int Argc, char *ARGV[])
226 : : {
227 : : ARGS arg;
228 : : #define PROG_NAME_SIZE 39
229 : : char pname[PROG_NAME_SIZE+1];
230 : : FUNCTION f,*fp;
231 : : MS_STATIC const char *prompt;
232 : : MS_STATIC char buf[1024];
233 : 725 : char *to_free=NULL;
234 : 725 : int n,i,ret=0;
235 : : int argc;
236 : : char **argv,*p;
237 : 725 : LHASH_OF(FUNCTION) *prog=NULL;
238 : : long errline;
239 : :
240 : : #if defined( OPENSSL_SYS_VMS) && (__INITIAL_POINTER_SIZE == 64)
241 : : /* 2011-03-22 SMS.
242 : : * If we have 32-bit pointers everywhere, then we're safe, and
243 : : * we bypass this mess, as on non-VMS systems. (See ARGV,
244 : : * above.)
245 : : * Problem 1: Compaq/HP C before V7.3 always used 32-bit
246 : : * pointers for argv[].
247 : : * Fix 1: For a 32-bit argv[], when we're using 64-bit pointers
248 : : * everywhere else, we always allocate and use a 64-bit
249 : : * duplicate of argv[].
250 : : * Problem 2: Compaq/HP C V7.3 (Alpha, IA64) before ECO1 failed
251 : : * to NULL-terminate a 64-bit argv[]. (As this was written, the
252 : : * compiler ECO was available only on IA64.)
253 : : * Fix 2: Unless advised not to (VMS_TRUST_ARGV), we test a
254 : : * 64-bit argv[argc] for NULL, and, if necessary, use a
255 : : * (properly) NULL-terminated (64-bit) duplicate of argv[].
256 : : * The same code is used in either case to duplicate argv[].
257 : : * Some of these decisions could be handled in preprocessing,
258 : : * but the code tends to get even uglier, and the penalty for
259 : : * deciding at compile- or run-time is tiny.
260 : : */
261 : : char **Argv = NULL;
262 : : int free_Argv = 0;
263 : :
264 : : if ((sizeof( _Argv) < 8) /* 32-bit argv[]. */
265 : : # if !defined( VMS_TRUST_ARGV)
266 : : || (_Argv[ Argc] != NULL) /* Untrusted argv[argc] not NULL. */
267 : : # endif
268 : : )
269 : : {
270 : : int i;
271 : : Argv = OPENSSL_malloc( (Argc+ 1)* sizeof( char *));
272 : : if (Argv == NULL)
273 : : { ret = -1; goto end; }
274 : : for(i = 0; i < Argc; i++)
275 : : Argv[i] = _Argv[i];
276 : : Argv[ Argc] = NULL; /* Certain NULL termination. */
277 : : free_Argv = 1;
278 : : }
279 : : else
280 : : {
281 : : /* Use the known-good 32-bit argv[] (which needs the
282 : : * type cast to satisfy the compiler), or the trusted or
283 : : * tested-good 64-bit argv[] as-is. */
284 : : Argv = (char **)_Argv;
285 : : }
286 : : #endif /* defined( OPENSSL_SYS_VMS) && (__INITIAL_POINTER_SIZE == 64) */
287 : :
288 : 725 : arg.data=NULL;
289 : 725 : arg.count=0;
290 : :
291 [ + - ]: 725 : if (bio_err == NULL)
292 [ + - ]: 725 : if ((bio_err=BIO_new(BIO_s_file())) != NULL)
293 : 725 : BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
294 : :
295 [ + + ]: 725 : if (getenv("OPENSSL_DEBUG_MEMORY") != NULL) /* if not defined, use compiled-in library defaults */
296 : : {
297 [ + - ]: 724 : if (!(0 == strcmp(getenv("OPENSSL_DEBUG_MEMORY"), "off")))
298 : : {
299 : 724 : CRYPTO_malloc_debug_init();
300 : 724 : CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
301 : : }
302 : : else
303 : : {
304 : : /* OPENSSL_DEBUG_MEMORY=off */
305 : 0 : CRYPTO_set_mem_debug_functions(0, 0, 0, 0, 0);
306 : : }
307 : : }
308 : 725 : CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
309 : :
310 : : #if 0
311 : : if (getenv("OPENSSL_DEBUG_LOCKING") != NULL)
312 : : #endif
313 : : {
314 : 725 : CRYPTO_set_locking_callback(lock_dbg_cb);
315 : : }
316 : :
317 [ - + ]: 725 : if(getenv("OPENSSL_FIPS")) {
318 : : #ifdef OPENSSL_FIPS
319 : : if (!FIPS_mode_set(1)) {
320 : : ERR_load_crypto_strings();
321 : : ERR_print_errors(BIO_new_fp(stderr,BIO_NOCLOSE));
322 : : EXIT(1);
323 : : }
324 : : #else
325 : 0 : fprintf(stderr, "FIPS mode not supported.\n");
326 : 0 : EXIT(1);
327 : : #endif
328 : : }
329 : :
330 : 725 : apps_startup();
331 : :
332 : : /* Lets load up our environment a little */
333 : 725 : p=getenv("OPENSSL_CONF");
334 [ + + ]: 725 : if (p == NULL)
335 : 4 : p=getenv("SSLEAY_CONF");
336 [ + + ]: 725 : if (p == NULL)
337 : 4 : p=to_free=make_config_name();
338 : :
339 : 725 : default_config_file=p;
340 : :
341 : 725 : config=NCONF_new(NULL);
342 : 725 : i=NCONF_load(config,p,&errline);
343 [ + + ]: 725 : if (i == 0)
344 : : {
345 [ + - ]: 4 : if (ERR_GET_REASON(ERR_peek_last_error())
346 : : == CONF_R_NO_SUCH_FILE)
347 : : {
348 : 4 : BIO_printf(bio_err,
349 : : "WARNING: can't open config file: %s\n",p);
350 : 4 : ERR_clear_error();
351 : 4 : NCONF_free(config);
352 : 4 : config = NULL;
353 : : }
354 : : else
355 : : {
356 : 0 : ERR_print_errors(bio_err);
357 : 0 : NCONF_free(config);
358 : 0 : exit(1);
359 : : }
360 : : }
361 : :
362 : 725 : prog=prog_init();
363 : :
364 : : /* first check the program name */
365 : 725 : program_name(Argv[0],pname,sizeof pname);
366 : :
367 : 725 : f.name=pname;
368 : 725 : fp=lh_FUNCTION_retrieve(prog,&f);
369 [ - + ]: 725 : if (fp != NULL)
370 : : {
371 : 0 : Argv[0]=pname;
372 : 0 : ret=fp->func(Argc,Argv);
373 : 0 : goto end;
374 : : }
375 : :
376 : : /* ok, now check that there are not arguments, if there are,
377 : : * run with them, shifting the ssleay off the front */
378 [ - + ]: 725 : if (Argc != 1)
379 : : {
380 : 725 : Argc--;
381 : 725 : Argv++;
382 : 725 : ret=do_cmd(prog,Argc,Argv);
383 [ - + ]: 725 : if (ret < 0) ret=0;
384 : : goto end;
385 : : }
386 : :
387 : : /* ok, lets enter the old 'OpenSSL>' mode */
388 : :
389 : : for (;;)
390 : : {
391 : : ret=0;
392 : : p=buf;
393 : : n=sizeof buf;
394 : : i=0;
395 : : for (;;)
396 : : {
397 : 0 : p[0]='\0';
398 [ # # ]: 0 : if (i++)
399 : : prompt=">";
400 : 0 : else prompt="OpenSSL> ";
401 : 0 : fputs(prompt,stdout);
402 : 0 : fflush(stdout);
403 [ # # ]: 0 : if (!fgets(p,n,stdin))
404 : : goto end;
405 [ # # ]: 0 : if (p[0] == '\0') goto end;
406 : 0 : i=strlen(p);
407 [ # # ]: 0 : if (i <= 1) break;
408 [ # # ]: 0 : if (p[i-2] != '\\') break;
409 : 0 : i-=2;
410 : 0 : p+=i;
411 : 0 : n-=i;
412 : 0 : }
413 [ # # ]: 0 : if (!chopup_args(&arg,buf,&argc,&argv)) break;
414 : :
415 : 0 : ret=do_cmd(prog,argc,argv);
416 [ # # ]: 0 : if (ret < 0)
417 : : {
418 : : ret=0;
419 : : goto end;
420 : : }
421 [ # # ]: 0 : if (ret != 0)
422 : 0 : BIO_printf(bio_err,"error in %s\n",argv[0]);
423 : 0 : (void)BIO_flush(bio_err);
424 : 0 : }
425 : 0 : BIO_printf(bio_err,"bad exit\n");
426 : 0 : ret=1;
427 : : end:
428 [ + + ]: 725 : if (to_free)
429 : 4 : OPENSSL_free(to_free);
430 [ + + ]: 725 : if (config != NULL)
431 : : {
432 : 721 : NCONF_free(config);
433 : 721 : config=NULL;
434 : : }
435 [ + - ]: 725 : if (prog != NULL) lh_FUNCTION_free(prog);
436 [ - + ]: 725 : if (arg.data != NULL) OPENSSL_free(arg.data);
437 : :
438 : 725 : apps_shutdown();
439 : :
440 : 725 : CRYPTO_mem_leaks(bio_err);
441 [ + - ]: 725 : if (bio_err != NULL)
442 : : {
443 : 725 : BIO_free(bio_err);
444 : 725 : bio_err=NULL;
445 : : }
446 : : #if defined( OPENSSL_SYS_VMS) && (__INITIAL_POINTER_SIZE == 64)
447 : : /* Free any duplicate Argv[] storage. */
448 : : if (free_Argv)
449 : : {
450 : : OPENSSL_free(Argv);
451 : : }
452 : : #endif
453 : 725 : OPENSSL_EXIT(ret);
454 : : }
455 : :
456 : : #define LIST_STANDARD_COMMANDS "list-standard-commands"
457 : : #define LIST_MESSAGE_DIGEST_COMMANDS "list-message-digest-commands"
458 : : #define LIST_MESSAGE_DIGEST_ALGORITHMS "list-message-digest-algorithms"
459 : : #define LIST_CIPHER_COMMANDS "list-cipher-commands"
460 : : #define LIST_CIPHER_ALGORITHMS "list-cipher-algorithms"
461 : : #define LIST_PUBLIC_KEY_ALGORITHMS "list-public-key-algorithms"
462 : :
463 : :
464 : 725 : static int do_cmd(LHASH_OF(FUNCTION) *prog, int argc, char *argv[])
465 : : {
466 : : FUNCTION f,*fp;
467 : 725 : int i,ret=1,tp,nl;
468 : :
469 [ + - ][ + - ]: 725 : if ((argc <= 0) || (argv[0] == NULL))
470 : : { ret=0; goto end; }
471 : 725 : f.name=argv[0];
472 : 725 : fp=lh_FUNCTION_retrieve(prog,&f);
473 [ + + ]: 725 : if (fp == NULL)
474 : : {
475 [ - + ]: 51 : if (EVP_get_digestbyname(argv[0]))
476 : : {
477 : 0 : f.type = FUNC_TYPE_MD;
478 : 0 : f.func = dgst_main;
479 : 0 : fp = &f;
480 : : }
481 [ - + ]: 51 : else if (EVP_get_cipherbyname(argv[0]))
482 : : {
483 : 0 : f.type = FUNC_TYPE_CIPHER;
484 : 0 : f.func = enc_main;
485 : 0 : fp = &f;
486 : : }
487 : : }
488 [ + + ]: 725 : if (fp != NULL)
489 : : {
490 : 674 : ret=fp->func(argc,argv);
491 : : }
492 [ + + ]: 51 : else if ((strncmp(argv[0],"no-",3)) == 0)
493 : : {
494 : 50 : BIO *bio_stdout = BIO_new_fp(stdout,BIO_NOCLOSE);
495 : : #ifdef OPENSSL_SYS_VMS
496 : : {
497 : : BIO *tmpbio = BIO_new(BIO_f_linebuffer());
498 : : bio_stdout = BIO_push(tmpbio, bio_stdout);
499 : : }
500 : : #endif
501 : 50 : f.name=argv[0]+3;
502 : 50 : ret = (lh_FUNCTION_retrieve(prog,&f) != NULL);
503 [ - + ]: 50 : if (!ret)
504 : 0 : BIO_printf(bio_stdout, "%s\n", argv[0]);
505 : : else
506 : 50 : BIO_printf(bio_stdout, "%s\n", argv[0]+3);
507 : 50 : BIO_free_all(bio_stdout);
508 : 50 : goto end;
509 : : }
510 [ + - ][ + - ]: 1 : else if ((strcmp(argv[0],"quit") == 0) ||
511 [ + - ]: 1 : (strcmp(argv[0],"q") == 0) ||
512 [ + - ]: 1 : (strcmp(argv[0],"exit") == 0) ||
513 : 1 : (strcmp(argv[0],"bye") == 0))
514 : : {
515 : : ret= -1;
516 : : goto end;
517 : : }
518 [ + - ][ + - ]: 1 : else if ((strcmp(argv[0],LIST_STANDARD_COMMANDS) == 0) ||
519 [ + - ]: 1 : (strcmp(argv[0],LIST_MESSAGE_DIGEST_COMMANDS) == 0) ||
520 [ - + ]: 1 : (strcmp(argv[0],LIST_MESSAGE_DIGEST_ALGORITHMS) == 0) ||
521 [ # # ]: 0 : (strcmp(argv[0],LIST_CIPHER_COMMANDS) == 0) ||
522 [ # # ]: 0 : (strcmp(argv[0],LIST_CIPHER_ALGORITHMS) == 0) ||
523 : 0 : (strcmp(argv[0],LIST_PUBLIC_KEY_ALGORITHMS) == 0))
524 : : {
525 : : int list_type;
526 : : BIO *bio_stdout;
527 : :
528 [ + - ]: 1 : if (strcmp(argv[0],LIST_STANDARD_COMMANDS) == 0)
529 : : list_type = FUNC_TYPE_GENERAL;
530 [ + - ]: 1 : else if (strcmp(argv[0],LIST_MESSAGE_DIGEST_COMMANDS) == 0)
531 : : list_type = FUNC_TYPE_MD;
532 [ + - ]: 1 : else if (strcmp(argv[0],LIST_MESSAGE_DIGEST_ALGORITHMS) == 0)
533 : : list_type = FUNC_TYPE_MD_ALG;
534 [ + - ]: 1 : else if (strcmp(argv[0],LIST_PUBLIC_KEY_ALGORITHMS) == 0)
535 : : list_type = FUNC_TYPE_PKEY;
536 [ + - ]: 1 : else if (strcmp(argv[0],LIST_CIPHER_ALGORITHMS) == 0)
537 : : list_type = FUNC_TYPE_CIPHER_ALG;
538 : : else /* strcmp(argv[0],LIST_CIPHER_COMMANDS) == 0 */
539 : 1 : list_type = FUNC_TYPE_CIPHER;
540 : 1 : bio_stdout = BIO_new_fp(stdout,BIO_NOCLOSE);
541 : : #ifdef OPENSSL_SYS_VMS
542 : : {
543 : : BIO *tmpbio = BIO_new(BIO_f_linebuffer());
544 : : bio_stdout = BIO_push(tmpbio, bio_stdout);
545 : : }
546 : : #endif
547 : :
548 [ + - ]: 1 : if (!load_config(bio_err, NULL))
549 : : goto end;
550 : :
551 [ - + ]: 1 : if (list_type == FUNC_TYPE_PKEY)
552 : 0 : list_pkey(bio_stdout);
553 [ - + ]: 1 : if (list_type == FUNC_TYPE_MD_ALG)
554 : 0 : list_md(bio_stdout);
555 [ + - ]: 1 : if (list_type == FUNC_TYPE_CIPHER_ALG)
556 : 0 : list_cipher(bio_stdout);
557 : : else
558 : : {
559 [ + + ]: 111 : for (fp=functions; fp->name != NULL; fp++)
560 [ + + ]: 110 : if (fp->type == list_type)
561 : 58 : BIO_printf(bio_stdout, "%s\n",
562 : : fp->name);
563 : : }
564 : 1 : BIO_free_all(bio_stdout);
565 : 1 : ret=0;
566 : 1 : goto end;
567 : : }
568 : : else
569 : : {
570 : 0 : BIO_printf(bio_err,"openssl:Error: '%s' is an invalid command.\n",
571 : : argv[0]);
572 : 0 : BIO_printf(bio_err, "\nStandard commands");
573 : 0 : i=0;
574 : 0 : tp=0;
575 [ # # ]: 0 : for (fp=functions; fp->name != NULL; fp++)
576 : : {
577 : 0 : nl=0;
578 : : #ifdef OPENSSL_NO_CAMELLIA
579 : : if (((i++) % 5) == 0)
580 : : #else
581 [ # # ]: 0 : if (((i++) % 4) == 0)
582 : : #endif
583 : : {
584 : 0 : BIO_printf(bio_err,"\n");
585 : 0 : nl=1;
586 : : }
587 [ # # ]: 0 : if (fp->type != tp)
588 : : {
589 : 0 : tp=fp->type;
590 [ # # ]: 0 : if (!nl) BIO_printf(bio_err,"\n");
591 [ # # ]: 0 : if (tp == FUNC_TYPE_MD)
592 : : {
593 : 0 : i=1;
594 : 0 : BIO_printf(bio_err,
595 : : "\nMessage Digest commands (see the `dgst' command for more details)\n");
596 : : }
597 [ # # ]: 0 : else if (tp == FUNC_TYPE_CIPHER)
598 : : {
599 : 0 : i=1;
600 : 0 : BIO_printf(bio_err,"\nCipher commands (see the `enc' command for more details)\n");
601 : : }
602 : : }
603 : : #ifdef OPENSSL_NO_CAMELLIA
604 : : BIO_printf(bio_err,"%-15s",fp->name);
605 : : #else
606 : 0 : BIO_printf(bio_err,"%-18s",fp->name);
607 : : #endif
608 : : }
609 : 0 : BIO_printf(bio_err,"\n\n");
610 : 0 : ret=0;
611 : : }
612 : : end:
613 : 725 : return(ret);
614 : : }
615 : :
616 : 357425 : static int SortFnByName(const void *_f1,const void *_f2)
617 : : {
618 : 357425 : const FUNCTION *f1=_f1;
619 : 357425 : const FUNCTION *f2=_f2;
620 : :
621 [ + + ]: 357425 : if(f1->type != f2->type)
622 : 47850 : return f1->type-f2->type;
623 : 309575 : return strcmp(f1->name,f2->name);
624 : : }
625 : :
626 : 0 : static void list_pkey(BIO *out)
627 : : {
628 : : int i;
629 [ # # ]: 0 : for (i = 0; i < EVP_PKEY_asn1_get_count(); i++)
630 : : {
631 : : const EVP_PKEY_ASN1_METHOD *ameth;
632 : : int pkey_id, pkey_base_id, pkey_flags;
633 : : const char *pinfo, *pem_str;
634 : 0 : ameth = EVP_PKEY_asn1_get0(i);
635 : 0 : EVP_PKEY_asn1_get0_info(&pkey_id, &pkey_base_id, &pkey_flags,
636 : : &pinfo, &pem_str, ameth);
637 [ # # ]: 0 : if (pkey_flags & ASN1_PKEY_ALIAS)
638 : : {
639 : 0 : BIO_printf(out, "Name: %s\n",
640 : : OBJ_nid2ln(pkey_id));
641 : 0 : BIO_printf(out, "\tType: Alias to %s\n",
642 : : OBJ_nid2ln(pkey_base_id));
643 : : }
644 : : else
645 : : {
646 : 0 : BIO_printf(out, "Name: %s\n", pinfo);
647 [ # # ]: 0 : BIO_printf(out, "\tType: %s Algorithm\n",
648 : 0 : pkey_flags & ASN1_PKEY_DYNAMIC ?
649 : : "External" : "Builtin");
650 : 0 : BIO_printf(out, "\tOID: %s\n", OBJ_nid2ln(pkey_id));
651 [ # # ]: 0 : if (pem_str == NULL)
652 : 0 : pem_str = "(none)";
653 : 0 : BIO_printf(out, "\tPEM string: %s\n", pem_str);
654 : : }
655 : :
656 : : }
657 : 0 : }
658 : :
659 : 0 : static void list_cipher_fn(const EVP_CIPHER *c,
660 : : const char *from, const char *to, void *arg)
661 : : {
662 [ # # ]: 0 : if (c)
663 : 0 : BIO_printf(arg, "%s\n", EVP_CIPHER_name(c));
664 : : else
665 : : {
666 [ # # ]: 0 : if (!from)
667 : 0 : from = "<undefined>";
668 [ # # ]: 0 : if (!to)
669 : 0 : to = "<undefined>";
670 : 0 : BIO_printf(arg, "%s => %s\n", from, to);
671 : : }
672 : 0 : }
673 : :
674 : 0 : static void list_cipher(BIO *out)
675 : : {
676 : 0 : EVP_CIPHER_do_all_sorted(list_cipher_fn, out);
677 : 0 : }
678 : :
679 : 0 : static void list_md_fn(const EVP_MD *m,
680 : : const char *from, const char *to, void *arg)
681 : : {
682 [ # # ]: 0 : if (m)
683 : 0 : BIO_printf(arg, "%s\n", EVP_MD_name(m));
684 : : else
685 : : {
686 [ # # ]: 0 : if (!from)
687 : 0 : from = "<undefined>";
688 [ # # ]: 0 : if (!to)
689 : 0 : to = "<undefined>";
690 : 0 : BIO_printf(arg, "%s => %s\n", from, to);
691 : : }
692 : 0 : }
693 : :
694 : 0 : static void list_md(BIO *out)
695 : : {
696 : 0 : EVP_MD_do_all_sorted(list_md_fn, out);
697 : 0 : }
698 : :
699 : 724 : static int MS_CALLBACK function_cmp(const FUNCTION *a, const FUNCTION *b)
700 : : {
701 : 724 : return strncmp(a->name,b->name,8);
702 : : }
703 : 1448 : static IMPLEMENT_LHASH_COMP_FN(function, FUNCTION)
704 : :
705 : 162500 : static unsigned long MS_CALLBACK function_hash(const FUNCTION *a)
706 : : {
707 : 81250 : return lh_strhash(a->name);
708 : : }
709 : 162500 : static IMPLEMENT_LHASH_HASH_FN(function, FUNCTION)
710 : :
711 : 725 : static LHASH_OF(FUNCTION) *prog_init(void)
712 : : {
713 : : LHASH_OF(FUNCTION) *ret;
714 : : FUNCTION *f;
715 : : size_t i;
716 : :
717 : : /* Purely so it looks nice when the user hits ? */
718 [ + + ]: 80475 : for(i=0,f=functions ; f->name != NULL ; ++f,++i)
719 : : ;
720 : 725 : qsort(functions,i,sizeof *functions,SortFnByName);
721 : :
722 [ + - ]: 725 : if ((ret=lh_FUNCTION_new()) == NULL)
723 : : return(NULL);
724 : :
725 [ + + ]: 80475 : for (f=functions; f->name != NULL; f++)
726 : 79750 : (void)lh_FUNCTION_insert(ret,f);
727 : : return(ret);
728 : : }
729 : :
|