engine.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  1. /* apps/engine.c */
  2. /*
  3. * Written by Richard Levitte <richard@levitte.org> for the OpenSSL project
  4. * 2000.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  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
  19. * distribution.
  20. *
  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/)"
  25. *
  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.
  30. *
  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.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  39. *
  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. * ====================================================================
  53. *
  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).
  57. *
  58. */
  59. #include <stdio.h>
  60. #include <stdlib.h>
  61. #include <string.h>
  62. #ifdef OPENSSL_NO_STDIO
  63. # define APPS_WIN16
  64. #endif
  65. #include "apps.h"
  66. #include <openssl/err.h>
  67. #ifndef OPENSSL_NO_ENGINE
  68. # include <openssl/engine.h>
  69. # include <openssl/ssl.h>
  70. # undef PROG
  71. # define PROG engine_main
  72. static const char *engine_usage[] = {
  73. "usage: engine opts [engine ...]\n",
  74. " -v[v[v[v]]] - verbose mode, for each engine, list its 'control commands'\n",
  75. " -vv will additionally display each command's description\n",
  76. " -vvv will also add the input flags for each command\n",
  77. " -vvvv will also show internal input flags\n",
  78. " -c - for each engine, also list the capabilities\n",
  79. " -t[t] - for each engine, check that they are really available\n",
  80. " -tt will display error trace for unavailable engines\n",
  81. " -pre <cmd> - runs command 'cmd' against the ENGINE before any attempts\n",
  82. " to load it (if -t is used)\n",
  83. " -post <cmd> - runs command 'cmd' against the ENGINE after loading it\n",
  84. " (only used if -t is also provided)\n",
  85. " NB: -pre and -post will be applied to all ENGINEs supplied on the command\n",
  86. " line, or all supported ENGINEs if none are specified.\n",
  87. " Eg. '-pre \"SO_PATH:/lib/libdriver.so\"' calls command \"SO_PATH\" with\n",
  88. " argument \"/lib/libdriver.so\".\n",
  89. NULL
  90. };
  91. static void identity(char *ptr)
  92. {
  93. return;
  94. }
  95. static int append_buf(char **buf, const char *s, int *size, int step)
  96. {
  97. if (*buf == NULL) {
  98. *size = step;
  99. *buf = OPENSSL_malloc(*size);
  100. if (*buf == NULL)
  101. return 0;
  102. **buf = '\0';
  103. }
  104. if (strlen(*buf) + strlen(s) >= (unsigned int)*size) {
  105. *size += step;
  106. *buf = OPENSSL_realloc(*buf, *size);
  107. }
  108. if (*buf == NULL)
  109. return 0;
  110. if (**buf != '\0')
  111. BUF_strlcat(*buf, ", ", *size);
  112. BUF_strlcat(*buf, s, *size);
  113. return 1;
  114. }
  115. static int util_flags(BIO *bio_out, unsigned int flags, const char *indent)
  116. {
  117. int started = 0, err = 0;
  118. /* Indent before displaying input flags */
  119. BIO_printf(bio_out, "%s%s(input flags): ", indent, indent);
  120. if (flags == 0) {
  121. BIO_printf(bio_out, "<no flags>\n");
  122. return 1;
  123. }
  124. /*
  125. * If the object is internal, mark it in a way that shows instead of
  126. * having it part of all the other flags, even if it really is.
  127. */
  128. if (flags & ENGINE_CMD_FLAG_INTERNAL) {
  129. BIO_printf(bio_out, "[Internal] ");
  130. }
  131. if (flags & ENGINE_CMD_FLAG_NUMERIC) {
  132. BIO_printf(bio_out, "NUMERIC");
  133. started = 1;
  134. }
  135. /*
  136. * Now we check that no combinations of the mutually exclusive NUMERIC,
  137. * STRING, and NO_INPUT flags have been used. Future flags that can be
  138. * OR'd together with these would need to added after these to preserve
  139. * the testing logic.
  140. */
  141. if (flags & ENGINE_CMD_FLAG_STRING) {
  142. if (started) {
  143. BIO_printf(bio_out, "|");
  144. err = 1;
  145. }
  146. BIO_printf(bio_out, "STRING");
  147. started = 1;
  148. }
  149. if (flags & ENGINE_CMD_FLAG_NO_INPUT) {
  150. if (started) {
  151. BIO_printf(bio_out, "|");
  152. err = 1;
  153. }
  154. BIO_printf(bio_out, "NO_INPUT");
  155. started = 1;
  156. }
  157. /* Check for unknown flags */
  158. flags = flags & ~ENGINE_CMD_FLAG_NUMERIC &
  159. ~ENGINE_CMD_FLAG_STRING &
  160. ~ENGINE_CMD_FLAG_NO_INPUT & ~ENGINE_CMD_FLAG_INTERNAL;
  161. if (flags) {
  162. if (started)
  163. BIO_printf(bio_out, "|");
  164. BIO_printf(bio_out, "<0x%04X>", flags);
  165. }
  166. if (err)
  167. BIO_printf(bio_out, " <illegal flags!>");
  168. BIO_printf(bio_out, "\n");
  169. return 1;
  170. }
  171. static int util_verbose(ENGINE *e, int verbose, BIO *bio_out,
  172. const char *indent)
  173. {
  174. static const int line_wrap = 78;
  175. int num;
  176. int ret = 0;
  177. char *name = NULL;
  178. char *desc = NULL;
  179. int flags;
  180. int xpos = 0;
  181. STACK_OF(OPENSSL_STRING) *cmds = NULL;
  182. if (!ENGINE_ctrl(e, ENGINE_CTRL_HAS_CTRL_FUNCTION, 0, NULL, NULL) ||
  183. ((num = ENGINE_ctrl(e, ENGINE_CTRL_GET_FIRST_CMD_TYPE,
  184. 0, NULL, NULL)) <= 0)) {
  185. # if 0
  186. BIO_printf(bio_out, "%s<no control commands>\n", indent);
  187. # endif
  188. return 1;
  189. }
  190. cmds = sk_OPENSSL_STRING_new_null();
  191. if (!cmds)
  192. goto err;
  193. do {
  194. int len;
  195. /* Get the command input flags */
  196. if ((flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num,
  197. NULL, NULL)) < 0)
  198. goto err;
  199. if (!(flags & ENGINE_CMD_FLAG_INTERNAL) || verbose >= 4) {
  200. /* Get the command name */
  201. if ((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_LEN_FROM_CMD, num,
  202. NULL, NULL)) <= 0)
  203. goto err;
  204. if ((name = OPENSSL_malloc(len + 1)) == NULL)
  205. goto err;
  206. if (ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_FROM_CMD, num, name,
  207. NULL) <= 0)
  208. goto err;
  209. /* Get the command description */
  210. if ((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_LEN_FROM_CMD, num,
  211. NULL, NULL)) < 0)
  212. goto err;
  213. if (len > 0) {
  214. if ((desc = OPENSSL_malloc(len + 1)) == NULL)
  215. goto err;
  216. if (ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_FROM_CMD, num, desc,
  217. NULL) <= 0)
  218. goto err;
  219. }
  220. /* Now decide on the output */
  221. if (xpos == 0)
  222. /* Do an indent */
  223. xpos = BIO_puts(bio_out, indent);
  224. else
  225. /* Otherwise prepend a ", " */
  226. xpos += BIO_printf(bio_out, ", ");
  227. if (verbose == 1) {
  228. /*
  229. * We're just listing names, comma-delimited
  230. */
  231. if ((xpos > (int)strlen(indent)) &&
  232. (xpos + (int)strlen(name) > line_wrap)) {
  233. BIO_printf(bio_out, "\n");
  234. xpos = BIO_puts(bio_out, indent);
  235. }
  236. xpos += BIO_printf(bio_out, "%s", name);
  237. } else {
  238. /* We're listing names plus descriptions */
  239. BIO_printf(bio_out, "%s: %s\n", name,
  240. (desc == NULL) ? "<no description>" : desc);
  241. /* ... and sometimes input flags */
  242. if ((verbose >= 3) && !util_flags(bio_out, flags, indent))
  243. goto err;
  244. xpos = 0;
  245. }
  246. }
  247. OPENSSL_free(name);
  248. name = NULL;
  249. if (desc) {
  250. OPENSSL_free(desc);
  251. desc = NULL;
  252. }
  253. /* Move to the next command */
  254. num = ENGINE_ctrl(e, ENGINE_CTRL_GET_NEXT_CMD_TYPE, num, NULL, NULL);
  255. } while (num > 0);
  256. if (xpos > 0)
  257. BIO_printf(bio_out, "\n");
  258. ret = 1;
  259. err:
  260. if (cmds)
  261. sk_OPENSSL_STRING_pop_free(cmds, identity);
  262. if (name)
  263. OPENSSL_free(name);
  264. if (desc)
  265. OPENSSL_free(desc);
  266. return ret;
  267. }
  268. static void util_do_cmds(ENGINE *e, STACK_OF(OPENSSL_STRING) *cmds,
  269. BIO *bio_out, const char *indent)
  270. {
  271. int loop, res, num = sk_OPENSSL_STRING_num(cmds);
  272. if (num < 0) {
  273. BIO_printf(bio_out, "[Error]: internal stack error\n");
  274. return;
  275. }
  276. for (loop = 0; loop < num; loop++) {
  277. char buf[256];
  278. const char *cmd, *arg;
  279. cmd = sk_OPENSSL_STRING_value(cmds, loop);
  280. res = 1; /* assume success */
  281. /* Check if this command has no ":arg" */
  282. if ((arg = strstr(cmd, ":")) == NULL) {
  283. if (!ENGINE_ctrl_cmd_string(e, cmd, NULL, 0))
  284. res = 0;
  285. } else {
  286. if ((int)(arg - cmd) > 254) {
  287. BIO_printf(bio_out, "[Error]: command name too long\n");
  288. return;
  289. }
  290. memcpy(buf, cmd, (int)(arg - cmd));
  291. buf[arg - cmd] = '\0';
  292. arg++; /* Move past the ":" */
  293. /* Call the command with the argument */
  294. if (!ENGINE_ctrl_cmd_string(e, buf, arg, 0))
  295. res = 0;
  296. }
  297. if (res)
  298. BIO_printf(bio_out, "[Success]: %s\n", cmd);
  299. else {
  300. BIO_printf(bio_out, "[Failure]: %s\n", cmd);
  301. ERR_print_errors(bio_out);
  302. }
  303. }
  304. }
  305. int MAIN(int, char **);
  306. int MAIN(int argc, char **argv)
  307. {
  308. int ret = 1, i;
  309. const char **pp;
  310. int verbose = 0, list_cap = 0, test_avail = 0, test_avail_noise = 0;
  311. ENGINE *e;
  312. STACK_OF(OPENSSL_STRING) *engines = sk_OPENSSL_STRING_new_null();
  313. STACK_OF(OPENSSL_STRING) *pre_cmds = sk_OPENSSL_STRING_new_null();
  314. STACK_OF(OPENSSL_STRING) *post_cmds = sk_OPENSSL_STRING_new_null();
  315. int badops = 1;
  316. BIO *bio_out = NULL;
  317. const char *indent = " ";
  318. apps_startup();
  319. SSL_load_error_strings();
  320. if (bio_err == NULL)
  321. bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
  322. if (!load_config(bio_err, NULL))
  323. goto end;
  324. bio_out = BIO_new_fp(stdout, BIO_NOCLOSE);
  325. # ifdef OPENSSL_SYS_VMS
  326. {
  327. BIO *tmpbio = BIO_new(BIO_f_linebuffer());
  328. bio_out = BIO_push(tmpbio, bio_out);
  329. }
  330. # endif
  331. argc--;
  332. argv++;
  333. while (argc >= 1) {
  334. if (strncmp(*argv, "-v", 2) == 0) {
  335. if (strspn(*argv + 1, "v") < strlen(*argv + 1))
  336. goto skip_arg_loop;
  337. if ((verbose = strlen(*argv + 1)) > 4)
  338. goto skip_arg_loop;
  339. } else if (strcmp(*argv, "-c") == 0)
  340. list_cap = 1;
  341. else if (strncmp(*argv, "-t", 2) == 0) {
  342. test_avail = 1;
  343. if (strspn(*argv + 1, "t") < strlen(*argv + 1))
  344. goto skip_arg_loop;
  345. if ((test_avail_noise = strlen(*argv + 1) - 1) > 1)
  346. goto skip_arg_loop;
  347. } else if (strcmp(*argv, "-pre") == 0) {
  348. argc--;
  349. argv++;
  350. if (argc == 0)
  351. goto skip_arg_loop;
  352. sk_OPENSSL_STRING_push(pre_cmds, *argv);
  353. } else if (strcmp(*argv, "-post") == 0) {
  354. argc--;
  355. argv++;
  356. if (argc == 0)
  357. goto skip_arg_loop;
  358. sk_OPENSSL_STRING_push(post_cmds, *argv);
  359. } else if ((strncmp(*argv, "-h", 2) == 0) ||
  360. (strcmp(*argv, "-?") == 0))
  361. goto skip_arg_loop;
  362. else
  363. sk_OPENSSL_STRING_push(engines, *argv);
  364. argc--;
  365. argv++;
  366. }
  367. /* Looks like everything went OK */
  368. badops = 0;
  369. skip_arg_loop:
  370. if (badops) {
  371. for (pp = engine_usage; (*pp != NULL); pp++)
  372. BIO_printf(bio_err, "%s", *pp);
  373. goto end;
  374. }
  375. if (sk_OPENSSL_STRING_num(engines) == 0) {
  376. for (e = ENGINE_get_first(); e != NULL; e = ENGINE_get_next(e)) {
  377. sk_OPENSSL_STRING_push(engines, (char *)ENGINE_get_id(e));
  378. }
  379. }
  380. for (i = 0; i < sk_OPENSSL_STRING_num(engines); i++) {
  381. const char *id = sk_OPENSSL_STRING_value(engines, i);
  382. if ((e = ENGINE_by_id(id)) != NULL) {
  383. const char *name = ENGINE_get_name(e);
  384. /*
  385. * Do "id" first, then "name". Easier to auto-parse.
  386. */
  387. BIO_printf(bio_out, "(%s) %s\n", id, name);
  388. util_do_cmds(e, pre_cmds, bio_out, indent);
  389. if (strcmp(ENGINE_get_id(e), id) != 0) {
  390. BIO_printf(bio_out, "Loaded: (%s) %s\n",
  391. ENGINE_get_id(e), ENGINE_get_name(e));
  392. }
  393. if (list_cap) {
  394. int cap_size = 256;
  395. char *cap_buf = NULL;
  396. int k, n;
  397. const int *nids;
  398. ENGINE_CIPHERS_PTR fn_c;
  399. ENGINE_DIGESTS_PTR fn_d;
  400. ENGINE_PKEY_METHS_PTR fn_pk;
  401. if (ENGINE_get_RSA(e) != NULL
  402. && !append_buf(&cap_buf, "RSA", &cap_size, 256))
  403. goto end;
  404. if (ENGINE_get_DSA(e) != NULL
  405. && !append_buf(&cap_buf, "DSA", &cap_size, 256))
  406. goto end;
  407. if (ENGINE_get_DH(e) != NULL
  408. && !append_buf(&cap_buf, "DH", &cap_size, 256))
  409. goto end;
  410. if (ENGINE_get_RAND(e) != NULL
  411. && !append_buf(&cap_buf, "RAND", &cap_size, 256))
  412. goto end;
  413. fn_c = ENGINE_get_ciphers(e);
  414. if (!fn_c)
  415. goto skip_ciphers;
  416. n = fn_c(e, NULL, &nids, 0);
  417. for (k = 0; k < n; ++k)
  418. if (!append_buf(&cap_buf,
  419. OBJ_nid2sn(nids[k]), &cap_size, 256))
  420. goto end;
  421. skip_ciphers:
  422. fn_d = ENGINE_get_digests(e);
  423. if (!fn_d)
  424. goto skip_digests;
  425. n = fn_d(e, NULL, &nids, 0);
  426. for (k = 0; k < n; ++k)
  427. if (!append_buf(&cap_buf,
  428. OBJ_nid2sn(nids[k]), &cap_size, 256))
  429. goto end;
  430. skip_digests:
  431. fn_pk = ENGINE_get_pkey_meths(e);
  432. if (!fn_pk)
  433. goto skip_pmeths;
  434. n = fn_pk(e, NULL, &nids, 0);
  435. for (k = 0; k < n; ++k)
  436. if (!append_buf(&cap_buf,
  437. OBJ_nid2sn(nids[k]), &cap_size, 256))
  438. goto end;
  439. skip_pmeths:
  440. if (cap_buf && (*cap_buf != '\0'))
  441. BIO_printf(bio_out, " [%s]\n", cap_buf);
  442. OPENSSL_free(cap_buf);
  443. }
  444. if (test_avail) {
  445. BIO_printf(bio_out, "%s", indent);
  446. if (ENGINE_init(e)) {
  447. BIO_printf(bio_out, "[ available ]\n");
  448. util_do_cmds(e, post_cmds, bio_out, indent);
  449. ENGINE_finish(e);
  450. } else {
  451. BIO_printf(bio_out, "[ unavailable ]\n");
  452. if (test_avail_noise)
  453. ERR_print_errors_fp(stdout);
  454. ERR_clear_error();
  455. }
  456. }
  457. if ((verbose > 0) && !util_verbose(e, verbose, bio_out, indent))
  458. goto end;
  459. ENGINE_free(e);
  460. } else
  461. ERR_print_errors(bio_err);
  462. }
  463. ret = 0;
  464. end:
  465. ERR_print_errors(bio_err);
  466. sk_OPENSSL_STRING_pop_free(engines, identity);
  467. sk_OPENSSL_STRING_pop_free(pre_cmds, identity);
  468. sk_OPENSSL_STRING_pop_free(post_cmds, identity);
  469. if (bio_out != NULL)
  470. BIO_free_all(bio_out);
  471. apps_shutdown();
  472. OPENSSL_EXIT(ret);
  473. }
  474. #else
  475. # if PEDANTIC
  476. static void *dummy = &dummy;
  477. # endif
  478. #endif