2019-05-04 18:55:32 +08:00
|
|
|
/*
|
2022-05-03 18:52:38 +08:00
|
|
|
* Copyright 2019-2022 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"
|
|
|
|
#include <openssl/lhash.h>
|
2021-03-09 11:37:22 +08:00
|
|
|
#include "crypto/lhash.h" /* ossl_lh_strcasehash */
|
2020-06-18 09:01:08 +08:00
|
|
|
#include "internal/tsan_assist.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
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
/*-
|
|
|
|
* The namenum entry
|
|
|
|
* =================
|
|
|
|
*/
|
2019-05-04 18:55:32 +08:00
|
|
|
typedef struct {
|
2019-05-23 09:18:04 +08:00
|
|
|
char *name;
|
2019-05-04 18:55:32 +08:00
|
|
|
int number;
|
2019-05-23 09:18:04 +08:00
|
|
|
} NAMENUM_ENTRY;
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2022-03-22 19:52:27 +08:00
|
|
|
DEFINE_LHASH_OF_EX(NAMENUM_ENTRY);
|
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
|
|
|
|
|
|
|
struct ossl_namemap_st {
|
|
|
|
/* Flags */
|
|
|
|
unsigned int stored:1; /* If 1, it's stored in a library context */
|
|
|
|
|
|
|
|
CRYPTO_RWLOCK *lock;
|
2019-05-23 09:18:04 +08:00
|
|
|
LHASH_OF(NAMENUM_ENTRY) *namenum; /* Name->number mapping */
|
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
|
|
|
};
|
|
|
|
|
|
|
|
/* LHASH callbacks */
|
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
static unsigned long namenum_hash(const NAMENUM_ENTRY *n)
|
2019-05-04 18:55:32 +08:00
|
|
|
{
|
2021-03-09 11:37:22 +08:00
|
|
|
return ossl_lh_strcasehash(n->name);
|
2019-05-04 18:55:32 +08:00
|
|
|
}
|
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
static int namenum_cmp(const NAMENUM_ENTRY *a, const NAMENUM_ENTRY *b)
|
2019-05-04 18:55:32 +08:00
|
|
|
{
|
2022-04-12 18:30:08 +08:00
|
|
|
return OPENSSL_strcasecmp(a->name, b->name);
|
2019-05-04 18:55:32 +08:00
|
|
|
}
|
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
static void namenum_free(NAMENUM_ENTRY *n)
|
2019-05-04 18:55:32 +08:00
|
|
|
{
|
2019-05-23 09:18:04 +08:00
|
|
|
if (n != NULL)
|
|
|
|
OPENSSL_free(n->name);
|
2019-05-04 18:55:32 +08:00
|
|
|
OPENSSL_free(n);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
OSSL_NAMEMAP *namemap = ossl_namemap_new();
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
typedef struct doall_names_data_st {
|
|
|
|
int number;
|
2021-02-20 01:03:43 +08:00
|
|
|
const char **names;
|
|
|
|
int found;
|
2019-05-23 09:18:04 +08:00
|
|
|
} DOALL_NAMES_DATA;
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
static void do_name(const NAMENUM_ENTRY *namenum, DOALL_NAMES_DATA *data)
|
2019-05-04 18:55:32 +08:00
|
|
|
{
|
2019-05-23 09:18:04 +08:00
|
|
|
if (namenum->number == data->number)
|
2021-02-20 01:03:43 +08:00
|
|
|
data->names[data->found++] = namenum->name;
|
2019-05-23 09:18:04 +08:00
|
|
|
}
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
IMPLEMENT_LHASH_DOALL_ARG_CONST(NAMENUM_ENTRY, DOALL_NAMES_DATA);
|
2019-05-04 18:55:32 +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
|
|
|
{
|
|
|
|
DOALL_NAMES_DATA cbdata;
|
2021-02-20 01:03:43 +08:00
|
|
|
size_t num_names;
|
|
|
|
int i;
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
cbdata.number = number;
|
2021-02-20 01:03:43 +08:00
|
|
|
cbdata.found = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We collect all the names first under a read lock. Subsequently we call
|
|
|
|
* 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
|
|
|
|
2021-02-19 04:31:56 +08:00
|
|
|
num_names = lh_NAMENUM_ENTRY_num_items(namemap->namenum);
|
2021-02-20 01:03:43 +08:00
|
|
|
if (num_names == 0) {
|
|
|
|
CRYPTO_THREAD_unlock(namemap->lock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
cbdata.names = OPENSSL_malloc(sizeof(*cbdata.names) * num_names);
|
|
|
|
if (cbdata.names == NULL) {
|
|
|
|
CRYPTO_THREAD_unlock(namemap->lock);
|
|
|
|
return 0;
|
|
|
|
}
|
2019-05-23 09:18:04 +08:00
|
|
|
lh_NAMENUM_ENTRY_doall_DOALL_NAMES_DATA(namemap->namenum, do_name,
|
|
|
|
&cbdata);
|
2019-05-04 18:55:32 +08:00
|
|
|
CRYPTO_THREAD_unlock(namemap->lock);
|
2021-02-20 01:03:43 +08:00
|
|
|
|
|
|
|
for (i = 0; i < cbdata.found; i++)
|
|
|
|
fn(cbdata.names[i], data);
|
|
|
|
|
|
|
|
OPENSSL_free(cbdata.names);
|
|
|
|
return 1;
|
2019-05-04 18:55:32 +08:00
|
|
|
}
|
|
|
|
|
2022-05-19 17:38:23 +08:00
|
|
|
/* This function is not thread safe, the namemap must be locked */
|
2022-05-18 22:45:20 +08:00
|
|
|
static int namemap_name2num(const OSSL_NAMEMAP *namemap,
|
|
|
|
const char *name)
|
2020-07-28 09:14:14 +08:00
|
|
|
{
|
|
|
|
NAMENUM_ENTRY *namenum_entry, namenum_tmpl;
|
|
|
|
|
2022-05-18 22:45:20 +08:00
|
|
|
namenum_tmpl.name = (char *)name;
|
2020-07-28 09:14:14 +08:00
|
|
|
namenum_tmpl.number = 0;
|
|
|
|
namenum_entry =
|
|
|
|
lh_NAMENUM_ENTRY_retrieve(namemap->namenum, &namenum_tmpl);
|
|
|
|
return namenum_entry != NULL ? namenum_entry->number : 0;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2020-07-28 09:14:14 +08:00
|
|
|
int number;
|
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;
|
|
|
|
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_read_lock(namemap->lock))
|
|
|
|
return 0;
|
2022-05-18 22:45:20 +08:00
|
|
|
number = namemap_name2num(namemap, name);
|
2019-05-04 18:55:32 +08:00
|
|
|
CRYPTO_THREAD_unlock(namemap->lock);
|
|
|
|
|
2019-05-23 09:18:04 +08:00
|
|
|
return number;
|
2019-05-04 18:55:32 +08:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
struct num2name_data_st {
|
|
|
|
size_t idx; /* Countdown */
|
|
|
|
const char *name; /* Result */
|
|
|
|
};
|
|
|
|
|
|
|
|
static void do_num2name(const char *name, void *vdata)
|
|
|
|
{
|
|
|
|
struct num2name_data_st *data = vdata;
|
|
|
|
|
|
|
|
if (data->idx > 0)
|
|
|
|
data->idx--;
|
|
|
|
else if (data->name == NULL)
|
|
|
|
data->name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *ossl_namemap_num2name(const OSSL_NAMEMAP *namemap, int number,
|
|
|
|
size_t idx)
|
|
|
|
{
|
|
|
|
struct num2name_data_st data;
|
|
|
|
|
|
|
|
data.idx = idx;
|
|
|
|
data.name = NULL;
|
2021-02-20 01:03:43 +08:00
|
|
|
if (!ossl_namemap_doall_names(namemap, number, do_num2name, &data))
|
|
|
|
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
|
|
|
return data.name;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2019-05-23 09:18:04 +08:00
|
|
|
NAMENUM_ENTRY *namenum = NULL;
|
|
|
|
int tmp_number;
|
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 */
|
2022-05-19 17:38:23 +08:00
|
|
|
if ((tmp_number = namemap_name2num(namemap, name)) != 0)
|
2020-07-28 09:14:14 +08:00
|
|
|
return tmp_number;
|
2019-05-04 18:55:32 +08:00
|
|
|
|
2022-05-18 22:45:20 +08:00
|
|
|
if ((namenum = OPENSSL_zalloc(sizeof(*namenum))) == NULL)
|
2022-05-19 17:38:23 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ((namenum->name = OPENSSL_strdup(name)) == NULL)
|
2019-05-04 18:55:32 +08:00
|
|
|
goto err;
|
|
|
|
|
2022-01-12 11:22:23 +08:00
|
|
|
/* The tsan_counter use here is safe since we're under lock */
|
2020-07-28 09:14:14 +08:00
|
|
|
namenum->number =
|
2020-06-18 09:01:08 +08:00
|
|
|
number != 0 ? number : 1 + tsan_counter(&namemap->max_number);
|
2019-05-23 09:18:04 +08:00
|
|
|
(void)lh_NAMENUM_ENTRY_insert(namemap->namenum, namenum);
|
|
|
|
|
|
|
|
if (lh_NAMENUM_ENTRY_error(namemap->namenum))
|
2019-05-04 18:55:32 +08:00
|
|
|
goto err;
|
2020-07-28 09:14:14 +08:00
|
|
|
return namenum->number;
|
2019-05-04 18:55:32 +08:00
|
|
|
|
|
|
|
err:
|
2022-05-19 17:38:23 +08:00
|
|
|
namenum_free(namenum);
|
2020-07-28 09:14:14 +08:00
|
|
|
return 0;
|
|
|
|
}
|
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
|
|
|
|
|
|
|
this_number = namemap_name2num(namemap, p);
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
OSSL_NAMEMAP *ossl_namemap_new(void)
|
|
|
|
{
|
|
|
|
OSSL_NAMEMAP *namemap;
|
|
|
|
|
|
|
|
if ((namemap = OPENSSL_zalloc(sizeof(*namemap))) != NULL
|
|
|
|
&& (namemap->lock = CRYPTO_THREAD_lock_new()) != NULL
|
|
|
|
&& (namemap->namenum =
|
|
|
|
lh_NAMENUM_ENTRY_new(namenum_hash, namenum_cmp)) != NULL)
|
|
|
|
return namemap;
|
|
|
|
|
|
|
|
ossl_namemap_free(namemap);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ossl_namemap_free(OSSL_NAMEMAP *namemap)
|
|
|
|
{
|
|
|
|
if (namemap == NULL || namemap->stored)
|
|
|
|
return;
|
|
|
|
|
|
|
|
lh_NAMENUM_ENTRY_doall(namemap->namenum, namenum_free);
|
|
|
|
lh_NAMENUM_ENTRY_free(namemap->namenum);
|
|
|
|
|
|
|
|
CRYPTO_THREAD_lock_free(namemap->lock);
|
|
|
|
OPENSSL_free(namemap);
|
|
|
|
}
|