VirtualBox

source: vbox/trunk/src/libs/openssl-3.0.2/doc/man7/provider-base.pod@ 94403

最後變更 在這個檔案從94403是 94320,由 vboxsync 提交於 3 年 前

libs/openssl-3.0.1: Export to OSE and fix copyright headers in Makefiles, bugref:10128

檔案大小: 32.2 KB
 
1=pod
2
3=head1 NAME
4
5provider-base
6- The basic OpenSSL library E<lt>-E<gt> provider functions
7
8=head1 SYNOPSIS
9
10 #include <openssl/core_dispatch.h>
11
12 /*
13 * None of these are actual functions, but are displayed like this for
14 * the function signatures for functions that are offered as function
15 * pointers in OSSL_DISPATCH arrays.
16 */
17
18 /* Functions offered by libcrypto to the providers */
19 const OSSL_ITEM *core_gettable_params(const OSSL_CORE_HANDLE *handle);
20 int core_get_params(const OSSL_CORE_HANDLE *handle, OSSL_PARAM params[]);
21
22 typedef void (*OSSL_thread_stop_handler_fn)(void *arg);
23 int core_thread_start(const OSSL_CORE_HANDLE *handle,
24 OSSL_thread_stop_handler_fn handfn,
25 void *arg);
26
27 OPENSSL_CORE_CTX *core_get_libctx(const OSSL_CORE_HANDLE *handle);
28 void core_new_error(const OSSL_CORE_HANDLE *handle);
29 void core_set_error_debug(const OSSL_CORE_HANDLE *handle,
30 const char *file, int line, const char *func);
31 void core_vset_error(const OSSL_CORE_HANDLE *handle,
32 uint32_t reason, const char *fmt, va_list args);
33
34 int core_obj_add_sigid(const OSSL_CORE_HANDLE *prov, const char *sign_name,
35 const char *digest_name, const char *pkey_name);
36 int core_obj_create(const OSSL_CORE_HANDLE *handle, const char *oid,
37 const char *sn, const char *ln);
38
39 /*
40 * Some OpenSSL functionality is directly offered to providers via
41 * dispatch
42 */
43 void *CRYPTO_malloc(size_t num, const char *file, int line);
44 void *CRYPTO_zalloc(size_t num, const char *file, int line);
45 void CRYPTO_free(void *ptr, const char *file, int line);
46 void CRYPTO_clear_free(void *ptr, size_t num,
47 const char *file, int line);
48 void *CRYPTO_realloc(void *addr, size_t num,
49 const char *file, int line);
50 void *CRYPTO_clear_realloc(void *addr, size_t old_num, size_t num,
51 const char *file, int line);
52 void *CRYPTO_secure_malloc(size_t num, const char *file, int line);
53 void *CRYPTO_secure_zalloc(size_t num, const char *file, int line);
54 void CRYPTO_secure_free(void *ptr, const char *file, int line);
55 void CRYPTO_secure_clear_free(void *ptr, size_t num,
56 const char *file, int line);
57 int CRYPTO_secure_allocated(const void *ptr);
58 void OPENSSL_cleanse(void *ptr, size_t len);
59
60 unsigned char *OPENSSL_hexstr2buf(const char *str, long *buflen);
61
62 OSSL_CORE_BIO *BIO_new_file(const char *filename, const char *mode);
63 OSSL_CORE_BIO *BIO_new_membuf(const void *buf, int len);
64 int BIO_read_ex(OSSL_CORE_BIO *bio, void *data, size_t data_len,
65 size_t *bytes_read);
66 int BIO_write_ex(OSSL_CORE_BIO *bio, const void *data, size_t data_len,
67 size_t *written);
68 int BIO_up_ref(OSSL_CORE_BIO *bio);
69 int BIO_free(OSSL_CORE_BIO *bio);
70 int BIO_vprintf(OSSL_CORE_BIO *bio, const char *format, va_list args);
71 int BIO_vsnprintf(char *buf, size_t n, const char *fmt, va_list args);
72
73 void OSSL_SELF_TEST_set_callback(OSSL_LIB_CTX *libctx, OSSL_CALLBACK *cb,
74 void *cbarg);
75
76 size_t get_entropy(const OSSL_CORE_HANDLE *handle,
77 unsigned char **pout, int entropy,
78 size_t min_len, size_t max_len);
79 void cleanup_entropy(const OSSL_CORE_HANDLE *handle,
80 unsigned char *buf, size_t len);
81 size_t get_nonce(const OSSL_CORE_HANDLE *handle,
82 unsigned char **pout, size_t min_len, size_t max_len,
83 const void *salt, size_t salt_len);
84 void cleanup_nonce(const OSSL_CORE_HANDLE *handle,
85 unsigned char *buf, size_t len);
86
87 /* Functions for querying the providers in the application library context */
88 int provider_register_child_cb(const OSSL_CORE_HANDLE *handle,
89 int (*create_cb)(const OSSL_CORE_HANDLE *provider,
90 void *cbdata),
91 int (*remove_cb)(const OSSL_CORE_HANDLE *provider,
92 void *cbdata),
93 int (*global_props_cb)(const char *props, void *cbdata),
94 void *cbdata);
95 void provider_deregister_child_cb(const OSSL_CORE_HANDLE *handle);
96 const char *provider_name(const OSSL_CORE_HANDLE *prov);
97 void *provider_get0_provider_ctx(const OSSL_CORE_HANDLE *prov);
98 const OSSL_DISPATCH *provider_get0_dispatch(const OSSL_CORE_HANDLE *prov);
99 int provider_up_ref(const OSSL_CORE_HANDLE *prov, int activate);
100 int provider_free(const OSSL_CORE_HANDLE *prov, int deactivate);
101
102 /* Functions offered by the provider to libcrypto */
103 void provider_teardown(void *provctx);
104 const OSSL_ITEM *provider_gettable_params(void *provctx);
105 int provider_get_params(void *provctx, OSSL_PARAM params[]);
106 const OSSL_ALGORITHM *provider_query_operation(void *provctx,
107 int operation_id,
108 const int *no_store);
109 void provider_unquery_operation(void *provctx, int operation_id,
110 const OSSL_ALGORITHM *algs);
111 const OSSL_ITEM *provider_get_reason_strings(void *provctx);
112 int provider_get_capabilities(void *provctx, const char *capability,
113 OSSL_CALLBACK *cb, void *arg);
114 int provider_self_test(void *provctx);
115
116=head1 DESCRIPTION
117
118All "functions" mentioned here are passed as function pointers between
119F<libcrypto> and the provider in B<OSSL_DISPATCH> arrays, in the call
120of the provider initialization function. See L<provider(7)/Provider>
121for a description of the initialization function. They are known as "upcalls".
122
123All these "functions" have a corresponding function type definition
124named B<OSSL_FUNC_{name}_fn>, and a helper function to retrieve the
125function pointer from a B<OSSL_DISPATCH> element named
126B<OSSL_FUNC_{name}>.
127For example, the "function" core_gettable_params() has these:
128
129 typedef OSSL_PARAM *
130 (OSSL_FUNC_core_gettable_params_fn)(const OSSL_CORE_HANDLE *handle);
131 static ossl_inline OSSL_NAME_core_gettable_params_fn
132 OSSL_FUNC_core_gettable_params(const OSSL_DISPATCH *opf);
133
134B<OSSL_DISPATCH> arrays are indexed by numbers that are provided as
135macros in L<openssl-core_dispatch.h(7)>, as follows:
136
137For I<in> (the B<OSSL_DISPATCH> array passed from F<libcrypto> to the
138provider):
139
140 core_gettable_params OSSL_FUNC_CORE_GETTABLE_PARAMS
141 core_get_params OSSL_FUNC_CORE_GET_PARAMS
142 core_thread_start OSSL_FUNC_CORE_THREAD_START
143 core_get_libctx OSSL_FUNC_CORE_GET_LIBCTX
144 core_new_error OSSL_FUNC_CORE_NEW_ERROR
145 core_set_error_debug OSSL_FUNC_CORE_SET_ERROR_DEBUG
146 core_vset_error OSSL_FUNC_CORE_VSET_ERROR
147 core_obj_add_sigid OSSL_FUNC_CORE_OBJ_ADD_SIGID
148 core_obj_create OSSL_FUNC_CORE_OBJ_CREATE
149 CRYPTO_malloc OSSL_FUNC_CRYPTO_MALLOC
150 CRYPTO_zalloc OSSL_FUNC_CRYPTO_ZALLOC
151 CRYPTO_free OSSL_FUNC_CRYPTO_FREE
152 CRYPTO_clear_free OSSL_FUNC_CRYPTO_CLEAR_FREE
153 CRYPTO_realloc OSSL_FUNC_CRYPTO_REALLOC
154 CRYPTO_clear_realloc OSSL_FUNC_CRYPTO_CLEAR_REALLOC
155 CRYPTO_secure_malloc OSSL_FUNC_CRYPTO_SECURE_MALLOC
156 CRYPTO_secure_zalloc OSSL_FUNC_CRYPTO_SECURE_ZALLOC
157 CRYPTO_secure_free OSSL_FUNC_CRYPTO_SECURE_FREE
158 CRYPTO_secure_clear_free OSSL_FUNC_CRYPTO_SECURE_CLEAR_FREE
159 CRYPTO_secure_allocated OSSL_FUNC_CRYPTO_SECURE_ALLOCATED
160 BIO_new_file OSSL_FUNC_BIO_NEW_FILE
161 BIO_new_mem_buf OSSL_FUNC_BIO_NEW_MEMBUF
162 BIO_read_ex OSSL_FUNC_BIO_READ_EX
163 BIO_write_ex OSSL_FUNC_BIO_WRITE_EX
164 BIO_up_ref OSSL_FUNC_BIO_UP_REF
165 BIO_free OSSL_FUNC_BIO_FREE
166 BIO_vprintf OSSL_FUNC_BIO_VPRINTF
167 BIO_vsnprintf OSSL_FUNC_BIO_VSNPRINTF
168 BIO_puts OSSL_FUNC_BIO_PUTS
169 BIO_gets OSSL_FUNC_BIO_GETS
170 BIO_ctrl OSSL_FUNC_BIO_CTRL
171 OPENSSL_cleanse OSSL_FUNC_OPENSSL_CLEANSE
172 OSSL_SELF_TEST_set_callback OSSL_FUNC_SELF_TEST_CB
173 ossl_rand_get_entropy OSSL_FUNC_GET_ENTROPY
174 ossl_rand_cleanup_entropy OSSL_FUNC_CLEANUP_ENTROPY
175 ossl_rand_get_nonce OSSL_FUNC_GET_NONCE
176 ossl_rand_cleanup_nonce OSSL_FUNC_CLEANUP_NONCE
177 provider_register_child_cb OSSL_FUNC_PROVIDER_REGISTER_CHILD_CB
178 provider_deregister_child_cb OSSL_FUNC_PROVIDER_DEREGISTER_CHILD_CB
179 provider_name OSSL_FUNC_PROVIDER_NAME
180 provider_get0_provider_ctx OSSL_FUNC_PROVIDER_GET0_PROVIDER_CTX
181 provider_get0_dispatch OSSL_FUNC_PROVIDER_GET0_DISPATCH
182 provider_up_ref OSSL_FUNC_PROVIDER_UP_REF
183 provider_free OSSL_FUNC_PROVIDER_FREE
184
185For I<*out> (the B<OSSL_DISPATCH> array passed from the provider to
186F<libcrypto>):
187
188 provider_teardown OSSL_FUNC_PROVIDER_TEARDOWN
189 provider_gettable_params OSSL_FUNC_PROVIDER_GETTABLE_PARAMS
190 provider_get_params OSSL_FUNC_PROVIDER_GET_PARAMS
191 provider_query_operation OSSL_FUNC_PROVIDER_QUERY_OPERATION
192 provider_unquery_operation OSSL_FUNC_PROVIDER_UNQUERY_OPERATION
193 provider_get_reason_strings OSSL_FUNC_PROVIDER_GET_REASON_STRINGS
194 provider_get_capabilities OSSL_FUNC_PROVIDER_GET_CAPABILITIES
195 provider_self_test OSSL_FUNC_PROVIDER_SELF_TEST
196
197=head2 Core functions
198
199core_gettable_params() returns a constant array of descriptor
200B<OSSL_PARAM>, for parameters that core_get_params() can handle.
201
202core_get_params() retrieves parameters from the core for the given I<handle>.
203See L</Core parameters> below for a description of currently known
204parameters.
205
206The core_thread_start() function informs the core that the provider has stated
207an interest in the current thread. The core will inform the provider when the
208thread eventually stops. It must be passed the I<handle> for this provider, as
209well as a callback I<handfn> which will be called when the thread stops. The
210callback will subsequently be called, with the supplied argument I<arg>, from
211the thread that is stopping and gets passed the provider context as an
212argument. This may be useful to perform thread specific clean up such as
213freeing thread local variables.
214
215core_get_libctx() retrieves the core context in which the library
216object for the current provider is stored, accessible through the I<handle>.
217This function is useful only for built-in providers such as the default
218provider. Never cast this to OSSL_LIB_CTX in a provider that is not
219built-in as the OSSL_LIB_CTX of the library loading the provider might be
220a completely different structure than the OSSL_LIB_CTX of the library the
221provider is linked to. Use L<OSSL_LIB_CTX_new_child(3)> instead to obtain
222a proper library context that is linked to the application library context.
223
224core_new_error(), core_set_error_debug() and core_vset_error() are
225building blocks for reporting an error back to the core, with
226reference to the I<handle>.
227
228=over 4
229
230=item core_new_error()
231
232allocates a new thread specific error record.
233
234This corresponds to the OpenSSL function L<ERR_new(3)>.
235
236=item core_set_error_debug()
237
238sets debugging information in the current thread specific error
239record.
240The debugging information includes the name of the file I<file>, the
241line I<line> and the function name I<func> where the error occurred.
242
243This corresponds to the OpenSSL function L<ERR_set_debug(3)>.
244
245=item core_vset_error()
246
247sets the I<reason> for the error, along with any addition data.
248The I<reason> is a number defined by the provider and used to index
249the reason strings table that's returned by
250provider_get_reason_strings().
251The additional data is given as a format string I<fmt> and a set of
252arguments I<args>, which are treated in the same manner as with
253BIO_vsnprintf().
254I<file> and I<line> may also be passed to indicate exactly where the
255error occurred or was reported.
256
257This corresponds to the OpenSSL function L<ERR_vset_error(3)>.
258
259=back
260
261The core_obj_create() function registers a new OID and associated short name
262I<sn> and long name I<ln> for the given I<handle>. It is similar to the OpenSSL
263function L<OBJ_create(3)> except that it returns 1 on success or 0 on failure.
264It will treat as success the case where the OID already exists (even if the
265short name I<sn> or long name I<ln> provided as arguments differ from those
266associated with the existing OID, in which case the new names are not
267associated).
268This function is not thread safe.
269
270The core_obj_add_sigid() function registers a new composite signature algorithm
271(I<sign_name>) consisting of an underlying signature algorithm (I<pkey_name>)
272and digest algorithm (I<digest_name>) for the given I<handle>. It assumes that
273the OIDs for the composite signature algorithm as well as for the underlying
274signature and digest algorithms are either already known to OpenSSL or have been
275registered via a call to core_obj_create(). It corresponds to the OpenSSL
276function L<OBJ_add_sigid(3)>, except that the objects are identified by name
277rather than a numeric NID. Any name (OID, short name or long name) can be used
278to identify the object. It will treat as success the case where the composite
279signature algorithm already exists (even if registered against a different
280underlying signature or digest algorithm). It returns 1 on success or 0 on
281failure.
282This function is not thread safe.
283
284CRYPTO_malloc(), CRYPTO_zalloc(), CRYPTO_free(), CRYPTO_clear_free(),
285CRYPTO_realloc(), CRYPTO_clear_realloc(), CRYPTO_secure_malloc(),
286CRYPTO_secure_zalloc(), CRYPTO_secure_free(),
287CRYPTO_secure_clear_free(), CRYPTO_secure_allocated(),
288BIO_new_file(), BIO_new_mem_buf(), BIO_read_ex(), BIO_write_ex(), BIO_up_ref(),
289BIO_free(), BIO_vprintf(), BIO_vsnprintf(), BIO_gets(), BIO_puts(),
290BIO_ctrl(), OPENSSL_cleanse() and
291OPENSSL_hexstr2buf() correspond exactly to the public functions with
292the same name. As a matter of fact, the pointers in the B<OSSL_DISPATCH>
293array are typically direct pointers to those public functions. Note that the BIO
294functions take an B<OSSL_CORE_BIO> type rather than the standard B<BIO>
295type. This is to ensure that a provider does not mix BIOs from the core
296with BIOs used on the provider side (the two are not compatible).
297OSSL_SELF_TEST_set_callback() is used to set an optional callback that can be
298passed into a provider. This may be ignored by a provider.
299
300get_entropy() retrieves seeding material from the operating system.
301The seeding material will have at least I<entropy> bytes of randomness and the
302output will have at least I<min_len> and at most I<max_len> bytes.
303The buffer address is stored in I<*pout> and the buffer length is
304returned to the caller. On error, zero is returned.
305
306cleanup_entropy() is used to clean up and free the buffer returned by
307get_entropy(). The entropy pointer returned by get_entropy() is passed in
308B<buf> and its length in B<len>.
309
310get_nonce() retrieves a nonce using the passed I<salt> parameter
311of length I<salt_len> and operating system specific information.
312The I<salt> should contain uniquely identifying information and this is
313included, in an unspecified manner, as part of the output.
314The output is stored in a buffer which contrains at least I<min_len> and at
315most I<max_len> bytes. The buffer address is stored in I<*pout> and the
316buffer length returned to the caller. On error, zero is returned.
317
318cleanup_nonce() is used to clean up and free the buffer returned by
319get_nonce(). The nonce pointer returned by get_nonce() is passed in
320B<buf> and its length in B<len>.
321
322provider_register_child_cb() registers callbacks for being informed about the
323loading and unloading of providers in the application's library context.
324I<handle> is this provider's handle and I<cbdata> is this provider's data
325that will be passed back to the callbacks. It returns 1 on success or 0
326otherwise. These callbacks may be called while holding locks in libcrypto. In
327order to avoid deadlocks the callback implementation must not be long running
328and must not call other OpenSSL API functions or upcalls.
329
330I<create_cb> is a callback that will be called when a new provider is loaded
331into the application's library context. It is also called for any providers that
332are already loaded at the point that this callback is registered. The callback
333is passed the handle being used for the new provider being loadded and this
334provider's data in I<cbdata>. It should return 1 on success or 0 on failure.
335
336I<remove_cb> is a callback that will be called when a new provider is unloaded
337from the application's library context. It is passed the handle being used for
338the provider being unloaded and this provider's data in I<cbdata>. It should
339return 1 on success or 0 on failure.
340
341I<global_props_cb> is a callback that will be called when the global properties
342from the parent library context are changed. It should return 1 on success
343or 0 on failure.
344
345provider_deregister_child_cb() unregisters callbacks previously registered via
346provider_register_child_cb(). If provider_register_child_cb() has been called
347then provider_deregister_child_cb() should be called at or before the point that
348this provider's teardown function is called.
349
350provider_name() returns a string giving the name of the provider identified by
351I<handle>.
352
353provider_get0_provider_ctx() returns the provider context that is associated
354with the provider identified by I<prov>.
355
356provider_get0_dispatch() gets the dispatch table registered by the provider
357identified by I<prov> when it initialised.
358
359provider_up_ref() increments the reference count on the provider I<prov>. If
360I<activate> is nonzero then the provider is also loaded if it is not already
361loaded. It returns 1 on success or 0 on failure.
362
363provider_free() decrements the reference count on the provider I<prov>. If
364I<deactivate> is nonzero then the provider is also unloaded if it is not
365already loaded. It returns 1 on success or 0 on failure.
366
367=head2 Provider functions
368
369provider_teardown() is called when a provider is shut down and removed
370from the core's provider store.
371It must free the passed I<provctx>.
372
373provider_gettable_params() should return a constant array of
374descriptor B<OSSL_PARAM>, for parameters that provider_get_params()
375can handle.
376
377provider_get_params() should process the B<OSSL_PARAM> array
378I<params>, setting the values of the parameters it understands.
379
380provider_query_operation() should return a constant B<OSSL_ALGORITHM>
381that corresponds to the given I<operation_id>.
382It should indicate if the core may store a reference to this array by
383setting I<*no_store> to 0 (core may store a reference) or 1 (core may
384not store a reference).
385
386provider_unquery_operation() informs the provider that the result of a
387provider_query_operation() is no longer directly required and that the function
388pointers have been copied. The I<operation_id> should match that passed to
389provider_query_operation() and I<algs> should be its return value.
390
391provider_get_reason_strings() should return a constant B<OSSL_ITEM>
392array that provides reason strings for reason codes the provider may
393use when reporting errors using core_put_error().
394
395The provider_get_capabilities() function should call the callback I<cb> passing
396it a set of B<OSSL_PARAM>s and the caller supplied argument I<arg>. The
397B<OSSL_PARAM>s should provide details about the capability with the name given
398in the I<capability> argument relevant for the provider context I<provctx>. If a
399provider supports multiple capabilities with the given name then it may call the
400callback multiple times (one for each capability). Capabilities can be useful for
401describing the services that a provider can offer. For further details see the
402L</CAPABILITIES> section below. It should return 1 on success or 0 on error.
403
404The provider_self_test() function should perform known answer tests on a subset
405of the algorithms that it uses, and may also verify the integrity of the
406provider module. It should return 1 on success or 0 on error. It will return 1
407if this function is not used.
408
409None of these functions are mandatory, but a provider is fairly
410useless without at least provider_query_operation(), and
411provider_gettable_params() is fairly useless if not accompanied by
412provider_get_params().
413
414=head2 Provider parameters
415
416provider_get_params() can return the following provider parameters to the core:
417
418=over 4
419
420=item "name" (B<OSSL_PROV_PARAM_NAME>) <UTF8 string ptr>
421
422This points to a string that should give a unique name for the provider.
423
424=item "version" (B<OSSL_PROV_PARAM_VERSION>) <UTF8 string ptr>
425
426This points to a string that is a version number associated with this provider.
427OpenSSL in-built providers use OPENSSL_VERSION_STR, but this may be different
428for any third party provider. This string is for informational purposes only.
429
430=item "buildinfo" (B<OSSL_PROV_PARAM_BUILDINFO>) <UTF8 string ptr>
431
432This points to a string that is a build information associated with this provider.
433OpenSSL in-built providers use OPENSSL_FULL_VERSION_STR, but this may be
434different for any third party provider.
435
436=item "status" (B<OSSL_PROV_PARAM_STATUS>) <unsigned integer>
437
438This returns 0 if the provider has entered an error state, otherwise it returns
4391.
440
441=back
442
443provider_gettable_params() should return the above parameters.
444
445
446=head2 Core parameters
447
448core_get_params() can retrieve the following core parameters for each provider:
449
450=over 4
451
452=item "openssl-version" (B<OSSL_PROV_PARAM_CORE_VERSION>) <UTF8 string ptr>
453
454This points to the OpenSSL libraries' full version string, i.e. the string
455expanded from the macro B<OPENSSL_VERSION_STR>.
456
457=item "provider-name" (B<OSSL_PROV_PARAM_CORE_PROV_NAME>) <UTF8 string ptr>
458
459This points to the OpenSSL libraries' idea of what the calling provider is named.
460
461=item "module-filename" (B<OSSL_PROV_PARAM_CORE_MODULE_FILENAME>) <UTF8 string ptr>
462
463This points to a string containing the full filename of the providers
464module file.
465
466=back
467
468Additionally, provider specific configuration parameters from the
469config file are available, in dotted name form.
470The dotted name form is a concatenation of section names and final
471config command name separated by periods.
472
473For example, let's say we have the following config example:
474
475 config_diagnostics = 1
476 openssl_conf = openssl_init
477
478 [openssl_init]
479 providers = providers_sect
480
481 [providers_sect]
482 foo = foo_sect
483
484 [foo_sect]
485 activate = 1
486 data1 = 2
487 data2 = str
488 more = foo_more
489
490 [foo_more]
491 data3 = foo,bar
492
493The provider will have these additional parameters available:
494
495=over 4
496
497=item "activate"
498
499pointing at the string "1"
500
501=item "data1"
502
503pointing at the string "2"
504
505=item "data2"
506
507pointing at the string "str"
508
509=item "more.data3"
510
511pointing at the string "foo,bar"
512
513=back
514
515For more information on handling parameters, see L<OSSL_PARAM(3)> as
516L<OSSL_PARAM_int(3)>.
517
518=head1 CAPABILITIES
519
520Capabilities describe some of the services that a provider can offer.
521Applications can query the capabilities to discover those services.
522
523=head3 "TLS-GROUP" Capability
524
525The "TLS-GROUP" capability can be queried by libssl to discover the list of
526TLS groups that a provider can support. Each group supported can be used for
527I<key exchange> (KEX) or I<key encapsulation method> (KEM) during a TLS
528handshake.
529TLS clients can advertise the list of TLS groups they support in the
530supported_groups extension, and TLS servers can select a group from the offered
531list that they also support. In this way a provider can add to the list of
532groups that libssl already supports with additional ones.
533
534Each TLS group that a provider supports should be described via the callback
535passed in through the provider_get_capabilities function. Each group should have
536the following details supplied (all are mandatory, except
537B<OSSL_CAPABILITY_TLS_GROUP_IS_KEM>):
538
539=over 4
540
541=item "tls-group-name" (B<OSSL_CAPABILITY_TLS_GROUP_NAME>) <UTF8 string>
542
543The name of the group as given in the IANA TLS Supported Groups registry
544L<https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-8>.
545
546=item "tls-group-name-internal" (B<OSSL_CAPABILITY_TLS_GROUP_NAME_INTERNAL>) <UTF8 string>
547
548The name of the group as known by the provider. This could be the same as the
549"tls-group-name", but does not have to be.
550
551=item "tls-group-id" (B<OSSL_CAPABILITY_TLS_GROUP_ID>) <unsigned integer>
552
553The TLS group id value as given in the IANA TLS Supported Groups registry.
554
555=item "tls-group-alg" (B<OSSL_CAPABILITY_TLS_GROUP_ALG>) <UTF8 string>
556
557The name of a Key Management algorithm that the provider offers and that should
558be used with this group. Keys created should be able to support I<key exchange>
559or I<key encapsulation method> (KEM), as implied by the optional
560B<OSSL_CAPABILITY_TLS_GROUP_IS_KEM> flag.
561The algorithm must support key and parameter generation as well as the
562key/parameter generation parameter, B<OSSL_PKEY_PARAM_GROUP_NAME>. The group
563name given via "tls-group-name-internal" above will be passed via
564B<OSSL_PKEY_PARAM_GROUP_NAME> when libssl wishes to generate keys/parameters.
565
566=item "tls-group-sec-bits" (B<OSSL_CAPABILITY_TLS_GROUP_SECURITY_BITS>) <unsigned integer>
567
568The number of bits of security offered by keys in this group. The number of bits
569should be comparable with the ones given in table 2 and 3 of the NIST SP800-57
570document.
571
572=item "tls-group-is-kem" (B<OSSL_CAPABILITY_TLS_GROUP_IS_KEM>) <unsigned integer>
573
574Boolean flag to describe if the group should be used in I<key exchange> (KEX)
575mode (0, default) or in I<key encapsulation method> (KEM) mode (1).
576
577This parameter is optional: if not specified, KEX mode is assumed as the default
578mode for the group.
579
580In KEX mode, in a typical Diffie-Hellman fashion, both sides execute I<keygen>
581then I<derive> against the peer public key. To operate in KEX mode, the group
582implementation must support the provider functions as described in
583L<provider-keyexch(7)>.
584
585In KEM mode, the client executes I<keygen> and sends its public key, the server
586executes I<encapsulate> using the client's public key and sends back the
587resulting I<ciphertext>, finally the client executes I<decapsulate> to retrieve
588the same I<shared secret> generated by the server's I<encapsulate>. To operate
589in KEM mode, the group implementation must support the provider functions as
590described in L<provider-kem(7)>.
591
592Both in KEX and KEM mode, the resulting I<shared secret> is then used according
593to the protocol specification.
594
595=item "tls-min-tls" (B<OSSL_CAPABILITY_TLS_GROUP_MIN_TLS>) <integer>
596
597=item "tls-max-tls" (B<OSSL_CAPABILITY_TLS_GROUP_MAX_TLS>) <integer>
598
599=item "tls-min-dtls" (B<OSSL_CAPABILITY_TLS_GROUP_MIN_DTLS>) <integer>
600
601=item "tls-max-dtls" (B<OSSL_CAPABILITY_TLS_GROUP_MAX_DTLS>) <integer>
602
603These parameters can be used to describe the minimum and maximum TLS and DTLS
604versions supported by the group. The values equate to the on-the-wire encoding
605of the various TLS versions. For example TLSv1.3 is 0x0304 (772 decimal), and
606TLSv1.2 is 0x0303 (771 decimal). A 0 indicates that there is no defined minimum
607or maximum. A -1 indicates that the group should not be used in that protocol.
608
609=back
610
611=head1 EXAMPLES
612
613This is an example of a simple provider made available as a
614dynamically loadable module.
615It implements the fictitious algorithm C<FOO> for the fictitious
616operation C<BAR>.
617
618 #include <malloc.h>
619 #include <openssl/core.h>
620 #include <openssl/core_dispatch.h>
621
622 /* Errors used in this provider */
623 #define E_MALLOC 1
624
625 static const OSSL_ITEM reasons[] = {
626 { E_MALLOC, "memory allocation failure" }.
627 { 0, NULL } /* Termination */
628 };
629
630 /*
631 * To ensure we get the function signature right, forward declare
632 * them using function types provided by openssl/core_dispatch.h
633 */
634 OSSL_FUNC_bar_newctx_fn foo_newctx;
635 OSSL_FUNC_bar_freectx_fn foo_freectx;
636 OSSL_FUNC_bar_init_fn foo_init;
637 OSSL_FUNC_bar_update_fn foo_update;
638 OSSL_FUNC_bar_final_fn foo_final;
639
640 OSSL_FUNC_provider_query_operation_fn p_query;
641 OSSL_FUNC_provider_get_reason_strings_fn p_reasons;
642 OSSL_FUNC_provider_teardown_fn p_teardown;
643
644 OSSL_provider_init_fn OSSL_provider_init;
645
646 OSSL_FUNC_core_put_error *c_put_error = NULL;
647
648 /* Provider context */
649 struct prov_ctx_st {
650 OSSL_CORE_HANDLE *handle;
651 }
652
653 /* operation context for the algorithm FOO */
654 struct foo_ctx_st {
655 struct prov_ctx_st *provctx;
656 int b;
657 };
658
659 static void *foo_newctx(void *provctx)
660 {
661 struct foo_ctx_st *fooctx = malloc(sizeof(*fooctx));
662
663 if (fooctx != NULL)
664 fooctx->provctx = provctx;
665 else
666 c_put_error(provctx->handle, E_MALLOC, __FILE__, __LINE__);
667 return fooctx;
668 }
669
670 static void foo_freectx(void *fooctx)
671 {
672 free(fooctx);
673 }
674
675 static int foo_init(void *vfooctx)
676 {
677 struct foo_ctx_st *fooctx = vfooctx;
678
679 fooctx->b = 0x33;
680 }
681
682 static int foo_update(void *vfooctx, unsigned char *in, size_t inl)
683 {
684 struct foo_ctx_st *fooctx = vfooctx;
685
686 /* did you expect something serious? */
687 if (inl == 0)
688 return 1;
689 for (; inl-- > 0; in++)
690 *in ^= fooctx->b;
691 return 1;
692 }
693
694 static int foo_final(void *vfooctx)
695 {
696 struct foo_ctx_st *fooctx = vfooctx;
697
698 fooctx->b = 0x66;
699 }
700
701 static const OSSL_DISPATCH foo_fns[] = {
702 { OSSL_FUNC_BAR_NEWCTX, (void (*)(void))foo_newctx },
703 { OSSL_FUNC_BAR_FREECTX, (void (*)(void))foo_freectx },
704 { OSSL_FUNC_BAR_INIT, (void (*)(void))foo_init },
705 { OSSL_FUNC_BAR_UPDATE, (void (*)(void))foo_update },
706 { OSSL_FUNC_BAR_FINAL, (void (*)(void))foo_final },
707 { 0, NULL }
708 };
709
710 static const OSSL_ALGORITHM bars[] = {
711 { "FOO", "provider=chumbawamba", foo_fns },
712 { NULL, NULL, NULL }
713 };
714
715 static const OSSL_ALGORITHM *p_query(void *provctx, int operation_id,
716 int *no_store)
717 {
718 switch (operation_id) {
719 case OSSL_OP_BAR:
720 return bars;
721 }
722 return NULL;
723 }
724
725 static const OSSL_ITEM *p_reasons(void *provctx)
726 {
727 return reasons;
728 }
729
730 static void p_teardown(void *provctx)
731 {
732 free(provctx);
733 }
734
735 static const OSSL_DISPATCH prov_fns[] = {
736 { OSSL_FUNC_PROVIDER_TEARDOWN, (void (*)(void))p_teardown },
737 { OSSL_FUNC_PROVIDER_QUERY_OPERATION, (void (*)(void))p_query },
738 { OSSL_FUNC_PROVIDER_GET_REASON_STRINGS, (void (*)(void))p_reasons },
739 { 0, NULL }
740 };
741
742 int OSSL_provider_init(const OSSL_CORE_HANDLE *handle,
743 const OSSL_DISPATCH *in,
744 const OSSL_DISPATCH **out,
745 void **provctx)
746 {
747 struct prov_ctx_st *pctx = NULL;
748
749 for (; in->function_id != 0; in++)
750 switch (in->function_id) {
751 case OSSL_FUNC_CORE_PUT_ERROR:
752 c_put_error = OSSL_FUNC_core_put_error(in);
753 break;
754 }
755
756 *out = prov_fns;
757
758 if ((pctx = malloc(sizeof(*pctx))) == NULL) {
759 /*
760 * ALEA IACTA EST, if the core retrieves the reason table
761 * regardless, that string will be displayed, otherwise not.
762 */
763 c_put_error(handle, E_MALLOC, __FILE__, __LINE__);
764 return 0;
765 }
766 pctx->handle = handle;
767 return 1;
768 }
769
770This relies on a few things existing in F<openssl/core_dispatch.h>:
771
772 #define OSSL_OP_BAR 4711
773
774 #define OSSL_FUNC_BAR_NEWCTX 1
775 typedef void *(OSSL_FUNC_bar_newctx_fn)(void *provctx);
776 static ossl_inline OSSL_FUNC_bar_newctx(const OSSL_DISPATCH *opf)
777 { return (OSSL_FUNC_bar_newctx_fn *)opf->function; }
778
779 #define OSSL_FUNC_BAR_FREECTX 2
780 typedef void (OSSL_FUNC_bar_freectx_fn)(void *ctx);
781 static ossl_inline OSSL_FUNC_bar_newctx(const OSSL_DISPATCH *opf)
782 { return (OSSL_FUNC_bar_freectx_fn *)opf->function; }
783
784 #define OSSL_FUNC_BAR_INIT 3
785 typedef void *(OSSL_FUNC_bar_init_fn)(void *ctx);
786 static ossl_inline OSSL_FUNC_bar_init(const OSSL_DISPATCH *opf)
787 { return (OSSL_FUNC_bar_init_fn *)opf->function; }
788
789 #define OSSL_FUNC_BAR_UPDATE 4
790 typedef void *(OSSL_FUNC_bar_update_fn)(void *ctx,
791 unsigned char *in, size_t inl);
792 static ossl_inline OSSL_FUNC_bar_update(const OSSL_DISPATCH *opf)
793 { return (OSSL_FUNC_bar_update_fn *)opf->function; }
794
795 #define OSSL_FUNC_BAR_FINAL 5
796 typedef void *(OSSL_FUNC_bar_final_fn)(void *ctx);
797 static ossl_inline OSSL_FUNC_bar_final(const OSSL_DISPATCH *opf)
798 { return (OSSL_FUNC_bar_final_fn *)opf->function; }
799
800=head1 SEE ALSO
801
802L<provider(7)>
803
804=head1 HISTORY
805
806The concept of providers and everything surrounding them was
807introduced in OpenSSL 3.0.
808
809=head1 COPYRIGHT
810
811Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
812
813Licensed under the Apache License 2.0 (the "License"). You may not use
814this file except in compliance with the License. You can obtain a copy
815in the file LICENSE in the source distribution or at
816L<https://www.openssl.org/source/license.html>.
817
818=cut
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette