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