2019-05-04 18:55:32 +08:00
|
|
|
/*
|
2024-09-05 15:35:49 +08:00
|
|
|
* Copyright 2019-2024 The OpenSSL Project Authors. All Rights Reserved.
|
2019-05-04 18:55:32 +08:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "internal/namemap.h"
|
2020-06-18 09:01:08 +08:00
|
|
|
#include "internal/tsan_assist.h"
|
2024-05-27 22:50:05 +08:00
|
|
|
#include "internal/hashtable.h"
|
2021-03-16 12:40:50 +08:00
|
|
|
#include "internal/sizes.h"
|
2022-03-14 16:13:12 +08:00
|
|
|
#include "crypto/context.h"
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2024-08-16 21:54:15 +08:00
|
|
|
#define NAMEMAP_HT_BUCKETS 2048
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
HT_START_KEY_DEFN(namenum_key)
|
|
|
|
HT_DEF_KEY_FIELD_CHAR_ARRAY(name, 64)
|
|
|
|
HT_END_KEY_DEFN(NAMENUM_KEY)
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
/*-
|
|
|
|
* The namemap itself
|
|
|
|
* ==================
|
|
|
|
*/
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
typedef char STRING;
|
|
|
|
typedef STACK_OF(STRING) NAMES;
|
|
|
|
|
|
|
|
DEFINE_STACK_OF(STRING)
|
|
|
|
DEFINE_STACK_OF(NAMES)
|
|
|
|
|
2019-05-04 18:55:32 +08:00
|
|
|
struct ossl_namemap_st {
|
|
|
|
/* Flags */
|
|
|
|
unsigned int stored:1; /* If 1, it's stored in a library context */
|
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
HT *namenum_ht; /* Name->number mapping */
|
|
|
|
|
2019-05-04 18:55:32 +08:00
|
|
|
CRYPTO_RWLOCK *lock;
|
2024-05-27 22:50:05 +08:00
|
|
|
STACK_OF(NAMES) *numnames;
|
2020-06-18 09:01:08 +08:00
|
|
|
|
2022-01-12 11:22:23 +08:00
|
|
|
TSAN_QUALIFIER int max_number; /* Current max number */
|
2019-05-04 18:55:32 +08:00
|
|
|
};
|
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
static void name_string_free(char *name)
|
2019-05-04 18:55:32 +08:00
|
|
|
{
|
2024-05-27 22:50:05 +08:00
|
|
|
OPENSSL_free(name);
|
2019-05-04 18:55:32 +08:00
|
|
|
}
|
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
static void names_free(NAMES *n)
|
2019-05-04 18:55:32 +08:00
|
|
|
{
|
2024-05-27 22:50:05 +08:00
|
|
|
sk_STRING_pop_free(n, name_string_free);
|
2019-05-04 18:55:32 +08:00
|
|
|
}
|
|
|
|
|
2020-10-15 17:55:50 +08:00
|
|
|
/* OSSL_LIB_CTX_METHOD functions for a namemap stored in a library context */
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2022-03-14 16:13:12 +08:00
|
|
|
void *ossl_stored_namemap_new(OSSL_LIB_CTX *libctx)
|
2019-05-04 18:55:32 +08:00
|
|
|
{
|
2024-05-27 22:50:05 +08:00
|
|
|
OSSL_NAMEMAP *namemap = ossl_namemap_new(libctx);
|
2019-05-04 18:55:32 +08:00
|
|
|
|
|
|
|
if (namemap != NULL)
|
|
|
|
namemap->stored = 1;
|
|
|
|
|
|
|
|
return namemap;
|
|
|
|
}
|
|
|
|
|
2022-03-14 16:13:12 +08:00
|
|
|
void ossl_stored_namemap_free(void *vnamemap)
|
2019-05-04 18:55:32 +08:00
|
|
|
{
|
|
|
|
OSSL_NAMEMAP *namemap = vnamemap;
|
|
|
|
|
2019-11-21 04:55:50 +08:00
|
|
|
if (namemap != NULL) {
|
|
|
|
/* Pretend it isn't stored, or ossl_namemap_free() will do nothing */
|
|
|
|
namemap->stored = 0;
|
|
|
|
ossl_namemap_free(namemap);
|
|
|
|
}
|
2019-05-04 18:55:32 +08:00
|
|
|
}
|
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
/*-
|
|
|
|
* API functions
|
|
|
|
* =============
|
|
|
|
*/
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2019-05-23 09:27:37 +08:00
|
|
|
int ossl_namemap_empty(OSSL_NAMEMAP *namemap)
|
|
|
|
{
|
2022-01-12 11:22:23 +08:00
|
|
|
#ifdef TSAN_REQUIRES_LOCKING
|
2020-06-18 09:01:08 +08:00
|
|
|
/* No TSAN support */
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
if (namemap == NULL)
|
|
|
|
return 1;
|
2019-05-23 09:27:37 +08:00
|
|
|
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_read_lock(namemap->lock))
|
|
|
|
return -1;
|
2020-06-18 09:01:08 +08:00
|
|
|
rv = namemap->max_number == 0;
|
2019-05-23 09:27:37 +08:00
|
|
|
CRYPTO_THREAD_unlock(namemap->lock);
|
|
|
|
return rv;
|
2022-01-12 11:22:23 +08:00
|
|
|
#else
|
|
|
|
/* Have TSAN support */
|
|
|
|
return namemap == NULL || tsan_load(&namemap->max_number) == 0;
|
2020-06-18 09:01:08 +08:00
|
|
|
#endif
|
2019-05-23 09:27:37 +08:00
|
|
|
}
|
|
|
|
|
2021-02-20 01:03:43 +08:00
|
|
|
/*
|
|
|
|
* Call the callback for all names in the namemap with the given number.
|
|
|
|
* A return value 1 means that the callback was called for all names. A
|
|
|
|
* return value of 0 means that the callback was not called for any names.
|
|
|
|
*/
|
|
|
|
int ossl_namemap_doall_names(const OSSL_NAMEMAP *namemap, int number,
|
|
|
|
void (*fn)(const char *name, void *data),
|
|
|
|
void *data)
|
2019-05-23 09:18:04 +08:00
|
|
|
{
|
2021-02-20 01:03:43 +08:00
|
|
|
int i;
|
2024-05-27 22:50:05 +08:00
|
|
|
NAMES *names;
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
if (namemap == NULL || number <= 0)
|
2023-06-16 22:25:58 +08:00
|
|
|
return 0;
|
|
|
|
|
2021-02-20 01:03:43 +08:00
|
|
|
/*
|
2024-05-27 22:50:05 +08:00
|
|
|
* We duplicate the NAMES stack under a read lock. Subsequently we call
|
2021-02-20 01:03:43 +08:00
|
|
|
* the user function, so that we're not holding the read lock when in user
|
|
|
|
* code. This could lead to deadlocks.
|
|
|
|
*/
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_read_lock(namemap->lock))
|
|
|
|
return 0;
|
2021-02-20 01:03:43 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
names = sk_NAMES_value(namemap->numnames, number - 1);
|
|
|
|
if (names != NULL)
|
|
|
|
names = sk_STRING_dup(names);
|
2021-02-20 01:03:43 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
CRYPTO_THREAD_unlock(namemap->lock);
|
2021-02-20 01:03:43 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
if (names == NULL)
|
|
|
|
return 0;
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
for (i = 0; i < sk_STRING_num(names); i++)
|
|
|
|
fn(sk_STRING_value(names, i), data);
|
2020-07-28 09:14:14 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
sk_STRING_free(names);
|
|
|
|
return i > 0;
|
2020-07-28 09:14:14 +08:00
|
|
|
}
|
|
|
|
|
2022-05-18 22:45:20 +08:00
|
|
|
int ossl_namemap_name2num(const OSSL_NAMEMAP *namemap, const char *name)
|
2019-05-04 18:55:32 +08:00
|
|
|
{
|
2024-05-27 22:50:05 +08:00
|
|
|
int number = 0;
|
|
|
|
HT_VALUE *val;
|
|
|
|
NAMENUM_KEY key;
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2019-05-04 18:55:32 +08:00
|
|
|
if (namemap == NULL)
|
|
|
|
namemap = ossl_namemap_stored(NULL);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (namemap == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
HT_INIT_KEY(&key);
|
|
|
|
HT_SET_KEY_STRING_CASE(&key, name, name);
|
|
|
|
|
|
|
|
val = ossl_ht_get(namemap->namenum_ht, TO_HT_KEY(&key));
|
|
|
|
|
|
|
|
if (val != NULL)
|
|
|
|
/* We store a (small) int directly instead of a pointer to it. */
|
|
|
|
number = (int)(intptr_t)val->value;
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
return number;
|
2019-05-04 18:55:32 +08:00
|
|
|
}
|
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
/* TODO: Optimize to avoid strndup() */
|
2022-05-18 22:45:20 +08:00
|
|
|
int ossl_namemap_name2num_n(const OSSL_NAMEMAP *namemap,
|
|
|
|
const char *name, size_t name_len)
|
2019-05-23 09:36:21 +08:00
|
|
|
{
|
2022-05-18 22:45:20 +08:00
|
|
|
char *tmp;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (name == NULL || (tmp = OPENSSL_strndup(name, name_len)) == NULL)
|
2019-05-23 09:36:21 +08:00
|
|
|
return 0;
|
|
|
|
|
2022-05-18 22:45:20 +08:00
|
|
|
ret = ossl_namemap_name2num(namemap, tmp);
|
|
|
|
OPENSSL_free(tmp);
|
|
|
|
return ret;
|
2019-05-23 09:36:21 +08:00
|
|
|
}
|
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
const char *ossl_namemap_num2name(const OSSL_NAMEMAP *namemap, int number,
|
|
|
|
size_t idx)
|
In provider implemented methods, save the name number, not the name string
Multiple names per implementation is already supported in the namemap,
but hasn't been used yet. However, as soon as we have multiple names,
we will get an issue with what name should be saved in the method.
The solution is to not save the name itself, but rather the number
it's associated with. This number is supposed to be unique for each
set of names, and we assume that algorithm names are globally unique,
i.e. there can be no name overlap between different algorithm types.
Incidently, it was also found that the 'get' function used by
ossl_construct_method() doesn't need all the parameters it was given;
most of what it needs, it can now get through the data structure given
by the caller of ossl_construct_method(). As a consequence,
ossl_construct_method() itself doesn't need all the parameters it was
given either.
There are some added internal functions that are expected to disappear
as soon as legacy code is removed, such as evp_first_name() and
ossl_namemap_num2name().
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9897)
2019-09-14 22:22:19 +08:00
|
|
|
{
|
2024-05-27 22:50:05 +08:00
|
|
|
NAMES *names;
|
|
|
|
const char *ret = NULL;
|
|
|
|
|
|
|
|
if (namemap == NULL || number <= 0)
|
|
|
|
return NULL;
|
In provider implemented methods, save the name number, not the name string
Multiple names per implementation is already supported in the namemap,
but hasn't been used yet. However, as soon as we have multiple names,
we will get an issue with what name should be saved in the method.
The solution is to not save the name itself, but rather the number
it's associated with. This number is supposed to be unique for each
set of names, and we assume that algorithm names are globally unique,
i.e. there can be no name overlap between different algorithm types.
Incidently, it was also found that the 'get' function used by
ossl_construct_method() doesn't need all the parameters it was given;
most of what it needs, it can now get through the data structure given
by the caller of ossl_construct_method(). As a consequence,
ossl_construct_method() itself doesn't need all the parameters it was
given either.
There are some added internal functions that are expected to disappear
as soon as legacy code is removed, such as evp_first_name() and
ossl_namemap_num2name().
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9897)
2019-09-14 22:22:19 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
if (!CRYPTO_THREAD_read_lock(namemap->lock))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
names = sk_NAMES_value(namemap->numnames, number - 1);
|
|
|
|
if (names != NULL)
|
|
|
|
ret = sk_STRING_value(names, idx);
|
|
|
|
|
|
|
|
CRYPTO_THREAD_unlock(namemap->lock);
|
|
|
|
|
|
|
|
return ret;
|
In provider implemented methods, save the name number, not the name string
Multiple names per implementation is already supported in the namemap,
but hasn't been used yet. However, as soon as we have multiple names,
we will get an issue with what name should be saved in the method.
The solution is to not save the name itself, but rather the number
it's associated with. This number is supposed to be unique for each
set of names, and we assume that algorithm names are globally unique,
i.e. there can be no name overlap between different algorithm types.
Incidently, it was also found that the 'get' function used by
ossl_construct_method() doesn't need all the parameters it was given;
most of what it needs, it can now get through the data structure given
by the caller of ossl_construct_method(). As a consequence,
ossl_construct_method() itself doesn't need all the parameters it was
given either.
There are some added internal functions that are expected to disappear
as soon as legacy code is removed, such as evp_first_name() and
ossl_namemap_num2name().
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9897)
2019-09-14 22:22:19 +08:00
|
|
|
}
|
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
/* This function is not thread safe, the namemap must be locked */
|
|
|
|
static int numname_insert(OSSL_NAMEMAP *namemap, int number,
|
|
|
|
const char *name)
|
In provider implemented methods, save the name number, not the name string
Multiple names per implementation is already supported in the namemap,
but hasn't been used yet. However, as soon as we have multiple names,
we will get an issue with what name should be saved in the method.
The solution is to not save the name itself, but rather the number
it's associated with. This number is supposed to be unique for each
set of names, and we assume that algorithm names are globally unique,
i.e. there can be no name overlap between different algorithm types.
Incidently, it was also found that the 'get' function used by
ossl_construct_method() doesn't need all the parameters it was given;
most of what it needs, it can now get through the data structure given
by the caller of ossl_construct_method(). As a consequence,
ossl_construct_method() itself doesn't need all the parameters it was
given either.
There are some added internal functions that are expected to disappear
as soon as legacy code is removed, such as evp_first_name() and
ossl_namemap_num2name().
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9897)
2019-09-14 22:22:19 +08:00
|
|
|
{
|
2024-05-27 22:50:05 +08:00
|
|
|
NAMES *names;
|
|
|
|
char *tmpname;
|
|
|
|
|
|
|
|
if (number > 0) {
|
|
|
|
names = sk_NAMES_value(namemap->numnames, number - 1);
|
|
|
|
if (!ossl_assert(names != NULL)) {
|
|
|
|
/* cannot happen */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* a completely new entry */
|
|
|
|
names = sk_STRING_new_null();
|
|
|
|
if (names == NULL)
|
|
|
|
return 0;
|
|
|
|
}
|
In provider implemented methods, save the name number, not the name string
Multiple names per implementation is already supported in the namemap,
but hasn't been used yet. However, as soon as we have multiple names,
we will get an issue with what name should be saved in the method.
The solution is to not save the name itself, but rather the number
it's associated with. This number is supposed to be unique for each
set of names, and we assume that algorithm names are globally unique,
i.e. there can be no name overlap between different algorithm types.
Incidently, it was also found that the 'get' function used by
ossl_construct_method() doesn't need all the parameters it was given;
most of what it needs, it can now get through the data structure given
by the caller of ossl_construct_method(). As a consequence,
ossl_construct_method() itself doesn't need all the parameters it was
given either.
There are some added internal functions that are expected to disappear
as soon as legacy code is removed, such as evp_first_name() and
ossl_namemap_num2name().
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9897)
2019-09-14 22:22:19 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
if ((tmpname = OPENSSL_strdup(name)) == NULL)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (!sk_STRING_push(names, tmpname))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (number <= 0) {
|
|
|
|
if (!sk_NAMES_push(namemap->numnames, names))
|
|
|
|
goto err;
|
|
|
|
number = sk_NAMES_num(namemap->numnames);
|
|
|
|
}
|
|
|
|
return number;
|
|
|
|
|
|
|
|
err:
|
|
|
|
if (number <= 0)
|
|
|
|
sk_STRING_free(names);
|
|
|
|
OPENSSL_free(tmpname);
|
|
|
|
return 0;
|
In provider implemented methods, save the name number, not the name string
Multiple names per implementation is already supported in the namemap,
but hasn't been used yet. However, as soon as we have multiple names,
we will get an issue with what name should be saved in the method.
The solution is to not save the name itself, but rather the number
it's associated with. This number is supposed to be unique for each
set of names, and we assume that algorithm names are globally unique,
i.e. there can be no name overlap between different algorithm types.
Incidently, it was also found that the 'get' function used by
ossl_construct_method() doesn't need all the parameters it was given;
most of what it needs, it can now get through the data structure given
by the caller of ossl_construct_method(). As a consequence,
ossl_construct_method() itself doesn't need all the parameters it was
given either.
There are some added internal functions that are expected to disappear
as soon as legacy code is removed, such as evp_first_name() and
ossl_namemap_num2name().
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9897)
2019-09-14 22:22:19 +08:00
|
|
|
}
|
|
|
|
|
2022-05-19 17:38:23 +08:00
|
|
|
/* This function is not thread safe, the namemap must be locked */
|
|
|
|
static int namemap_add_name(OSSL_NAMEMAP *namemap, int number,
|
|
|
|
const char *name)
|
2019-05-04 18:55:32 +08:00
|
|
|
{
|
2024-05-27 22:50:05 +08:00
|
|
|
int ret;
|
|
|
|
HT_VALUE val = { 0 };
|
|
|
|
NAMENUM_KEY key;
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2020-07-28 09:14:14 +08:00
|
|
|
/* If it already exists, we don't add it */
|
2024-05-27 22:50:05 +08:00
|
|
|
if ((ret = ossl_namemap_name2num(namemap, name)) != 0)
|
|
|
|
return ret;
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
if ((number = numname_insert(namemap, number, name)) == 0)
|
2022-05-19 17:38:23 +08:00
|
|
|
return 0;
|
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
/* Using tsan_store alone here is safe since we're under lock */
|
|
|
|
tsan_store(&namemap->max_number, number);
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
HT_INIT_KEY(&key);
|
|
|
|
HT_SET_KEY_STRING_CASE(&key, name, name);
|
|
|
|
val.value = (void *)(intptr_t)number;
|
|
|
|
ret = ossl_ht_insert(namemap->namenum_ht, TO_HT_KEY(&key), &val, NULL);
|
|
|
|
if (!ossl_assert(ret != 0)) /* cannot happen as we are under write lock */
|
|
|
|
return 0;
|
|
|
|
if (ret < 1) {
|
|
|
|
/* unable to insert due to too many collisions */
|
|
|
|
ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_TOO_MANY_NAMES);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return number;
|
2020-07-28 09:14:14 +08:00
|
|
|
}
|
2019-05-23 09:18:04 +08:00
|
|
|
|
2022-05-19 17:38:23 +08:00
|
|
|
int ossl_namemap_add_name(OSSL_NAMEMAP *namemap, int number,
|
|
|
|
const char *name)
|
2020-07-28 09:14:14 +08:00
|
|
|
{
|
|
|
|
int tmp_number;
|
|
|
|
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
if (namemap == NULL)
|
|
|
|
namemap = ossl_namemap_stored(NULL);
|
|
|
|
#endif
|
|
|
|
|
2022-05-19 17:38:23 +08:00
|
|
|
if (name == NULL || *name == 0 || namemap == NULL)
|
2020-07-28 09:14:14 +08:00
|
|
|
return 0;
|
|
|
|
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_write_lock(namemap->lock))
|
|
|
|
return 0;
|
2022-05-19 17:38:23 +08:00
|
|
|
tmp_number = namemap_add_name(namemap, number, name);
|
2019-05-23 09:18:04 +08:00
|
|
|
CRYPTO_THREAD_unlock(namemap->lock);
|
2020-07-28 09:14:14 +08:00
|
|
|
return tmp_number;
|
2019-05-04 18:55:32 +08:00
|
|
|
}
|
2019-05-23 09:36:21 +08:00
|
|
|
|
2019-11-09 07:18:05 +08:00
|
|
|
int ossl_namemap_add_names(OSSL_NAMEMAP *namemap, int number,
|
|
|
|
const char *names, const char separator)
|
|
|
|
{
|
2022-05-19 17:38:23 +08:00
|
|
|
char *tmp, *p, *q, *endp;
|
2019-11-09 07:18:05 +08:00
|
|
|
|
|
|
|
/* Check that we have a namemap */
|
|
|
|
if (!ossl_assert(namemap != NULL)) {
|
|
|
|
ERR_raise(ERR_LIB_CRYPTO, ERR_R_PASSED_NULL_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-05-19 17:38:23 +08:00
|
|
|
if ((tmp = OPENSSL_strdup(names)) == NULL)
|
2021-02-19 04:31:56 +08:00
|
|
|
return 0;
|
2022-05-19 17:38:23 +08:00
|
|
|
|
|
|
|
if (!CRYPTO_THREAD_write_lock(namemap->lock)) {
|
|
|
|
OPENSSL_free(tmp);
|
|
|
|
return 0;
|
|
|
|
}
|
2019-11-09 07:18:05 +08:00
|
|
|
/*
|
|
|
|
* Check that no name is an empty string, and that all names have at
|
|
|
|
* most one numeric identity together.
|
|
|
|
*/
|
2022-05-19 17:38:23 +08:00
|
|
|
for (p = tmp; *p != '\0'; p = q) {
|
2019-11-09 07:18:05 +08:00
|
|
|
int this_number;
|
2022-05-19 17:38:23 +08:00
|
|
|
size_t l;
|
2019-11-09 07:18:05 +08:00
|
|
|
|
2022-05-18 22:45:20 +08:00
|
|
|
if ((q = strchr(p, separator)) == NULL) {
|
2019-11-09 07:18:05 +08:00
|
|
|
l = strlen(p); /* offset to \0 */
|
2022-05-19 17:38:23 +08:00
|
|
|
q = p + l;
|
2022-05-18 22:45:20 +08:00
|
|
|
} else {
|
2019-11-09 07:18:05 +08:00
|
|
|
l = q - p; /* offset to the next separator */
|
2022-05-19 17:38:23 +08:00
|
|
|
*q++ = '\0';
|
2022-05-18 22:45:20 +08:00
|
|
|
}
|
2019-11-09 07:18:05 +08:00
|
|
|
|
2022-05-19 17:38:23 +08:00
|
|
|
if (*p == '\0') {
|
2019-11-09 07:18:05 +08:00
|
|
|
ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_BAD_ALGORITHM_NAME);
|
2022-05-19 17:38:23 +08:00
|
|
|
number = 0;
|
|
|
|
goto end;
|
2019-11-09 07:18:05 +08:00
|
|
|
}
|
2022-05-19 17:38:23 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
this_number = ossl_namemap_name2num(namemap, p);
|
2022-05-19 17:38:23 +08:00
|
|
|
|
2019-11-09 07:18:05 +08:00
|
|
|
if (number == 0) {
|
|
|
|
number = this_number;
|
|
|
|
} else if (this_number != 0 && this_number != number) {
|
|
|
|
ERR_raise_data(ERR_LIB_CRYPTO, CRYPTO_R_CONFLICTING_NAMES,
|
2022-05-19 17:38:23 +08:00
|
|
|
"\"%s\" has an existing different identity %d (from \"%s\")",
|
|
|
|
p, this_number, names);
|
|
|
|
number = 0;
|
|
|
|
goto end;
|
2019-11-09 07:18:05 +08:00
|
|
|
}
|
|
|
|
}
|
2022-05-19 17:38:23 +08:00
|
|
|
endp = p;
|
2019-11-09 07:18:05 +08:00
|
|
|
|
|
|
|
/* Now that we have checked, register all names */
|
2022-05-19 17:38:23 +08:00
|
|
|
for (p = tmp; p < endp; p = q) {
|
2019-11-09 07:18:05 +08:00
|
|
|
int this_number;
|
|
|
|
|
2022-05-19 17:38:23 +08:00
|
|
|
q = p + strlen(p) + 1;
|
2019-11-09 07:18:05 +08:00
|
|
|
|
2022-05-19 17:38:23 +08:00
|
|
|
this_number = namemap_add_name(namemap, number, p);
|
2019-11-09 07:18:05 +08:00
|
|
|
if (number == 0) {
|
|
|
|
number = this_number;
|
|
|
|
} else if (this_number != number) {
|
2020-01-15 08:04:37 +08:00
|
|
|
ERR_raise_data(ERR_LIB_CRYPTO, ERR_R_INTERNAL_ERROR,
|
2019-11-09 07:18:05 +08:00
|
|
|
"Got number %d when expecting %d",
|
|
|
|
this_number, number);
|
2022-05-19 17:38:23 +08:00
|
|
|
number = 0;
|
|
|
|
goto end;
|
2019-11-09 07:18:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-19 17:38:23 +08:00
|
|
|
end:
|
2020-07-28 09:14:14 +08:00
|
|
|
CRYPTO_THREAD_unlock(namemap->lock);
|
2022-05-19 17:38:23 +08:00
|
|
|
OPENSSL_free(tmp);
|
2019-11-09 07:18:05 +08:00
|
|
|
return number;
|
2019-05-23 09:36:21 +08:00
|
|
|
}
|
2020-01-15 08:10:42 +08:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Pre-population
|
|
|
|
* ==============
|
|
|
|
*/
|
|
|
|
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2020-01-15 08:10:42 +08:00
|
|
|
#include <openssl/evp.h>
|
|
|
|
|
|
|
|
/* Creates an initial namemap with names found in the legacy method db */
|
2021-04-29 03:28:11 +08:00
|
|
|
static void get_legacy_evp_names(int base_nid, int nid, const char *pem_name,
|
|
|
|
void *arg)
|
2020-01-15 08:10:42 +08:00
|
|
|
{
|
2021-04-29 03:28:11 +08:00
|
|
|
int num = 0;
|
|
|
|
ASN1_OBJECT *obj;
|
2020-01-15 08:10:42 +08:00
|
|
|
|
2021-04-29 03:28:11 +08:00
|
|
|
if (base_nid != NID_undef) {
|
|
|
|
num = ossl_namemap_add_name(arg, num, OBJ_nid2sn(base_nid));
|
|
|
|
num = ossl_namemap_add_name(arg, num, OBJ_nid2ln(base_nid));
|
2020-01-15 08:10:42 +08:00
|
|
|
}
|
2021-03-16 12:40:50 +08:00
|
|
|
|
2021-04-29 03:28:11 +08:00
|
|
|
if (nid != NID_undef) {
|
|
|
|
num = ossl_namemap_add_name(arg, num, OBJ_nid2sn(nid));
|
|
|
|
num = ossl_namemap_add_name(arg, num, OBJ_nid2ln(nid));
|
|
|
|
if ((obj = OBJ_nid2obj(nid)) != NULL) {
|
|
|
|
char txtoid[OSSL_MAX_NAME_SIZE];
|
2021-03-16 12:40:50 +08:00
|
|
|
|
2021-11-10 12:39:54 +08:00
|
|
|
if (OBJ_obj2txt(txtoid, sizeof(txtoid), obj, 1) > 0)
|
2021-04-29 03:28:11 +08:00
|
|
|
num = ossl_namemap_add_name(arg, num, txtoid);
|
|
|
|
}
|
2021-03-16 12:40:50 +08:00
|
|
|
}
|
2021-04-29 03:28:11 +08:00
|
|
|
if (pem_name != NULL)
|
|
|
|
num = ossl_namemap_add_name(arg, num, pem_name);
|
2020-01-15 08:10:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void get_legacy_cipher_names(const OBJ_NAME *on, void *arg)
|
|
|
|
{
|
|
|
|
const EVP_CIPHER *cipher = (void *)OBJ_NAME_get(on->name, on->type);
|
|
|
|
|
2021-12-21 07:17:04 +08:00
|
|
|
if (cipher != NULL)
|
|
|
|
get_legacy_evp_names(NID_undef, EVP_CIPHER_get_type(cipher), NULL, arg);
|
2020-01-15 08:10:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void get_legacy_md_names(const OBJ_NAME *on, void *arg)
|
|
|
|
{
|
|
|
|
const EVP_MD *md = (void *)OBJ_NAME_get(on->name, on->type);
|
2021-03-11 20:36:06 +08:00
|
|
|
|
2021-12-21 07:17:04 +08:00
|
|
|
if (md != NULL)
|
|
|
|
get_legacy_evp_names(0, EVP_MD_get_type(md), NULL, arg);
|
2021-03-16 12:40:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void get_legacy_pkey_meth_names(const EVP_PKEY_ASN1_METHOD *ameth,
|
|
|
|
void *arg)
|
|
|
|
{
|
|
|
|
int nid = 0, base_nid = 0, flags = 0;
|
2021-04-29 03:28:11 +08:00
|
|
|
const char *pem_name = NULL;
|
2021-03-16 12:40:50 +08:00
|
|
|
|
2021-04-29 03:28:11 +08:00
|
|
|
EVP_PKEY_asn1_get0_info(&nid, &base_nid, &flags, NULL, &pem_name, ameth);
|
2021-03-16 12:40:50 +08:00
|
|
|
if (nid != NID_undef) {
|
|
|
|
if ((flags & ASN1_PKEY_ALIAS) == 0) {
|
2021-04-29 03:28:11 +08:00
|
|
|
switch (nid) {
|
|
|
|
case EVP_PKEY_DHX:
|
|
|
|
/* We know that the name "DHX" is used too */
|
|
|
|
get_legacy_evp_names(0, nid, "DHX", arg);
|
|
|
|
/* FALLTHRU */
|
|
|
|
default:
|
|
|
|
get_legacy_evp_names(0, nid, pem_name, arg);
|
|
|
|
}
|
2021-03-16 12:40:50 +08:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Treat aliases carefully, some of them are undesirable, or
|
|
|
|
* should not be treated as such for providers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
switch (nid) {
|
|
|
|
case EVP_PKEY_SM2:
|
|
|
|
/*
|
|
|
|
* SM2 is a separate keytype with providers, not an alias for
|
|
|
|
* EC.
|
|
|
|
*/
|
2021-04-29 03:28:11 +08:00
|
|
|
get_legacy_evp_names(0, nid, pem_name, arg);
|
2021-03-16 12:40:50 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Use the short name of the base nid as the common reference */
|
2021-04-29 03:28:11 +08:00
|
|
|
get_legacy_evp_names(base_nid, nid, pem_name, arg);
|
2021-03-16 12:40:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-15 08:10:42 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* Constructors / destructors
|
|
|
|
* ==========================
|
|
|
|
*/
|
|
|
|
|
2020-10-15 17:55:50 +08:00
|
|
|
OSSL_NAMEMAP *ossl_namemap_stored(OSSL_LIB_CTX *libctx)
|
2020-01-15 08:10:42 +08:00
|
|
|
{
|
2021-02-19 04:31:56 +08:00
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
int nms;
|
|
|
|
#endif
|
2020-01-15 08:10:42 +08:00
|
|
|
OSSL_NAMEMAP *namemap =
|
2022-03-14 16:13:12 +08:00
|
|
|
ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_NAMEMAP_INDEX);
|
2020-01-15 08:10:42 +08:00
|
|
|
|
2021-02-19 04:31:56 +08:00
|
|
|
if (namemap == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-02-19 04:31:56 +08:00
|
|
|
nms = ossl_namemap_empty(namemap);
|
|
|
|
if (nms < 0) {
|
|
|
|
/*
|
|
|
|
* Could not get lock to make the count, so maybe internal objects
|
|
|
|
* weren't added. This seems safest.
|
|
|
|
*/
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (nms == 1) {
|
2021-03-16 12:40:50 +08:00
|
|
|
int i, end;
|
|
|
|
|
2020-01-15 08:10:42 +08:00
|
|
|
/* Before pilfering, we make sure the legacy database is populated */
|
|
|
|
OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS
|
|
|
|
| OPENSSL_INIT_ADD_ALL_DIGESTS, NULL);
|
|
|
|
|
|
|
|
OBJ_NAME_do_all(OBJ_NAME_TYPE_CIPHER_METH,
|
|
|
|
get_legacy_cipher_names, namemap);
|
|
|
|
OBJ_NAME_do_all(OBJ_NAME_TYPE_MD_METH,
|
|
|
|
get_legacy_md_names, namemap);
|
2021-03-16 12:40:50 +08:00
|
|
|
|
|
|
|
/* We also pilfer data from the legacy EVP_PKEY_ASN1_METHODs */
|
|
|
|
for (i = 0, end = EVP_PKEY_asn1_get_count(); i < end; i++)
|
|
|
|
get_legacy_pkey_meth_names(EVP_PKEY_asn1_get0(i), namemap);
|
2020-01-15 08:10:42 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return namemap;
|
|
|
|
}
|
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
OSSL_NAMEMAP *ossl_namemap_new(OSSL_LIB_CTX *libctx)
|
2020-01-15 08:10:42 +08:00
|
|
|
{
|
|
|
|
OSSL_NAMEMAP *namemap;
|
2024-05-27 22:50:05 +08:00
|
|
|
HT_CONFIG htconf = { NULL, NULL, NULL, NAMEMAP_HT_BUCKETS, 1, 1 };
|
2020-01-15 08:10:42 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
htconf.ctx = libctx;
|
|
|
|
|
|
|
|
if ((namemap = OPENSSL_zalloc(sizeof(*namemap))) == NULL)
|
|
|
|
goto err;
|
2020-01-15 08:10:42 +08:00
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
if ((namemap->lock = CRYPTO_THREAD_lock_new()) == NULL)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if ((namemap->namenum_ht = ossl_ht_new(&htconf)) == NULL)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if ((namemap->numnames = sk_NAMES_new_null()) == NULL)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
return namemap;
|
|
|
|
|
|
|
|
err:
|
2020-01-15 08:10:42 +08:00
|
|
|
ossl_namemap_free(namemap);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ossl_namemap_free(OSSL_NAMEMAP *namemap)
|
|
|
|
{
|
|
|
|
if (namemap == NULL || namemap->stored)
|
|
|
|
return;
|
|
|
|
|
2024-05-27 22:50:05 +08:00
|
|
|
sk_NAMES_pop_free(namemap->numnames, names_free);
|
|
|
|
|
|
|
|
ossl_ht_free(namemap->namenum_ht);
|
2020-01-15 08:10:42 +08:00
|
|
|
|
|
|
|
CRYPTO_THREAD_lock_free(namemap->lock);
|
|
|
|
OPENSSL_free(namemap);
|
|
|
|
}
|