eng_local.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /*
  2. * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
  4. *
  5. * Licensed under the OpenSSL license (the "License"). You may not use
  6. * this file except in compliance with the License. You can obtain a copy
  7. * in the file LICENSE in the source distribution or at
  8. * https://www.openssl.org/source/license.html
  9. */
  10. #ifndef OSSL_CRYPTO_ENGINE_ENG_LOCAL_H
  11. # define OSSL_CRYPTO_ENGINE_ENG_LOCAL_H
  12. # include "internal/cryptlib.h"
  13. # include "crypto/engine.h"
  14. # include "internal/thread_once.h"
  15. # include "internal/refcount.h"
  16. extern CRYPTO_RWLOCK *global_engine_lock;
  17. /*
  18. * If we compile with this symbol defined, then both reference counts in the
  19. * ENGINE structure will be monitored with a line of output on stderr for
  20. * each change. This prints the engine's pointer address (truncated to
  21. * unsigned int), "struct" or "funct" to indicate the reference type, the
  22. * before and after reference count, and the file:line-number pair. The
  23. * "engine_ref_debug" statements must come *after* the change.
  24. */
  25. # ifdef ENGINE_REF_COUNT_DEBUG
  26. # define engine_ref_debug(e, isfunct, diff) \
  27. fprintf(stderr, "engine: %08x %s from %d to %d (%s:%d)\n", \
  28. (unsigned int)(e), (isfunct ? "funct" : "struct"), \
  29. ((isfunct) ? ((e)->funct_ref - (diff)) : ((e)->struct_ref - (diff))), \
  30. ((isfunct) ? (e)->funct_ref : (e)->struct_ref), \
  31. (OPENSSL_FILE), (OPENSSL_LINE))
  32. # else
  33. # define engine_ref_debug(e, isfunct, diff)
  34. # endif
  35. /*
  36. * Any code that will need cleanup operations should use these functions to
  37. * register callbacks. engine_cleanup_int() will call all registered
  38. * callbacks in order. NB: both the "add" functions assume the engine lock to
  39. * already be held (in "write" mode).
  40. */
  41. typedef void (ENGINE_CLEANUP_CB) (void);
  42. typedef struct st_engine_cleanup_item {
  43. ENGINE_CLEANUP_CB *cb;
  44. } ENGINE_CLEANUP_ITEM;
  45. DEFINE_STACK_OF(ENGINE_CLEANUP_ITEM)
  46. void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb);
  47. void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb);
  48. /* We need stacks of ENGINEs for use in eng_table.c */
  49. DEFINE_STACK_OF(ENGINE)
  50. /*
  51. * If this symbol is defined then engine_table_select(), the function that is
  52. * used by RSA, DSA (etc) code to select registered ENGINEs, cache defaults
  53. * and functional references (etc), will display debugging summaries to
  54. * stderr.
  55. */
  56. /* #define ENGINE_TABLE_DEBUG */
  57. /*
  58. * This represents an implementation table. Dependent code should instantiate
  59. * it as a (ENGINE_TABLE *) pointer value set initially to NULL.
  60. */
  61. typedef struct st_engine_table ENGINE_TABLE;
  62. int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
  63. ENGINE *e, const int *nids, int num_nids,
  64. int setdefault);
  65. void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e);
  66. void engine_table_cleanup(ENGINE_TABLE **table);
  67. # ifndef ENGINE_TABLE_DEBUG
  68. ENGINE *engine_table_select(ENGINE_TABLE **table, int nid);
  69. # else
  70. ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f,
  71. int l);
  72. # define engine_table_select(t,n) engine_table_select_tmp(t,n,OPENSSL_FILE,OPENSSL_LINE)
  73. # endif
  74. typedef void (engine_table_doall_cb) (int nid, STACK_OF(ENGINE) *sk,
  75. ENGINE *def, void *arg);
  76. void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb,
  77. void *arg);
  78. /*
  79. * Internal versions of API functions that have control over locking. These
  80. * are used between C files when functionality needs to be shared but the
  81. * caller may already be controlling of the engine lock.
  82. */
  83. int engine_unlocked_init(ENGINE *e);
  84. int engine_unlocked_finish(ENGINE *e, int unlock_for_handlers);
  85. int engine_free_util(ENGINE *e, int not_locked);
  86. /*
  87. * This function will reset all "set"able values in an ENGINE to NULL. This
  88. * won't touch reference counts or ex_data, but is equivalent to calling all
  89. * the ENGINE_set_***() functions with a NULL value.
  90. */
  91. void engine_set_all_null(ENGINE *e);
  92. /*
  93. * NB: Bitwise OR-able values for the "flags" variable in ENGINE are now
  94. * exposed in engine.h.
  95. */
  96. /* Free up dynamically allocated public key methods associated with ENGINE */
  97. void engine_pkey_meths_free(ENGINE *e);
  98. void engine_pkey_asn1_meths_free(ENGINE *e);
  99. /* Once initialisation function */
  100. extern CRYPTO_ONCE engine_lock_init;
  101. DECLARE_RUN_ONCE(do_engine_lock_init)
  102. typedef void (*ENGINE_DYNAMIC_ID)(void);
  103. int engine_add_dynamic_id(ENGINE *e, ENGINE_DYNAMIC_ID dynamic_id,
  104. int not_locked);
  105. void engine_remove_dynamic_id(ENGINE *e, int not_locked);
  106. /*
  107. * This is a structure for storing implementations of various crypto
  108. * algorithms and functions.
  109. */
  110. struct engine_st {
  111. const char *id;
  112. const char *name;
  113. const RSA_METHOD *rsa_meth;
  114. const DSA_METHOD *dsa_meth;
  115. const DH_METHOD *dh_meth;
  116. const EC_KEY_METHOD *ec_meth;
  117. const RAND_METHOD *rand_meth;
  118. /* Cipher handling is via this callback */
  119. ENGINE_CIPHERS_PTR ciphers;
  120. /* Digest handling is via this callback */
  121. ENGINE_DIGESTS_PTR digests;
  122. /* Public key handling via this callback */
  123. ENGINE_PKEY_METHS_PTR pkey_meths;
  124. /* ASN1 public key handling via this callback */
  125. ENGINE_PKEY_ASN1_METHS_PTR pkey_asn1_meths;
  126. ENGINE_GEN_INT_FUNC_PTR destroy;
  127. ENGINE_GEN_INT_FUNC_PTR init;
  128. ENGINE_GEN_INT_FUNC_PTR finish;
  129. ENGINE_CTRL_FUNC_PTR ctrl;
  130. ENGINE_LOAD_KEY_PTR load_privkey;
  131. ENGINE_LOAD_KEY_PTR load_pubkey;
  132. ENGINE_SSL_CLIENT_CERT_PTR load_ssl_client_cert;
  133. const ENGINE_CMD_DEFN *cmd_defns;
  134. int flags;
  135. /* reference count on the structure itself */
  136. CRYPTO_REF_COUNT struct_ref;
  137. /*
  138. * reference count on usability of the engine type. NB: This controls the
  139. * loading and initialisation of any functionality required by this
  140. * engine, whereas the previous count is simply to cope with
  141. * (de)allocation of this structure. Hence, running_ref <= struct_ref at
  142. * all times.
  143. */
  144. int funct_ref;
  145. /* A place to store per-ENGINE data */
  146. CRYPTO_EX_DATA ex_data;
  147. /* Used to maintain the linked-list of engines. */
  148. struct engine_st *prev;
  149. struct engine_st *next;
  150. /* Used to maintain the linked-list of dynamic engines. */
  151. struct engine_st *prev_dyn;
  152. struct engine_st *next_dyn;
  153. ENGINE_DYNAMIC_ID dynamic_id;
  154. };
  155. typedef struct st_engine_pile ENGINE_PILE;
  156. DEFINE_LHASH_OF(ENGINE_PILE);
  157. #endif /* OSSL_CRYPTO_ENGINE_ENG_LOCAL_H */