Update contrib.
1 /* apps/engine.c -*- mode: C; c-file-style: "eay" -*- */
2 /* Written by Richard Levitte <richard@levitte.org> for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
59 #ifndef OPENSSL_NO_ENGINE
64 #ifdef OPENSSL_NO_STDIO
68 #include <openssl/err.h>
69 #include <openssl/engine.h>
70 #include <openssl/ssl.h>
74 #define PROG engine_main
76 static const char *engine_usage[]={
77 "usage: engine opts [engine ...]\n",
78 " -v[v[v[v]]] - verbose mode, for each engine, list its 'control commands'\n",
79 " -vv will additionally display each command's description\n",
80 " -vvv will also add the input flags for each command\n",
81 " -vvvv will also show internal input flags\n",
82 " -c - for each engine, also list the capabilities\n",
83 " -t[t] - for each engine, check that they are really available\n",
84 " -tt will display error trace for unavailable engines\n",
85 " -pre <cmd> - runs command 'cmd' against the ENGINE before any attempts\n",
86 " to load it (if -t is used)\n",
87 " -post <cmd> - runs command 'cmd' against the ENGINE after loading it\n",
88 " (only used if -t is also provided)\n",
89 " NB: -pre and -post will be applied to all ENGINEs supplied on the command\n",
90 " line, or all supported ENGINEs if none are specified.\n",
91 " Eg. '-pre \"SO_PATH:/lib/libdriver.so\"' calls command \"SO_PATH\" with\n",
92 " argument \"/lib/libdriver.so\".\n",
96 static void identity(void *ptr)
101 static int append_buf(char **buf, const char *s, int *size, int step)
108 *buf = OPENSSL_malloc(*size);
117 if (strlen(*buf) + strlen(s) >= (unsigned int)*size)
120 *buf = OPENSSL_realloc(*buf, *size);
127 BUF_strlcat(*buf, ", ", *size);
128 BUF_strlcat(*buf, s, *size);
133 static int util_flags(BIO *bio_out, unsigned int flags, const char *indent)
135 int started = 0, err = 0;
136 /* Indent before displaying input flags */
137 BIO_printf(bio_out, "%s%s(input flags): ", indent, indent);
140 BIO_printf(bio_out, "<no flags>\n");
143 /* If the object is internal, mark it in a way that shows instead of
144 * having it part of all the other flags, even if it really is. */
145 if(flags & ENGINE_CMD_FLAG_INTERNAL)
147 BIO_printf(bio_out, "[Internal] ");
150 if(flags & ENGINE_CMD_FLAG_NUMERIC)
154 BIO_printf(bio_out, "|");
157 BIO_printf(bio_out, "NUMERIC");
160 /* Now we check that no combinations of the mutually exclusive NUMERIC,
161 * STRING, and NO_INPUT flags have been used. Future flags that can be
162 * OR'd together with these would need to added after these to preserve
163 * the testing logic. */
164 if(flags & ENGINE_CMD_FLAG_STRING)
168 BIO_printf(bio_out, "|");
171 BIO_printf(bio_out, "STRING");
174 if(flags & ENGINE_CMD_FLAG_NO_INPUT)
178 BIO_printf(bio_out, "|");
181 BIO_printf(bio_out, "NO_INPUT");
184 /* Check for unknown flags */
185 flags = flags & ~ENGINE_CMD_FLAG_NUMERIC &
186 ~ENGINE_CMD_FLAG_STRING &
187 ~ENGINE_CMD_FLAG_NO_INPUT &
188 ~ENGINE_CMD_FLAG_INTERNAL;
191 if(started) BIO_printf(bio_out, "|");
192 BIO_printf(bio_out, "<0x%04X>", flags);
195 BIO_printf(bio_out, " <illegal flags!>");
196 BIO_printf(bio_out, "\n");
200 static int util_verbose(ENGINE *e, int verbose, BIO *bio_out, const char *indent)
202 static const int line_wrap = 78;
210 if(!ENGINE_ctrl(e, ENGINE_CTRL_HAS_CTRL_FUNCTION, 0, NULL, NULL) ||
211 ((num = ENGINE_ctrl(e, ENGINE_CTRL_GET_FIRST_CMD_TYPE,
212 0, NULL, NULL)) <= 0))
215 BIO_printf(bio_out, "%s<no control commands>\n", indent);
220 cmds = sk_new_null();
226 /* Get the command input flags */
227 if((flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num,
230 if (!(flags & ENGINE_CMD_FLAG_INTERNAL) || verbose >= 4)
232 /* Get the command name */
233 if((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_LEN_FROM_CMD, num,
236 if((name = OPENSSL_malloc(len + 1)) == NULL)
238 if(ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_FROM_CMD, num, name,
241 /* Get the command description */
242 if((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_LEN_FROM_CMD, num,
247 if((desc = OPENSSL_malloc(len + 1)) == NULL)
249 if(ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_FROM_CMD, num, desc,
253 /* Now decide on the output */
256 xpos = BIO_printf(bio_out, indent);
258 /* Otherwise prepend a ", " */
259 xpos += BIO_printf(bio_out, ", ");
262 /* We're just listing names, comma-delimited */
263 if((xpos > (int)strlen(indent)) &&
264 (xpos + (int)strlen(name) > line_wrap))
266 BIO_printf(bio_out, "\n");
267 xpos = BIO_printf(bio_out, indent);
269 xpos += BIO_printf(bio_out, "%s", name);
273 /* We're listing names plus descriptions */
274 BIO_printf(bio_out, "%s: %s\n", name,
275 (desc == NULL) ? "<no description>" : desc);
276 /* ... and sometimes input flags */
277 if((verbose >= 3) && !util_flags(bio_out, flags,
283 OPENSSL_free(name); name = NULL;
284 if(desc) { OPENSSL_free(desc); desc = NULL; }
285 /* Move to the next command */
286 num = ENGINE_ctrl(e, ENGINE_CTRL_GET_NEXT_CMD_TYPE,
290 BIO_printf(bio_out, "\n");
293 if(cmds) sk_pop_free(cmds, identity);
294 if(name) OPENSSL_free(name);
295 if(desc) OPENSSL_free(desc);
299 static void util_do_cmds(ENGINE *e, STACK *cmds, BIO *bio_out, const char *indent)
301 int loop, res, num = sk_num(cmds);
304 BIO_printf(bio_out, "[Error]: internal stack error\n");
307 for(loop = 0; loop < num; loop++)
310 const char *cmd, *arg;
311 cmd = sk_value(cmds, loop);
312 res = 1; /* assume success */
313 /* Check if this command has no ":arg" */
314 if((arg = strstr(cmd, ":")) == NULL)
316 if(!ENGINE_ctrl_cmd_string(e, cmd, NULL, 0))
321 if((int)(arg - cmd) > 254)
323 BIO_printf(bio_out,"[Error]: command name too long\n");
326 memcpy(buf, cmd, (int)(arg - cmd));
328 arg++; /* Move past the ":" */
329 /* Call the command with the argument */
330 if(!ENGINE_ctrl_cmd_string(e, buf, arg, 0))
334 BIO_printf(bio_out, "[Success]: %s\n", cmd);
337 BIO_printf(bio_out, "[Failure]: %s\n", cmd);
338 ERR_print_errors(bio_out);
343 int MAIN(int, char **);
345 int MAIN(int argc, char **argv)
349 int verbose=0, list_cap=0, test_avail=0, test_avail_noise = 0;
351 STACK *engines = sk_new_null();
352 STACK *pre_cmds = sk_new_null();
353 STACK *post_cmds = sk_new_null();
356 const char *indent = " ";
359 SSL_load_error_strings();
362 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
364 if (!load_config(bio_err, NULL))
366 bio_out=BIO_new_fp(stdout,BIO_NOCLOSE);
368 #ifdef OPENSSL_SYS_VMS
370 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
371 bio_out = BIO_push(tmpbio, bio_out);
379 if (strncmp(*argv,"-v",2) == 0)
381 if(strspn(*argv + 1, "v") < strlen(*argv + 1))
383 if((verbose=strlen(*argv + 1)) > 4)
386 else if (strcmp(*argv,"-c") == 0)
388 else if (strncmp(*argv,"-t",2) == 0)
391 if(strspn(*argv + 1, "t") < strlen(*argv + 1))
393 if((test_avail_noise = strlen(*argv + 1) - 1) > 1)
396 else if (strcmp(*argv,"-pre") == 0)
401 sk_push(pre_cmds,*argv);
403 else if (strcmp(*argv,"-post") == 0)
408 sk_push(post_cmds,*argv);
410 else if ((strncmp(*argv,"-h",2) == 0) ||
411 (strcmp(*argv,"-?") == 0))
414 sk_push(engines,*argv);
418 /* Looks like everything went OK */
424 for (pp=engine_usage; (*pp != NULL); pp++)
425 BIO_printf(bio_err,"%s",*pp);
429 if (sk_num(engines) == 0)
431 for(e = ENGINE_get_first(); e != NULL; e = ENGINE_get_next(e))
433 sk_push(engines,(char *)ENGINE_get_id(e));
437 for (i=0; i<sk_num(engines); i++)
439 const char *id = sk_value(engines,i);
440 if ((e = ENGINE_by_id(id)) != NULL)
442 const char *name = ENGINE_get_name(e);
443 /* Do "id" first, then "name". Easier to auto-parse. */
444 BIO_printf(bio_out, "(%s) %s\n", id, name);
445 util_do_cmds(e, pre_cmds, bio_out, indent);
446 if (strcmp(ENGINE_get_id(e), id) != 0)
448 BIO_printf(bio_out, "Loaded: (%s) %s\n",
449 ENGINE_get_id(e), ENGINE_get_name(e));
454 char *cap_buf = NULL;
457 ENGINE_CIPHERS_PTR fn_c;
458 ENGINE_DIGESTS_PTR fn_d;
460 if (ENGINE_get_RSA(e) != NULL
461 && !append_buf(&cap_buf, "RSA",
464 if (ENGINE_get_DSA(e) != NULL
465 && !append_buf(&cap_buf, "DSA",
468 if (ENGINE_get_DH(e) != NULL
469 && !append_buf(&cap_buf, "DH",
472 if (ENGINE_get_RAND(e) != NULL
473 && !append_buf(&cap_buf, "RAND",
477 fn_c = ENGINE_get_ciphers(e);
478 if(!fn_c) goto skip_ciphers;
479 n = fn_c(e, NULL, &nids, 0);
480 for(k=0 ; k < n ; ++k)
481 if(!append_buf(&cap_buf,
487 fn_d = ENGINE_get_digests(e);
488 if(!fn_d) goto skip_digests;
489 n = fn_d(e, NULL, &nids, 0);
490 for(k=0 ; k < n ; ++k)
491 if(!append_buf(&cap_buf,
497 if (cap_buf && (*cap_buf != '\0'))
498 BIO_printf(bio_out, " [%s]\n", cap_buf);
500 OPENSSL_free(cap_buf);
504 BIO_printf(bio_out, "%s", indent);
507 BIO_printf(bio_out, "[ available ]\n");
508 util_do_cmds(e, post_cmds, bio_out, indent);
513 BIO_printf(bio_out, "[ unavailable ]\n");
515 ERR_print_errors_fp(stdout);
519 if((verbose > 0) && !util_verbose(e, verbose, bio_out, indent))
524 ERR_print_errors(bio_err);
530 ERR_print_errors(bio_err);
531 sk_pop_free(engines, identity);
532 sk_pop_free(pre_cmds, identity);
533 sk_pop_free(post_cmds, identity);
534 if (bio_out != NULL) BIO_free_all(bio_out);
541 static void *dummy=&dummy;