Coverage Report

Created: 2025-12-31 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl33/crypto/objects/o_names.c
Line
Count
Source
1
/*
2
 * Copyright 1998-2022 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 <stdio.h>
11
#include <stdlib.h>
12
#include <string.h>
13
14
#include <openssl/err.h>
15
#include <openssl/lhash.h>
16
#include <openssl/objects.h>
17
#include <openssl/safestack.h>
18
#include <openssl/e_os2.h>
19
#include "internal/thread_once.h"
20
#include "crypto/lhash.h"
21
#include "obj_local.h"
22
#include "internal/e_os.h"
23
24
/*
25
 * I use the ex_data stuff to manage the identifiers for the obj_name_types
26
 * that applications may define.  I only really use the free function field.
27
 */
28
static LHASH_OF(OBJ_NAME) *names_lh = NULL;
29
static int names_type_num = OBJ_NAME_TYPE_NUM;
30
static CRYPTO_RWLOCK *obj_lock = NULL;
31
32
struct name_funcs_st {
33
    unsigned long (*hash_func)(const char *name);
34
    int (*cmp_func)(const char *a, const char *b);
35
    void (*free_func)(const char *, int, const char *);
36
};
37
38
static STACK_OF(NAME_FUNCS) *name_funcs_stack;
39
40
/*
41
 * The LHASH callbacks now use the raw "void *" prototypes and do
42
 * per-variable casting in the functions. This prevents function pointer
43
 * casting without the need for macro-generated wrapper functions.
44
 */
45
46
static unsigned long obj_name_hash(const OBJ_NAME *a);
47
static int obj_name_cmp(const OBJ_NAME *a, const OBJ_NAME *b);
48
49
static CRYPTO_ONCE init = CRYPTO_ONCE_STATIC_INIT;
50
DEFINE_RUN_ONCE_STATIC(o_names_init)
51
164
{
52
164
    names_lh = NULL;
53
164
    obj_lock = CRYPTO_THREAD_lock_new();
54
164
    if (obj_lock != NULL)
55
164
        names_lh = lh_OBJ_NAME_new(obj_name_hash, obj_name_cmp);
56
164
    if (names_lh == NULL) {
57
0
        CRYPTO_THREAD_lock_free(obj_lock);
58
0
        obj_lock = NULL;
59
0
    }
60
164
    return names_lh != NULL && obj_lock != NULL;
61
164
}
62
63
int OBJ_NAME_init(void)
64
338k
{
65
338k
    return RUN_ONCE(&init, o_names_init);
66
338k
}
67
68
int OBJ_NAME_new_index(unsigned long (*hash_func)(const char *),
69
    int (*cmp_func)(const char *, const char *),
70
    void (*free_func)(const char *, int, const char *))
71
0
{
72
0
    int ret = 0, i, push;
73
0
    NAME_FUNCS *name_funcs;
74
75
0
    if (!OBJ_NAME_init())
76
0
        return 0;
77
78
0
    if (!CRYPTO_THREAD_write_lock(obj_lock))
79
0
        return 0;
80
81
0
    if (name_funcs_stack == NULL)
82
0
        name_funcs_stack = sk_NAME_FUNCS_new_null();
83
0
    if (name_funcs_stack == NULL) {
84
        /* ERROR */
85
0
        goto out;
86
0
    }
87
0
    ret = names_type_num;
88
0
    names_type_num++;
89
0
    for (i = sk_NAME_FUNCS_num(name_funcs_stack); i < names_type_num; i++) {
90
0
        name_funcs = OPENSSL_zalloc(sizeof(*name_funcs));
91
0
        if (name_funcs == NULL) {
92
0
            ret = 0;
93
0
            goto out;
94
0
        }
95
0
        name_funcs->hash_func = ossl_lh_strcasehash;
96
0
        name_funcs->cmp_func = OPENSSL_strcasecmp;
97
0
        push = sk_NAME_FUNCS_push(name_funcs_stack, name_funcs);
98
99
0
        if (!push) {
100
0
            ERR_raise(ERR_LIB_OBJ, ERR_R_CRYPTO_LIB);
101
0
            OPENSSL_free(name_funcs);
102
0
            ret = 0;
103
0
            goto out;
104
0
        }
105
0
    }
106
0
    name_funcs = sk_NAME_FUNCS_value(name_funcs_stack, ret);
107
0
    if (hash_func != NULL)
108
0
        name_funcs->hash_func = hash_func;
109
0
    if (cmp_func != NULL)
110
0
        name_funcs->cmp_func = cmp_func;
111
0
    if (free_func != NULL)
112
0
        name_funcs->free_func = free_func;
113
114
0
out:
115
0
    CRYPTO_THREAD_unlock(obj_lock);
116
0
    return ret;
117
0
}
118
119
static int obj_name_cmp(const OBJ_NAME *a, const OBJ_NAME *b)
120
293k
{
121
293k
    int ret;
122
123
293k
    ret = a->type - b->type;
124
293k
    if (ret == 0) {
125
293k
        if ((name_funcs_stack != NULL)
126
0
            && (sk_NAME_FUNCS_num(name_funcs_stack) > a->type)) {
127
0
            ret = sk_NAME_FUNCS_value(name_funcs_stack,
128
0
                a->type)
129
0
                      ->cmp_func(a->name, b->name);
130
0
        } else
131
293k
            ret = OPENSSL_strcasecmp(a->name, b->name);
132
293k
    }
133
293k
    return ret;
134
293k
}
135
136
static unsigned long obj_name_hash(const OBJ_NAME *a)
137
347k
{
138
347k
    unsigned long ret;
139
140
347k
    if ((name_funcs_stack != NULL)
141
0
        && (sk_NAME_FUNCS_num(name_funcs_stack) > a->type)) {
142
0
        ret = sk_NAME_FUNCS_value(name_funcs_stack,
143
0
            a->type)
144
0
                  ->hash_func(a->name);
145
347k
    } else {
146
347k
        ret = ossl_lh_strcasehash(a->name);
147
347k
    }
148
347k
    ret ^= a->type;
149
347k
    return ret;
150
347k
}
151
152
const char *OBJ_NAME_get(const char *name, int type)
153
237k
{
154
237k
    OBJ_NAME on, *ret;
155
237k
    int num = 0, alias;
156
237k
    const char *value = NULL;
157
158
237k
    if (name == NULL)
159
0
        return NULL;
160
237k
    if (!OBJ_NAME_init())
161
0
        return NULL;
162
237k
    if (!CRYPTO_THREAD_read_lock(obj_lock))
163
0
        return NULL;
164
165
237k
    alias = type & OBJ_NAME_ALIAS;
166
237k
    type &= ~OBJ_NAME_ALIAS;
167
168
237k
    on.name = name;
169
237k
    on.type = type;
170
171
246k
    for (;;) {
172
246k
        ret = lh_OBJ_NAME_retrieve(names_lh, &on);
173
246k
        if (ret == NULL)
174
14.1k
            break;
175
232k
        if ((ret->alias) && !alias) {
176
8.74k
            if (++num > 10)
177
0
                break;
178
8.74k
            on.name = ret->data;
179
223k
        } else {
180
223k
            value = ret->data;
181
223k
            break;
182
223k
        }
183
232k
    }
184
185
237k
    CRYPTO_THREAD_unlock(obj_lock);
186
237k
    return value;
187
237k
}
188
189
int OBJ_NAME_add(const char *name, int type, const char *data)
190
69.5k
{
191
69.5k
    OBJ_NAME *onp, *ret;
192
69.5k
    int alias, ok = 0;
193
194
69.5k
    if (!OBJ_NAME_init())
195
0
        return 0;
196
197
69.5k
    alias = type & OBJ_NAME_ALIAS;
198
69.5k
    type &= ~OBJ_NAME_ALIAS;
199
200
69.5k
    onp = OPENSSL_malloc(sizeof(*onp));
201
69.5k
    if (onp == NULL)
202
0
        return 0;
203
204
69.5k
    onp->name = name;
205
69.5k
    onp->alias = alias;
206
69.5k
    onp->type = type;
207
69.5k
    onp->data = data;
208
209
69.5k
    if (!CRYPTO_THREAD_write_lock(obj_lock)) {
210
0
        OPENSSL_free(onp);
211
0
        return 0;
212
0
    }
213
214
69.5k
    ret = lh_OBJ_NAME_insert(names_lh, onp);
215
69.5k
    if (ret != NULL) {
216
        /* free things */
217
29.8k
        if ((name_funcs_stack != NULL)
218
0
            && (sk_NAME_FUNCS_num(name_funcs_stack) > ret->type)) {
219
            /*
220
             * XXX: I'm not sure I understand why the free function should
221
             * get three arguments... -- Richard Levitte
222
             */
223
0
            sk_NAME_FUNCS_value(name_funcs_stack,
224
0
                ret->type)
225
0
                ->free_func(ret->name, ret->type,
226
0
                    ret->data);
227
0
        }
228
29.8k
        OPENSSL_free(ret);
229
39.6k
    } else {
230
39.6k
        if (lh_OBJ_NAME_error(names_lh)) {
231
            /* ERROR */
232
0
            OPENSSL_free(onp);
233
0
            goto unlock;
234
0
        }
235
39.6k
    }
236
237
69.5k
    ok = 1;
238
239
69.5k
unlock:
240
69.5k
    CRYPTO_THREAD_unlock(obj_lock);
241
69.5k
    return ok;
242
69.5k
}
243
244
int OBJ_NAME_remove(const char *name, int type)
245
31.6k
{
246
31.6k
    OBJ_NAME on, *ret;
247
31.6k
    int ok = 0;
248
249
31.6k
    if (!OBJ_NAME_init())
250
0
        return 0;
251
252
31.6k
    if (!CRYPTO_THREAD_write_lock(obj_lock))
253
0
        return 0;
254
255
31.6k
    type &= ~OBJ_NAME_ALIAS;
256
31.6k
    on.name = name;
257
31.6k
    on.type = type;
258
31.6k
    ret = lh_OBJ_NAME_delete(names_lh, &on);
259
31.6k
    if (ret != NULL) {
260
        /* free things */
261
31.6k
        if ((name_funcs_stack != NULL)
262
0
            && (sk_NAME_FUNCS_num(name_funcs_stack) > ret->type)) {
263
            /*
264
             * XXX: I'm not sure I understand why the free function should
265
             * get three arguments... -- Richard Levitte
266
             */
267
0
            sk_NAME_FUNCS_value(name_funcs_stack,
268
0
                ret->type)
269
0
                ->free_func(ret->name, ret->type,
270
0
                    ret->data);
271
0
        }
272
31.6k
        OPENSSL_free(ret);
273
31.6k
        ok = 1;
274
31.6k
    }
275
276
31.6k
    CRYPTO_THREAD_unlock(obj_lock);
277
31.6k
    return ok;
278
31.6k
}
279
280
typedef struct {
281
    int type;
282
    void (*fn)(const OBJ_NAME *, void *arg);
283
    void *arg;
284
} OBJ_DOALL;
285
286
static void do_all_fn(const OBJ_NAME *name, OBJ_DOALL *d)
287
47.8k
{
288
47.8k
    if (name->type == d->type)
289
23.9k
        d->fn(name, d->arg);
290
47.8k
}
291
292
IMPLEMENT_LHASH_DOALL_ARG_CONST(OBJ_NAME, OBJ_DOALL);
293
294
void OBJ_NAME_do_all(int type, void (*fn)(const OBJ_NAME *, void *arg),
295
    void *arg)
296
198
{
297
198
    OBJ_DOALL d;
298
299
198
    d.type = type;
300
198
    d.fn = fn;
301
198
    d.arg = arg;
302
303
198
    lh_OBJ_NAME_doall_OBJ_DOALL(names_lh, do_all_fn, &d);
304
198
}
305
306
struct doall_sorted {
307
    int type;
308
    int n;
309
    const OBJ_NAME **names;
310
};
311
312
static void do_all_sorted_fn(const OBJ_NAME *name, void *d_)
313
0
{
314
0
    struct doall_sorted *d = d_;
315
316
0
    if (name->type != d->type)
317
0
        return;
318
319
0
    d->names[d->n++] = name;
320
0
}
321
322
static int do_all_sorted_cmp(const void *n1_, const void *n2_)
323
0
{
324
0
    const OBJ_NAME *const *n1 = n1_;
325
0
    const OBJ_NAME *const *n2 = n2_;
326
327
0
    return strcmp((*n1)->name, (*n2)->name);
328
0
}
329
330
void OBJ_NAME_do_all_sorted(int type,
331
    void (*fn)(const OBJ_NAME *, void *arg),
332
    void *arg)
333
0
{
334
0
    struct doall_sorted d;
335
0
    int n;
336
337
0
    d.type = type;
338
0
    d.names = OPENSSL_malloc(sizeof(*d.names) * lh_OBJ_NAME_num_items(names_lh));
339
    /* Really should return an error if !d.names...but its a void function! */
340
0
    if (d.names != NULL) {
341
0
        d.n = 0;
342
0
        OBJ_NAME_do_all(type, do_all_sorted_fn, &d);
343
344
0
        qsort((void *)d.names, d.n, sizeof(*d.names), do_all_sorted_cmp);
345
346
0
        for (n = 0; n < d.n; ++n)
347
0
            fn(d.names[n], arg);
348
349
0
        OPENSSL_free((void *)d.names);
350
0
    }
351
0
}
352
353
static int free_type;
354
355
static void names_lh_free_doall(OBJ_NAME *onp)
356
71.0k
{
357
71.0k
    if (onp == NULL)
358
0
        return;
359
360
71.0k
    if (free_type < 0 || free_type == onp->type)
361
31.6k
        OBJ_NAME_remove(onp->name, onp->type);
362
71.0k
}
363
364
static void name_funcs_free(NAME_FUNCS *ptr)
365
0
{
366
0
    OPENSSL_free(ptr);
367
0
}
368
369
void OBJ_NAME_cleanup(int type)
370
880
{
371
880
    unsigned long down_load;
372
373
880
    if (names_lh == NULL)
374
356
        return;
375
376
524
    free_type = type;
377
524
    down_load = lh_OBJ_NAME_get_down_load(names_lh);
378
524
    lh_OBJ_NAME_set_down_load(names_lh, 0);
379
380
524
    lh_OBJ_NAME_doall(names_lh, names_lh_free_doall);
381
524
    if (type < 0) {
382
131
        lh_OBJ_NAME_free(names_lh);
383
131
        sk_NAME_FUNCS_pop_free(name_funcs_stack, name_funcs_free);
384
131
        CRYPTO_THREAD_lock_free(obj_lock);
385
131
        names_lh = NULL;
386
131
        name_funcs_stack = NULL;
387
131
        obj_lock = NULL;
388
131
    } else
389
393
        lh_OBJ_NAME_set_down_load(names_lh, down_load);
390
524
}