ossl_provider_new.pod 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. =pod
  2. =head1 NAME
  3. ossl_provider_find, ossl_provider_new, ossl_provider_up_ref,
  4. ossl_provider_free,
  5. ossl_provider_set_fallback, ossl_provider_set_module_path,
  6. ossl_provider_add_parameter, ossl_provider_set_child, ossl_provider_get_parent,
  7. ossl_provider_up_ref_parent, ossl_provider_free_parent,
  8. ossl_provider_default_props_update, ossl_provider_get0_dispatch,
  9. ossl_provider_init_as_child,
  10. ossl_provider_activate, ossl_provider_deactivate, ossl_provider_available,
  11. ossl_provider_ctx,
  12. ossl_provider_doall_activated,
  13. ossl_provider_name, ossl_provider_dso,
  14. ossl_provider_module_name, ossl_provider_module_path,
  15. ossl_provider_libctx,
  16. ossl_provider_teardown, ossl_provider_gettable_params,
  17. ossl_provider_get_params, ossl_provider_clear_all_operation_bits,
  18. ossl_provider_query_operation, ossl_provider_unquery_operation,
  19. ossl_provider_set_operation_bit, ossl_provider_test_operation_bit,
  20. ossl_provider_get_capabilities
  21. - internal provider routines
  22. =head1 SYNOPSIS
  23. #include "internal/provider.h"
  24. OSSL_PROVIDER *ossl_provider_find(OSSL_LIB_CTX *libctx, const char *name,
  25. int noconfig);
  26. OSSL_PROVIDER *ossl_provider_new(OSSL_LIB_CTX *libctx, const char *name,
  27. ossl_provider_init_fn *init_function
  28. int noconfig);
  29. int ossl_provider_up_ref(OSSL_PROVIDER *prov);
  30. void ossl_provider_free(OSSL_PROVIDER *prov);
  31. /* Setters */
  32. int ossl_provider_set_fallback(OSSL_PROVIDER *prov);
  33. int ossl_provider_set_module_path(OSSL_PROVIDER *prov, const char *path);
  34. int ossl_provider_add_parameter(OSSL_PROVIDER *prov, const char *name,
  35. const char *value);
  36. /* Child Providers */
  37. int ossl_provider_set_child(OSSL_PROVIDER *prov,
  38. const OSSL_CORE_HANDLE *handle);
  39. const OSSL_CORE_HANDLE *ossl_provider_get_parent(OSSL_PROVIDER *prov);
  40. int ossl_provider_up_ref_parent(OSSL_PROVIDER *prov, int activate);
  41. int ossl_provider_free_parent(OSSL_PROVIDER *prov, int deactivate);
  42. int ossl_provider_default_props_update(OSSL_LIB_CTX *libctx,
  43. const char *props);
  44. /*
  45. * Activate the Provider
  46. * If the Provider is a module, the module will be loaded
  47. */
  48. int ossl_provider_activate(OSSL_PROVIDER *prov, int retain_fallbacks,
  49. int upcalls);
  50. int ossl_provider_deactivate(OSSL_PROVIDER *prov);
  51. /* Check if provider is available (activated) */
  52. int ossl_provider_available(OSSL_PROVIDER *prov);
  53. /* Return pointer to the provider's context */
  54. void *ossl_provider_ctx(const OSSL_PROVIDER *prov);
  55. const OSSL_DISPATCH *ossl_provider_get0_dispatch(const OSSL_PROVIDER *prov);
  56. /* Iterate over all loaded providers */
  57. int ossl_provider_doall_activated(OSSL_LIB_CTX *,
  58. int (*cb)(OSSL_PROVIDER *provider,
  59. void *cbdata),
  60. void *cbdata);
  61. /* Getters for other library functions */
  62. const char *ossl_provider_name(OSSL_PROVIDER *prov);
  63. const DSO *ossl_provider_dso(OSSL_PROVIDER *prov);
  64. const char *ossl_provider_module_name(OSSL_PROVIDER *prov);
  65. const char *ossl_provider_module_path(OSSL_PROVIDER *prov);
  66. OSSL_LIB_CTX *ossl_provider_libctx(const OSSL_PROVIDER *prov);
  67. /* Thin wrappers around calls to the provider */
  68. void ossl_provider_teardown(const OSSL_PROVIDER *prov);
  69. const OSSL_PARAM *ossl_provider_gettable_params(const OSSL_PROVIDER *prov);
  70. int ossl_provider_get_params(const OSSL_PROVIDER *prov, OSSL_PARAM params[]);
  71. int ossl_provider_get_capabilities(const OSSL_PROVIDER *prov,
  72. const char *capability,
  73. OSSL_CALLBACK *cb,
  74. void *arg);
  75. const OSSL_ALGORITHM *ossl_provider_query_operation(const OSSL_PROVIDER *prov,
  76. int operation_id,
  77. int *no_cache);
  78. void ossl_provider_unquery_operation(const OSSL_PROVIDER *prov,
  79. int operation_id,
  80. const OSSL_ALGORITHM *algs);
  81. int ossl_provider_set_operation_bit(OSSL_PROVIDER *provider, size_t bitnum);
  82. int ossl_provider_test_operation_bit(OSSL_PROVIDER *provider, size_t bitnum,
  83. int *result);
  84. int ossl_provider_clear_all_operation_bits(OSSL_LIB_CTX *libctx);
  85. int ossl_provider_init_as_child(OSSL_LIB_CTX *ctx,
  86. const OSSL_CORE_HANDLE *handle,
  87. const OSSL_DISPATCH *in);
  88. =head1 DESCRIPTION
  89. I<OSSL_PROVIDER> is a type that holds all the necessary information
  90. to handle a provider, regardless of if it's built in to the
  91. application or the OpenSSL libraries, or if it's a loadable provider
  92. module.
  93. Instances of this type are commonly referred to as "provider objects".
  94. A provider object is always stored in a set of provider objects
  95. in the library context.
  96. Provider objects are reference counted.
  97. Provider objects are initially inactive, i.e. they are only recorded
  98. in the store, but are not used.
  99. They are activated with the first call to ossl_provider_activate(),
  100. and are deactivated with the last call to ossl_provider_deactivate().
  101. Activation affects a separate counter.
  102. =head2 Functions
  103. ossl_provider_find() finds an existing provider object in the provider
  104. object store by I<name>.
  105. The config file will be automatically loaded unless I<noconfig> is set.
  106. Typically I<noconfig> should be 0.
  107. We set I<noconfig> to 1 only when calling these functions while processing a
  108. config file in order to avoid recursively attempting to load the file.
  109. The provider object it finds has its reference count incremented.
  110. ossl_provider_new() creates a new provider object named I<name> and
  111. stores it in the provider object store, unless there already is one
  112. there with the same name.
  113. If there already is one with the same name, it's returned with its
  114. reference count incremented.
  115. The config file will be automatically loaded unless I<noconfig> is set.
  116. Typically I<noconfig> should be 0.
  117. We set I<noconfig> to 1 only when calling these functions while processing a
  118. config file in order to avoid recursively attempting to load the file.
  119. The reference count of a newly created provider object will always
  120. be 2; one for being added to the store, and one for the returned
  121. reference.
  122. If I<init_function> is NULL, the provider is assumed to be a
  123. dynamically loadable module, with the symbol B<OSSL_provider_init> as
  124. its initialisation function.
  125. If I<init_function> isn't NULL, the provider is assumed to be built
  126. in, with I<init_function> being the pointer to its initialisation
  127. function.
  128. For further description of the initialisation function, see the
  129. description of ossl_provider_activate() below.
  130. ossl_provider_up_ref() increments the provider object I<prov>'s
  131. reference count.
  132. ossl_provider_free() decrements the provider object I<prov>'s
  133. reference count; when it drops to zero, the provider object is assumed
  134. to have fallen out of use and will be deinitialized (its I<teardown>
  135. function is called), and the associated module will be unloaded if one
  136. was loaded, and I<prov> itself will be freed.
  137. ossl_provider_set_fallback() marks an available provider I<prov> as
  138. fallback.
  139. Note that after this call, the provider object pointer that was
  140. used can simply be dropped, but not freed.
  141. ossl_provider_set_module_path() sets the module path to load the
  142. provider module given the provider object I<prov>.
  143. This will be used in preference to automatically trying to figure out
  144. the path from the provider name and the default module directory (more
  145. on this in L</NOTES>).
  146. ossl_provider_libctx() returns the library context the given
  147. provider I<prov> is registered in.
  148. ossl_provider_add_parameter() adds a global parameter for the provider
  149. to retrieve as it sees fit.
  150. The parameters are a combination of I<name> and I<value>, and the
  151. provider will use the name to find the value it wants.
  152. Only text parameters can be given, and it's up to the provider to
  153. interpret them.
  154. ossl_provider_set_child() marks this provider as a child of a provider in the
  155. parent library context. I<handle> is the B<OSSL_CORE_HANDLE> object passed to
  156. the provider's B<OSSL_provider_init> function.
  157. ossl_provider_get_parent() obtains the handle on the parent provider.
  158. ossl_provider_up_ref_parent() increases the reference count on the parent
  159. provider. If I<activate> is nonzero then the parent provider is also activated.
  160. ossl_provider_free_parent() decreases the reference count on the parent
  161. provider. If I<deactivate> is nonzero then the parent provider is also
  162. deactivated.
  163. ossl_provider_default_props_update() is responsible for informing any child
  164. providers of an update to the default properties. The new properties are
  165. supplied in the I<props> string.
  166. ossl_provider_activate() "activates" the provider for the given
  167. provider object I<prov> by incrementing its activation count, flagging
  168. it as activated, and initializing it if it isn't already initialized.
  169. Initializing means one of the following:
  170. =over 4
  171. =item *
  172. If an initialization function was given with ossl_provider_new(), that
  173. function will get called.
  174. =item *
  175. If no initialization function was given with ossl_provider_new(), a
  176. loadable module with the I<name> that was given to ossl_provider_new()
  177. will be located and loaded, then the symbol B<OSSL_provider_init> will
  178. be located in that module, and called.
  179. =back
  180. If I<retain_fallbacks> is zero, fallbacks are disabled. If it is nonzero,
  181. fallbacks are left unchanged. If I<upcalls> is nonzero then, if this is a child
  182. provider, upcalls to the parent libctx will be made to inform it of an
  183. up-ref.
  184. ossl_provider_deactivate() "deactivates" the provider for the given
  185. provider object I<prov> by decrementing its activation count. When
  186. that count reaches zero, the activation flag is cleared.
  187. ossl_provider_available() activates all fallbacks if no provider is
  188. activated yet, then checks if given provider object I<prov> is
  189. activated.
  190. ossl_provider_ctx() returns a context created by the provider.
  191. Outside of the provider, it's completely opaque, but it needs to be
  192. passed back to some of the provider functions.
  193. ossl_provider_get0_dispatch() returns the dispatch table that the provider
  194. initially returned in the I<out> parameter of its B<OSSL_provider_init>
  195. function.
  196. ossl_provider_doall_activated() iterates over all the currently
  197. "activated" providers, and calls I<cb> for each of them.
  198. If no providers have been "activated" yet, it tries to activate all
  199. available fallback providers before iterating over them.
  200. ossl_provider_name() returns the name that was given with
  201. ossl_provider_new().
  202. ossl_provider_dso() returns a reference to the module, for providers
  203. that come in the form of loadable modules.
  204. ossl_provider_module_name() returns the filename of the module, for
  205. providers that come in the form of loadable modules.
  206. ossl_provider_module_path() returns the full path of the module file,
  207. for providers that come in the form of loadable modules.
  208. ossl_provider_teardown() calls the provider's I<teardown> function, if
  209. the provider has one.
  210. ossl_provider_gettable_params() calls the provider's I<gettable_params>
  211. function, if the provider has one.
  212. It should return an array of I<OSSL_PARAM> to describe all the
  213. parameters that the provider has for the provider object.
  214. ossl_provider_get_params() calls the provider's parameter request
  215. responder.
  216. It should treat the given I<OSSL_PARAM> array as described in
  217. L<OSSL_PARAM(3)>.
  218. ossl_provider_get_capabilities() calls the provider's I<get_capabilities> function,
  219. if the provider has one. It provides the name of the I<capability> and a
  220. callback I<cb> parameter to call for each capability that has a matching name in
  221. the provider. The callback gets passed OSSL_PARAM details about the capability as
  222. well as the caller supplied argument I<arg>.
  223. ossl_provider_query_operation() calls the provider's
  224. I<query_operation> function, if the provider has one.
  225. It should return an array of I<OSSL_ALGORITHM> for the given
  226. I<operation_id>.
  227. ossl_provider_unquery_operation() informs the provider that the result of
  228. ossl_provider_query_operation() is no longer going to be directly accessed and
  229. that all relevant information has been copied.
  230. ossl_provider_set_operation_bit() registers a 1 for operation I<bitnum>
  231. in a bitstring that's internal to I<provider>.
  232. ossl_provider_test_operation_bit() checks if the bit operation I<bitnum>
  233. is set (1) or not (0) in the internal I<provider> bitstring, and sets
  234. I<*result> to 1 or 0 accorddingly.
  235. ossl_provider_clear_all_operation_bits() clears all of the operation bits
  236. to (0) for all providers in the library context I<libctx>.
  237. ossl_provider_init_as_child() stores in the library context I<ctx> references to
  238. the necessary upcalls for managing child providers. The I<handle> and I<in>
  239. parameters are the B<OSSL_CORE_HANDLE> and B<OSSL_DISPATCH> pointers that were
  240. passed to the provider's B<OSSL_provider_init> function.
  241. =head1 NOTES
  242. Locating a provider module happens as follows:
  243. =over 4
  244. =item 1.
  245. If a path was given with ossl_provider_set_module_path(), use that as
  246. module path.
  247. Otherwise, use the provider object's name as module path, with
  248. platform specific standard extensions added.
  249. =item 2.
  250. If the environment variable B<OPENSSL_MODULES> is defined, assume its
  251. value is a directory specification and merge it with the module path.
  252. Otherwise, merge the value of the OpenSSL built in macro B<MODULESDIR>
  253. with the module path.
  254. =back
  255. When this process is done, the result is used when trying to load the
  256. provider module.
  257. The command C<openssl version -m> can be used to find out the value
  258. of the built in macro B<MODULESDIR>.
  259. =head1 RETURN VALUES
  260. ossl_provider_find() and ossl_provider_new() return a pointer to a
  261. provider object (I<OSSL_PROVIDER>) on success, or NULL on error.
  262. ossl_provider_up_ref() returns the value of the reference count after
  263. it has been incremented.
  264. ossl_provider_free() doesn't return any value.
  265. ossl_provider_doall_activated() returns 1 if the callback was called for all
  266. activated providers. A return value of 0 means that the callback was not
  267. called for any activated providers.
  268. ossl_provider_set_module_path(), ossl_provider_set_fallback(),
  269. ossl_provider_activate(), ossl_provider_activate_leave_fallbacks() and
  270. ossl_provider_deactivate(), ossl_provider_default_props_update() return 1 on
  271. success, or 0 on error.
  272. ossl_provider_available() return 1 if the provider is available,
  273. otherwise 0.
  274. ossl_provider_name(), ossl_provider_dso(),
  275. ossl_provider_module_name(), and ossl_provider_module_path() return a
  276. pointer to their respective data if it's available, otherwise NULL
  277. is returned.
  278. ossl_provider_libctx() return a pointer to the library context.
  279. This may be NULL, and is perfectly valid, as it denotes the default
  280. global library context.
  281. ossl_provider_teardown() doesn't return any value.
  282. ossl_provider_gettable_params() returns a pointer to a constant
  283. I<OSSL_PARAM> array if this function is available in the provider,
  284. otherwise NULL.
  285. ossl_provider_get_params() returns 1 on success, or 0 on error.
  286. If this function isn't available in the provider, 0 is returned.
  287. ossl_provider_set_operation_bit() and ossl_provider_test_operation_bit()
  288. return 1 on success, or 0 on error.
  289. ossl_provider_clear_all_operation_bits() returns 1 on success, or 0 on error.
  290. ossl_provider_get_capabilities() returns 1 on success, or 0 on error.
  291. If this function isn't available in the provider or the provider does not
  292. support the requested capability then 0 is returned.
  293. =head1 SEE ALSO
  294. L<OSSL_PROVIDER(3)>, L<provider(7)>, L<openssl(1)>
  295. =head1 HISTORY
  296. The functions described here were all added in OpenSSL 3.0.
  297. =head1 COPYRIGHT
  298. Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
  299. Licensed under the Apache License 2.0 (the "License"). You may not use
  300. this file except in compliance with the License. You can obtain a copy
  301. in the file LICENSE in the source distribution or at
  302. L<https://www.openssl.org/source/license.html>.
  303. =cut