Coverage Report

Created: 2026-04-01 06:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl33/crypto/lhash/lhash.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2024 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 <string.h>
12
#include <stdlib.h>
13
#include <openssl/crypto.h>
14
#include <openssl/lhash.h>
15
#include <openssl/err.h>
16
#include "crypto/ctype.h"
17
#include "crypto/lhash.h"
18
#include "lhash_local.h"
19
20
/*
21
 * A hashing implementation that appears to be based on the linear hashing
22
 * algorithm:
23
 * https://en.wikipedia.org/wiki/Linear_hashing
24
 *
25
 * Litwin, Witold (1980), "Linear hashing: A new tool for file and table
26
 * addressing", Proc. 6th Conference on Very Large Databases: 212-223
27
 * https://hackthology.com/pdfs/Litwin-1980-Linear_Hashing.pdf
28
 *
29
 * From the Wikipedia article "Linear hashing is used in the BDB Berkeley
30
 * database system, which in turn is used by many software systems such as
31
 * OpenLDAP, using a C implementation derived from the CACM article and first
32
 * published on the Usenet in 1988 by Esmond Pitt."
33
 *
34
 * The CACM paper is available here:
35
 * https://pdfs.semanticscholar.org/ff4d/1c5deca6269cc316bfd952172284dbf610ee.pdf
36
 */
37
38
#undef MIN_NODES
39
10.3M
#define MIN_NODES 16
40
810k
#define UP_LOAD (2 * LH_LOAD_MULT) /* load times 256 (default 2) */
41
810k
#define DOWN_LOAD (LH_LOAD_MULT) /* load times 256 (default 1) */
42
43
static int expand(OPENSSL_LHASH *lh);
44
static void contract(OPENSSL_LHASH *lh);
45
static OPENSSL_LH_NODE **getrn(OPENSSL_LHASH *lh, const void *data, unsigned long *rhash);
46
47
OPENSSL_LHASH *OPENSSL_LH_set_thunks(OPENSSL_LHASH *lh,
48
    OPENSSL_LH_HASHFUNCTHUNK hw,
49
    OPENSSL_LH_COMPFUNCTHUNK cw,
50
    OPENSSL_LH_DOALL_FUNC_THUNK daw,
51
    OPENSSL_LH_DOALL_FUNCARG_THUNK daaw)
52
792k
{
53
54
792k
    if (lh == NULL)
55
0
        return NULL;
56
792k
    lh->compw = cw;
57
792k
    lh->hashw = hw;
58
792k
    lh->daw = daw;
59
792k
    lh->daaw = daaw;
60
792k
    return lh;
61
792k
}
62
63
OPENSSL_LHASH *OPENSSL_LH_new(OPENSSL_LH_HASHFUNC h, OPENSSL_LH_COMPFUNC c)
64
810k
{
65
810k
    OPENSSL_LHASH *ret;
66
67
810k
    if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL)
68
0
        return NULL;
69
810k
    if ((ret->b = OPENSSL_zalloc(sizeof(*ret->b) * MIN_NODES)) == NULL)
70
0
        goto err;
71
810k
    ret->comp = ((c == NULL) ? (OPENSSL_LH_COMPFUNC)strcmp : c);
72
810k
    ret->hash = ((h == NULL) ? (OPENSSL_LH_HASHFUNC)OPENSSL_LH_strhash : h);
73
810k
    ret->num_nodes = MIN_NODES / 2;
74
810k
    ret->num_alloc_nodes = MIN_NODES;
75
810k
    ret->pmax = MIN_NODES / 2;
76
810k
    ret->up_load = UP_LOAD;
77
810k
    ret->down_load = DOWN_LOAD;
78
810k
    return ret;
79
80
0
err:
81
0
    OPENSSL_free(ret->b);
82
0
    OPENSSL_free(ret);
83
0
    return NULL;
84
810k
}
85
86
void OPENSSL_LH_free(OPENSSL_LHASH *lh)
87
841k
{
88
841k
    if (lh == NULL)
89
33.4k
        return;
90
91
808k
    OPENSSL_LH_flush(lh);
92
808k
    OPENSSL_free(lh->b);
93
808k
    OPENSSL_free(lh);
94
808k
}
95
96
void OPENSSL_LH_flush(OPENSSL_LHASH *lh)
97
812k
{
98
812k
    unsigned int i;
99
812k
    OPENSSL_LH_NODE *n, *nn;
100
101
812k
    if (lh == NULL)
102
0
        return;
103
104
9.91M
    for (i = 0; i < lh->num_nodes; i++) {
105
9.10M
        n = lh->b[i];
106
11.7M
        while (n != NULL) {
107
2.63M
            nn = n->next;
108
2.63M
            OPENSSL_free(n);
109
2.63M
            n = nn;
110
2.63M
        }
111
9.10M
        lh->b[i] = NULL;
112
9.10M
    }
113
114
812k
    lh->num_items = 0;
115
812k
}
116
117
void *OPENSSL_LH_insert(OPENSSL_LHASH *lh, void *data)
118
11.6M
{
119
11.6M
    unsigned long hash;
120
11.6M
    OPENSSL_LH_NODE *nn, **rn;
121
11.6M
    void *ret;
122
123
11.6M
    lh->error = 0;
124
11.6M
    if ((lh->up_load <= (lh->num_items * LH_LOAD_MULT / lh->num_nodes)) && !expand(lh))
125
0
        return NULL; /* 'lh->error++' already done in 'expand' */
126
127
11.6M
    rn = getrn(lh, data, &hash);
128
129
11.6M
    if (*rn == NULL) {
130
10.6M
        if ((nn = OPENSSL_malloc(sizeof(*nn))) == NULL) {
131
0
            lh->error++;
132
0
            return NULL;
133
0
        }
134
10.6M
        nn->data = data;
135
10.6M
        nn->next = NULL;
136
10.6M
        nn->hash = hash;
137
10.6M
        *rn = nn;
138
10.6M
        ret = NULL;
139
10.6M
        lh->num_items++;
140
10.6M
    } else { /* replace same key */
141
1.02M
        ret = (*rn)->data;
142
1.02M
        (*rn)->data = data;
143
1.02M
    }
144
11.6M
    return ret;
145
11.6M
}
146
147
void *OPENSSL_LH_delete(OPENSSL_LHASH *lh, const void *data)
148
7.92M
{
149
7.92M
    unsigned long hash;
150
7.92M
    OPENSSL_LH_NODE *nn, **rn;
151
7.92M
    void *ret;
152
153
7.92M
    lh->error = 0;
154
7.92M
    rn = getrn(lh, data, &hash);
155
156
7.92M
    if (*rn == NULL) {
157
0
        return NULL;
158
7.92M
    } else {
159
7.92M
        nn = *rn;
160
7.92M
        *rn = nn->next;
161
7.92M
        ret = nn->data;
162
7.92M
        OPENSSL_free(nn);
163
7.92M
    }
164
165
7.92M
    lh->num_items--;
166
7.92M
    if ((lh->num_nodes > MIN_NODES) && (lh->down_load >= (lh->num_items * LH_LOAD_MULT / lh->num_nodes)))
167
1.79M
        contract(lh);
168
169
7.92M
    return ret;
170
7.92M
}
171
172
void *OPENSSL_LH_retrieve(OPENSSL_LHASH *lh, const void *data)
173
322M
{
174
322M
    unsigned long hash;
175
322M
    OPENSSL_LH_NODE **rn;
176
177
322M
    if (lh->error != 0)
178
0
        lh->error = 0;
179
180
322M
    rn = getrn(lh, data, &hash);
181
182
322M
    return *rn == NULL ? NULL : (*rn)->data;
183
322M
}
184
185
static void doall_util_fn(OPENSSL_LHASH *lh, int use_arg,
186
    OPENSSL_LH_DOALL_FUNC_THUNK wfunc,
187
    OPENSSL_LH_DOALL_FUNC func,
188
    OPENSSL_LH_DOALL_FUNCARG func_arg,
189
    OPENSSL_LH_DOALL_FUNCARG_THUNK wfunc_arg,
190
    void *arg)
191
21.8M
{
192
21.8M
    int i;
193
21.8M
    OPENSSL_LH_NODE *a, *n;
194
195
21.8M
    if (lh == NULL)
196
0
        return;
197
198
    /*
199
     * reverse the order so we search from 'top to bottom' We were having
200
     * memory leaks otherwise
201
     */
202
3.87G
    for (i = lh->num_nodes - 1; i >= 0; i--) {
203
3.85G
        a = lh->b[i];
204
11.4G
        while (a != NULL) {
205
7.61G
            n = a->next;
206
7.61G
            if (use_arg)
207
7.61G
                wfunc_arg(a->data, arg, func_arg);
208
801k
            else
209
801k
                wfunc(a->data, func);
210
7.61G
            a = n;
211
7.61G
        }
212
3.85G
    }
213
21.8M
}
214
215
void OPENSSL_LH_doall(OPENSSL_LHASH *lh, OPENSSL_LH_DOALL_FUNC func)
216
121k
{
217
121k
    if (lh == NULL)
218
0
        return;
219
220
121k
    doall_util_fn(lh, 0, lh->daw, func, (OPENSSL_LH_DOALL_FUNCARG)NULL,
221
121k
        (OPENSSL_LH_DOALL_FUNCARG_THUNK)NULL, NULL);
222
121k
}
223
224
void OPENSSL_LH_doall_arg(OPENSSL_LHASH *lh,
225
    OPENSSL_LH_DOALL_FUNCARG func, void *arg)
226
15.1M
{
227
15.1M
    if (lh == NULL)
228
0
        return;
229
230
15.1M
    doall_util_fn(lh, 1, (OPENSSL_LH_DOALL_FUNC_THUNK)NULL,
231
15.1M
        (OPENSSL_LH_DOALL_FUNC)NULL, func, lh->daaw, arg);
232
15.1M
}
233
234
void OPENSSL_LH_doall_arg_thunk(OPENSSL_LHASH *lh,
235
    OPENSSL_LH_DOALL_FUNCARG_THUNK daaw,
236
    OPENSSL_LH_DOALL_FUNCARG fn, void *arg)
237
210k
{
238
210k
    doall_util_fn(lh, 1, (OPENSSL_LH_DOALL_FUNC_THUNK)NULL,
239
210k
        (OPENSSL_LH_DOALL_FUNC)NULL, fn, daaw, arg);
240
210k
}
241
242
static int expand(OPENSSL_LHASH *lh)
243
4.45M
{
244
4.45M
    OPENSSL_LH_NODE **n, **n1, **n2, *np;
245
4.45M
    unsigned int p, pmax, nni, j;
246
4.45M
    unsigned long hash;
247
248
4.45M
    nni = lh->num_alloc_nodes;
249
4.45M
    p = lh->p;
250
4.45M
    pmax = lh->pmax;
251
4.45M
    if (p + 1 >= pmax) {
252
51.3k
        j = nni * 2;
253
51.3k
        n = OPENSSL_realloc(lh->b, sizeof(OPENSSL_LH_NODE *) * j);
254
51.3k
        if (n == NULL) {
255
0
            lh->error++;
256
0
            return 0;
257
0
        }
258
51.3k
        lh->b = n;
259
51.3k
        memset(n + nni, 0, sizeof(*n) * (j - nni));
260
51.3k
        lh->pmax = nni;
261
51.3k
        lh->num_alloc_nodes = j;
262
51.3k
        lh->p = 0;
263
4.39M
    } else {
264
4.39M
        lh->p++;
265
4.39M
    }
266
267
4.45M
    lh->num_nodes++;
268
4.45M
    n1 = &(lh->b[p]);
269
4.45M
    n2 = &(lh->b[p + pmax]);
270
4.45M
    *n2 = NULL;
271
272
17.3M
    for (np = *n1; np != NULL;) {
273
12.9M
        hash = np->hash;
274
12.9M
        if ((hash % nni) != p) { /* move it */
275
5.29M
            *n1 = (*n1)->next;
276
5.29M
            np->next = *n2;
277
5.29M
            *n2 = np;
278
5.29M
        } else
279
7.63M
            n1 = &((*n1)->next);
280
12.9M
        np = *n1;
281
12.9M
    }
282
283
4.45M
    return 1;
284
4.45M
}
285
286
static void contract(OPENSSL_LHASH *lh)
287
1.79M
{
288
1.79M
    OPENSSL_LH_NODE **n, *n1, *np;
289
290
1.79M
    np = lh->b[lh->p + lh->pmax - 1];
291
1.79M
    lh->b[lh->p + lh->pmax - 1] = NULL; /* 24/07-92 - eay - weird but :-( */
292
1.79M
    if (lh->p == 0) {
293
19.2k
        n = OPENSSL_realloc(lh->b,
294
19.2k
            (unsigned int)(sizeof(OPENSSL_LH_NODE *) * lh->pmax));
295
19.2k
        if (n == NULL) {
296
            /* fputs("realloc error in lhash", stderr); */
297
0
            lh->error++;
298
19.2k
        } else {
299
19.2k
            lh->b = n;
300
19.2k
        }
301
19.2k
        lh->num_alloc_nodes /= 2;
302
19.2k
        lh->pmax /= 2;
303
19.2k
        lh->p = lh->pmax - 1;
304
19.2k
    } else
305
1.77M
        lh->p--;
306
307
1.79M
    lh->num_nodes--;
308
309
1.79M
    n1 = lh->b[(int)lh->p];
310
1.79M
    if (n1 == NULL)
311
826k
        lh->b[(int)lh->p] = np;
312
967k
    else {
313
2.61M
        while (n1->next != NULL)
314
1.64M
            n1 = n1->next;
315
967k
        n1->next = np;
316
967k
    }
317
1.79M
}
318
319
static OPENSSL_LH_NODE **getrn(OPENSSL_LHASH *lh,
320
    const void *data, unsigned long *rhash)
321
110M
{
322
110M
    OPENSSL_LH_NODE **ret, *n1;
323
110M
    unsigned long hash, nn;
324
325
110M
    if (lh->hashw != NULL)
326
110M
        hash = lh->hashw(data, lh->hash);
327
7.97k
    else
328
7.97k
        hash = lh->hash(data);
329
330
110M
    *rhash = hash;
331
332
110M
    nn = hash % lh->pmax;
333
110M
    if (nn < lh->p)
334
24.0M
        nn = hash % lh->num_alloc_nodes;
335
336
110M
    ret = &(lh->b[(int)nn]);
337
3.49G
    for (n1 = *ret; n1 != NULL; n1 = n1->next) {
338
3.43G
        if (n1->hash != hash) {
339
3.38G
            ret = &(n1->next);
340
3.38G
            continue;
341
3.38G
        }
342
343
51.0M
        if (lh->compw != NULL) {
344
51.0M
            if (lh->compw(n1->data, data, lh->comp) == 0)
345
50.6M
                break;
346
51.0M
        } else {
347
23
            if (lh->comp(n1->data, data) == 0)
348
23
                break;
349
23
        }
350
361k
        ret = &(n1->next);
351
361k
    }
352
110M
    return ret;
353
110M
}
354
355
/*
356
 * The following hash seems to work very well on normal text strings no
357
 * collisions on /usr/dict/words and it distributes on %2^n quite well, not
358
 * as good as MD5, but still good.
359
 */
360
unsigned long OPENSSL_LH_strhash(const char *c)
361
34.6M
{
362
34.6M
    unsigned long ret = 0;
363
34.6M
    long n;
364
34.6M
    unsigned long v;
365
34.6M
    int r;
366
367
34.6M
    if ((c == NULL) || (*c == '\0'))
368
21.0M
        return ret;
369
370
13.5M
    n = 0x100;
371
680M
    while (*c) {
372
666M
        v = n | (*c);
373
666M
        n += 0x100;
374
666M
        r = (int)((v >> 2) ^ v) & 0x0f;
375
        /* cast to uint64_t to avoid 32 bit shift of 32 bit value */
376
666M
        ret = (ret << r) | (unsigned long)((uint64_t)ret >> (32 - r));
377
666M
        ret &= 0xFFFFFFFFL;
378
666M
        ret ^= v * v;
379
666M
        c++;
380
666M
    }
381
13.5M
    return (ret >> 16) ^ ret;
382
34.6M
}
383
384
/*
385
 * Case insensitive string hashing.
386
 *
387
 * The lower/upper case bit is masked out (forcing all letters to be capitals).
388
 * The major side effect on non-alpha characters is mapping the symbols and
389
 * digits into the control character range (which should be harmless).
390
 * The duplication (with respect to the hash value) of printable characters
391
 * are that '`', '{', '|', '}' and '~' map to '@', '[', '\', ']' and '^'
392
 * respectively (which seems tolerable).
393
 *
394
 * For EBCDIC, the alpha mapping is to lower case, most symbols go to control
395
 * characters.  The only duplication is '0' mapping to '^', which is better
396
 * than for ASCII.
397
 */
398
unsigned long ossl_lh_strcasehash(const char *c)
399
235M
{
400
235M
    unsigned long ret = 0;
401
235M
    long n;
402
235M
    unsigned long v;
403
235M
    int r;
404
#if defined(CHARSET_EBCDIC) && !defined(CHARSET_EBCDIC_TEST)
405
    const long int case_adjust = ~0x40;
406
#else
407
235M
    const long int case_adjust = ~0x20;
408
235M
#endif
409
410
235M
    if (c == NULL || *c == '\0')
411
1.16k
        return ret;
412
413
1.52G
    for (n = 0x100; *c != '\0'; n += 0x100) {
414
1.28G
        v = n | (case_adjust & *c);
415
1.28G
        r = (int)((v >> 2) ^ v) & 0x0f;
416
        /* cast to uint64_t to avoid 32 bit shift of 32 bit value */
417
1.28G
        ret = (ret << r) | (unsigned long)((uint64_t)ret >> (32 - r));
418
1.28G
        ret &= 0xFFFFFFFFL;
419
1.28G
        ret ^= v * v;
420
1.28G
        c++;
421
1.28G
    }
422
235M
    return (ret >> 16) ^ ret;
423
235M
}
424
425
unsigned long OPENSSL_LH_num_items(const OPENSSL_LHASH *lh)
426
1.65M
{
427
1.65M
    return lh ? lh->num_items : 0;
428
1.65M
}
429
430
unsigned long OPENSSL_LH_get_down_load(const OPENSSL_LHASH *lh)
431
171k
{
432
171k
    return lh->down_load;
433
171k
}
434
435
void OPENSSL_LH_set_down_load(OPENSSL_LHASH *lh, unsigned long down_load)
436
608k
{
437
608k
    lh->down_load = down_load;
438
608k
}
439
440
int OPENSSL_LH_error(OPENSSL_LHASH *lh)
441
7.71M
{
442
7.71M
    return lh->error;
443
7.71M
}