lhash.c 9.6 KB
Newer Older
R
Rich Salz 已提交
1
/*
M
Matt Caswell 已提交
2
 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (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
8 9 10 11 12
 */

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
13 14
#include <openssl/crypto.h>
#include <openssl/lhash.h>
15
#include <openssl/err.h>
P
Pauli 已提交
16 17
#include "internal/ctype.h"
#include "internal/lhash.h"
18 19
#include "lhash_lcl.h"

20 21 22 23 24 25
/*
 * A hashing implementation that appears to be based on the linear hashing
 * alogrithm:
 * https://en.wikipedia.org/wiki/Linear_hashing
 *
 * Litwin, Witold (1980), "Linear hashing: A new tool for file and table
26
 * addressing", Proc. 6th Conference on Very Large Databases: 212-223
27 28 29 30 31 32 33 34 35 36
 * http://hackthology.com/pdfs/Litwin-1980-Linear_Hashing.pdf
 *
 * From the wikipedia article "Linear hashing is used in the BDB Berkeley
 * database system, which in turn is used by many software systems such as
 * OpenLDAP, using a C implementation derived from the CACM article and first
 * published on the Usenet in 1988 by Esmond Pitt."
 *
 * The CACM paper is available here:
 * https://pdfs.semanticscholar.org/ff4d/1c5deca6269cc316bfd952172284dbf610ee.pdf
 */
37

38 39 40 41
#undef MIN_NODES
#define MIN_NODES       16
#define UP_LOAD         (2*LH_LOAD_MULT) /* load times 256 (default 2) */
#define DOWN_LOAD       (LH_LOAD_MULT) /* load times 256 (default 1) */
42

M
mrpre 已提交
43
static int expand(OPENSSL_LHASH *lh);
44 45
static void contract(OPENSSL_LHASH *lh);
static OPENSSL_LH_NODE **getrn(OPENSSL_LHASH *lh, const void *data, unsigned long *rhash);
46

47
OPENSSL_LHASH *OPENSSL_LH_new(OPENSSL_LH_HASHFUNC h, OPENSSL_LH_COMPFUNC c)
48
{
49
    OPENSSL_LHASH *ret;
50

51 52 53 54 55 56
    if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL) {
        /*
         * Do not set the error code, because the ERR code uses LHASH
         * and we want to avoid possible endless error loop.
         * CRYPTOerr(CRYPTO_F_OPENSSL_LH_NEW, ERR_R_MALLOC_FAILURE);
         */
R
Rich Salz 已提交
57
        return NULL;
58
    }
R
Rich Salz 已提交
59
    if ((ret->b = OPENSSL_zalloc(sizeof(*ret->b) * MIN_NODES)) == NULL)
R
Rich Salz 已提交
60
        goto err;
61 62
    ret->comp = ((c == NULL) ? (OPENSSL_LH_COMPFUNC)strcmp : c);
    ret->hash = ((h == NULL) ? (OPENSSL_LH_HASHFUNC)OPENSSL_LH_strhash : h);
63 64 65 66 67
    ret->num_nodes = MIN_NODES / 2;
    ret->num_alloc_nodes = MIN_NODES;
    ret->pmax = MIN_NODES / 2;
    ret->up_load = UP_LOAD;
    ret->down_load = DOWN_LOAD;
68
    return ret;
R
Rich Salz 已提交
69

R
Rich Salz 已提交
70 71
err:
    OPENSSL_free(ret->b);
72
    OPENSSL_free(ret);
R
Rich Salz 已提交
73
    return NULL;
74
}
75

76
void OPENSSL_LH_free(OPENSSL_LHASH *lh)
77 78
{
    unsigned int i;
79
    OPENSSL_LH_NODE *n, *nn;
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94

    if (lh == NULL)
        return;

    for (i = 0; i < lh->num_nodes; i++) {
        n = lh->b[i];
        while (n != NULL) {
            nn = n->next;
            OPENSSL_free(n);
            n = nn;
        }
    }
    OPENSSL_free(lh->b);
    OPENSSL_free(lh);
}
95

96
void *OPENSSL_LH_insert(OPENSSL_LHASH *lh, void *data)
97 98
{
    unsigned long hash;
99
    OPENSSL_LH_NODE *nn, **rn;
100
    void *ret;
M
mrpre 已提交
101

102
    lh->error = 0;
M
mrpre 已提交
103 104 105
    if ((lh->up_load <= (lh->num_items * LH_LOAD_MULT / lh->num_nodes)) && !expand(lh))
        return NULL;        /* 'lh->error++' already done in 'expand' */

106 107 108
    rn = getrn(lh, data, &hash);

    if (*rn == NULL) {
R
Rich Salz 已提交
109
        if ((nn = OPENSSL_malloc(sizeof(*nn))) == NULL) {
110
            lh->error++;
111
            return NULL;
112 113 114 115 116 117 118 119 120 121 122 123 124
        }
        nn->data = data;
        nn->next = NULL;
        nn->hash = hash;
        *rn = nn;
        ret = NULL;
        lh->num_insert++;
        lh->num_items++;
    } else {                    /* replace same key */
        ret = (*rn)->data;
        (*rn)->data = data;
        lh->num_replace++;
    }
125
    return ret;
126
}
127

128
void *OPENSSL_LH_delete(OPENSSL_LHASH *lh, const void *data)
129 130
{
    unsigned long hash;
131
    OPENSSL_LH_NODE *nn, **rn;
132 133 134 135 136 137 138
    void *ret;

    lh->error = 0;
    rn = getrn(lh, data, &hash);

    if (*rn == NULL) {
        lh->num_no_delete++;
139
        return NULL;
140 141 142 143 144 145 146 147 148 149 150 151 152
    } else {
        nn = *rn;
        *rn = nn->next;
        ret = nn->data;
        OPENSSL_free(nn);
        lh->num_delete++;
    }

    lh->num_items--;
    if ((lh->num_nodes > MIN_NODES) &&
        (lh->down_load >= (lh->num_items * LH_LOAD_MULT / lh->num_nodes)))
        contract(lh);

153
    return ret;
154
}
155

156
void *OPENSSL_LH_retrieve(OPENSSL_LHASH *lh, const void *data)
157 158
{
    unsigned long hash;
159
    OPENSSL_LH_NODE **rn;
160 161
    void *ret;

162 163
    tsan_store((TSAN_QUALIFIER int *)&lh->error, 0);

164 165 166
    rn = getrn(lh, data, &hash);

    if (*rn == NULL) {
167
        tsan_counter(&lh->num_retrieve_miss);
R
Rich Salz 已提交
168
        return NULL;
169 170
    } else {
        ret = (*rn)->data;
171
        tsan_counter(&lh->num_retrieve);
172
    }
173

R
Rich Salz 已提交
174
    return ret;
175
}
176

177 178 179
static void doall_util_fn(OPENSSL_LHASH *lh, int use_arg,
                          OPENSSL_LH_DOALL_FUNC func,
                          OPENSSL_LH_DOALL_FUNCARG func_arg, void *arg)
180 181
{
    int i;
182
    OPENSSL_LH_NODE *a, *n;
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202

    if (lh == NULL)
        return;

    /*
     * reverse the order so we search from 'top to bottom' We were having
     * memory leaks otherwise
     */
    for (i = lh->num_nodes - 1; i >= 0; i--) {
        a = lh->b[i];
        while (a != NULL) {
            n = a->next;
            if (use_arg)
                func_arg(a->data, arg);
            else
                func(a->data);
            a = n;
        }
    }
}
203

204
void OPENSSL_LH_doall(OPENSSL_LHASH *lh, OPENSSL_LH_DOALL_FUNC func)
205
{
206
    doall_util_fn(lh, 0, func, (OPENSSL_LH_DOALL_FUNCARG)0, NULL);
207
}
208

209
void OPENSSL_LH_doall_arg(OPENSSL_LHASH *lh, OPENSSL_LH_DOALL_FUNCARG func, void *arg)
210
{
211
    doall_util_fn(lh, 1, (OPENSSL_LH_DOALL_FUNC)0, func, arg);
212
}
213

M
mrpre 已提交
214
static int expand(OPENSSL_LHASH *lh)
215
{
216
    OPENSSL_LH_NODE **n, **n1, **n2, *np;
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
    unsigned int p, pmax, nni, j;
    unsigned long hash;

    nni = lh->num_alloc_nodes;
    p = lh->p;
    pmax = lh->pmax;
    if (p + 1 >= pmax) {
        j = nni * 2;
        n = OPENSSL_realloc(lh->b, sizeof(OPENSSL_LH_NODE *) * j);
        if (n == NULL) {
            lh->error++;
            return 0;
        }
        lh->b = n;
        memset(n + nni, 0, sizeof(*n) * (j - nni));
        lh->pmax = nni;
        lh->num_alloc_nodes = j;
        lh->num_expand_reallocs++;
        lh->p = 0;
    } else {
        lh->p++;
    }
239 240 241 242

    lh->num_nodes++;
    lh->num_expands++;
    n1 = &(lh->b[p]);
243
    n2 = &(lh->b[p + pmax]);
244
    *n2 = NULL;
245 246 247 248 249 250 251 252 253 254 255 256

    for (np = *n1; np != NULL;) {
        hash = np->hash;
        if ((hash % nni) != p) { /* move it */
            *n1 = (*n1)->next;
            np->next = *n2;
            *n2 = np;
        } else
            n1 = &((*n1)->next);
        np = *n1;
    }

M
mrpre 已提交
257
    return 1;
258
}
259

260
static void contract(OPENSSL_LHASH *lh)
261
{
262
    OPENSSL_LH_NODE **n, *n1, *np;
263 264 265 266

    np = lh->b[lh->p + lh->pmax - 1];
    lh->b[lh->p + lh->pmax - 1] = NULL; /* 24/07-92 - eay - weird but :-( */
    if (lh->p == 0) {
R
Rich Salz 已提交
267
        n = OPENSSL_realloc(lh->b,
268
                            (unsigned int)(sizeof(OPENSSL_LH_NODE *) * lh->pmax));
269
        if (n == NULL) {
R
Rich Salz 已提交
270
            /* fputs("realloc error in lhash",stderr); */
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
            lh->error++;
            return;
        }
        lh->num_contract_reallocs++;
        lh->num_alloc_nodes /= 2;
        lh->pmax /= 2;
        lh->p = lh->pmax - 1;
        lh->b = n;
    } else
        lh->p--;

    lh->num_nodes--;
    lh->num_contracts++;

    n1 = lh->b[(int)lh->p];
    if (n1 == NULL)
        lh->b[(int)lh->p] = np;
    else {
        while (n1->next != NULL)
            n1 = n1->next;
        n1->next = np;
    }
}
294

295 296
static OPENSSL_LH_NODE **getrn(OPENSSL_LHASH *lh,
                               const void *data, unsigned long *rhash)
297
{
298
    OPENSSL_LH_NODE **ret, *n1;
299
    unsigned long hash, nn;
300
    OPENSSL_LH_COMPFUNC cf;
301 302

    hash = (*(lh->hash)) (data);
303
    tsan_counter(&lh->num_hash_calls);
304 305 306 307 308 309 310 311 312
    *rhash = hash;

    nn = hash % lh->pmax;
    if (nn < lh->p)
        nn = hash % lh->num_alloc_nodes;

    cf = lh->comp;
    ret = &(lh->b[(int)nn]);
    for (n1 = *ret; n1 != NULL; n1 = n1->next) {
313
        tsan_counter(&lh->num_hash_comps);
314 315 316 317
        if (n1->hash != hash) {
            ret = &(n1->next);
            continue;
        }
318
        tsan_counter(&lh->num_comp_calls);
319 320 321 322
        if (cf(n1->data, data) == 0)
            break;
        ret = &(n1->next);
    }
323
    return ret;
324 325 326 327 328 329
}

/*
 * The following hash seems to work very well on normal text strings no
 * collisions on /usr/dict/words and it distributes on %2^n quite well, not
 * as good as MD5, but still good.
330
 */
331
unsigned long OPENSSL_LH_strhash(const char *c)
332 333 334 335 336 337 338
{
    unsigned long ret = 0;
    long n;
    unsigned long v;
    int r;

    if ((c == NULL) || (*c == '\0'))
339
        return ret;
340

341 342 343 344 345 346 347 348 349 350
    n = 0x100;
    while (*c) {
        v = n | (*c);
        n += 0x100;
        r = (int)((v >> 2) ^ v) & 0x0f;
        ret = (ret << r) | (ret >> (32 - r));
        ret &= 0xFFFFFFFFL;
        ret ^= v * v;
        c++;
    }
351
    return (ret >> 16) ^ ret;
352
}
353

P
Pauli 已提交
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
unsigned long openssl_lh_strcasehash(const char *c)
{
    unsigned long ret = 0;
    long n;
    unsigned long v;
    int r;

    if (c == NULL || *c == '\0')
        return ret;

    for (n = 0x100; *c != '\0'; n += 0x100) {
        v = n | ossl_tolower(*c);
        r = (int)((v >> 2) ^ v) & 0x0f;
        ret = (ret << r) | (ret >> (32 - r));
        ret &= 0xFFFFFFFFL;
        ret ^= v * v;
        c++;
    }
    return (ret >> 16) ^ ret;
}

375
unsigned long OPENSSL_LH_num_items(const OPENSSL_LHASH *lh)
376 377 378
{
    return lh ? lh->num_items : 0;
}
D
Dr. Stephen Henson 已提交
379

380
unsigned long OPENSSL_LH_get_down_load(const OPENSSL_LHASH *lh)
D
Dr. Stephen Henson 已提交
381 382 383 384
{
    return lh->down_load;
}

385
void OPENSSL_LH_set_down_load(OPENSSL_LHASH *lh, unsigned long down_load)
D
Dr. Stephen Henson 已提交
386 387 388 389
{
    lh->down_load = down_load;
}

390
int OPENSSL_LH_error(OPENSSL_LHASH *lh)
D
Dr. Stephen Henson 已提交
391 392 393
{
    return lh->error;
}