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