]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/evp/evp_fetch.c
Add support for child provider to up_ref/free their parent
[thirdparty/openssl.git] / crypto / evp / evp_fetch.c
1 /*
2 * Copyright 2019-2021 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 <stddef.h>
11 #include <openssl/types.h>
12 #include <openssl/evp.h>
13 #include <openssl/core.h>
14 #include "internal/cryptlib.h"
15 #include "internal/thread_once.h"
16 #include "internal/property.h"
17 #include "internal/core.h"
18 #include "internal/provider.h"
19 #include "internal/namemap.h"
20 #include "internal/property.h"
21 #include "crypto/evp.h" /* evp_local.h needs it */
22 #include "evp_local.h"
23
24 #define NAME_SEPARATOR ':'
25
26 static void evp_method_store_free(void *vstore)
27 {
28 ossl_method_store_free(vstore);
29 }
30
31 static void *evp_method_store_new(OSSL_LIB_CTX *ctx)
32 {
33 return ossl_method_store_new(ctx);
34 }
35
36
37 static const OSSL_LIB_CTX_METHOD evp_method_store_method = {
38 /* We want evp_method_store to be cleaned up before the provider store */
39 OSSL_LIB_CTX_METHOD_PRIORITY_2,
40 evp_method_store_new,
41 evp_method_store_free,
42 };
43
44 /* Data to be passed through ossl_method_construct() */
45 struct evp_method_data_st {
46 OSSL_LIB_CTX *libctx;
47 OSSL_METHOD_CONSTRUCT_METHOD *mcm;
48 int operation_id; /* For get_evp_method_from_store() */
49 int name_id; /* For get_evp_method_from_store() */
50 const char *names; /* For get_evp_method_from_store() */
51 const char *propquery; /* For get_evp_method_from_store() */
52
53 unsigned int flag_construct_error_occurred : 1;
54
55 void *(*method_from_algorithm)(int name_id, const OSSL_ALGORITHM *,
56 OSSL_PROVIDER *);
57 int (*refcnt_up_method)(void *method);
58 void (*destruct_method)(void *method);
59 };
60
61 /*
62 * Generic routines to fetch / create EVP methods with ossl_method_construct()
63 */
64 static void *alloc_tmp_evp_method_store(OSSL_LIB_CTX *ctx)
65 {
66 return ossl_method_store_new(ctx);
67 }
68
69 static void dealloc_tmp_evp_method_store(void *store)
70 {
71 if (store != NULL)
72 ossl_method_store_free(store);
73 }
74
75 static OSSL_METHOD_STORE *get_evp_method_store(OSSL_LIB_CTX *libctx)
76 {
77 return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_EVP_METHOD_STORE_INDEX,
78 &evp_method_store_method);
79 }
80
81 /*
82 * To identify the method in the EVP method store, we mix the name identity
83 * with the operation identity, under the assumption that we don't have more
84 * than 2^24 names or more than 2^8 operation types.
85 *
86 * The resulting identity is a 32-bit integer, composed like this:
87 *
88 * +---------24 bits--------+-8 bits-+
89 * | name identity | op id |
90 * +------------------------+--------+
91 */
92 static uint32_t evp_method_id(int name_id, unsigned int operation_id)
93 {
94 if (!ossl_assert(name_id > 0 && name_id < (1 << 24))
95 || !ossl_assert(operation_id > 0 && operation_id < (1 << 8)))
96 return 0;
97 return ((name_id << 8) & 0xFFFFFF00) | (operation_id & 0x000000FF);
98 }
99
100 static void *get_evp_method_from_store(OSSL_LIB_CTX *libctx, void *store,
101 void *data)
102 {
103 struct evp_method_data_st *methdata = data;
104 void *method = NULL;
105 int name_id;
106 uint32_t meth_id;
107
108 /*
109 * get_evp_method_from_store() is only called to try and get the method
110 * that evp_generic_fetch() is asking for, and the operation id as well
111 * as the name or name id are passed via methdata.
112 */
113 if ((name_id = methdata->name_id) == 0) {
114 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
115 const char *names = methdata->names;
116 const char *q = strchr(names, NAME_SEPARATOR);
117 size_t l = (q == NULL ? strlen(names) : (size_t)(q - names));
118
119 if (namemap == 0)
120 return NULL;
121 name_id = ossl_namemap_name2num_n(namemap, names, l);
122 }
123
124 if (name_id == 0
125 || (meth_id = evp_method_id(name_id, methdata->operation_id)) == 0)
126 return NULL;
127
128 if (store == NULL
129 && (store = get_evp_method_store(libctx)) == NULL)
130 return NULL;
131
132 if (!ossl_method_store_fetch(store, meth_id, methdata->propquery,
133 &method))
134 return NULL;
135 return method;
136 }
137
138 static int put_evp_method_in_store(OSSL_LIB_CTX *libctx, void *store,
139 void *method, const OSSL_PROVIDER *prov,
140 int operation_id, const char *names,
141 const char *propdef, void *data)
142 {
143 struct evp_method_data_st *methdata = data;
144 OSSL_NAMEMAP *namemap;
145 int name_id;
146 uint32_t meth_id;
147 size_t l = 0;
148
149 /*
150 * put_evp_method_in_store() is only called with an EVP method that was
151 * successfully created by construct_method() below, which means that
152 * all the names should already be stored in the namemap with the same
153 * numeric identity, so just use the first to get that identity.
154 */
155 if (names != NULL) {
156 const char *q = strchr(names, NAME_SEPARATOR);
157
158 l = (q == NULL ? strlen(names) : (size_t)(q - names));
159 }
160
161 if ((namemap = ossl_namemap_stored(libctx)) == NULL
162 || (name_id = ossl_namemap_name2num_n(namemap, names, l)) == 0
163 || (meth_id = evp_method_id(name_id, operation_id)) == 0)
164 return 0;
165
166 if (store == NULL
167 && (store = get_evp_method_store(libctx)) == NULL)
168 return 0;
169
170 return ossl_method_store_add(store, prov, meth_id, propdef, method,
171 methdata->refcnt_up_method,
172 methdata->destruct_method);
173 }
174
175 /*
176 * The core fetching functionality passes the name of the implementation.
177 * This function is responsible to getting an identity number for it.
178 */
179 static void *construct_evp_method(const OSSL_ALGORITHM *algodef,
180 OSSL_PROVIDER *prov, void *data)
181 {
182 /*
183 * This function is only called if get_evp_method_from_store() returned
184 * NULL, so it's safe to say that of all the spots to create a new
185 * namemap entry, this is it. Should the name already exist there, we
186 * know that ossl_namemap_add_name() will return its corresponding
187 * number.
188 */
189 struct evp_method_data_st *methdata = data;
190 OSSL_LIB_CTX *libctx = ossl_provider_libctx(prov);
191 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
192 const char *names = algodef->algorithm_names;
193 int name_id = ossl_namemap_add_names(namemap, 0, names, NAME_SEPARATOR);
194 void *method;
195
196 if (name_id == 0)
197 return NULL;
198
199 method = methdata->method_from_algorithm(name_id, algodef, prov);
200
201 /*
202 * Flag to indicate that there was actual construction errors. This
203 * helps inner_evp_generic_fetch() determine what error it should
204 * record on inaccessible algorithms.
205 */
206 if (method == NULL)
207 methdata->flag_construct_error_occurred = 1;
208
209 return method;
210 }
211
212 static void destruct_evp_method(void *method, void *data)
213 {
214 struct evp_method_data_st *methdata = data;
215
216 methdata->destruct_method(method);
217 }
218
219 static void *
220 inner_evp_generic_fetch(OSSL_LIB_CTX *libctx, int operation_id,
221 int name_id, const char *name,
222 const char *properties,
223 void *(*new_method)(int name_id,
224 const OSSL_ALGORITHM *algodef,
225 OSSL_PROVIDER *prov),
226 int (*up_ref_method)(void *),
227 void (*free_method)(void *))
228 {
229 OSSL_METHOD_STORE *store = get_evp_method_store(libctx);
230 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
231 uint32_t meth_id = 0;
232 void *method = NULL;
233 int unsupported = 0;
234
235 if (store == NULL || namemap == NULL) {
236 ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_INVALID_ARGUMENT);
237 return NULL;
238 }
239
240 /*
241 * If there's ever an operation_id == 0 passed, we have an internal
242 * programming error.
243 */
244 if (!ossl_assert(operation_id > 0)) {
245 ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
246 return NULL;
247 }
248
249 /*
250 * If we have been passed neither a name_id or a name, we have an
251 * internal programming error.
252 */
253 if (!ossl_assert(name_id != 0 || name != NULL)) {
254 ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
255 return NULL;
256 }
257
258 /* If we haven't received a name id yet, try to get one for the name */
259 if (name_id == 0)
260 name_id = ossl_namemap_name2num(namemap, name);
261
262 /*
263 * If we have a name id, calculate a method id with evp_method_id().
264 *
265 * evp_method_id returns 0 if we have too many operations (more than
266 * about 2^8) or too many names (more than about 2^24). In that case,
267 * we can't create any new method.
268 * For all intents and purposes, this is an internal error.
269 */
270 if (name_id != 0 && (meth_id = evp_method_id(name_id, operation_id)) == 0) {
271 ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
272 return NULL;
273 }
274
275 /*
276 * If we haven't found the name yet, chances are that the algorithm to
277 * be fetched is unsupported.
278 */
279 if (name_id == 0)
280 unsupported = 1;
281
282 if (meth_id == 0
283 || !ossl_method_store_cache_get(store, meth_id, properties, &method)) {
284 OSSL_METHOD_CONSTRUCT_METHOD mcm = {
285 alloc_tmp_evp_method_store,
286 dealloc_tmp_evp_method_store,
287 get_evp_method_from_store,
288 put_evp_method_in_store,
289 construct_evp_method,
290 destruct_evp_method
291 };
292 struct evp_method_data_st mcmdata;
293
294 mcmdata.mcm = &mcm;
295 mcmdata.libctx = libctx;
296 mcmdata.operation_id = operation_id;
297 mcmdata.name_id = name_id;
298 mcmdata.names = name;
299 mcmdata.propquery = properties;
300 mcmdata.method_from_algorithm = new_method;
301 mcmdata.refcnt_up_method = up_ref_method;
302 mcmdata.destruct_method = free_method;
303 mcmdata.flag_construct_error_occurred = 0;
304 if ((method = ossl_method_construct(libctx, operation_id,
305 0 /* !force_cache */,
306 &mcm, &mcmdata)) != NULL) {
307 /*
308 * If construction did create a method for us, we know that
309 * there is a correct name_id and meth_id, since those have
310 * already been calculated in get_evp_method_from_store() and
311 * put_evp_method_in_store() above.
312 */
313 if (name_id == 0)
314 name_id = ossl_namemap_name2num(namemap, name);
315 meth_id = evp_method_id(name_id, operation_id);
316 ossl_method_store_cache_set(store, meth_id, properties, method,
317 up_ref_method, free_method);
318 }
319
320 /*
321 * If we never were in the constructor, the algorithm to be fetched
322 * is unsupported.
323 */
324 unsupported = !mcmdata.flag_construct_error_occurred;
325 }
326
327 if (method == NULL) {
328 int code = unsupported ? ERR_R_UNSUPPORTED : ERR_R_FETCH_FAILED;
329
330 if (name == NULL)
331 name = ossl_namemap_num2name(namemap, name_id, 0);
332 ERR_raise_data(ERR_LIB_EVP, code,
333 "%s, Algorithm (%s : %d), Properties (%s)",
334 ossl_lib_ctx_get_descriptor(libctx),
335 name = NULL ? "<null>" : name, name_id,
336 properties == NULL ? "<null>" : properties);
337 }
338
339 return method;
340 }
341
342 void *evp_generic_fetch(OSSL_LIB_CTX *libctx, int operation_id,
343 const char *name, const char *properties,
344 void *(*new_method)(int name_id,
345 const OSSL_ALGORITHM *algodef,
346 OSSL_PROVIDER *prov),
347 int (*up_ref_method)(void *),
348 void (*free_method)(void *))
349 {
350 return inner_evp_generic_fetch(libctx,
351 operation_id, 0, name, properties,
352 new_method, up_ref_method, free_method);
353 }
354
355 /*
356 * evp_generic_fetch_by_number() is special, and only returns methods for
357 * already known names, i.e. it refuses to work if no name_id can be found
358 * (it's considered an internal programming error).
359 * This is meant to be used when one method needs to fetch an associated
360 * other method.
361 */
362 void *evp_generic_fetch_by_number(OSSL_LIB_CTX *libctx, int operation_id,
363 int name_id, const char *properties,
364 void *(*new_method)(int name_id,
365 const OSSL_ALGORITHM *algodef,
366 OSSL_PROVIDER *prov),
367 int (*up_ref_method)(void *),
368 void (*free_method)(void *))
369 {
370 return inner_evp_generic_fetch(libctx,
371 operation_id, name_id, NULL,
372 properties, new_method, up_ref_method,
373 free_method);
374 }
375
376 int evp_method_store_flush(OSSL_LIB_CTX *libctx)
377 {
378 OSSL_METHOD_STORE *store = get_evp_method_store(libctx);
379
380 if (store != NULL)
381 return ossl_method_store_flush_cache(store, 1);
382 return 1;
383 }
384
385 static int evp_set_parsed_default_properties(OSSL_LIB_CTX *libctx,
386 OSSL_PROPERTY_LIST *def_prop,
387 int loadconfig)
388 {
389 OSSL_METHOD_STORE *store = get_evp_method_store(libctx);
390 OSSL_PROPERTY_LIST **plp = ossl_ctx_global_properties(libctx, loadconfig);
391
392 if (plp != NULL) {
393 ossl_property_free(*plp);
394 *plp = def_prop;
395 if (store != NULL)
396 return ossl_method_store_flush_cache(store, 0);
397 return 1;
398 }
399 ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
400 return 0;
401 }
402
403 int evp_set_default_properties_int(OSSL_LIB_CTX *libctx, const char *propq,
404 int loadconfig)
405 {
406 OSSL_PROPERTY_LIST *pl = NULL;
407
408 if (propq != NULL && (pl = ossl_parse_query(libctx, propq, 1)) == NULL) {
409 ERR_raise(ERR_LIB_EVP, EVP_R_DEFAULT_QUERY_PARSE_ERROR);
410 return 0;
411 }
412 return evp_set_parsed_default_properties(libctx, pl, loadconfig);
413 }
414
415 int EVP_set_default_properties(OSSL_LIB_CTX *libctx, const char *propq)
416 {
417 return evp_set_default_properties_int(libctx, propq, 1);
418 }
419
420 static int evp_default_properties_merge(OSSL_LIB_CTX *libctx, const char *propq)
421 {
422 OSSL_PROPERTY_LIST **plp = ossl_ctx_global_properties(libctx, 1);
423 OSSL_PROPERTY_LIST *pl1, *pl2;
424
425 if (propq == NULL)
426 return 1;
427 if (plp == NULL || *plp == NULL)
428 return EVP_set_default_properties(libctx, propq);
429 if ((pl1 = ossl_parse_query(libctx, propq, 1)) == NULL) {
430 ERR_raise(ERR_LIB_EVP, EVP_R_DEFAULT_QUERY_PARSE_ERROR);
431 return 0;
432 }
433 pl2 = ossl_property_merge(pl1, *plp);
434 ossl_property_free(pl1);
435 if (pl2 == NULL) {
436 ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
437 return 0;
438 }
439 return evp_set_parsed_default_properties(libctx, pl2, 0);
440 }
441
442 static int evp_default_property_is_enabled(OSSL_LIB_CTX *libctx,
443 const char *prop_name)
444 {
445 OSSL_PROPERTY_LIST **plp = ossl_ctx_global_properties(libctx, 1);
446
447 return plp != NULL && ossl_property_is_enabled(libctx, prop_name, *plp);
448 }
449
450 int EVP_default_properties_is_fips_enabled(OSSL_LIB_CTX *libctx)
451 {
452 return evp_default_property_is_enabled(libctx, "fips");
453 }
454
455 int EVP_default_properties_enable_fips(OSSL_LIB_CTX *libctx, int enable)
456 {
457 const char *query = (enable != 0) ? "fips=yes" : "-fips";
458
459 return evp_default_properties_merge(libctx, query);
460 }
461
462
463 struct do_all_data_st {
464 void (*user_fn)(void *method, void *arg);
465 void *user_arg;
466 void *(*new_method)(const int name_id, const OSSL_ALGORITHM *algodef,
467 OSSL_PROVIDER *prov);
468 void (*free_method)(void *);
469 };
470
471 static void do_one(OSSL_PROVIDER *provider, const OSSL_ALGORITHM *algo,
472 int no_store, void *vdata)
473 {
474 struct do_all_data_st *data = vdata;
475 OSSL_LIB_CTX *libctx = ossl_provider_libctx(provider);
476 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
477 int name_id = ossl_namemap_add_names(namemap, 0, algo->algorithm_names,
478 NAME_SEPARATOR);
479 void *method = NULL;
480
481 if (name_id != 0)
482 method = data->new_method(name_id, algo, provider);
483
484 if (method != NULL) {
485 data->user_fn(method, data->user_arg);
486 data->free_method(method);
487 }
488 }
489
490 void evp_generic_do_all(OSSL_LIB_CTX *libctx, int operation_id,
491 void (*user_fn)(void *method, void *arg),
492 void *user_arg,
493 void *(*new_method)(int name_id,
494 const OSSL_ALGORITHM *algodef,
495 OSSL_PROVIDER *prov),
496 void (*free_method)(void *))
497 {
498 struct do_all_data_st data;
499
500 data.new_method = new_method;
501 data.free_method = free_method;
502 data.user_fn = user_fn;
503 data.user_arg = user_arg;
504
505 /*
506 * No pre- or post-condition for this call, as this only creates methods
507 * temporarly and then promptly destroys them.
508 */
509 ossl_algorithm_do_all(libctx, operation_id, NULL, NULL, do_one, NULL,
510 &data);
511 }
512
513 int evp_is_a(OSSL_PROVIDER *prov, int number,
514 const char *legacy_name, const char *name)
515 {
516 /*
517 * For a |prov| that is NULL, the library context will be NULL
518 */
519 OSSL_LIB_CTX *libctx = ossl_provider_libctx(prov);
520 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
521
522 if (prov == NULL)
523 number = ossl_namemap_name2num(namemap, legacy_name);
524 return ossl_namemap_name2num(namemap, name) == number;
525 }
526
527 int evp_names_do_all(OSSL_PROVIDER *prov, int number,
528 void (*fn)(const char *name, void *data),
529 void *data)
530 {
531 OSSL_LIB_CTX *libctx = ossl_provider_libctx(prov);
532 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
533
534 return ossl_namemap_doall_names(namemap, number, fn, data);
535 }