Coverage Report

Created: 2026-05-24 07:14

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl34/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
11.2M
#define MIN_NODES 16
40
828k
#define UP_LOAD (2 * LH_LOAD_MULT) /* load times 256 (default 2) */
41
828k
#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
809k
{
53
54
809k
    if (lh == NULL)
55
0
        return NULL;
56
809k
    lh->compw = cw;
57
809k
    lh->hashw = hw;
58
809k
    lh->daw = daw;
59
809k
    lh->daaw = daaw;
60
809k
    return lh;
61
809k
}
62
63
OPENSSL_LHASH *OPENSSL_LH_new(OPENSSL_LH_HASHFUNC h, OPENSSL_LH_COMPFUNC c)
64
828k
{
65
828k
    OPENSSL_LHASH *ret;
66
67
828k
    if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL)
68
0
        return NULL;
69
828k
    if ((ret->b = OPENSSL_zalloc(sizeof(*ret->b) * MIN_NODES)) == NULL)
70
0
        goto err;
71
828k
    ret->comp = ((c == NULL) ? (OPENSSL_LH_COMPFUNC)strcmp : c);
72
828k
    ret->hash = ((h == NULL) ? (OPENSSL_LH_HASHFUNC)OPENSSL_LH_strhash : h);
73
828k
    ret->num_nodes = MIN_NODES / 2;
74
828k
    ret->num_alloc_nodes = MIN_NODES;
75
828k
    ret->pmax = MIN_NODES / 2;
76
828k
    ret->up_load = UP_LOAD;
77
828k
    ret->down_load = DOWN_LOAD;
78
828k
    return ret;
79
80
0
err:
81
0
    OPENSSL_free(ret->b);
82
0
    OPENSSL_free(ret);
83
0
    return NULL;
84
828k
}
85
86
void OPENSSL_LH_free(OPENSSL_LHASH *lh)
87
859k
{
88
859k
    if (lh == NULL)
89
33.8k
        return;
90
91
825k
    OPENSSL_LH_flush(lh);
92
825k
    OPENSSL_free(lh->b);
93
825k
    OPENSSL_free(lh);
94
825k
}
95
96
void OPENSSL_LH_flush(OPENSSL_LHASH *lh)
97
829k
{
98
829k
    unsigned int i;
99
829k
    OPENSSL_LH_NODE *n, *nn;
100
101
829k
    if (lh == NULL)
102
0
        return;
103
104
10.3M
    for (i = 0; i < lh->num_nodes; i++) {
105
9.53M
        n = lh->b[i];
106
12.5M
        while (n != NULL) {
107
2.99M
            nn = n->next;
108
2.99M
            OPENSSL_free(n);
109
2.99M
            n = nn;
110
2.99M
        }
111
9.53M
        lh->b[i] = NULL;
112
9.53M
    }
113
114
829k
    lh->num_items = 0;
115
829k
}
116
117
void *OPENSSL_LH_insert(OPENSSL_LHASH *lh, void *data)
118
12.9M
{
119
12.9M
    unsigned long hash;
120
12.9M
    OPENSSL_LH_NODE *nn, **rn;
121
12.9M
    void *ret;
122
123
12.9M
    lh->error = 0;
124
12.9M
    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
12.9M
    rn = getrn(lh, data, &hash);
128
129
12.9M
    if (*rn == NULL) {
130
11.8M
        if ((nn = OPENSSL_malloc(sizeof(*nn))) == NULL) {
131
0
            lh->error++;
132
0
            return NULL;
133
0
        }
134
11.8M
        nn->data = data;
135
11.8M
        nn->next = NULL;
136
11.8M
        nn->hash = hash;
137
11.8M
        *rn = nn;
138
11.8M
        ret = NULL;
139
11.8M
        lh->num_items++;
140
11.8M
    } else { /* replace same key */
141
1.06M
        ret = (*rn)->data;
142
1.06M
        (*rn)->data = data;
143
1.06M
    }
144
12.9M
    return ret;
145
12.9M
}
146
147
void *OPENSSL_LH_delete(OPENSSL_LHASH *lh, const void *data)
148
8.75M
{
149
8.75M
    unsigned long hash;
150
8.75M
    OPENSSL_LH_NODE *nn, **rn;
151
8.75M
    void *ret;
152
153
8.75M
    lh->error = 0;
154
8.75M
    rn = getrn(lh, data, &hash);
155
156
8.75M
    if (*rn == NULL) {
157
0
        return NULL;
158
8.75M
    } else {
159
8.75M
        nn = *rn;
160
8.75M
        *rn = nn->next;
161
8.75M
        ret = nn->data;
162
8.75M
        OPENSSL_free(nn);
163
8.75M
    }
164
165
8.75M
    lh->num_items--;
166
8.75M
    if ((lh->num_nodes > MIN_NODES) && (lh->down_load >= (lh->num_items * LH_LOAD_MULT / lh->num_nodes)))
167
1.99M
        contract(lh);
168
169
8.75M
    return ret;
170
8.75M
}
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
22.1M
{
192
22.1M
    int i;
193
22.1M
    OPENSSL_LH_NODE *a, *n;
194
195
22.1M
    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
5.84G
    for (i = lh->num_nodes - 1; i >= 0; i--) {
203
5.82G
        a = lh->b[i];
204
17.3G
        while (a != NULL) {
205
11.5G
            n = a->next;
206
11.5G
            if (use_arg)
207
11.5G
                wfunc_arg(a->data, arg, func_arg);
208
968k
            else
209
968k
                wfunc(a->data, func);
210
11.5G
            a = n;
211
11.5G
        }
212
5.82G
    }
213
22.1M
}
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.5M
{
227
15.5M
    if (lh == NULL)
228
0
        return;
229
230
15.5M
    doall_util_fn(lh, 1, (OPENSSL_LH_DOALL_FUNC_THUNK)NULL,
231
15.5M
        (OPENSSL_LH_DOALL_FUNC)NULL, func, lh->daaw, arg);
232
15.5M
}
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
228k
{
238
228k
    doall_util_fn(lh, 1, (OPENSSL_LH_DOALL_FUNC_THUNK)NULL,
239
228k
        (OPENSSL_LH_DOALL_FUNC)NULL, fn, daaw, arg);
240
228k
}
241
242
static int expand(OPENSSL_LHASH *lh)
243
4.94M
{
244
4.94M
    OPENSSL_LH_NODE **n, **n1, **n2, *np;
245
4.94M
    unsigned int p, pmax, nni, j;
246
4.94M
    unsigned long hash;
247
248
4.94M
    nni = lh->num_alloc_nodes;
249
4.94M
    p = lh->p;
250
4.94M
    pmax = lh->pmax;
251
4.94M
    if (p + 1 >= pmax) {
252
57.3k
        j = nni * 2;
253
57.3k
        n = OPENSSL_realloc(lh->b, sizeof(OPENSSL_LH_NODE *) * j);
254
57.3k
        if (n == NULL) {
255
0
            lh->error++;
256
0
            return 0;
257
0
        }
258
57.3k
        lh->b = n;
259
57.3k
        memset(n + nni, 0, sizeof(*n) * (j - nni));
260
57.3k
        lh->pmax = nni;
261
57.3k
        lh->num_alloc_nodes = j;
262
57.3k
        lh->p = 0;
263
4.89M
    } else {
264
4.89M
        lh->p++;
265
4.89M
    }
266
267
4.94M
    lh->num_nodes++;
268
4.94M
    n1 = &(lh->b[p]);
269
4.94M
    n2 = &(lh->b[p + pmax]);
270
4.94M
    *n2 = NULL;
271
272
19.3M
    for (np = *n1; np != NULL;) {
273
14.3M
        hash = np->hash;
274
14.3M
        if ((hash % nni) != p) { /* move it */
275
5.84M
            *n1 = (*n1)->next;
276
5.84M
            np->next = *n2;
277
5.84M
            *n2 = np;
278
5.84M
        } else
279
8.51M
            n1 = &((*n1)->next);
280
14.3M
        np = *n1;
281
14.3M
    }
282
283
4.94M
    return 1;
284
4.94M
}
285
286
static void contract(OPENSSL_LHASH *lh)
287
1.99M
{
288
1.99M
    OPENSSL_LH_NODE **n, *n1, *np;
289
290
1.99M
    np = lh->b[lh->p + lh->pmax - 1];
291
1.99M
    lh->b[lh->p + lh->pmax - 1] = NULL; /* 24/07-92 - eay - weird but :-( */
292
1.99M
    if (lh->p == 0) {
293
24.4k
        n = OPENSSL_realloc(lh->b,
294
24.4k
            (unsigned int)(sizeof(OPENSSL_LH_NODE *) * lh->pmax));
295
24.4k
        if (n == NULL) {
296
            /* fputs("realloc error in lhash", stderr); */
297
0
            lh->error++;
298
24.4k
        } else {
299
24.4k
            lh->b = n;
300
24.4k
        }
301
24.4k
        lh->num_alloc_nodes /= 2;
302
24.4k
        lh->pmax /= 2;
303
24.4k
        lh->p = lh->pmax - 1;
304
24.4k
    } else
305
1.97M
        lh->p--;
306
307
1.99M
    lh->num_nodes--;
308
309
1.99M
    n1 = lh->b[(int)lh->p];
310
1.99M
    if (n1 == NULL)
311
989k
        lh->b[(int)lh->p] = np;
312
1.00M
    else {
313
2.87M
        while (n1->next != NULL)
314
1.87M
            n1 = n1->next;
315
1.00M
        n1->next = np;
316
1.00M
    }
317
1.99M
}
318
319
static OPENSSL_LH_NODE **getrn(OPENSSL_LHASH *lh,
320
    const void *data, unsigned long *rhash)
321
116M
{
322
116M
    OPENSSL_LH_NODE **ret, *n1;
323
116M
    unsigned long hash, nn;
324
325
116M
    if (lh->hashw != NULL)
326
116M
        hash = lh->hashw(data, lh->hash);
327
8.61k
    else
328
8.61k
        hash = lh->hash(data);
329
330
116M
    *rhash = hash;
331
332
116M
    nn = hash % lh->pmax;
333
116M
    if (nn < lh->p)
334
27.9M
        nn = hash % lh->num_alloc_nodes;
335
336
116M
    ret = &(lh->b[(int)nn]);
337
4.29G
    for (n1 = *ret; n1 != NULL; n1 = n1->next) {
338
4.22G
        if (n1->hash != hash) {
339
4.17G
            ret = &(n1->next);
340
4.17G
            continue;
341
4.17G
        }
342
343
54.4M
        if (lh->compw != NULL) {
344
54.4M
            if (lh->compw(n1->data, data, lh->comp) == 0)
345
54.0M
                break;
346
54.4M
        } else {
347
17
            if (lh->comp(n1->data, data) == 0)
348
17
                break;
349
17
        }
350
381k
        ret = &(n1->next);
351
381k
    }
352
116M
    return ret;
353
116M
}
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
37.6M
{
362
37.6M
    unsigned long ret = 0;
363
37.6M
    long n;
364
37.6M
    unsigned long v;
365
37.6M
    int r;
366
367
37.6M
    if ((c == NULL) || (*c == '\0'))
368
21.8M
        return ret;
369
370
15.7M
    n = 0x100;
371
773M
    while (*c) {
372
757M
        v = n | (*c);
373
757M
        n += 0x100;
374
757M
        r = (int)((v >> 2) ^ v) & 0x0f;
375
        /* cast to uint64_t to avoid 32 bit shift of 32 bit value */
376
757M
        ret = (ret << r) | (unsigned long)((uint64_t)ret >> (32 - r));
377
757M
        ret &= 0xFFFFFFFFL;
378
757M
        ret ^= v * v;
379
757M
        c++;
380
757M
    }
381
15.7M
    return (ret >> 16) ^ ret;
382
37.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
232M
{
400
232M
    unsigned long ret = 0;
401
232M
    long n;
402
232M
    unsigned long v;
403
232M
    int r;
404
#if defined(CHARSET_EBCDIC) && !defined(CHARSET_EBCDIC_TEST)
405
    const long int case_adjust = ~0x40;
406
#else
407
232M
    const long int case_adjust = ~0x20;
408
232M
#endif
409
410
232M
    if (c == NULL || *c == '\0')
411
1.19k
        return ret;
412
413
1.50G
    for (n = 0x100; *c != '\0'; n += 0x100) {
414
1.27G
        v = n | (case_adjust & *c);
415
1.27G
        r = (int)((v >> 2) ^ v) & 0x0f;
416
        /* cast to uint64_t to avoid 32 bit shift of 32 bit value */
417
1.27G
        ret = (ret << r) | (unsigned long)((uint64_t)ret >> (32 - r));
418
1.27G
        ret &= 0xFFFFFFFFL;
419
1.27G
        ret ^= v * v;
420
1.27G
        c++;
421
1.27G
    }
422
232M
    return (ret >> 16) ^ ret;
423
232M
}
424
425
unsigned long OPENSSL_LH_num_items(const OPENSSL_LHASH *lh)
426
1.66M
{
427
1.66M
    return lh ? lh->num_items : 0;
428
1.66M
}
429
430
unsigned long OPENSSL_LH_get_down_load(const OPENSSL_LHASH *lh)
431
180k
{
432
180k
    return lh->down_load;
433
180k
}
434
435
void OPENSSL_LH_set_down_load(OPENSSL_LHASH *lh, unsigned long down_load)
436
630k
{
437
630k
    lh->down_load = down_load;
438
630k
}
439
440
int OPENSSL_LH_error(OPENSSL_LHASH *lh)
441
8.54M
{
442
8.54M
    return lh->error;
443
8.54M
}