]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/internal/man3/OSSL_METHOD_STORE.pod
fetch: convert a NULL property query to ""
[thirdparty/openssl.git] / doc / internal / man3 / OSSL_METHOD_STORE.pod
CommitLineData
1bdbdaff
P
1=pod
2
3=head1 NAME
4
4ce738d0
RL
5OSSL_METHOD_STORE, ossl_method_store_new, ossl_method_store_free,
6ossl_method_store_init, ossl_method_store_cleanup,
7ossl_method_store_add, ossl_method_store_remove, ossl_method_store_fetch,
f9e504e8
P
8ossl_method_store_cache_get, ossl_method_store_cache_set,
9ossl_method_store_flush_cache
1bdbdaff
P
10- implementation method store and query
11
12=head1 SYNOPSIS
13
14 #include "internal/property.h"
15
16 typedef struct ossl_method_store_st OSSL_METHOD_STORE;
17
b4250010 18 OSSL_METHOD_STORE *ossl_method_store_new(OSSL_LIB_CTX *ctx);
1bdbdaff 19 void ossl_method_store_free(OSSL_METHOD_STORE *store);
b4250010
DMSP
20 int ossl_method_store_init(OSSL_LIB_CTX *ctx);
21 void ossl_method_store_cleanup(OSSL_LIB_CTX *ctx);
c1d56231 22 int ossl_method_store_add(OSSL_METHOD_STORE *store, const OSSL_PROVIDER *prov,
b1d40ddf
RL
23 int nid, const char *properties, void *method,
24 int (*method_up_ref)(void *),
25 void (*method_destruct)(void *));
1bdbdaff 26 int ossl_method_store_remove(OSSL_METHOD_STORE *store,
0a79572a 27 int nid, const void *method);
1bdbdaff
P
28 int ossl_method_store_fetch(OSSL_METHOD_STORE *store,
29 int nid, const char *properties,
dc010ca6
RL
30 void **method, const OSSL_PROVIDER **prov_rw);
31 int ossl_method_store_cache_get(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov,
32 int nid, const char *prop_query, void **method);
33 int ossl_method_store_cache_set(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov,
34 int nid, const char *prop_query, void *method,
bdbf2df2
P
35 int (*method_up_ref)(void *),
36 void (*method_destruct)(void *));
dc010ca6 37 void ossl_method_store_flush_cache(OSSL_METHOD_STORE *store, int all);
1bdbdaff
P
38
39=head1 DESCRIPTION
40
0a79572a
RL
41OSSL_METHOD_STORE stores methods that can be queried using properties and a
42numeric identity (nid).
1bdbdaff 43
0a79572a
RL
44Methods are expected to be library internal structures.
45It's left to the caller to define the exact contents.
46
47Numeric identities are expected to be an algorithm identity for the methods.
48It's left to the caller to define exactly what an algorithm is, and to allocate
49these numeric identities accordingly.
50
51The B<OSSL_METHOD_STORE> also holds an internal query cache, which is accessed
52separately (see L</Cache Functions> below).
53
54=head2 Store Functions
55
25b25b0f 56ossl_method_store_init() initialises the method store subsystem in the scope of
dfabee82 57the library context I<ctx>.
1bdbdaff
P
58
59ossl_method_store_cleanup() cleans up and shuts down the implementation method
dfabee82 60store subsystem in the scope of the library context I<ctx>.
1bdbdaff 61
25b25b0f 62ossl_method_store_new() create a new empty method store using the supplied
dfabee82 63I<ctx> to allow access to the required underlying property data.
1bdbdaff 64
dfabee82 65ossl_method_store_free() frees resources allocated to I<store>.
1bdbdaff 66
dfabee82
RL
67ossl_method_store_add() adds the I<method> constructed from an implementation in
68the provider I<prov> to the I<store> as an instance of an algorithm indicated by
69I<nid> and the property definition I<properties>, unless the I<store> already
70has a method from the same provider with the same I<nid> and I<properties>.
71If the I<method_up_ref> function is given, it's called to increment the
b1d40ddf 72reference count of the method.
dfabee82 73If the I<method_destruct> function is given, it's called when this function
b1d40ddf 74fails to add the method to the store, or later on when it is being released from
dfabee82 75the I<store>.
1bdbdaff 76
dfabee82
RL
77ossl_method_store_remove() removes the I<method> identified by I<nid> from the
78I<store>.
1bdbdaff 79
dfabee82
RL
80ossl_method_store_fetch() queries I<store> for a method identified by I<nid>
81that matches the property query I<prop_query>.
dc010ca6
RL
82I<*prop> may be a pointer to a provider, which will narrow the search
83to methods from that provider.
84The result, if any, is returned in I<*method>, and its provider in I<*prov>.
1bdbdaff 85
f9e504e8
P
86ossl_method_store_flush_cache() flushes all cached entries associated with
87I<store>.
0a79572a
RL
88
89=head2 Cache Functions
1bdbdaff 90
dfabee82
RL
91ossl_method_store_cache_get() queries the cache associated with the I<store>
92for a method identified by I<nid> that matches the property query
93I<prop_query>.
dc010ca6
RL
94Additionally, if I<prov> isn't NULL, it will be used to narrow the search
95to only include methods from that provider.
dfabee82 96The result, if any, is returned in I<method>.
1bdbdaff 97
dc010ca6
RL
98ossl_method_store_cache_set() sets a cache entry identified by I<nid> from the
99provider I<prov>, with the property query I<prop_query> in the I<store>.
dfabee82 100Future calls to ossl_method_store_cache_get() will return the specified I<method>.
bdbf2df2
P
101The I<method_up_ref> function is called to increment the
102reference count of the method and the I<method_destruct> function is called
103to decrement it.
1bdbdaff 104
af788ad6
P
105=head1 NOTES
106
107The I<prop_query> argument to ossl_method_store_cache_get() and
108ossl_method_store_cache_set() is not allowed to be NULL. Use "" for an
109empty property definition or query.
110
1bdbdaff
P
111=head1 RETURN VALUES
112
dfabee82 113ossl_method_store_new() returns a new method store object or NULL on failure.
1bdbdaff
P
114
115ossl_method_store_free(), ossl_method_store_add(),
116ossl_method_store_remove(), ossl_method_store_fetch(),
860ecfd7
P
117ossl_method_store_cache_get(), ossl_method_store_cache_set() and
118ossl_method_store_flush_cache() return B<1> on success and B<0> on error.
1bdbdaff 119
3f37050e 120ossl_method_store_free() and ossl_method_store_cleanup() do not return any value.
1bdbdaff
P
121
122=head1 HISTORY
123
4674aaf4 124This functionality was added to OpenSSL 3.0.
1bdbdaff
P
125
126=head1 COPYRIGHT
127
3c2bdd7d 128Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
1bdbdaff
P
129Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
130
131Licensed under the Apache License 2.0 (the "License"). You may not use this
132file except in compliance with the License. You can obtain a copy in the file
133LICENSE in the source distribution or at
134L<https://www.openssl.org/source/license.html>.
135
136=cut