/src/openssl32/crypto/store/store_meth.c
Line  | Count  | Source (jump to first uncovered line)  | 
1  |  | /*  | 
2  |  |  * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.  | 
3  |  |  *  | 
4  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use  | 
5  |  |  * this file except in compliance with the License.  You can obtain a copy  | 
6  |  |  * in the file LICENSE in the source distribution or at  | 
7  |  |  * https://www.openssl.org/source/license.html  | 
8  |  |  */  | 
9  |  |  | 
10  |  | #include <openssl/crypto.h>  | 
11  |  | #include "crypto/store.h"  | 
12  |  | #include "internal/core.h"  | 
13  |  | #include "internal/namemap.h"  | 
14  |  | #include "internal/property.h"  | 
15  |  | #include "internal/provider.h"  | 
16  |  | #include "store_local.h"  | 
17  |  | #include "crypto/context.h"  | 
18  |  |  | 
19  |  | int OSSL_STORE_LOADER_up_ref(OSSL_STORE_LOADER *loader)  | 
20  | 0  | { | 
21  | 0  |     int ref = 0;  | 
22  |  | 
  | 
23  | 0  |     if (loader->prov != NULL)  | 
24  | 0  |         CRYPTO_UP_REF(&loader->refcnt, &ref);  | 
25  | 0  |     return 1;  | 
26  | 0  | }  | 
27  |  |  | 
28  |  | void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader)  | 
29  | 0  | { | 
30  | 0  |     if (loader != NULL && loader->prov != NULL) { | 
31  | 0  |         int i;  | 
32  |  | 
  | 
33  | 0  |         CRYPTO_DOWN_REF(&loader->refcnt, &i);  | 
34  | 0  |         if (i > 0)  | 
35  | 0  |             return;  | 
36  | 0  |         ossl_provider_free(loader->prov);  | 
37  | 0  |         CRYPTO_FREE_REF(&loader->refcnt);  | 
38  | 0  |     }  | 
39  | 0  |     OPENSSL_free(loader);  | 
40  | 0  | }  | 
41  |  |  | 
42  |  | /*  | 
43  |  |  * OSSL_STORE_LOADER_new() expects the scheme as a constant string,  | 
44  |  |  * which we currently don't have, so we need an alternative allocator.  | 
45  |  |  */  | 
46  |  | static OSSL_STORE_LOADER *new_loader(OSSL_PROVIDER *prov)  | 
47  | 0  | { | 
48  | 0  |     OSSL_STORE_LOADER *loader;  | 
49  |  | 
  | 
50  | 0  |     if ((loader = OPENSSL_zalloc(sizeof(*loader))) == NULL  | 
51  | 0  |         || !CRYPTO_NEW_REF(&loader->refcnt, 1)) { | 
52  | 0  |         OPENSSL_free(loader);  | 
53  | 0  |         return NULL;  | 
54  | 0  |     }  | 
55  | 0  |     loader->prov = prov;  | 
56  | 0  |     ossl_provider_up_ref(prov);  | 
57  |  | 
  | 
58  | 0  |     return loader;  | 
59  | 0  | }  | 
60  |  |  | 
61  |  | static int up_ref_loader(void *method)  | 
62  | 0  | { | 
63  | 0  |     return OSSL_STORE_LOADER_up_ref(method);  | 
64  | 0  | }  | 
65  |  |  | 
66  |  | static void free_loader(void *method)  | 
67  | 0  | { | 
68  | 0  |     OSSL_STORE_LOADER_free(method);  | 
69  | 0  | }  | 
70  |  |  | 
71  |  | /* Data to be passed through ossl_method_construct() */  | 
72  |  | struct loader_data_st { | 
73  |  |     OSSL_LIB_CTX *libctx;  | 
74  |  |     int scheme_id;               /* For get_loader_from_store() */  | 
75  |  |     const char *scheme;          /* For get_loader_from_store() */  | 
76  |  |     const char *propquery;       /* For get_loader_from_store() */  | 
77  |  |  | 
78  |  |     OSSL_METHOD_STORE *tmp_store; /* For get_tmp_loader_store() */  | 
79  |  |  | 
80  |  |     unsigned int flag_construct_error_occurred : 1;  | 
81  |  | };  | 
82  |  |  | 
83  |  | /*  | 
84  |  |  * Generic routines to fetch / create OSSL_STORE methods with  | 
85  |  |  * ossl_method_construct()  | 
86  |  |  */  | 
87  |  |  | 
88  |  | /* Temporary loader method store, constructor and destructor */  | 
89  |  | static void *get_tmp_loader_store(void *data)  | 
90  | 0  | { | 
91  | 0  |     struct loader_data_st *methdata = data;  | 
92  |  | 
  | 
93  | 0  |     if (methdata->tmp_store == NULL)  | 
94  | 0  |         methdata->tmp_store = ossl_method_store_new(methdata->libctx);  | 
95  | 0  |     return methdata->tmp_store;  | 
96  | 0  | }  | 
97  |  |  | 
98  |  |  static void dealloc_tmp_loader_store(void *store)  | 
99  | 0  | { | 
100  | 0  |     if (store != NULL)  | 
101  | 0  |         ossl_method_store_free(store);  | 
102  | 0  | }  | 
103  |  |  | 
104  |  | /* Get the permanent loader store */  | 
105  |  | static OSSL_METHOD_STORE *get_loader_store(OSSL_LIB_CTX *libctx)  | 
106  | 60  | { | 
107  | 60  |     return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_STORE_LOADER_STORE_INDEX);  | 
108  | 60  | }  | 
109  |  |  | 
110  |  | static int reserve_loader_store(void *store, void *data)  | 
111  | 0  | { | 
112  | 0  |     struct loader_data_st *methdata = data;  | 
113  |  | 
  | 
114  | 0  |     if (store == NULL  | 
115  | 0  |         && (store = get_loader_store(methdata->libctx)) == NULL)  | 
116  | 0  |         return 0;  | 
117  |  |  | 
118  | 0  |     return ossl_method_lock_store(store);  | 
119  | 0  | }  | 
120  |  |  | 
121  |  | static int unreserve_loader_store(void *store, void *data)  | 
122  | 0  | { | 
123  | 0  |     struct loader_data_st *methdata = data;  | 
124  |  | 
  | 
125  | 0  |     if (store == NULL  | 
126  | 0  |         && (store = get_loader_store(methdata->libctx)) == NULL)  | 
127  | 0  |         return 0;  | 
128  |  |  | 
129  | 0  |     return ossl_method_unlock_store(store);  | 
130  | 0  | }  | 
131  |  |  | 
132  |  | /* Get loader methods from a store, or put one in */  | 
133  |  | static void *get_loader_from_store(void *store, const OSSL_PROVIDER **prov,  | 
134  |  |                                    void *data)  | 
135  | 0  | { | 
136  | 0  |     struct loader_data_st *methdata = data;  | 
137  | 0  |     void *method = NULL;  | 
138  | 0  |     int id;  | 
139  |  | 
  | 
140  | 0  |     if ((id = methdata->scheme_id) == 0) { | 
141  | 0  |         OSSL_NAMEMAP *namemap = ossl_namemap_stored(methdata->libctx);  | 
142  |  | 
  | 
143  | 0  |         id = ossl_namemap_name2num(namemap, methdata->scheme);  | 
144  | 0  |     }  | 
145  |  | 
  | 
146  | 0  |     if (store == NULL  | 
147  | 0  |         && (store = get_loader_store(methdata->libctx)) == NULL)  | 
148  | 0  |         return NULL;  | 
149  |  |  | 
150  | 0  |     if (!ossl_method_store_fetch(store, id, methdata->propquery, prov, &method))  | 
151  | 0  |         return NULL;  | 
152  | 0  |     return method;  | 
153  | 0  | }  | 
154  |  |  | 
155  |  | static int put_loader_in_store(void *store, void *method,  | 
156  |  |                                const OSSL_PROVIDER *prov,  | 
157  |  |                                const char *scheme, const char *propdef,  | 
158  |  |                                void *data)  | 
159  | 0  | { | 
160  | 0  |     struct loader_data_st *methdata = data;  | 
161  | 0  |     OSSL_NAMEMAP *namemap;  | 
162  | 0  |     int id;  | 
163  |  | 
  | 
164  | 0  |     if ((namemap = ossl_namemap_stored(methdata->libctx)) == NULL  | 
165  | 0  |         || (id = ossl_namemap_name2num(namemap, scheme)) == 0)  | 
166  | 0  |         return 0;  | 
167  |  |  | 
168  | 0  |     if (store == NULL && (store = get_loader_store(methdata->libctx)) == NULL)  | 
169  | 0  |         return 0;  | 
170  |  |  | 
171  | 0  |     return ossl_method_store_add(store, prov, id, propdef, method,  | 
172  | 0  |                                  up_ref_loader, free_loader);  | 
173  | 0  | }  | 
174  |  |  | 
175  |  | static void *loader_from_algorithm(int scheme_id, const OSSL_ALGORITHM *algodef,  | 
176  |  |                                    OSSL_PROVIDER *prov)  | 
177  | 0  | { | 
178  | 0  |     OSSL_STORE_LOADER *loader = NULL;  | 
179  | 0  |     const OSSL_DISPATCH *fns = algodef->implementation;  | 
180  |  | 
  | 
181  | 0  |     if ((loader = new_loader(prov)) == NULL)  | 
182  | 0  |         return NULL;  | 
183  | 0  |     loader->scheme_id = scheme_id;  | 
184  | 0  |     loader->propdef = algodef->property_definition;  | 
185  | 0  |     loader->description = algodef->algorithm_description;  | 
186  |  | 
  | 
187  | 0  |     for (; fns->function_id != 0; fns++) { | 
188  | 0  |         switch (fns->function_id) { | 
189  | 0  |         case OSSL_FUNC_STORE_OPEN:  | 
190  | 0  |             if (loader->p_open == NULL)  | 
191  | 0  |                 loader->p_open = OSSL_FUNC_store_open(fns);  | 
192  | 0  |             break;  | 
193  | 0  |         case OSSL_FUNC_STORE_ATTACH:  | 
194  | 0  |             if (loader->p_attach == NULL)  | 
195  | 0  |                 loader->p_attach = OSSL_FUNC_store_attach(fns);  | 
196  | 0  |             break;  | 
197  | 0  |         case OSSL_FUNC_STORE_SETTABLE_CTX_PARAMS:  | 
198  | 0  |             if (loader->p_settable_ctx_params == NULL)  | 
199  | 0  |                 loader->p_settable_ctx_params =  | 
200  | 0  |                     OSSL_FUNC_store_settable_ctx_params(fns);  | 
201  | 0  |             break;  | 
202  | 0  |         case OSSL_FUNC_STORE_SET_CTX_PARAMS:  | 
203  | 0  |             if (loader->p_set_ctx_params == NULL)  | 
204  | 0  |                 loader->p_set_ctx_params = OSSL_FUNC_store_set_ctx_params(fns);  | 
205  | 0  |             break;  | 
206  | 0  |         case OSSL_FUNC_STORE_LOAD:  | 
207  | 0  |             if (loader->p_load == NULL)  | 
208  | 0  |                 loader->p_load = OSSL_FUNC_store_load(fns);  | 
209  | 0  |             break;  | 
210  | 0  |         case OSSL_FUNC_STORE_EOF:  | 
211  | 0  |             if (loader->p_eof == NULL)  | 
212  | 0  |                 loader->p_eof = OSSL_FUNC_store_eof(fns);  | 
213  | 0  |             break;  | 
214  | 0  |         case OSSL_FUNC_STORE_CLOSE:  | 
215  | 0  |             if (loader->p_close == NULL)  | 
216  | 0  |                 loader->p_close = OSSL_FUNC_store_close(fns);  | 
217  | 0  |             break;  | 
218  | 0  |         case OSSL_FUNC_STORE_EXPORT_OBJECT:  | 
219  | 0  |             if (loader->p_export_object == NULL)  | 
220  | 0  |                 loader->p_export_object = OSSL_FUNC_store_export_object(fns);  | 
221  | 0  |             break;  | 
222  | 0  |         case OSSL_FUNC_STORE_DELETE:  | 
223  | 0  |             if (loader->p_delete == NULL)  | 
224  | 0  |                 loader->p_delete = OSSL_FUNC_store_delete(fns);  | 
225  | 0  |             break;  | 
226  | 0  |         case OSSL_FUNC_STORE_OPEN_EX:  | 
227  | 0  |             if (loader->p_open_ex == NULL)  | 
228  | 0  |                 loader->p_open_ex = OSSL_FUNC_store_open_ex(fns);  | 
229  | 0  |             break;  | 
230  | 0  |         }  | 
231  | 0  |     }  | 
232  |  |  | 
233  | 0  |     if ((loader->p_open == NULL && loader->p_attach == NULL)  | 
234  | 0  |         || loader->p_load == NULL  | 
235  | 0  |         || loader->p_eof == NULL  | 
236  | 0  |         || loader->p_close == NULL) { | 
237  |  |         /* Only set_ctx_params is optional */  | 
238  | 0  |         OSSL_STORE_LOADER_free(loader);  | 
239  | 0  |         ERR_raise(ERR_LIB_OSSL_STORE, OSSL_STORE_R_LOADER_INCOMPLETE);  | 
240  | 0  |         return NULL;  | 
241  | 0  |     }  | 
242  | 0  |     return loader;  | 
243  | 0  | }  | 
244  |  |  | 
245  |  | /*  | 
246  |  |  * The core fetching functionality passes the scheme of the implementation.  | 
247  |  |  * This function is responsible to getting an identity number for them,  | 
248  |  |  * then call loader_from_algorithm() with that identity number.  | 
249  |  |  */  | 
250  |  | static void *construct_loader(const OSSL_ALGORITHM *algodef,  | 
251  |  |                               OSSL_PROVIDER *prov, void *data)  | 
252  | 0  | { | 
253  |  |     /*  | 
254  |  |      * This function is only called if get_loader_from_store() returned  | 
255  |  |      * NULL, so it's safe to say that of all the spots to create a new  | 
256  |  |      * namemap entry, this is it.  Should the scheme already exist there, we  | 
257  |  |      * know that ossl_namemap_add() will return its corresponding number.  | 
258  |  |      */  | 
259  | 0  |     struct loader_data_st *methdata = data;  | 
260  | 0  |     OSSL_LIB_CTX *libctx = ossl_provider_libctx(prov);  | 
261  | 0  |     OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);  | 
262  | 0  |     const char *scheme = algodef->algorithm_names;  | 
263  | 0  |     int id = ossl_namemap_add_name(namemap, 0, scheme);  | 
264  | 0  |     void *method = NULL;  | 
265  |  | 
  | 
266  | 0  |     if (id != 0)  | 
267  | 0  |         method = loader_from_algorithm(id, algodef, prov);  | 
268  |  |  | 
269  |  |     /*  | 
270  |  |      * Flag to indicate that there was actual construction errors.  This  | 
271  |  |      * helps inner_loader_fetch() determine what error it should  | 
272  |  |      * record on inaccessible algorithms.  | 
273  |  |      */  | 
274  | 0  |     if (method == NULL)  | 
275  | 0  |         methdata->flag_construct_error_occurred = 1;  | 
276  |  | 
  | 
277  | 0  |     return method;  | 
278  | 0  | }  | 
279  |  |  | 
280  |  | /* Intermediary function to avoid ugly casts, used below */  | 
281  |  | static void destruct_loader(void *method, void *data)  | 
282  | 0  | { | 
283  | 0  |     OSSL_STORE_LOADER_free(method);  | 
284  | 0  | }  | 
285  |  |  | 
286  |  | /* Fetching support.  Can fetch by numeric identity or by scheme */  | 
287  |  | static OSSL_STORE_LOADER *  | 
288  |  | inner_loader_fetch(struct loader_data_st *methdata,  | 
289  |  |                    const char *scheme, const char *properties)  | 
290  | 0  | { | 
291  | 0  |     OSSL_METHOD_STORE *store = get_loader_store(methdata->libctx);  | 
292  | 0  |     OSSL_NAMEMAP *namemap = ossl_namemap_stored(methdata->libctx);  | 
293  | 0  |     const char *const propq = properties != NULL ? properties : "";  | 
294  | 0  |     void *method = NULL;  | 
295  | 0  |     int unsupported, id;  | 
296  |  | 
  | 
297  | 0  |     if (store == NULL || namemap == NULL) { | 
298  | 0  |         ERR_raise(ERR_LIB_OSSL_STORE, ERR_R_PASSED_INVALID_ARGUMENT);  | 
299  | 0  |         return NULL;  | 
300  | 0  |     }  | 
301  |  |  | 
302  |  |     /* If we haven't received a name id yet, try to get one for the name */  | 
303  | 0  |     id = scheme != NULL ? ossl_namemap_name2num(namemap, scheme) : 0;  | 
304  |  |  | 
305  |  |     /*  | 
306  |  |      * If we haven't found the name yet, chances are that the algorithm to  | 
307  |  |      * be fetched is unsupported.  | 
308  |  |      */  | 
309  | 0  |     unsupported = id == 0;  | 
310  |  | 
  | 
311  | 0  |     if (id == 0  | 
312  | 0  |         || !ossl_method_store_cache_get(store, NULL, id, propq, &method)) { | 
313  | 0  |         OSSL_METHOD_CONSTRUCT_METHOD mcm = { | 
314  | 0  |             get_tmp_loader_store,  | 
315  | 0  |             reserve_loader_store,  | 
316  | 0  |             unreserve_loader_store,  | 
317  | 0  |             get_loader_from_store,  | 
318  | 0  |             put_loader_in_store,  | 
319  | 0  |             construct_loader,  | 
320  | 0  |             destruct_loader  | 
321  | 0  |         };  | 
322  | 0  |         OSSL_PROVIDER *prov = NULL;  | 
323  |  | 
  | 
324  | 0  |         methdata->scheme_id = id;  | 
325  | 0  |         methdata->scheme = scheme;  | 
326  | 0  |         methdata->propquery = propq;  | 
327  | 0  |         methdata->flag_construct_error_occurred = 0;  | 
328  | 0  |         if ((method = ossl_method_construct(methdata->libctx, OSSL_OP_STORE,  | 
329  | 0  |                                             &prov, 0 /* !force_cache */,  | 
330  | 0  |                                             &mcm, methdata)) != NULL) { | 
331  |  |             /*  | 
332  |  |              * If construction did create a method for us, we know that there  | 
333  |  |              * is a correct scheme_id, since those have already been calculated  | 
334  |  |              * in get_loader_from_store() and put_loader_in_store() above.  | 
335  |  |              */  | 
336  | 0  |             if (id == 0)  | 
337  | 0  |                 id = ossl_namemap_name2num(namemap, scheme);  | 
338  | 0  |             ossl_method_store_cache_set(store, prov, id, propq, method,  | 
339  | 0  |                                         up_ref_loader, free_loader);  | 
340  | 0  |         }  | 
341  |  |  | 
342  |  |         /*  | 
343  |  |          * If we never were in the constructor, the algorithm to be fetched  | 
344  |  |          * is unsupported.  | 
345  |  |          */  | 
346  | 0  |         unsupported = !methdata->flag_construct_error_occurred;  | 
347  | 0  |     }  | 
348  |  | 
  | 
349  | 0  |     if ((id != 0 || scheme != NULL) && method == NULL) { | 
350  | 0  |         int code = unsupported ? ERR_R_UNSUPPORTED : ERR_R_FETCH_FAILED;  | 
351  | 0  |         const char *helpful_msg =  | 
352  | 0  |             unsupported  | 
353  | 0  |             ? ( "No store loader found. For standard store loaders you need "  | 
354  | 0  |                 "at least one of the default or base providers available. "  | 
355  | 0  |                 "Did you forget to load them? Info: " )  | 
356  | 0  |             : "";  | 
357  |  | 
  | 
358  | 0  |         if (scheme == NULL)  | 
359  | 0  |             scheme = ossl_namemap_num2name(namemap, id, 0);  | 
360  | 0  |         ERR_raise_data(ERR_LIB_OSSL_STORE, code,  | 
361  | 0  |                        "%s%s, Scheme (%s : %d), Properties (%s)",  | 
362  | 0  |                        helpful_msg,  | 
363  | 0  |                        ossl_lib_ctx_get_descriptor(methdata->libctx),  | 
364  | 0  |                        scheme == NULL ? "<null>" : scheme, id,  | 
365  | 0  |                        properties == NULL ? "<null>" : properties);  | 
366  | 0  |     }  | 
367  |  | 
  | 
368  | 0  |     return method;  | 
369  | 0  | }  | 
370  |  |  | 
371  |  | OSSL_STORE_LOADER *OSSL_STORE_LOADER_fetch(OSSL_LIB_CTX *libctx,  | 
372  |  |                                            const char *scheme,  | 
373  |  |                                            const char *properties)  | 
374  | 0  | { | 
375  | 0  |     struct loader_data_st methdata;  | 
376  | 0  |     void *method;  | 
377  |  | 
  | 
378  | 0  |     methdata.libctx = libctx;  | 
379  | 0  |     methdata.tmp_store = NULL;  | 
380  | 0  |     method = inner_loader_fetch(&methdata, scheme, properties);  | 
381  | 0  |     dealloc_tmp_loader_store(methdata.tmp_store);  | 
382  | 0  |     return method;  | 
383  | 0  | }  | 
384  |  |  | 
385  |  | int ossl_store_loader_store_cache_flush(OSSL_LIB_CTX *libctx)  | 
386  | 60  | { | 
387  | 60  |     OSSL_METHOD_STORE *store = get_loader_store(libctx);  | 
388  |  |  | 
389  | 60  |     if (store != NULL)  | 
390  | 60  |         return ossl_method_store_cache_flush_all(store);  | 
391  | 0  |     return 1;  | 
392  | 60  | }  | 
393  |  |  | 
394  |  | int ossl_store_loader_store_remove_all_provided(const OSSL_PROVIDER *prov)  | 
395  | 0  | { | 
396  | 0  |     OSSL_LIB_CTX *libctx = ossl_provider_libctx(prov);  | 
397  | 0  |     OSSL_METHOD_STORE *store = get_loader_store(libctx);  | 
398  |  | 
  | 
399  | 0  |     if (store != NULL)  | 
400  | 0  |         return ossl_method_store_remove_all_provided(store, prov);  | 
401  | 0  |     return 1;  | 
402  | 0  | }  | 
403  |  |  | 
404  |  | /*  | 
405  |  |  * Library of basic method functions  | 
406  |  |  */  | 
407  |  |  | 
408  |  | const OSSL_PROVIDER *OSSL_STORE_LOADER_get0_provider(const OSSL_STORE_LOADER *loader)  | 
409  | 0  | { | 
410  | 0  |     if (!ossl_assert(loader != NULL)) { | 
411  | 0  |         ERR_raise(ERR_LIB_OSSL_STORE, ERR_R_PASSED_NULL_PARAMETER);  | 
412  | 0  |         return 0;  | 
413  | 0  |     }  | 
414  |  |  | 
415  | 0  |     return loader->prov;  | 
416  | 0  | }  | 
417  |  |  | 
418  |  | const char *OSSL_STORE_LOADER_get0_properties(const OSSL_STORE_LOADER *loader)  | 
419  | 0  | { | 
420  | 0  |     if (!ossl_assert(loader != NULL)) { | 
421  | 0  |         ERR_raise(ERR_LIB_OSSL_STORE, ERR_R_PASSED_NULL_PARAMETER);  | 
422  | 0  |         return 0;  | 
423  | 0  |     }  | 
424  |  |  | 
425  | 0  |     return loader->propdef;  | 
426  | 0  | }  | 
427  |  |  | 
428  |  | int ossl_store_loader_get_number(const OSSL_STORE_LOADER *loader)  | 
429  | 0  | { | 
430  | 0  |     if (!ossl_assert(loader != NULL)) { | 
431  | 0  |         ERR_raise(ERR_LIB_OSSL_STORE, ERR_R_PASSED_NULL_PARAMETER);  | 
432  | 0  |         return 0;  | 
433  | 0  |     }  | 
434  |  |  | 
435  | 0  |     return loader->scheme_id;  | 
436  | 0  | }  | 
437  |  |  | 
438  |  | const char *OSSL_STORE_LOADER_get0_description(const OSSL_STORE_LOADER *loader)  | 
439  | 0  | { | 
440  | 0  |     return loader->description;  | 
441  | 0  | }  | 
442  |  |  | 
443  |  | int OSSL_STORE_LOADER_is_a(const OSSL_STORE_LOADER *loader, const char *name)  | 
444  | 0  | { | 
445  | 0  |     if (loader->prov != NULL) { | 
446  | 0  |         OSSL_LIB_CTX *libctx = ossl_provider_libctx(loader->prov);  | 
447  | 0  |         OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);  | 
448  |  | 
  | 
449  | 0  |         return ossl_namemap_name2num(namemap, name) == loader->scheme_id;  | 
450  | 0  |     }  | 
451  | 0  |     return 0;  | 
452  | 0  | }  | 
453  |  |  | 
454  |  | struct do_one_data_st { | 
455  |  |     void (*user_fn)(OSSL_STORE_LOADER *loader, void *arg);  | 
456  |  |     void *user_arg;  | 
457  |  | };  | 
458  |  |  | 
459  |  | static void do_one(ossl_unused int id, void *method, void *arg)  | 
460  | 0  | { | 
461  | 0  |     struct do_one_data_st *data = arg;  | 
462  |  | 
  | 
463  | 0  |     data->user_fn(method, data->user_arg);  | 
464  | 0  | }  | 
465  |  |  | 
466  |  | void OSSL_STORE_LOADER_do_all_provided(OSSL_LIB_CTX *libctx,  | 
467  |  |                                        void (*user_fn)(OSSL_STORE_LOADER *loader,  | 
468  |  |                                                        void *arg),  | 
469  |  |                                        void *user_arg)  | 
470  | 0  | { | 
471  | 0  |     struct loader_data_st methdata;  | 
472  | 0  |     struct do_one_data_st data;  | 
473  |  | 
  | 
474  | 0  |     methdata.libctx = libctx;  | 
475  | 0  |     methdata.tmp_store = NULL;  | 
476  | 0  |     (void)inner_loader_fetch(&methdata, NULL, NULL /* properties */);  | 
477  |  | 
  | 
478  | 0  |     data.user_fn = user_fn;  | 
479  | 0  |     data.user_arg = user_arg;  | 
480  | 0  |     if (methdata.tmp_store != NULL)  | 
481  | 0  |         ossl_method_store_do_all(methdata.tmp_store, &do_one, &data);  | 
482  | 0  |     ossl_method_store_do_all(get_loader_store(libctx), &do_one, &data);  | 
483  | 0  |     dealloc_tmp_loader_store(methdata.tmp_store);  | 
484  | 0  | }  | 
485  |  |  | 
486  |  | int OSSL_STORE_LOADER_names_do_all(const OSSL_STORE_LOADER *loader,  | 
487  |  |                                    void (*fn)(const char *name, void *data),  | 
488  |  |                                    void *data)  | 
489  | 0  | { | 
490  | 0  |     if (loader == NULL)  | 
491  | 0  |         return 0;  | 
492  |  |  | 
493  | 0  |     if (loader->prov != NULL) { | 
494  | 0  |         OSSL_LIB_CTX *libctx = ossl_provider_libctx(loader->prov);  | 
495  | 0  |         OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);  | 
496  |  | 
  | 
497  | 0  |         return ossl_namemap_doall_names(namemap, loader->scheme_id, fn, data);  | 
498  | 0  |     }  | 
499  |  |  | 
500  | 0  |     return 1;  | 
501  | 0  | }  |