1 /* apps/engine.c -*- mode: C; c-file-style: "eay" -*- */
3 * Written by Richard Levitte <richard@levitte.org> for the OpenSSL project
6 /* ====================================================================
7 * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in
18 * the documentation and/or other materials provided with the
21 * 3. All advertising materials mentioning features or use of this
22 * software must display the following acknowledgment:
23 * "This product includes software developed by the OpenSSL Project
24 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
26 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27 * endorse or promote products derived from this software without
28 * prior written permission. For written permission, please contact
29 * licensing@OpenSSL.org.
31 * 5. Products derived from this software may not be called "OpenSSL"
32 * nor may "OpenSSL" appear in their names without prior written
33 * permission of the OpenSSL Project.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
44 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51 * OF THE POSSIBILITY OF SUCH DAMAGE.
52 * ====================================================================
54 * This product includes cryptographic software written by Eric Young
55 * (eay@cryptsoft.com). This product includes software written by Tim
56 * Hudson (tjh@cryptsoft.com).
63 #ifdef OPENSSL_NO_STDIO
67 #include <openssl/err.h>
68 #ifndef OPENSSL_NO_ENGINE
69 # include <openssl/engine.h>
70 # include <openssl/ssl.h>
73 # define PROG engine_main
75 static const char *engine_usage
[] = {
76 "usage: engine opts [engine ...]\n",
77 " -v[v[v[v]]] - verbose mode, for each engine, list its 'control commands'\n",
78 " -vv will additionally display each command's description\n",
79 " -vvv will also add the input flags for each command\n",
80 " -vvvv will also show internal input flags\n",
81 " -c - for each engine, also list the capabilities\n",
82 " -t[t] - for each engine, check that they are really available\n",
83 " -tt will display error trace for unavailable engines\n",
84 " -pre <cmd> - runs command 'cmd' against the ENGINE before any attempts\n",
85 " to load it (if -t is used)\n",
86 " -post <cmd> - runs command 'cmd' against the ENGINE after loading it\n",
87 " (only used if -t is also provided)\n",
88 " NB: -pre and -post will be applied to all ENGINEs supplied on the command\n",
89 " line, or all supported ENGINEs if none are specified.\n",
90 " Eg. '-pre \"SO_PATH:/lib/libdriver.so\"' calls command \"SO_PATH\" with\n",
91 " argument \"/lib/libdriver.so\".\n",
95 static void identity(char *ptr
)
100 static int append_buf(char **buf
, const char *s
, int *size
, int step
)
106 *buf
= OPENSSL_malloc(*size
);
115 if (strlen(*buf
) + strlen(s
) >= (unsigned int)*size
) {
117 *buf
= OPENSSL_realloc(*buf
, *size
);
124 BUF_strlcat(*buf
, ", ", *size
);
125 BUF_strlcat(*buf
, s
, *size
);
130 static int util_flags(BIO
*bio_out
, unsigned int flags
, const char *indent
)
132 int started
= 0, err
= 0;
133 /* Indent before displaying input flags */
134 BIO_printf(bio_out
, "%s%s(input flags): ", indent
, indent
);
136 BIO_printf(bio_out
, "<no flags>\n");
140 * If the object is internal, mark it in a way that shows instead of
141 * having it part of all the other flags, even if it really is.
143 if (flags
& ENGINE_CMD_FLAG_INTERNAL
) {
144 BIO_printf(bio_out
, "[Internal] ");
147 if (flags
& ENGINE_CMD_FLAG_NUMERIC
) {
148 BIO_printf(bio_out
, "NUMERIC");
152 * Now we check that no combinations of the mutually exclusive NUMERIC,
153 * STRING, and NO_INPUT flags have been used. Future flags that can be
154 * OR'd together with these would need to added after these to preserve
157 if (flags
& ENGINE_CMD_FLAG_STRING
) {
159 BIO_printf(bio_out
, "|");
162 BIO_printf(bio_out
, "STRING");
165 if (flags
& ENGINE_CMD_FLAG_NO_INPUT
) {
167 BIO_printf(bio_out
, "|");
170 BIO_printf(bio_out
, "NO_INPUT");
173 /* Check for unknown flags */
174 flags
= flags
& ~ENGINE_CMD_FLAG_NUMERIC
&
175 ~ENGINE_CMD_FLAG_STRING
&
176 ~ENGINE_CMD_FLAG_NO_INPUT
& ~ENGINE_CMD_FLAG_INTERNAL
;
179 BIO_printf(bio_out
, "|");
180 BIO_printf(bio_out
, "<0x%04X>", flags
);
183 BIO_printf(bio_out
, " <illegal flags!>");
184 BIO_printf(bio_out
, "\n");
188 static int util_verbose(ENGINE
*e
, int verbose
, BIO
*bio_out
,
191 static const int line_wrap
= 78;
198 STACK_OF(OPENSSL_STRING
) *cmds
= NULL
;
199 if (!ENGINE_ctrl(e
, ENGINE_CTRL_HAS_CTRL_FUNCTION
, 0, NULL
, NULL
) ||
200 ((num
= ENGINE_ctrl(e
, ENGINE_CTRL_GET_FIRST_CMD_TYPE
,
201 0, NULL
, NULL
)) <= 0)) {
203 BIO_printf(bio_out
, "%s<no control commands>\n", indent
);
208 cmds
= sk_OPENSSL_STRING_new_null();
214 /* Get the command input flags */
215 if ((flags
= ENGINE_ctrl(e
, ENGINE_CTRL_GET_CMD_FLAGS
, num
,
218 if (!(flags
& ENGINE_CMD_FLAG_INTERNAL
) || verbose
>= 4) {
219 /* Get the command name */
220 if ((len
= ENGINE_ctrl(e
, ENGINE_CTRL_GET_NAME_LEN_FROM_CMD
, num
,
223 if ((name
= OPENSSL_malloc(len
+ 1)) == NULL
)
225 if (ENGINE_ctrl(e
, ENGINE_CTRL_GET_NAME_FROM_CMD
, num
, name
,
228 /* Get the command description */
229 if ((len
= ENGINE_ctrl(e
, ENGINE_CTRL_GET_DESC_LEN_FROM_CMD
, num
,
233 if ((desc
= OPENSSL_malloc(len
+ 1)) == NULL
)
235 if (ENGINE_ctrl(e
, ENGINE_CTRL_GET_DESC_FROM_CMD
, num
, desc
,
239 /* Now decide on the output */
242 xpos
= BIO_puts(bio_out
, indent
);
244 /* Otherwise prepend a ", " */
245 xpos
+= BIO_printf(bio_out
, ", ");
248 * We're just listing names, comma-delimited
250 if ((xpos
> (int)strlen(indent
)) &&
251 (xpos
+ (int)strlen(name
) > line_wrap
)) {
252 BIO_printf(bio_out
, "\n");
253 xpos
= BIO_puts(bio_out
, indent
);
255 xpos
+= BIO_printf(bio_out
, "%s", name
);
257 /* We're listing names plus descriptions */
258 BIO_printf(bio_out
, "%s: %s\n", name
,
259 (desc
== NULL
) ? "<no description>" : desc
);
260 /* ... and sometimes input flags */
261 if ((verbose
>= 3) && !util_flags(bio_out
, flags
, indent
))
272 /* Move to the next command */
273 num
= ENGINE_ctrl(e
, ENGINE_CTRL_GET_NEXT_CMD_TYPE
, num
, NULL
, NULL
);
276 BIO_printf(bio_out
, "\n");
280 sk_OPENSSL_STRING_pop_free(cmds
, identity
);
288 static void util_do_cmds(ENGINE
*e
, STACK_OF(OPENSSL_STRING
) *cmds
,
289 BIO
*bio_out
, const char *indent
)
291 int loop
, res
, num
= sk_OPENSSL_STRING_num(cmds
);
294 BIO_printf(bio_out
, "[Error]: internal stack error\n");
297 for (loop
= 0; loop
< num
; loop
++) {
299 const char *cmd
, *arg
;
300 cmd
= sk_OPENSSL_STRING_value(cmds
, loop
);
301 res
= 1; /* assume success */
302 /* Check if this command has no ":arg" */
303 if ((arg
= strstr(cmd
, ":")) == NULL
) {
304 if (!ENGINE_ctrl_cmd_string(e
, cmd
, NULL
, 0))
307 if ((int)(arg
- cmd
) > 254) {
308 BIO_printf(bio_out
, "[Error]: command name too long\n");
311 memcpy(buf
, cmd
, (int)(arg
- cmd
));
312 buf
[arg
- cmd
] = '\0';
313 arg
++; /* Move past the ":" */
314 /* Call the command with the argument */
315 if (!ENGINE_ctrl_cmd_string(e
, buf
, arg
, 0))
319 BIO_printf(bio_out
, "[Success]: %s\n", cmd
);
321 BIO_printf(bio_out
, "[Failure]: %s\n", cmd
);
322 ERR_print_errors(bio_out
);
327 int MAIN(int, char **);
329 int MAIN(int argc
, char **argv
)
333 int verbose
= 0, list_cap
= 0, test_avail
= 0, test_avail_noise
= 0;
335 STACK_OF(OPENSSL_STRING
) *engines
= sk_OPENSSL_STRING_new_null();
336 STACK_OF(OPENSSL_STRING
) *pre_cmds
= sk_OPENSSL_STRING_new_null();
337 STACK_OF(OPENSSL_STRING
) *post_cmds
= sk_OPENSSL_STRING_new_null();
340 const char *indent
= " ";
343 SSL_load_error_strings();
346 bio_err
= BIO_new_fp(stderr
, BIO_NOCLOSE
);
348 if (!load_config(bio_err
, NULL
))
350 bio_out
= BIO_new_fp(stdout
, BIO_NOCLOSE
);
351 # ifdef OPENSSL_SYS_VMS
353 BIO
*tmpbio
= BIO_new(BIO_f_linebuffer());
354 bio_out
= BIO_push(tmpbio
, bio_out
);
361 if (strncmp(*argv
, "-v", 2) == 0) {
362 if (strspn(*argv
+ 1, "v") < strlen(*argv
+ 1))
364 if ((verbose
= strlen(*argv
+ 1)) > 4)
366 } else if (strcmp(*argv
, "-c") == 0)
368 else if (strncmp(*argv
, "-t", 2) == 0) {
370 if (strspn(*argv
+ 1, "t") < strlen(*argv
+ 1))
372 if ((test_avail_noise
= strlen(*argv
+ 1) - 1) > 1)
374 } else if (strcmp(*argv
, "-pre") == 0) {
379 sk_OPENSSL_STRING_push(pre_cmds
, *argv
);
380 } else if (strcmp(*argv
, "-post") == 0) {
385 sk_OPENSSL_STRING_push(post_cmds
, *argv
);
386 } else if ((strncmp(*argv
, "-h", 2) == 0) ||
387 (strcmp(*argv
, "-?") == 0))
390 sk_OPENSSL_STRING_push(engines
, *argv
);
394 /* Looks like everything went OK */
399 for (pp
= engine_usage
; (*pp
!= NULL
); pp
++)
400 BIO_printf(bio_err
, "%s", *pp
);
404 if (sk_OPENSSL_STRING_num(engines
) == 0) {
405 for (e
= ENGINE_get_first(); e
!= NULL
; e
= ENGINE_get_next(e
)) {
406 sk_OPENSSL_STRING_push(engines
, (char *)ENGINE_get_id(e
));
410 for (i
= 0; i
< sk_OPENSSL_STRING_num(engines
); i
++) {
411 const char *id
= sk_OPENSSL_STRING_value(engines
, i
);
412 if ((e
= ENGINE_by_id(id
)) != NULL
) {
413 const char *name
= ENGINE_get_name(e
);
415 * Do "id" first, then "name". Easier to auto-parse.
417 BIO_printf(bio_out
, "(%s) %s\n", id
, name
);
418 util_do_cmds(e
, pre_cmds
, bio_out
, indent
);
419 if (strcmp(ENGINE_get_id(e
), id
) != 0) {
420 BIO_printf(bio_out
, "Loaded: (%s) %s\n",
421 ENGINE_get_id(e
), ENGINE_get_name(e
));
425 char *cap_buf
= NULL
;
428 ENGINE_CIPHERS_PTR fn_c
;
429 ENGINE_DIGESTS_PTR fn_d
;
430 ENGINE_PKEY_METHS_PTR fn_pk
;
432 if (ENGINE_get_RSA(e
) != NULL
433 && !append_buf(&cap_buf
, "RSA", &cap_size
, 256))
435 if (ENGINE_get_DSA(e
) != NULL
436 && !append_buf(&cap_buf
, "DSA", &cap_size
, 256))
438 if (ENGINE_get_DH(e
) != NULL
439 && !append_buf(&cap_buf
, "DH", &cap_size
, 256))
441 if (ENGINE_get_RAND(e
) != NULL
442 && !append_buf(&cap_buf
, "RAND", &cap_size
, 256))
445 fn_c
= ENGINE_get_ciphers(e
);
448 n
= fn_c(e
, NULL
, &nids
, 0);
449 for (k
= 0; k
< n
; ++k
)
450 if (!append_buf(&cap_buf
,
451 OBJ_nid2sn(nids
[k
]), &cap_size
, 256))
455 fn_d
= ENGINE_get_digests(e
);
458 n
= fn_d(e
, NULL
, &nids
, 0);
459 for (k
= 0; k
< n
; ++k
)
460 if (!append_buf(&cap_buf
,
461 OBJ_nid2sn(nids
[k
]), &cap_size
, 256))
465 fn_pk
= ENGINE_get_pkey_meths(e
);
468 n
= fn_pk(e
, NULL
, &nids
, 0);
469 for (k
= 0; k
< n
; ++k
)
470 if (!append_buf(&cap_buf
,
471 OBJ_nid2sn(nids
[k
]), &cap_size
, 256))
474 if (cap_buf
&& (*cap_buf
!= '\0'))
475 BIO_printf(bio_out
, " [%s]\n", cap_buf
);
477 OPENSSL_free(cap_buf
);
480 BIO_printf(bio_out
, "%s", indent
);
481 if (ENGINE_init(e
)) {
482 BIO_printf(bio_out
, "[ available ]\n");
483 util_do_cmds(e
, post_cmds
, bio_out
, indent
);
486 BIO_printf(bio_out
, "[ unavailable ]\n");
487 if (test_avail_noise
)
488 ERR_print_errors_fp(stdout
);
492 if ((verbose
> 0) && !util_verbose(e
, verbose
, bio_out
, indent
))
496 ERR_print_errors(bio_err
);
502 ERR_print_errors(bio_err
);
503 sk_OPENSSL_STRING_pop_free(engines
, identity
);
504 sk_OPENSSL_STRING_pop_free(pre_cmds
, identity
);
505 sk_OPENSSL_STRING_pop_free(post_cmds
, identity
);
507 BIO_free_all(bio_out
);
514 static void *dummy
= &dummy
;