]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/openssl.c
Fix dynamic public key method lookup.
[thirdparty/openssl.git] / apps / openssl.c
CommitLineData
06d5b162 1/* apps/openssl.c */
58964a49 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
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 */
3ac82faa 58/* ====================================================================
a661b653 59 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
3ac82faa
BM
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
d02b48c6 112
d02b48c6
RE
113#include <stdio.h>
114#include <string.h>
115#include <stdlib.h>
1f515cfe 116#define OPENSSL_C /* tells apps.h to use complete apps_startup() */
7b63c0fa 117#include "apps.h"
ec577822
BM
118#include <openssl/bio.h>
119#include <openssl/crypto.h>
120#include <openssl/lhash.h>
121#include <openssl/conf.h>
122#include <openssl/x509.h>
123#include <openssl/pem.h>
124#include <openssl/ssl.h>
0b13e9f0 125#ifndef OPENSSL_NO_ENGINE
1372965e 126#include <openssl/engine.h>
0b13e9f0 127#endif
d02b48c6 128#define USE_SOCKETS /* needed for the _O_BINARY defs in the MS world */
29a28ee5 129#include "progs.h"
d02b48c6 130#include "s_apps.h"
ec577822 131#include <openssl/err.h>
d02b48c6 132
d0fa136c
GT
133/* The LHASH callbacks ("hash" & "cmp") have been replaced by functions with the
134 * base prototypes (we cast each variable inside the function to the required
135 * type of "FUNCTION*"). This removes the necessity for macro-generated wrapper
136 * functions. */
137
138/* static unsigned long MS_CALLBACK hash(FUNCTION *a); */
8d28d5f8 139static unsigned long MS_CALLBACK hash(const void *a_void);
d0fa136c 140/* static int MS_CALLBACK cmp(FUNCTION *a,FUNCTION *b); */
8d28d5f8 141static int MS_CALLBACK cmp(const void *a_void,const void *b_void);
d02b48c6
RE
142static LHASH *prog_init(void );
143static int do_cmd(LHASH *prog,int argc,char *argv[]);
0b33dac3 144static void list_pkey(BIO *out);
d02b48c6
RE
145char *default_config_file=NULL;
146
d02b48c6
RE
147/* Make sure there is only one when MONOLITH is defined */
148#ifdef MONOLITH
0e2cc42c 149CONF *config=NULL;
d02b48c6
RE
150BIO *bio_err=NULL;
151#endif
152
3ac82faa
BM
153
154static void lock_dbg_cb(int mode, int type, const char *file, int line)
155 {
156 static int modes[CRYPTO_NUM_LOCKS]; /* = {0, 0, ... } */
157 const char *errstr = NULL;
158 int rw;
159
160 rw = mode & (CRYPTO_READ|CRYPTO_WRITE);
161 if (!((rw == CRYPTO_READ) || (rw == CRYPTO_WRITE)))
162 {
163 errstr = "invalid mode";
164 goto err;
165 }
166
563c05e2 167 if (type < 0 || type >= CRYPTO_NUM_LOCKS)
3ac82faa
BM
168 {
169 errstr = "type out of bounds";
170 goto err;
171 }
172
173 if (mode & CRYPTO_LOCK)
174 {
175 if (modes[type])
176 {
177 errstr = "already locked";
178 /* must not happen in a single-threaded program
179 * (would deadlock) */
180 goto err;
181 }
182
183 modes[type] = rw;
184 }
185 else if (mode & CRYPTO_UNLOCK)
186 {
187 if (!modes[type])
188 {
189 errstr = "not locked";
190 goto err;
191 }
192
193 if (modes[type] != rw)
194 {
195 errstr = (rw == CRYPTO_READ) ?
196 "CRYPTO_r_unlock on write lock" :
197 "CRYPTO_w_unlock on read lock";
198 }
199
200 modes[type] = 0;
201 }
202 else
203 {
204 errstr = "invalid mode";
205 goto err;
206 }
207
208 err:
209 if (errstr)
210 {
211 /* we cannot use bio_err here */
212 fprintf(stderr, "openssl (lock_dbg_cb): %s (mode=%d, type=%d) at %s:%d\n",
213 errstr, mode, type, file, line);
214 }
215 }
216
217
6b691a5c 218int main(int Argc, char *Argv[])
d02b48c6
RE
219 {
220 ARGS arg;
dfee50ec
RL
221#define PROG_NAME_SIZE 39
222 char pname[PROG_NAME_SIZE+1];
d02b48c6 223 FUNCTION f,*fp;
7d727231
NL
224 MS_STATIC const char *prompt;
225 MS_STATIC char buf[1024];
54a656ef 226 char *to_free=NULL;
d02b48c6
RE
227 int n,i,ret=0;
228 int argc;
229 char **argv,*p;
230 LHASH *prog=NULL;
231 long errline;
232
233 arg.data=NULL;
234 arg.count=0;
235
055076cd
BM
236 if (bio_err == NULL)
237 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
238 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
239
384eff87 240 if (getenv("OPENSSL_DEBUG_MEMORY") != NULL) /* if not defined, use compiled-in library defaults */
10654d3a
BM
241 {
242 if (!(0 == strcmp(getenv("OPENSSL_DEBUG_MEMORY"), "off")))
243 {
244 CRYPTO_malloc_debug_init();
384eff87
BM
245 CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
246 }
247 else
248 {
249 /* OPENSSL_DEBUG_MEMORY=off */
250 CRYPTO_set_mem_debug_functions(0, 0, 0, 0, 0);
10654d3a
BM
251 }
252 }
4fd2ead0
BM
253 CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
254
3ac82faa
BM
255#if 0
256 if (getenv("OPENSSL_DEBUG_LOCKING") != NULL)
257#endif
258 {
259 CRYPTO_set_locking_callback(lock_dbg_cb);
260 }
261
4fd2ead0
BM
262 apps_startup();
263
d02b48c6 264 /* Lets load up our environment a little */
06d5b162
RE
265 p=getenv("OPENSSL_CONF");
266 if (p == NULL)
267 p=getenv("SSLEAY_CONF");
d02b48c6 268 if (p == NULL)
54a656ef 269 p=to_free=make_config_name();
d02b48c6
RE
270
271 default_config_file=p;
272
b7a26e6d
DSH
273 config=NCONF_new(NULL);
274 i=NCONF_load(config,p,&errline);
6ca48799
DSH
275 if (i == 0)
276 {
277 NCONF_free(config);
278 config = NULL;
279 ERR_clear_error();
280 }
d02b48c6
RE
281
282 prog=prog_init();
283
284 /* first check the program name */
54a656ef 285 program_name(Argv[0],pname,sizeof pname);
d02b48c6
RE
286
287 f.name=pname;
9d1a01be 288 fp=(FUNCTION *)lh_retrieve(prog,&f);
d02b48c6
RE
289 if (fp != NULL)
290 {
291 Argv[0]=pname;
292 ret=fp->func(Argc,Argv);
293 goto end;
294 }
295
296 /* ok, now check that there are not arguments, if there are,
297 * run with them, shifting the ssleay off the front */
298 if (Argc != 1)
299 {
300 Argc--;
301 Argv++;
302 ret=do_cmd(prog,Argc,Argv);
303 if (ret < 0) ret=0;
304 goto end;
305 }
306
06d5b162 307 /* ok, lets enter the old 'OpenSSL>' mode */
d02b48c6
RE
308
309 for (;;)
310 {
311 ret=0;
312 p=buf;
54a656ef 313 n=sizeof buf;
d02b48c6
RE
314 i=0;
315 for (;;)
316 {
317 p[0]='\0';
318 if (i++)
319 prompt=">";
06d5b162 320 else prompt="OpenSSL> ";
d02b48c6
RE
321 fputs(prompt,stdout);
322 fflush(stdout);
323 fgets(p,n,stdin);
324 if (p[0] == '\0') goto end;
325 i=strlen(p);
326 if (i <= 1) break;
327 if (p[i-2] != '\\') break;
328 i-=2;
329 p+=i;
330 n-=i;
331 }
332 if (!chopup_args(&arg,buf,&argc,&argv)) break;
333
334 ret=do_cmd(prog,argc,argv);
335 if (ret < 0)
336 {
337 ret=0;
338 goto end;
339 }
340 if (ret != 0)
341 BIO_printf(bio_err,"error in %s\n",argv[0]);
d58d092b 342 (void)BIO_flush(bio_err);
d02b48c6
RE
343 }
344 BIO_printf(bio_err,"bad exit\n");
345 ret=1;
346end:
54a656ef
BL
347 if (to_free)
348 OPENSSL_free(to_free);
d02b48c6
RE
349 if (config != NULL)
350 {
b7a26e6d 351 NCONF_free(config);
d02b48c6
RE
352 config=NULL;
353 }
354 if (prog != NULL) lh_free(prog);
26a3a48d 355 if (arg.data != NULL) OPENSSL_free(arg.data);
c2222c2e 356
870d9861 357 apps_shutdown();
21023745 358
d02b48c6
RE
359 CRYPTO_mem_leaks(bio_err);
360 if (bio_err != NULL)
361 {
362 BIO_free(bio_err);
363 bio_err=NULL;
364 }
1c3e4a36 365 OPENSSL_EXIT(ret);
d02b48c6
RE
366 }
367
fc8ee06b
BM
368#define LIST_STANDARD_COMMANDS "list-standard-commands"
369#define LIST_MESSAGE_DIGEST_COMMANDS "list-message-digest-commands"
370#define LIST_CIPHER_COMMANDS "list-cipher-commands"
0b33dac3 371#define LIST_PUBLIC_KEY_ALGORITHMS "list-public-key-algorithms"
fc8ee06b 372
6b691a5c 373static int do_cmd(LHASH *prog, int argc, char *argv[])
d02b48c6
RE
374 {
375 FUNCTION f,*fp;
376 int i,ret=1,tp,nl;
377
378 if ((argc <= 0) || (argv[0] == NULL))
379 { ret=0; goto end; }
380 f.name=argv[0];
9d1a01be 381 fp=(FUNCTION *)lh_retrieve(prog,&f);
d02b48c6
RE
382 if (fp != NULL)
383 {
384 ret=fp->func(argc,argv);
385 }
46c4647e
BM
386 else if ((strncmp(argv[0],"no-",3)) == 0)
387 {
388 BIO *bio_stdout = BIO_new_fp(stdout,BIO_NOCLOSE);
bc36ee62 389#ifdef OPENSSL_SYS_VMS
645749ef
RL
390 {
391 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
392 bio_stdout = BIO_push(tmpbio, bio_stdout);
393 }
394#endif
46c4647e
BM
395 f.name=argv[0]+3;
396 ret = (lh_retrieve(prog,&f) != NULL);
397 if (!ret)
398 BIO_printf(bio_stdout, "%s\n", argv[0]);
399 else
400 BIO_printf(bio_stdout, "%s\n", argv[0]+3);
645749ef 401 BIO_free_all(bio_stdout);
46c4647e
BM
402 goto end;
403 }
d02b48c6
RE
404 else if ((strcmp(argv[0],"quit") == 0) ||
405 (strcmp(argv[0],"q") == 0) ||
406 (strcmp(argv[0],"exit") == 0) ||
407 (strcmp(argv[0],"bye") == 0))
408 {
409 ret= -1;
410 goto end;
411 }
fc8ee06b
BM
412 else if ((strcmp(argv[0],LIST_STANDARD_COMMANDS) == 0) ||
413 (strcmp(argv[0],LIST_MESSAGE_DIGEST_COMMANDS) == 0) ||
0b33dac3
DSH
414 (strcmp(argv[0],LIST_CIPHER_COMMANDS) == 0) ||
415 (strcmp(argv[0],LIST_PUBLIC_KEY_ALGORITHMS) == 0))
fc8ee06b
BM
416 {
417 int list_type;
418 BIO *bio_stdout;
419
420 if (strcmp(argv[0],LIST_STANDARD_COMMANDS) == 0)
421 list_type = FUNC_TYPE_GENERAL;
422 else if (strcmp(argv[0],LIST_MESSAGE_DIGEST_COMMANDS) == 0)
423 list_type = FUNC_TYPE_MD;
0b33dac3
DSH
424 else if (strcmp(argv[0],LIST_PUBLIC_KEY_ALGORITHMS) == 0)
425 list_type = FUNC_TYPE_PKEY;
fc8ee06b
BM
426 else /* strcmp(argv[0],LIST_CIPHER_COMMANDS) == 0 */
427 list_type = FUNC_TYPE_CIPHER;
428 bio_stdout = BIO_new_fp(stdout,BIO_NOCLOSE);
bc36ee62 429#ifdef OPENSSL_SYS_VMS
645749ef
RL
430 {
431 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
432 bio_stdout = BIO_push(tmpbio, bio_stdout);
433 }
434#endif
0b33dac3
DSH
435 if (list_type == FUNC_TYPE_PKEY)
436 list_pkey(bio_stdout);
437 else
438 {
439 for (fp=functions; fp->name != NULL; fp++)
440 if (fp->type == list_type)
441 BIO_printf(bio_stdout, "%s\n",
442 fp->name);
443 }
645749ef 444 BIO_free_all(bio_stdout);
fc8ee06b
BM
445 ret=0;
446 goto end;
447 }
d02b48c6
RE
448 else
449 {
06d5b162 450 BIO_printf(bio_err,"openssl:Error: '%s' is an invalid command.\n",
d02b48c6 451 argv[0]);
06d5b162 452 BIO_printf(bio_err, "\nStandard commands");
d02b48c6 453 i=0;
d02b48c6
RE
454 tp=0;
455 for (fp=functions; fp->name != NULL; fp++)
456 {
457 nl=0;
458 if (((i++) % 5) == 0)
459 {
460 BIO_printf(bio_err,"\n");
461 nl=1;
462 }
463 if (fp->type != tp)
464 {
465 tp=fp->type;
466 if (!nl) BIO_printf(bio_err,"\n");
467 if (tp == FUNC_TYPE_MD)
468 {
469 i=1;
470 BIO_printf(bio_err,
06d5b162 471 "\nMessage Digest commands (see the `dgst' command for more details)\n");
d02b48c6
RE
472 }
473 else if (tp == FUNC_TYPE_CIPHER)
474 {
475 i=1;
06d5b162 476 BIO_printf(bio_err,"\nCipher commands (see the `enc' command for more details)\n");
d02b48c6
RE
477 }
478 }
479 BIO_printf(bio_err,"%-15s",fp->name);
480 }
06d5b162 481 BIO_printf(bio_err,"\n\n");
d02b48c6
RE
482 ret=0;
483 }
484end:
485 return(ret);
486 }
487
50acf46b
BL
488static int SortFnByName(const void *_f1,const void *_f2)
489 {
490 const FUNCTION *f1=_f1;
491 const FUNCTION *f2=_f2;
492
493 if(f1->type != f2->type)
494 return f1->type-f2->type;
495 return strcmp(f1->name,f2->name);
496 }
497
0b33dac3
DSH
498static void list_pkey(BIO *out)
499 {
500 int i;
501 for (i = 0; i < EVP_PKEY_asn1_get_count(); i++)
502 {
503 const EVP_PKEY_ASN1_METHOD *ameth;
504 int pkey_id, pkey_base_id, pkey_flags;
505 const char *pinfo, *pem_str;
506 ameth = EVP_PKEY_asn1_get0(i);
507 EVP_PKEY_asn1_get0_info(&pkey_id, &pkey_base_id, &pkey_flags,
508 &pinfo, &pem_str, ameth);
509 if (pkey_flags & ASN1_PKEY_ALIAS)
510 {
511 BIO_printf(out, "Name: %s\n",
512 OBJ_nid2ln(pkey_id));
513 BIO_printf(out, "\tType: Alias to %s\n",
514 OBJ_nid2ln(pkey_base_id));
515 }
516 else
517 {
518 BIO_printf(out, "Name: %s\n", pinfo);
519 BIO_printf(out, "\tType: %s Algorithm\n",
520 pkey_flags & ASN1_PKEY_DYNAMIC ?
521 "External" : "Builtin");
522 BIO_printf(out, "\tOID: %s\n", OBJ_nid2ln(pkey_id));
523 if (pem_str == NULL)
524 pem_str = "(none)";
525 BIO_printf(out, "\tPEM string: %s\n", pem_str);
526 }
527
528 }
529 }
530
6b691a5c 531static LHASH *prog_init(void)
d02b48c6
RE
532 {
533 LHASH *ret;
534 FUNCTION *f;
7d727231 535 size_t i;
50acf46b
BL
536
537 /* Purely so it looks nice when the user hits ? */
538 for(i=0,f=functions ; f->name != NULL ; ++f,++i)
539 ;
540 qsort(functions,i,sizeof *functions,SortFnByName);
d02b48c6 541
d0fa136c 542 if ((ret=lh_new(hash, cmp)) == NULL)
385d8138 543 return(NULL);
d02b48c6
RE
544
545 for (f=functions; f->name != NULL; f++)
9d1a01be 546 lh_insert(ret,f);
d02b48c6
RE
547 return(ret);
548 }
549
d0fa136c 550/* static int MS_CALLBACK cmp(FUNCTION *a, FUNCTION *b) */
8d28d5f8 551static int MS_CALLBACK cmp(const void *a_void, const void *b_void)
d02b48c6 552 {
7d727231
NL
553 return(strncmp(((const FUNCTION *)a_void)->name,
554 ((const FUNCTION *)b_void)->name,8));
d02b48c6
RE
555 }
556
d0fa136c 557/* static unsigned long MS_CALLBACK hash(FUNCTION *a) */
8d28d5f8 558static unsigned long MS_CALLBACK hash(const void *a_void)
d02b48c6 559 {
7d727231 560 return(lh_strhash(((const FUNCTION *)a_void)->name));
d02b48c6 561 }