eng_lib.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /* crypto/engine/eng_lib.c */
  2. /*
  3. * Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL project
  4. * 2000.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 1999-2001 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 "eng_int.h"
  60. #include <openssl/rand.h>
  61. /* The "new"/"free" stuff first */
  62. ENGINE *ENGINE_new(void)
  63. {
  64. ENGINE *ret;
  65. ret = (ENGINE *)OPENSSL_malloc(sizeof(ENGINE));
  66. if (ret == NULL) {
  67. ENGINEerr(ENGINE_F_ENGINE_NEW, ERR_R_MALLOC_FAILURE);
  68. return NULL;
  69. }
  70. memset(ret, 0, sizeof(ENGINE));
  71. ret->struct_ref = 1;
  72. engine_ref_debug(ret, 0, 1)
  73. CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ENGINE, ret, &ret->ex_data);
  74. return ret;
  75. }
  76. /*
  77. * Placed here (close proximity to ENGINE_new) so that modifications to the
  78. * elements of the ENGINE structure are more likely to be caught and changed
  79. * here.
  80. */
  81. void engine_set_all_null(ENGINE *e)
  82. {
  83. e->id = NULL;
  84. e->name = NULL;
  85. e->rsa_meth = NULL;
  86. e->dsa_meth = NULL;
  87. e->dh_meth = NULL;
  88. e->rand_meth = NULL;
  89. e->store_meth = NULL;
  90. e->ciphers = NULL;
  91. e->digests = NULL;
  92. e->destroy = NULL;
  93. e->init = NULL;
  94. e->finish = NULL;
  95. e->ctrl = NULL;
  96. e->load_privkey = NULL;
  97. e->load_pubkey = NULL;
  98. e->cmd_defns = NULL;
  99. e->flags = 0;
  100. }
  101. int engine_free_util(ENGINE *e, int locked)
  102. {
  103. int i;
  104. if (e == NULL) {
  105. ENGINEerr(ENGINE_F_ENGINE_FREE_UTIL, ERR_R_PASSED_NULL_PARAMETER);
  106. return 0;
  107. }
  108. if (locked)
  109. i = CRYPTO_add(&e->struct_ref, -1, CRYPTO_LOCK_ENGINE);
  110. else
  111. i = --e->struct_ref;
  112. engine_ref_debug(e, 0, -1)
  113. if (i > 0)
  114. return 1;
  115. #ifdef REF_CHECK
  116. if (i < 0) {
  117. fprintf(stderr, "ENGINE_free, bad structural reference count\n");
  118. abort();
  119. }
  120. #endif
  121. /* Free up any dynamically allocated public key methods */
  122. engine_pkey_meths_free(e);
  123. engine_pkey_asn1_meths_free(e);
  124. /*
  125. * Give the ENGINE a chance to do any structural cleanup corresponding to
  126. * allocation it did in its constructor (eg. unload error strings)
  127. */
  128. if (e->destroy)
  129. e->destroy(e);
  130. CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ENGINE, e, &e->ex_data);
  131. OPENSSL_free(e);
  132. return 1;
  133. }
  134. int ENGINE_free(ENGINE *e)
  135. {
  136. return engine_free_util(e, 1);
  137. }
  138. /* Cleanup stuff */
  139. /*
  140. * ENGINE_cleanup() is coded such that anything that does work that will need
  141. * cleanup can register a "cleanup" callback here. That way we don't get
  142. * linker bloat by referring to all *possible* cleanups, but any linker bloat
  143. * into code "X" will cause X's cleanup function to end up here.
  144. */
  145. static STACK_OF(ENGINE_CLEANUP_ITEM) *cleanup_stack = NULL;
  146. static int int_cleanup_check(int create)
  147. {
  148. if (cleanup_stack)
  149. return 1;
  150. if (!create)
  151. return 0;
  152. cleanup_stack = sk_ENGINE_CLEANUP_ITEM_new_null();
  153. return (cleanup_stack ? 1 : 0);
  154. }
  155. static ENGINE_CLEANUP_ITEM *int_cleanup_item(ENGINE_CLEANUP_CB *cb)
  156. {
  157. ENGINE_CLEANUP_ITEM *item = OPENSSL_malloc(sizeof(ENGINE_CLEANUP_ITEM));
  158. if (!item)
  159. return NULL;
  160. item->cb = cb;
  161. return item;
  162. }
  163. void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb)
  164. {
  165. ENGINE_CLEANUP_ITEM *item;
  166. if (!int_cleanup_check(1))
  167. return;
  168. item = int_cleanup_item(cb);
  169. if (item)
  170. sk_ENGINE_CLEANUP_ITEM_insert(cleanup_stack, item, 0);
  171. }
  172. void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb)
  173. {
  174. ENGINE_CLEANUP_ITEM *item;
  175. if (!int_cleanup_check(1))
  176. return;
  177. item = int_cleanup_item(cb);
  178. if (item)
  179. sk_ENGINE_CLEANUP_ITEM_push(cleanup_stack, item);
  180. }
  181. /* The API function that performs all cleanup */
  182. static void engine_cleanup_cb_free(ENGINE_CLEANUP_ITEM *item)
  183. {
  184. (*(item->cb)) ();
  185. OPENSSL_free(item);
  186. }
  187. void ENGINE_cleanup(void)
  188. {
  189. if (int_cleanup_check(0)) {
  190. sk_ENGINE_CLEANUP_ITEM_pop_free(cleanup_stack,
  191. engine_cleanup_cb_free);
  192. cleanup_stack = NULL;
  193. }
  194. /*
  195. * FIXME: This should be handled (somehow) through RAND, eg. by it
  196. * registering a cleanup callback.
  197. */
  198. RAND_set_rand_method(NULL);
  199. }
  200. /* Now the "ex_data" support */
  201. int ENGINE_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
  202. CRYPTO_EX_dup *dup_func,
  203. CRYPTO_EX_free *free_func)
  204. {
  205. return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_ENGINE, argl, argp,
  206. new_func, dup_func, free_func);
  207. }
  208. int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg)
  209. {
  210. return (CRYPTO_set_ex_data(&e->ex_data, idx, arg));
  211. }
  212. void *ENGINE_get_ex_data(const ENGINE *e, int idx)
  213. {
  214. return (CRYPTO_get_ex_data(&e->ex_data, idx));
  215. }
  216. /*
  217. * Functions to get/set an ENGINE's elements - mainly to avoid exposing the
  218. * ENGINE structure itself.
  219. */
  220. int ENGINE_set_id(ENGINE *e, const char *id)
  221. {
  222. if (id == NULL) {
  223. ENGINEerr(ENGINE_F_ENGINE_SET_ID, ERR_R_PASSED_NULL_PARAMETER);
  224. return 0;
  225. }
  226. e->id = id;
  227. return 1;
  228. }
  229. int ENGINE_set_name(ENGINE *e, const char *name)
  230. {
  231. if (name == NULL) {
  232. ENGINEerr(ENGINE_F_ENGINE_SET_NAME, ERR_R_PASSED_NULL_PARAMETER);
  233. return 0;
  234. }
  235. e->name = name;
  236. return 1;
  237. }
  238. int ENGINE_set_destroy_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR destroy_f)
  239. {
  240. e->destroy = destroy_f;
  241. return 1;
  242. }
  243. int ENGINE_set_init_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR init_f)
  244. {
  245. e->init = init_f;
  246. return 1;
  247. }
  248. int ENGINE_set_finish_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR finish_f)
  249. {
  250. e->finish = finish_f;
  251. return 1;
  252. }
  253. int ENGINE_set_ctrl_function(ENGINE *e, ENGINE_CTRL_FUNC_PTR ctrl_f)
  254. {
  255. e->ctrl = ctrl_f;
  256. return 1;
  257. }
  258. int ENGINE_set_flags(ENGINE *e, int flags)
  259. {
  260. e->flags = flags;
  261. return 1;
  262. }
  263. int ENGINE_set_cmd_defns(ENGINE *e, const ENGINE_CMD_DEFN *defns)
  264. {
  265. e->cmd_defns = defns;
  266. return 1;
  267. }
  268. const char *ENGINE_get_id(const ENGINE *e)
  269. {
  270. return e->id;
  271. }
  272. const char *ENGINE_get_name(const ENGINE *e)
  273. {
  274. return e->name;
  275. }
  276. ENGINE_GEN_INT_FUNC_PTR ENGINE_get_destroy_function(const ENGINE *e)
  277. {
  278. return e->destroy;
  279. }
  280. ENGINE_GEN_INT_FUNC_PTR ENGINE_get_init_function(const ENGINE *e)
  281. {
  282. return e->init;
  283. }
  284. ENGINE_GEN_INT_FUNC_PTR ENGINE_get_finish_function(const ENGINE *e)
  285. {
  286. return e->finish;
  287. }
  288. ENGINE_CTRL_FUNC_PTR ENGINE_get_ctrl_function(const ENGINE *e)
  289. {
  290. return e->ctrl;
  291. }
  292. int ENGINE_get_flags(const ENGINE *e)
  293. {
  294. return e->flags;
  295. }
  296. const ENGINE_CMD_DEFN *ENGINE_get_cmd_defns(const ENGINE *e)
  297. {
  298. return e->cmd_defns;
  299. }
  300. /*
  301. * eng_lib.o is pretty much linked into anything that touches ENGINE already,
  302. * so put the "static_state" hack here.
  303. */
  304. static int internal_static_hack = 0;
  305. void *ENGINE_get_static_state(void)
  306. {
  307. return &internal_static_hack;
  308. }