2 * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
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
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 "crypto/evp.h" /* evp_local.h needs it */
21 #include "evp_local.h"
23 #define NAME_SEPARATOR ':'
25 static void evp_method_store_free(void *vstore)
27 ossl_method_store_free(vstore);
30 static void *evp_method_store_new(OPENSSL_CTX *ctx)
32 return ossl_method_store_new(ctx);
36 static const OPENSSL_CTX_METHOD evp_method_store_method = {
38 evp_method_store_free,
41 /* Data to be passed through ossl_method_construct() */
42 struct evp_method_data_st {
44 OSSL_METHOD_CONSTRUCT_METHOD *mcm;
45 int operation_id; /* For get_evp_method_from_store() */
46 int name_id; /* For get_evp_method_from_store() */
47 const char *names; /* For get_evp_method_from_store() */
48 const char *propquery; /* For get_evp_method_from_store() */
49 void *(*method_from_dispatch)(int name_id, const OSSL_DISPATCH *,
51 int (*refcnt_up_method)(void *method);
52 void (*destruct_method)(void *method);
56 * Generic routines to fetch / create EVP methods with ossl_method_construct()
58 static void *alloc_tmp_evp_method_store(OPENSSL_CTX *ctx)
60 return ossl_method_store_new(ctx);
63 static void dealloc_tmp_evp_method_store(void *store)
66 ossl_method_store_free(store);
69 static OSSL_METHOD_STORE *get_evp_method_store(OPENSSL_CTX *libctx)
71 return openssl_ctx_get_data(libctx, OPENSSL_CTX_EVP_METHOD_STORE_INDEX,
72 &evp_method_store_method);
76 * To identity the method in the EVP method store, we mix the name identity
77 * with the operation identity, with the assumption that we don't have more
78 * than 2^24 names or more than 2^8 operation types.
80 * The resulting identity is a 32-bit integer, composed like this:
82 * +---------24 bits--------+-8 bits-+
83 * | name identity | op id |
84 * +------------------------+--------+
86 static uint32_t evp_method_id(unsigned int operation_id, int name_id)
88 if (!ossl_assert(name_id < (1 << 24) || operation_id < (1 << 8))
89 || !ossl_assert(name_id > 0 && operation_id > 0))
91 return ((name_id << 8) & 0xFFFFFF00) | (operation_id & 0x000000FF);
94 static void *get_evp_method_from_store(OPENSSL_CTX *libctx, void *store,
97 struct evp_method_data_st *methdata = data;
103 * get_evp_method_from_store() is only called to try and get the method
104 * that evp_generic_fetch() is asking for, and the operation id as well
105 * as the name or name id are passed via methdata.
107 if ((name_id = methdata->name_id) == 0) {
108 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
109 const char *names = methdata->names;
110 const char *q = strchr(names, NAME_SEPARATOR);
111 size_t l = (q == NULL ? strlen(names) : (size_t)(q - names));
115 name_id = ossl_namemap_name2num_n(namemap, names, l);
119 || (meth_id = evp_method_id(methdata->operation_id, name_id)) == 0)
123 && (store = get_evp_method_store(libctx)) == NULL)
126 if (!ossl_method_store_fetch(store, meth_id, methdata->propquery,
132 static int put_evp_method_in_store(OPENSSL_CTX *libctx, void *store,
133 void *method, const OSSL_PROVIDER *prov,
134 int operation_id, const char *names,
135 const char *propdef, void *data)
137 struct evp_method_data_st *methdata = data;
138 OSSL_NAMEMAP *namemap;
144 * put_evp_method_in_store() is only called with an EVP method that was
145 * successfully created by construct_method() below, which means that
146 * all the names should already be stored in the namemap with the same
147 * numeric identity, so just use the first to get that identity.
150 const char *q = strchr(names, NAME_SEPARATOR);
152 l = (q == NULL ? strlen(names) : (size_t)(q - names));
155 if ((namemap = ossl_namemap_stored(libctx)) == NULL
156 || (name_id = ossl_namemap_name2num_n(namemap, names, l)) == 0
157 || (meth_id = evp_method_id(operation_id, name_id)) == 0)
161 && (store = get_evp_method_store(libctx)) == NULL)
164 return ossl_method_store_add(store, prov, meth_id, propdef, method,
165 methdata->refcnt_up_method,
166 methdata->destruct_method);
170 * The core fetching functionality passes the name of the implementation.
171 * This function is responsible to getting an identity number for it.
173 static void *construct_evp_method(const OSSL_ALGORITHM *algodef,
174 OSSL_PROVIDER *prov, void *data)
177 * This function is only called if get_evp_method_from_store() returned
178 * NULL, so it's safe to say that of all the spots to create a new
179 * namemap entry, this is it. Should the name already exist there, we
180 * know that ossl_namemap_add_name() will return its corresponding
183 struct evp_method_data_st *methdata = data;
184 OPENSSL_CTX *libctx = ossl_provider_library_context(prov);
185 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
186 const char *names = algodef->algorithm_names;
187 int name_id = ossl_namemap_add_names(namemap, 0, names, NAME_SEPARATOR);
191 return methdata->method_from_dispatch(name_id, algodef->implementation,
195 static void destruct_evp_method(void *method, void *data)
197 struct evp_method_data_st *methdata = data;
199 methdata->destruct_method(method);
203 inner_evp_generic_fetch(OPENSSL_CTX *libctx, int operation_id,
204 int name_id, const char *name,
205 const char *properties,
206 void *(*new_method)(int name_id,
207 const OSSL_DISPATCH *fns,
208 OSSL_PROVIDER *prov),
209 int (*up_ref_method)(void *),
210 void (*free_method)(void *))
212 OSSL_METHOD_STORE *store = get_evp_method_store(libctx);
213 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
214 uint32_t meth_id = 0;
217 if (store == NULL || namemap == NULL)
221 * If there's ever an operation_id == 0 passed, we have an internal
224 if (!ossl_assert(operation_id > 0))
228 * If we have been passed neither a name_id or a name, we have an
229 * internal programming error.
231 if (!ossl_assert(name_id != 0 || name != NULL))
234 /* If we haven't received a name id yet, try to get one for the name */
236 name_id = ossl_namemap_name2num(namemap, name);
239 * If we have a name id, calculate a method id with evp_method_id().
241 * evp_method_id returns 0 if we have too many operations (more than
242 * about 2^8) or too many names (more than about 2^24). In that case,
243 * we can't create any new method.
245 if (name_id != 0 && (meth_id = evp_method_id(operation_id, name_id)) == 0)
249 || !ossl_method_store_cache_get(store, meth_id, properties, &method)) {
250 OSSL_METHOD_CONSTRUCT_METHOD mcm = {
251 alloc_tmp_evp_method_store,
252 dealloc_tmp_evp_method_store,
253 get_evp_method_from_store,
254 put_evp_method_in_store,
255 construct_evp_method,
258 struct evp_method_data_st mcmdata;
261 mcmdata.libctx = libctx;
262 mcmdata.operation_id = operation_id;
263 mcmdata.name_id = name_id;
264 mcmdata.names = name;
265 mcmdata.propquery = properties;
266 mcmdata.method_from_dispatch = new_method;
267 mcmdata.refcnt_up_method = up_ref_method;
268 mcmdata.destruct_method = free_method;
269 if ((method = ossl_method_construct(libctx, operation_id,
270 0 /* !force_cache */,
271 &mcm, &mcmdata)) != NULL) {
273 * If construction did create a method for us, we know that
274 * there is a correct name_id and meth_id, since those have
275 * already been calculated in get_evp_method_from_store() and
276 * put_evp_method_in_store() above.
279 name_id = ossl_namemap_name2num(namemap, name);
280 meth_id = evp_method_id(operation_id, name_id);
281 ossl_method_store_cache_set(store, meth_id, properties, method,
282 up_ref_method, free_method);
289 void *evp_generic_fetch(OPENSSL_CTX *libctx, int operation_id,
290 const char *name, const char *properties,
291 void *(*new_method)(int name_id,
292 const OSSL_DISPATCH *fns,
293 OSSL_PROVIDER *prov),
294 int (*up_ref_method)(void *),
295 void (*free_method)(void *))
297 return inner_evp_generic_fetch(libctx,
298 operation_id, 0, name, properties,
299 new_method, up_ref_method, free_method);
303 * evp_generic_fetch_by_number() is special, and only returns methods for
304 * already known names, i.e. it refuses to work if no name_id can be found
305 * (it's considered an internal programming error).
306 * This is meant to be used when one method needs to fetch an associated
309 void *evp_generic_fetch_by_number(OPENSSL_CTX *libctx, int operation_id,
310 int name_id, const char *properties,
311 void *(*new_method)(int name_id,
312 const OSSL_DISPATCH *fns,
313 OSSL_PROVIDER *prov),
314 int (*up_ref_method)(void *),
315 void (*free_method)(void *))
317 return inner_evp_generic_fetch(libctx,
318 operation_id, name_id, NULL, properties,
319 new_method, up_ref_method, free_method);
322 int EVP_set_default_properties(OPENSSL_CTX *libctx, const char *propq)
324 OSSL_METHOD_STORE *store = get_evp_method_store(libctx);
327 return ossl_method_store_set_global_properties(store, propq);
328 EVPerr(EVP_F_EVP_SET_DEFAULT_PROPERTIES, ERR_R_INTERNAL_ERROR);
332 struct do_all_data_st {
333 void (*user_fn)(void *method, void *arg);
335 void *(*new_method)(const int name_id, const OSSL_DISPATCH *fns,
336 OSSL_PROVIDER *prov);
337 void (*free_method)(void *);
340 static void do_one(OSSL_PROVIDER *provider, const OSSL_ALGORITHM *algo,
341 int no_store, void *vdata)
343 struct do_all_data_st *data = vdata;
344 OPENSSL_CTX *libctx = ossl_provider_library_context(provider);
345 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
346 int name_id = ossl_namemap_add_names(namemap, 0, algo->algorithm_names,
351 method = data->new_method(name_id, algo->implementation, provider);
353 if (method != NULL) {
354 data->user_fn(method, data->user_arg);
355 data->free_method(method);
359 void evp_generic_do_all(OPENSSL_CTX *libctx, int operation_id,
360 void (*user_fn)(void *method, void *arg),
362 void *(*new_method)(int name_id,
363 const OSSL_DISPATCH *fns,
364 OSSL_PROVIDER *prov),
365 void (*free_method)(void *))
367 struct do_all_data_st data;
369 data.new_method = new_method;
370 data.free_method = free_method;
371 data.user_fn = user_fn;
372 data.user_arg = user_arg;
373 ossl_algorithm_do_all(libctx, operation_id, NULL, do_one, &data);
376 const char *evp_first_name(OSSL_PROVIDER *prov, int name_id)
378 OPENSSL_CTX *libctx = ossl_provider_library_context(prov);
379 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
381 return ossl_namemap_num2name(namemap, name_id, 0);
384 int evp_is_a(OSSL_PROVIDER *prov, int number,
385 const char *legacy_name, const char *name)
388 * For a |prov| that is NULL, the library context will be NULL
390 OPENSSL_CTX *libctx = ossl_provider_library_context(prov);
391 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
394 number = ossl_namemap_name2num(namemap, legacy_name);
395 return ossl_namemap_name2num(namemap, name) == number;
398 void evp_names_do_all(OSSL_PROVIDER *prov, int number,
399 void (*fn)(const char *name, void *data),
402 OPENSSL_CTX *libctx = ossl_provider_library_context(prov);
403 OSSL_NAMEMAP *namemap = ossl_namemap_stored(libctx);
405 ossl_namemap_doall_names(namemap, number, fn, data);