| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | =pod | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NAME | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-18 23:28:00 +08:00
										 |  |  | OSSL_METHOD_STORE, ossl_method_store_new, ossl_method_store_free, | 
					
						
							|  |  |  | ossl_method_store_init, ossl_method_store_cleanup, | 
					
						
							| 
									
										
										
										
											2022-04-22 22:44:51 +08:00
										 |  |  | ossl_method_store_add, ossl_method_store_fetch, | 
					
						
							| 
									
										
										
										
											2023-12-07 08:54:34 +08:00
										 |  |  | ossl_method_store_remove, ossl_method_store_remove_all_provided, | 
					
						
							| 
									
										
										
										
											2020-06-12 08:34:46 +08:00
										 |  |  | ossl_method_store_cache_get, ossl_method_store_cache_set, | 
					
						
							| 
									
										
										
										
											2022-04-22 22:44:51 +08:00
										 |  |  | ossl_method_store_cache_flush_all | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | - implementation method store and query | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 SYNOPSIS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  #include "internal/property.h" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  typedef struct ossl_method_store_st OSSL_METHOD_STORE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |  OSSL_METHOD_STORE *ossl_method_store_new(OSSL_LIB_CTX *ctx); | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  |  void ossl_method_store_free(OSSL_METHOD_STORE *store); | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |  int ossl_method_store_init(OSSL_LIB_CTX *ctx); | 
					
						
							|  |  |  |  void ossl_method_store_cleanup(OSSL_LIB_CTX *ctx); | 
					
						
							| 
									
										
										
										
											2019-08-21 16:08:44 +08:00
										 |  |  |  int ossl_method_store_add(OSSL_METHOD_STORE *store, const OSSL_PROVIDER *prov, | 
					
						
							| 
									
										
										
										
											2019-08-21 15:58:10 +08:00
										 |  |  |                            int nid, const char *properties, void *method, | 
					
						
							|  |  |  |                            int (*method_up_ref)(void *), | 
					
						
							|  |  |  |                            void (*method_destruct)(void *)); | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  |  int ossl_method_store_remove(OSSL_METHOD_STORE *store, | 
					
						
							| 
									
										
										
										
											2019-02-18 16:40:07 +08:00
										 |  |  |                               int nid, const void *method); | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  |  int ossl_method_store_fetch(OSSL_METHOD_STORE *store, | 
					
						
							|  |  |  |                              int nid, const char *properties, | 
					
						
							| 
									
										
										
										
											2021-10-04 21:33:37 +08:00
										 |  |  |                              void **method, const OSSL_PROVIDER **prov_rw); | 
					
						
							| 
									
										
										
										
											2022-04-22 22:44:51 +08:00
										 |  |  |  int ossl_method_store_remove_all_provided(OSSL_METHOD_STORE *store, | 
					
						
							|  |  |  |                                            const OSSL_PROVIDER *prov); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-04 21:33:37 +08:00
										 |  |  |  int ossl_method_store_cache_get(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov, | 
					
						
							|  |  |  |                                  int nid, const char *prop_query, void **method); | 
					
						
							|  |  |  |  int ossl_method_store_cache_set(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov, | 
					
						
							|  |  |  |                                  int nid, const char *prop_query, void *method, | 
					
						
							| 
									
										
										
										
											2019-11-11 09:17:32 +08:00
										 |  |  |                                  int (*method_up_ref)(void *), | 
					
						
							|  |  |  |                                  void (*method_destruct)(void *)); | 
					
						
							| 
									
										
										
										
											2022-04-22 17:00:36 +08:00
										 |  |  |  void ossl_method_store_cache_flush_all(OSSL_METHOD_STORE *store); | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 DESCRIPTION | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-18 16:40:07 +08:00
										 |  |  | OSSL_METHOD_STORE stores methods that can be queried using properties and a | 
					
						
							|  |  |  | numeric identity (nid). | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-18 16:40:07 +08:00
										 |  |  | Methods are expected to be library internal structures. | 
					
						
							|  |  |  | It's left to the caller to define the exact contents. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Numeric identities are expected to be an algorithm identity for the methods. | 
					
						
							|  |  |  | It's left to the caller to define exactly what an algorithm is, and to allocate | 
					
						
							|  |  |  | these numeric identities accordingly. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The B<OSSL_METHOD_STORE> also holds an internal query cache, which is accessed | 
					
						
							|  |  |  | separately (see L</Cache Functions> below). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head2 Store Functions | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-02 21:32:44 +08:00
										 |  |  | ossl_method_store_init() initialises the method store subsystem in the scope of | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | the library context I<ctx>. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ossl_method_store_cleanup() cleans up and shuts down the implementation method | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | store subsystem in the scope of the library context I<ctx>. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-02 21:32:44 +08:00
										 |  |  | ossl_method_store_new() create a new empty method store using the supplied | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | I<ctx> to allow access to the required underlying property data. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | ossl_method_store_free() frees resources allocated to I<store>. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | ossl_method_store_add() adds the I<method> constructed from an implementation in | 
					
						
							|  |  |  | the provider I<prov> to the I<store> as an instance of an algorithm indicated by | 
					
						
							|  |  |  | I<nid> and the property definition I<properties>, unless the I<store> already | 
					
						
							|  |  |  | has a method from the same provider with the same I<nid> and I<properties>. | 
					
						
							|  |  |  | If the I<method_up_ref> function is given, it's called to increment the | 
					
						
							| 
									
										
										
										
											2019-08-21 15:58:10 +08:00
										 |  |  | reference count of the method. | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | If the I<method_destruct> function is given, it's called when this function | 
					
						
							| 
									
										
										
										
											2019-08-21 15:58:10 +08:00
										 |  |  | fails to add the method to the store, or later on when it is being released from | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | the I<store>. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | ossl_method_store_remove() removes the I<method> identified by I<nid> from the | 
					
						
							|  |  |  | I<store>. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | ossl_method_store_fetch() queries I<store> for a method identified by I<nid> | 
					
						
							|  |  |  | that matches the property query I<prop_query>. | 
					
						
							| 
									
										
										
										
											2021-10-04 21:33:37 +08:00
										 |  |  | I<*prop> may be a pointer to a provider, which will narrow the search | 
					
						
							|  |  |  | to methods from that provider. | 
					
						
							|  |  |  | The result, if any, is returned in I<*method>, and its provider in I<*prov>. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-22 22:44:51 +08:00
										 |  |  | ossl_method_store_remove_all_provided() removes all methods from I<store> | 
					
						
							|  |  |  | that are provided by I<prov>. | 
					
						
							|  |  |  | When doing so, it also flushes the corresponding cache entries. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-18 16:40:07 +08:00
										 |  |  | =head2 Cache Functions | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | ossl_method_store_cache_get() queries the cache associated with the I<store> | 
					
						
							|  |  |  | for a method identified by I<nid> that matches the property query | 
					
						
							|  |  |  | I<prop_query>. | 
					
						
							| 
									
										
										
										
											2021-10-04 21:33:37 +08:00
										 |  |  | Additionally, if I<prov> isn't NULL, it will be used to narrow the search | 
					
						
							|  |  |  | to only include methods from that provider. | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | The result, if any, is returned in I<method>. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-04 21:33:37 +08:00
										 |  |  | ossl_method_store_cache_set() sets a cache entry identified by I<nid> from the | 
					
						
							|  |  |  | provider I<prov>, with the property query I<prop_query> in the I<store>. | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | Future calls to ossl_method_store_cache_get() will return the specified I<method>. | 
					
						
							| 
									
										
										
										
											2019-11-11 09:17:32 +08:00
										 |  |  | The I<method_up_ref> function is called to increment the | 
					
						
							|  |  |  | reference count of the method and the I<method_destruct> function is called | 
					
						
							|  |  |  | to decrement it. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-22 17:00:36 +08:00
										 |  |  | ossl_method_store_cache_flush_all() flushes all cached entries associated with | 
					
						
							|  |  |  | I<store>. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-25 10:37:08 +08:00
										 |  |  | =head1 NOTES | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The I<prop_query> argument to ossl_method_store_cache_get() and | 
					
						
							|  |  |  | ossl_method_store_cache_set() is not allowed to be NULL.  Use "" for an | 
					
						
							|  |  |  | empty property definition or query. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | =head1 RETURN VALUES | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-27 19:26:22 +08:00
										 |  |  | ossl_method_store_new() returns a new method store object or NULL on failure. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ossl_method_store_free(), ossl_method_store_add(), | 
					
						
							|  |  |  | ossl_method_store_remove(), ossl_method_store_fetch(), | 
					
						
							| 
									
										
										
										
											2021-03-30 08:29:01 +08:00
										 |  |  | ossl_method_store_cache_get(), ossl_method_store_cache_set() and | 
					
						
							|  |  |  | ossl_method_store_flush_cache() return B<1> on success and B<0> on error. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 00:32:07 +08:00
										 |  |  | ossl_method_store_free() and ossl_method_store_cleanup() do not return any value. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 HISTORY | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-15 21:03:44 +08:00
										 |  |  | This functionality was added to OpenSSL 3.0. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 COPYRIGHT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-03 18:52:38 +08:00
										 |  |  | Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  | Copyright (c) 2019, Oracle and/or its affiliates.  All rights reserved. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Licensed under the Apache License 2.0 (the "License").  You may not use this | 
					
						
							|  |  |  | file except in compliance with the License.  You can obtain a copy in the file | 
					
						
							|  |  |  | LICENSE in the source distribution or at | 
					
						
							|  |  |  | L<https://www.openssl.org/source/license.html>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =cut |