Coverage Report

Created: 2026-09-12 06:55

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl40/crypto/hashtable/hashtable.c
Line
Count
Source
1
/*
2
 * Copyright 2024-2026 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
 *
11
 * Notes On hash table design and layout
12
 * This hashtable uses a hopscotch algorithm to do indexing.  The data structure
13
 * looks as follows:
14
 *
15
 *   hash          +--------------+
16
 *   value+------->+ HT_VALUE     |
17
 *      +          +--------------+
18
 *  +-------+
19
 *  |       |
20
 *  +---------------------------------------------------------+
21
 *  |       |       |       |       |                         |
22
 *  | entry | entry | entry | entry |                         |
23
 *  |       |       |       |       |                         |
24
 *  +---------------------------------------------------------+
25
 *  |                               |                         |
26
 *  |                               |                         |
27
 *  +---------------------------------------------------------+
28
 *  |              +                             +            +
29
 *  |        neighborhood[0]               neighborhood[1]    |
30
 *  |                                                         |
31
 *  |                                                         |
32
 *  +---------------------------------------------------------+
33
 *                              |
34
 *                              +
35
 *                         neighborhoods
36
 *
37
 * On lookup/insert/delete, the items key is hashed to a 64 bit value
38
 * and the result is masked to provide an index into the neighborhoods
39
 * table.  Once a neighborhood is determined, an in-order search is done
40
 * of the elements in the neighborhood indexes entries for a matching hash
41
 * value, if found, the corresponding HT_VALUE is used for the respective
42
 * operation.  The number of entries in a neighborhood is determined at build
43
 * time based on the cacheline size of the target CPU.  The intent is for a
44
 * neighborhood to have all entries in the neighborhood fit into a single cache
45
 * line to speed up lookups.  If all entries in a neighborhood are in use at the
46
 * time of an insert, the table is expanded and rehashed.
47
 *
48
 * Lockless reads hash table is based on the same design but does not
49
 * allow growing and deletion. Thus subsequent neighborhoods are always
50
 * searched for a match until an empty entry is found.
51
 */
52
53
#include <string.h>
54
#include <internal/rcu.h>
55
#include <internal/hashtable.h>
56
#include <internal/hashfunc.h>
57
#include <openssl/rand.h>
58
59
/*
60
 * gcc defines __SANITIZE_THREAD__
61
 * but clang uses the feature attributes api
62
 * map the latter to the former
63
 */
64
#if defined(__clang__) && defined(__has_feature)
65
#if __has_feature(thread_sanitizer)
66
#define __SANITIZE_THREADS__
67
#endif
68
#endif
69
70
#ifdef __SANITIZE_THREADS__
71
#include <sanitizer/tsan_interface.h>
72
#endif
73
74
/*
75
 * When we do a lookup/insert/delete, there is a high likelihood
76
 * that we will iterate over at least part of the neighborhood list
77
 * As such, because we design a neighborhood entry to fit into a single
78
 * cache line it is advantageous, when supported to fetch the entire
79
 * structure for faster lookups
80
 */
81
#if defined(__GNUC__) || defined(__CLANG__)
82
5.30M
#define PREFETCH_NEIGHBORHOOD(x) __builtin_prefetch(x.entries)
83
66.7M
#define PREFETCH(x) __builtin_prefetch(x)
84
#define ALIGN __attribute__((aligned(8)))
85
#else
86
#define PREFETCH_NEIGHBORHOOD(x)
87
#define PREFETCH(x)
88
#define ALIGN
89
#endif
90
91
/*
92
 * Define our neighborhood list length
93
 * Note: It should always be a power of 2
94
 */
95
68.2k
#define DEFAULT_NEIGH_LEN_LOG 4
96
68.2k
#define DEFAULT_NEIGH_LEN (1 << DEFAULT_NEIGH_LEN_LOG)
97
98
/*
99
 * For now assume cache line size is 64 bytes
100
 */
101
9.95M
#define CACHE_LINE_BYTES 64
102
#define CACHE_LINE_ALIGNMENT CACHE_LINE_BYTES
103
104
9.95M
#define NEIGHBORHOOD_LEN (CACHE_LINE_BYTES / sizeof(struct ht_neighborhood_entry_st))
105
/*
106
 * Defines our chains of values
107
 */
108
struct ht_internal_value_st {
109
    HT_VALUE value;
110
    HT *ht;
111
};
112
113
struct ht_neighborhood_entry_st {
114
    uint64_t hash;
115
    struct ht_internal_value_st *value;
116
} ALIGN;
117
118
struct ht_neighborhood_st {
119
    struct ht_neighborhood_entry_st entries[NEIGHBORHOOD_LEN];
120
};
121
122
/*
123
 * Updates to data in this struct
124
 * require an rcu sync after modification
125
 * prior to free
126
 */
127
struct ht_mutable_data_st {
128
    struct ht_neighborhood_st *neighborhoods;
129
    void *neighborhood_ptr_to_free;
130
    uint64_t neighborhood_mask;
131
};
132
133
/*
134
 * Private data may be updated on the write
135
 * side only, and so do not require rcu sync
136
 */
137
struct ht_write_private_data_st {
138
    size_t neighborhood_len;
139
    size_t value_count;
140
    int need_sync;
141
};
142
143
struct ht_internal_st {
144
    HT_CONFIG config;
145
    CRYPTO_RCU_LOCK *lock;
146
    CRYPTO_RWLOCK *atomic_lock;
147
    struct ht_mutable_data_st *md;
148
    struct ht_write_private_data_st wpd;
149
};
150
151
static void free_value(struct ht_internal_value_st *v);
152
153
static struct ht_neighborhood_st *alloc_new_neighborhood_list(size_t len,
154
    void **freeptr)
155
76.1k
{
156
76.1k
    struct ht_neighborhood_st *ret;
157
158
76.1k
#if !defined(OPENSSL_SMALL_FOOTPRINT)
159
76.1k
    ret = OPENSSL_aligned_alloc_array(len, sizeof(struct ht_neighborhood_st),
160
76.1k
        CACHE_LINE_BYTES, freeptr);
161
162
    /* fall back to regular malloc */
163
76.1k
    if (ret == NULL)
164
0
#endif
165
0
    {
166
0
        ret = *freeptr = OPENSSL_malloc_array(len, sizeof(struct ht_neighborhood_st));
167
0
        if (ret == NULL)
168
0
            return NULL;
169
0
    }
170
76.1k
    memset(ret, 0, sizeof(struct ht_neighborhood_st) * len);
171
76.1k
    return ret;
172
76.1k
}
173
174
static void internal_free_nop(HT_VALUE *v)
175
24.8k
{
176
24.8k
    return;
177
24.8k
}
178
179
static uint64_t internal_ht_hash_fn(HT_KEY *key)
180
13.0M
{
181
13.0M
    return ossl_fnv1a_hash(key->keybuf, key->keysize);
182
13.0M
}
183
184
HT *ossl_ht_new(const HT_CONFIG *conf)
185
52.9k
{
186
52.9k
    HT *new = OPENSSL_zalloc(sizeof(*new));
187
188
52.9k
    if (new == NULL)
189
0
        return NULL;
190
191
52.9k
    if (conf->lockless_reads && conf->no_rcu)
192
0
        goto err;
193
194
52.9k
    if (!conf->no_rcu) {
195
198
        new->atomic_lock = CRYPTO_THREAD_lock_new();
196
198
        if (new->atomic_lock == NULL)
197
0
            goto err;
198
198
    }
199
52.9k
    memcpy(&new->config, conf, sizeof(*conf));
200
201
52.9k
    if (new->config.init_neighborhoods != 0) {
202
52.9k
        new->wpd.neighborhood_len = new->config.init_neighborhoods;
203
        /* round up to the next power of 2 */
204
52.9k
        new->wpd.neighborhood_len--;
205
52.9k
        new->wpd.neighborhood_len |= new->wpd.neighborhood_len >> 1;
206
52.9k
        new->wpd.neighborhood_len |= new->wpd.neighborhood_len >> 2;
207
52.9k
        new->wpd.neighborhood_len |= new->wpd.neighborhood_len >> 4;
208
52.9k
        new->wpd.neighborhood_len |= new->wpd.neighborhood_len >> 8;
209
52.9k
        new->wpd.neighborhood_len |= new->wpd.neighborhood_len >> 16;
210
52.9k
        new->wpd.neighborhood_len++;
211
52.9k
    } else {
212
5
        new->wpd.neighborhood_len = DEFAULT_NEIGH_LEN;
213
5
    }
214
215
52.9k
    if (new->config.ht_free_fn == NULL)
216
193
        new->config.ht_free_fn = internal_free_nop;
217
218
52.9k
    new->md = OPENSSL_zalloc(sizeof(*new->md));
219
52.9k
    if (new->md == NULL)
220
0
        goto err;
221
222
52.9k
    new->md->neighborhoods = alloc_new_neighborhood_list(new->wpd.neighborhood_len,
223
52.9k
        &new->md->neighborhood_ptr_to_free);
224
52.9k
    if (new->md->neighborhoods == NULL)
225
0
        goto err;
226
52.9k
    new->md->neighborhood_mask = new->wpd.neighborhood_len - 1;
227
228
52.9k
    if (!conf->no_rcu) {
229
198
        new->lock = ossl_rcu_lock_new(1, conf->ctx);
230
198
        if (new->lock == NULL)
231
0
            goto err;
232
198
    }
233
52.9k
    if (new->config.ht_hash_fn == NULL)
234
198
        new->config.ht_hash_fn = internal_ht_hash_fn;
235
236
52.9k
    return new;
237
238
0
err:
239
0
    if (!conf->no_rcu) {
240
0
        CRYPTO_THREAD_lock_free(new->atomic_lock);
241
0
        ossl_rcu_lock_free(new->lock);
242
0
    }
243
0
    if (new->md != NULL)
244
0
        OPENSSL_free(new->md->neighborhood_ptr_to_free);
245
0
    OPENSSL_free(new->md);
246
0
    OPENSSL_free(new);
247
0
    return NULL;
248
52.9k
}
249
250
int ossl_ht_read_lock(HT *htable)
251
39
{
252
39
    if (htable->config.no_rcu)
253
0
        return 1;
254
255
39
    return ossl_rcu_read_lock(htable->lock);
256
39
}
257
258
void ossl_ht_read_unlock(HT *htable)
259
39
{
260
39
    if (htable->config.no_rcu)
261
0
        return;
262
263
39
    ossl_rcu_read_unlock(htable->lock);
264
39
}
265
266
void ossl_ht_write_lock(HT *htable)
267
22.8k
{
268
22.8k
    if (htable->config.no_rcu)
269
22.7k
        return;
270
271
87
    ossl_rcu_write_lock(htable->lock);
272
87
    htable->wpd.need_sync = 0;
273
87
}
274
275
void ossl_ht_write_unlock(HT *htable)
276
22.8k
{
277
22.8k
    int need_sync = htable->wpd.need_sync;
278
279
22.8k
    if (htable->config.no_rcu)
280
22.7k
        return;
281
282
87
    htable->wpd.need_sync = 0;
283
87
    ossl_rcu_write_unlock(htable->lock);
284
87
    if (need_sync)
285
13
        ossl_synchronize_rcu(htable->lock);
286
87
}
287
288
static void free_oldmd(void *arg)
289
52.9k
{
290
52.9k
    struct ht_mutable_data_st *oldmd = arg;
291
52.9k
    size_t i, j;
292
52.9k
    size_t neighborhood_len = (size_t)oldmd->neighborhood_mask + 1;
293
52.9k
    struct ht_internal_value_st *v;
294
295
555k
    for (i = 0; i < neighborhood_len; i++) {
296
502k
        PREFETCH_NEIGHBORHOOD(oldmd->neighborhoods[i + 1]);
297
2.51M
        for (j = 0; j < NEIGHBORHOOD_LEN; j++) {
298
2.00M
            if (oldmd->neighborhoods[i].entries[j].value != NULL) {
299
26.8k
                v = oldmd->neighborhoods[i].entries[j].value;
300
26.8k
                v->ht->config.ht_free_fn((HT_VALUE *)v);
301
26.8k
                free_value(v);
302
26.8k
            }
303
2.00M
        }
304
502k
    }
305
306
52.9k
    OPENSSL_free(oldmd->neighborhood_ptr_to_free);
307
52.9k
    OPENSSL_free(oldmd);
308
52.9k
}
309
310
static int ossl_ht_flush_internal(HT *h)
311
22.7k
{
312
22.7k
    struct ht_mutable_data_st *newmd = NULL;
313
22.7k
    struct ht_mutable_data_st *oldmd = NULL;
314
22.7k
    CRYPTO_RCU_CB_ITEM *cbi = NULL;
315
316
22.7k
    newmd = OPENSSL_zalloc(sizeof(*newmd));
317
22.7k
    if (newmd == NULL)
318
0
        return 0;
319
320
22.7k
    newmd->neighborhoods = alloc_new_neighborhood_list(DEFAULT_NEIGH_LEN,
321
22.7k
        &newmd->neighborhood_ptr_to_free);
322
22.7k
    if (newmd->neighborhoods == NULL) {
323
0
        OPENSSL_free(newmd);
324
0
        return 0;
325
0
    }
326
327
22.7k
    newmd->neighborhood_mask = DEFAULT_NEIGH_LEN - 1;
328
329
22.7k
    if (!h->config.no_rcu) {
330
2
        cbi = ossl_rcu_cb_item_new();
331
2
        if (cbi == NULL) {
332
0
            OPENSSL_free(newmd->neighborhood_ptr_to_free);
333
0
            OPENSSL_free(newmd);
334
0
            return 0;
335
0
        }
336
337
        /* Swap the old and new mutable data sets */
338
2
        oldmd = ossl_rcu_deref(&h->md);
339
2
        ossl_rcu_assign_ptr(&h->md, &newmd);
340
22.7k
    } else {
341
22.7k
        oldmd = h->md;
342
22.7k
        h->md = newmd;
343
22.7k
    }
344
345
    /* Set the number of entries to 0 */
346
22.7k
    h->wpd.value_count = 0;
347
22.7k
    h->wpd.neighborhood_len = DEFAULT_NEIGH_LEN;
348
349
22.7k
    if (!h->config.no_rcu) {
350
2
        ossl_rcu_call(h->lock, cbi, free_oldmd, oldmd);
351
2
        h->wpd.need_sync = 1;
352
22.7k
    } else {
353
22.7k
        free_oldmd(oldmd);
354
22.7k
    }
355
356
22.7k
    return 1;
357
22.7k
}
358
359
int ossl_ht_flush(HT *h)
360
5
{
361
5
    return ossl_ht_flush_internal(h);
362
5
}
363
364
void ossl_ht_free(HT *h)
365
22.7k
{
366
22.7k
    int flush_ok;
367
368
22.7k
    if (h == NULL)
369
0
        return;
370
371
22.7k
    ossl_ht_write_lock(h);
372
22.7k
    flush_ok = ossl_ht_flush_internal(h);
373
22.7k
    ossl_ht_write_unlock(h);
374
    /* Freeing the lock does a final sync for us */
375
22.7k
    if (!h->config.no_rcu) {
376
0
        CRYPTO_THREAD_lock_free(h->atomic_lock);
377
0
        ossl_rcu_lock_free(h->lock);
378
0
    }
379
22.7k
    if (flush_ok) {
380
22.7k
        OPENSSL_free(h->md->neighborhood_ptr_to_free);
381
22.7k
        OPENSSL_free(h->md);
382
22.7k
    } else {
383
0
        free_oldmd(h->md);
384
0
    }
385
22.7k
    OPENSSL_free(h);
386
22.7k
    return;
387
22.7k
}
388
389
size_t ossl_ht_count(HT *h)
390
0
{
391
0
    size_t count;
392
393
0
    count = h->wpd.value_count;
394
0
    return count;
395
0
}
396
397
void ossl_ht_foreach_until(HT *h, int (*cb)(HT_VALUE *obj, void *arg),
398
    void *arg)
399
99
{
400
99
    size_t i, j;
401
99
    struct ht_mutable_data_st *md;
402
403
99
    md = ossl_rcu_deref(&h->md);
404
23.4k
    for (i = 0; i < md->neighborhood_mask + 1; i++) {
405
23.3k
        PREFETCH_NEIGHBORHOOD(md->neighborhoods[i + 1]);
406
116k
        for (j = 0; j < NEIGHBORHOOD_LEN; j++) {
407
93.3k
            if (md->neighborhoods[i].entries[j].value != NULL) {
408
613
                if (!cb((HT_VALUE *)md->neighborhoods[i].entries[j].value, arg))
409
11
                    goto out;
410
613
            }
411
93.3k
        }
412
23.3k
    }
413
99
out:
414
99
    return;
415
99
}
416
417
HT_VALUE_LIST *ossl_ht_filter(HT *h, size_t max_len,
418
    int (*filter)(HT_VALUE *obj, void *arg),
419
    void *arg)
420
91
{
421
91
    struct ht_mutable_data_st *md;
422
91
    HT_VALUE_LIST *list = OPENSSL_zalloc(sizeof(HT_VALUE_LIST)
423
91
        + (sizeof(HT_VALUE *) * max_len));
424
91
    size_t i, j;
425
91
    struct ht_internal_value_st *v;
426
427
91
    if (list == NULL)
428
0
        return NULL;
429
430
    /*
431
     * The list array lives just beyond the end of
432
     * the struct
433
     */
434
91
    list->list = (HT_VALUE **)(list + 1);
435
436
91
    md = ossl_rcu_deref(&h->md);
437
21.1k
    for (i = 0; i < md->neighborhood_mask + 1; i++) {
438
21.0k
        PREFETCH_NEIGHBORHOOD(md->neighborhoods[i + 1]);
439
105k
        for (j = 0; j < NEIGHBORHOOD_LEN; j++) {
440
84.2k
            v = md->neighborhoods[i].entries[j].value;
441
84.2k
            if (v != NULL && filter((HT_VALUE *)v, arg)) {
442
11
                list->list[list->list_len++] = (HT_VALUE *)v;
443
11
                if (list->list_len == max_len)
444
11
                    goto out;
445
11
            }
446
84.2k
        }
447
21.0k
    }
448
91
out:
449
91
    return list;
450
91
}
451
452
void ossl_ht_value_list_free(HT_VALUE_LIST *list)
453
91
{
454
91
    OPENSSL_free(list);
455
91
}
456
457
static int compare_hash(uint64_t hash1, uint64_t hash2)
458
46.5M
{
459
46.5M
    return (hash1 == hash2);
460
46.5M
}
461
462
static void free_old_neigh_table(void *arg)
463
38
{
464
38
    struct ht_mutable_data_st *oldmd = arg;
465
466
38
    OPENSSL_free(oldmd->neighborhood_ptr_to_free);
467
38
    OPENSSL_free(oldmd);
468
38
}
469
470
/*
471
 * Increase hash table bucket list
472
 * must be called with write_lock held
473
 */
474
static int grow_hashtable(HT *h, size_t oldsize)
475
15
{
476
15
    struct ht_mutable_data_st *newmd;
477
15
    struct ht_mutable_data_st *oldmd = ossl_rcu_deref(&h->md);
478
15
    CRYPTO_RCU_CB_ITEM *cbi = NULL;
479
15
    int rc = 0;
480
15
    uint64_t oldi, oldj, newi, newj;
481
15
    uint64_t oldhash;
482
15
    struct ht_internal_value_st *oldv;
483
15
    int rehashed;
484
15
    size_t newsize = oldsize * 2;
485
486
15
    if (h->config.lockless_reads)
487
0
        goto out;
488
489
15
    if ((newmd = OPENSSL_zalloc(sizeof(*newmd))) == NULL)
490
0
        goto out;
491
492
    /* bucket list is always a power of 2 */
493
15
    newmd->neighborhoods = alloc_new_neighborhood_list(oldsize * 2,
494
15
        &newmd->neighborhood_ptr_to_free);
495
15
    if (newmd->neighborhoods == NULL)
496
0
        goto out_free;
497
498
    /* being a power of 2 makes for easy mask computation */
499
15
    newmd->neighborhood_mask = (newsize - 1);
500
501
    /*
502
     * Now we need to start rehashing entries
503
     * Note we don't need to use atomics here as the new
504
     * mutable data hasn't been published
505
     */
506
1.42k
    for (oldi = 0; oldi < h->wpd.neighborhood_len; oldi++) {
507
1.40k
        PREFETCH_NEIGHBORHOOD(oldmd->neighborhoods[oldi + 1]);
508
7.04k
        for (oldj = 0; oldj < NEIGHBORHOOD_LEN; oldj++) {
509
5.63k
            oldv = oldmd->neighborhoods[oldi].entries[oldj].value;
510
5.63k
            if (oldv == NULL)
511
5.54k
                continue;
512
85
            oldhash = oldmd->neighborhoods[oldi].entries[oldj].hash;
513
85
            newi = oldhash & newmd->neighborhood_mask;
514
85
            rehashed = 0;
515
158
            for (newj = 0; newj < NEIGHBORHOOD_LEN; newj++) {
516
158
                if (newmd->neighborhoods[newi].entries[newj].value == NULL) {
517
85
                    newmd->neighborhoods[newi].entries[newj].value = oldv;
518
85
                    newmd->neighborhoods[newi].entries[newj].hash = oldhash;
519
85
                    rehashed = 1;
520
85
                    break;
521
85
                }
522
158
            }
523
85
            if (rehashed == 0) {
524
                /* we ran out of space in a neighborhood, grow again */
525
0
                OPENSSL_free(newmd->neighborhood_ptr_to_free);
526
0
                OPENSSL_free(newmd);
527
0
                return grow_hashtable(h, newsize);
528
0
            }
529
85
        }
530
1.40k
    }
531
532
    /*
533
     * Pre allocate the rcu callback item before assigning the newmd.
534
     */
535
15
    if (!h->config.no_rcu) {
536
15
        cbi = ossl_rcu_cb_item_new();
537
15
        if (cbi == NULL)
538
0
            goto out_free;
539
15
    }
540
541
    /*
542
     * Now that our entries are all hashed into the new bucket list
543
     * update our bucket_len and target_max_load
544
     */
545
15
    h->wpd.neighborhood_len = newsize;
546
547
    /*
548
     * Now we replace the old mutable data with the new
549
     */
550
15
    if (!h->config.no_rcu) {
551
15
        ossl_rcu_assign_ptr(&h->md, &newmd);
552
15
        ossl_rcu_call(h->lock, cbi, free_old_neigh_table, oldmd);
553
15
        h->wpd.need_sync = 1;
554
15
    } else {
555
0
        h->md = newmd;
556
0
        free_old_neigh_table(oldmd);
557
0
    }
558
    /*
559
     * And we're done
560
     */
561
15
    rc = 1;
562
563
15
out:
564
15
    return rc;
565
0
out_free:
566
0
    OPENSSL_free(newmd->neighborhood_ptr_to_free);
567
0
    OPENSSL_free(newmd);
568
0
    goto out;
569
15
}
570
571
static void free_old_ht_value(void *arg)
572
7
{
573
7
    HT_VALUE *h = (HT_VALUE *)arg;
574
575
    /*
576
     * Note, this is only called on replacement,
577
     * the caller is responsible for freeing the
578
     * held data, we just need to free the wrapping
579
     * struct here
580
     */
581
7
    OPENSSL_free(h);
582
7
}
583
584
static ossl_inline int match_key(HT_KEY *a, HT_KEY *b)
585
33.3M
{
586
    /*
587
     * keys match if they are both present, the same size
588
     * and compare equal in memory
589
     */
590
33.3M
    PREFETCH(a->keybuf);
591
33.3M
    PREFETCH(b->keybuf);
592
33.3M
    if (a->keybuf != NULL && b->keybuf != NULL && a->keysize == b->keysize)
593
33.3M
        return !memcmp(a->keybuf, b->keybuf, a->keysize);
594
595
4.05k
    return 1;
596
33.3M
}
597
598
static int ossl_ht_insert_locked(HT *h, uint64_t hash,
599
    struct ht_internal_value_st *newval,
600
    HT_VALUE **olddata)
601
24.6k
{
602
24.6k
    struct ht_mutable_data_st *md = h->md;
603
24.6k
    uint64_t neigh_idx_start = hash & md->neighborhood_mask;
604
24.6k
    uint64_t neigh_idx = neigh_idx_start;
605
24.6k
    size_t j;
606
24.6k
    uint64_t ihash;
607
24.6k
    HT_VALUE *ival;
608
24.6k
    size_t empty_idx = SIZE_MAX;
609
24.6k
    int lockless_reads = h->config.lockless_reads;
610
611
24.8k
    do {
612
24.8k
        PREFETCH_NEIGHBORHOOD(md->neighborhoods[neigh_idx]);
613
614
44.8k
        for (j = 0; j < NEIGHBORHOOD_LEN; j++) {
615
42.6k
            if (!h->config.no_rcu)
616
34.6k
                ival = ossl_rcu_deref(&md->neighborhoods[neigh_idx].entries[j].value);
617
8.01k
            else
618
8.01k
                ival = (HT_VALUE *)md->neighborhoods[neigh_idx].entries[j].value;
619
42.6k
            if (ival == NULL) {
620
30.7k
                empty_idx = j;
621
                /* lockless_reads implies no deletion, we can break out */
622
30.7k
                if (lockless_reads)
623
22.6k
                    goto not_found;
624
8.14k
                continue;
625
30.7k
            }
626
11.9k
            if (!h->config.no_rcu) {
627
11.9k
                if (!CRYPTO_atomic_load(&md->neighborhoods[neigh_idx].entries[j].hash,
628
11.9k
                        &ihash, h->atomic_lock))
629
0
                    return 0;
630
11.9k
            } else {
631
0
                ihash = md->neighborhoods[neigh_idx].entries[j].hash;
632
0
            }
633
11.9k
            if (compare_hash(hash, ihash) && match_key(&newval->value.key, &ival->key)) {
634
5
                if (olddata == NULL) {
635
                    /* This would insert a duplicate -> fail */
636
3
                    return 0;
637
3
                }
638
                /* Do a replacement */
639
2
                if (!h->config.no_rcu) {
640
2
                    CRYPTO_RCU_CB_ITEM *cbi = ossl_rcu_cb_item_new();
641
2
                    if (cbi == NULL)
642
0
                        return 0;
643
2
                    if (!CRYPTO_atomic_store(&md->neighborhoods[neigh_idx].entries[j].hash,
644
2
                            hash, h->atomic_lock)) {
645
0
                        ossl_rcu_cb_item_free(cbi);
646
0
                        return 0;
647
0
                    }
648
2
                    *olddata = (HT_VALUE *)md->neighborhoods[neigh_idx].entries[j].value;
649
2
                    ossl_rcu_assign_ptr(&md->neighborhoods[neigh_idx].entries[j].value,
650
2
                        &newval);
651
2
                    ossl_rcu_call(h->lock, cbi, free_old_ht_value, *olddata);
652
2
                } else {
653
0
                    md->neighborhoods[neigh_idx].entries[j].hash = hash;
654
0
                    *olddata = (HT_VALUE *)md->neighborhoods[neigh_idx].entries[j].value;
655
0
                    md->neighborhoods[neigh_idx].entries[j].value = newval;
656
0
                }
657
2
                h->wpd.need_sync = 1;
658
2
                return 1;
659
2
            }
660
11.9k
        }
661
2.18k
        if (!lockless_reads)
662
2.06k
            break;
663
        /* Continue search in subsequent neighborhoods */
664
118
        neigh_idx = (neigh_idx + 1) & md->neighborhood_mask;
665
118
    } while (neigh_idx != neigh_idx_start);
666
667
24.6k
not_found:
668
    /* If we get to here, its just an insert */
669
24.6k
    if (empty_idx == SIZE_MAX)
670
15
        return -1; /* out of space */
671
24.6k
    if (!h->config.no_rcu) {
672
22.6k
        if (!CRYPTO_atomic_store(&md->neighborhoods[neigh_idx].entries[empty_idx].hash,
673
22.6k
                hash, h->atomic_lock))
674
0
            return 0;
675
22.6k
        ossl_rcu_assign_ptr(&md->neighborhoods[neigh_idx].entries[empty_idx].value,
676
22.6k
            &newval);
677
22.6k
    } else {
678
2.00k
        md->neighborhoods[neigh_idx].entries[empty_idx].hash = hash;
679
2.00k
        md->neighborhoods[neigh_idx].entries[empty_idx].value = newval;
680
2.00k
    }
681
24.6k
    h->wpd.value_count++;
682
24.6k
    return 1;
683
24.6k
}
684
685
static struct ht_internal_value_st *alloc_new_value(HT *h, HT_KEY *key,
686
    void *data,
687
    uintptr_t *type)
688
53.1k
{
689
53.1k
    struct ht_internal_value_st *tmp;
690
53.1k
    size_t nvsize = sizeof(*tmp);
691
692
53.1k
    if (h->config.collision_check == 1)
693
51.1k
        nvsize += key->keysize;
694
695
53.1k
    tmp = OPENSSL_malloc(nvsize);
696
697
53.1k
    if (tmp == NULL)
698
0
        return NULL;
699
700
53.1k
    tmp->ht = h;
701
53.1k
    tmp->value.value = data;
702
53.1k
    tmp->value.type_id = type;
703
53.1k
    tmp->value.key.keybuf = NULL;
704
53.1k
    if (h->config.collision_check) {
705
51.1k
        tmp->value.key.keybuf = (uint8_t *)(tmp + 1);
706
51.1k
        tmp->value.key.keysize = key->keysize;
707
51.1k
        memcpy(tmp->value.key.keybuf, key->keybuf, key->keysize);
708
51.1k
    }
709
710
53.1k
    return tmp;
711
53.1k
}
712
713
static void free_value(struct ht_internal_value_st *v)
714
26.8k
{
715
26.8k
    OPENSSL_free(v);
716
26.8k
}
717
718
int ossl_ht_insert(HT *h, HT_KEY *key, HT_VALUE *data, HT_VALUE **olddata)
719
39.6k
{
720
39.6k
    struct ht_internal_value_st *newval = NULL;
721
39.6k
    uint64_t hash;
722
39.6k
    int rc = 0;
723
39.6k
    int i;
724
725
39.6k
    if (data->value == NULL)
726
0
        goto out;
727
728
39.6k
    rc = -1;
729
39.6k
    newval = alloc_new_value(h, key, data->value, data->type_id);
730
39.6k
    if (newval == NULL)
731
0
        goto out;
732
733
    /*
734
     * we have to take our lock here to prevent other changes
735
     * to the bucket list
736
     */
737
39.6k
    hash = h->config.ht_hash_fn(key);
738
739
39.6k
    for (i = 0;
740
39.6k
        (rc = ossl_ht_insert_locked(h, hash, newval, olddata)) == -1
741
31
        && i <= (int)NEIGHBORHOOD_LEN;
742
39.6k
        ++i)
743
31
        if (!grow_hashtable(h, h->wpd.neighborhood_len)) {
744
0
            rc = -1;
745
0
            break;
746
0
        }
747
748
39.6k
    if (rc <= 0)
749
4
        free_value(newval);
750
751
39.6k
out:
752
39.6k
    return rc;
753
39.6k
}
754
755
HT_VALUE *ossl_ht_get(HT *h, HT_KEY *key)
756
4.73M
{
757
4.73M
    struct ht_mutable_data_st *md;
758
4.73M
    uint64_t hash;
759
4.73M
    uint64_t neigh_idx_start;
760
4.73M
    uint64_t neigh_idx;
761
4.73M
    struct ht_internal_value_st *ival = NULL;
762
4.73M
    size_t j;
763
4.73M
    uint64_t ehash;
764
4.73M
    int lockless_reads = h->config.lockless_reads;
765
766
4.73M
    hash = h->config.ht_hash_fn(key);
767
768
4.73M
    if (!h->config.no_rcu)
769
4.72M
        md = ossl_rcu_deref(&h->md);
770
14.6k
    else
771
14.6k
        md = h->md;
772
4.73M
    neigh_idx = neigh_idx_start = hash & md->neighborhood_mask;
773
4.73M
    do {
774
4.73M
        PREFETCH_NEIGHBORHOOD(md->neighborhoods[neigh_idx]);
775
7.17M
        for (j = 0; j < NEIGHBORHOOD_LEN; j++) {
776
7.15M
            if (!h->config.no_rcu)
777
7.09M
                ival = ossl_rcu_deref(&md->neighborhoods[neigh_idx].entries[j].value);
778
58.5k
            else
779
58.5k
                ival = md->neighborhoods[neigh_idx].entries[j].value;
780
7.15M
            if (ival == NULL) {
781
584k
                if (lockless_reads)
782
                    /* lockless_reads implies no deletion, we can break out */
783
528k
                    return NULL;
784
56.2k
                continue;
785
584k
            }
786
6.57M
            if (!h->config.no_rcu) {
787
6.57M
                if (!CRYPTO_atomic_load(&md->neighborhoods[neigh_idx].entries[j].hash,
788
6.57M
                        &ehash, h->atomic_lock))
789
0
                    return NULL;
790
6.57M
            } else {
791
2.30k
                ehash = md->neighborhoods[neigh_idx].entries[j].hash;
792
2.30k
            }
793
6.57M
            if (compare_hash(hash, ehash) && match_key(&ival->value.key, key))
794
4.19M
                return (HT_VALUE *)ival;
795
6.57M
        }
796
13.0k
        if (!lockless_reads)
797
12.6k
            break;
798
        /* Continue search in subsequent neighborhoods */
799
406
        neigh_idx = (neigh_idx + 1) & md->neighborhood_mask;
800
406
    } while (neigh_idx != neigh_idx_start);
801
802
12.6k
    return NULL;
803
4.73M
}
804
805
static void free_old_entry(void *arg)
806
12
{
807
12
    struct ht_internal_value_st *v = arg;
808
809
12
    v->ht->config.ht_free_fn((HT_VALUE *)v);
810
12
    free_value(v);
811
12
}
812
813
int ossl_ht_delete(HT *h, HT_KEY *key)
814
20
{
815
20
    uint64_t hash;
816
20
    uint64_t neigh_idx;
817
20
    size_t j;
818
20
    struct ht_internal_value_st *v = NULL;
819
20
    HT_VALUE *nv = NULL;
820
20
    int rc = 0;
821
822
20
    if (h->config.lockless_reads)
823
0
        return 0;
824
825
20
    hash = h->config.ht_hash_fn(key);
826
827
20
    neigh_idx = hash & h->md->neighborhood_mask;
828
20
    PREFETCH_NEIGHBORHOOD(h->md->neighborhoods[neigh_idx]);
829
94
    for (j = 0; j < NEIGHBORHOOD_LEN; j++) {
830
76
        v = (struct ht_internal_value_st *)h->md->neighborhoods[neigh_idx].entries[j].value;
831
76
        if (v == NULL)
832
39
            continue;
833
37
        if (compare_hash(hash, h->md->neighborhoods[neigh_idx].entries[j].hash)
834
2
            && match_key(key, &v->value.key)) {
835
2
            if (!h->config.no_rcu) {
836
2
                CRYPTO_RCU_CB_ITEM *cbi = ossl_rcu_cb_item_new();
837
2
                if (cbi == NULL)
838
0
                    break;
839
2
                if (!CRYPTO_atomic_store(&h->md->neighborhoods[neigh_idx].entries[j].hash,
840
2
                        0, h->atomic_lock)) {
841
0
                    ossl_rcu_cb_item_free(cbi);
842
0
                    break;
843
0
                }
844
2
                ossl_rcu_assign_ptr(&h->md->neighborhoods[neigh_idx].entries[j].value, &nv);
845
2
                ossl_rcu_call(h->lock, cbi, free_old_entry, v);
846
2
            } else {
847
0
                h->md->neighborhoods[neigh_idx].entries[j].hash = 0;
848
0
                h->md->neighborhoods[neigh_idx].entries[j].value = NULL;
849
0
                free_old_entry(v);
850
0
            }
851
2
            h->wpd.value_count--;
852
2
            h->wpd.need_sync = 1;
853
2
            rc = 1;
854
2
            break;
855
2
        }
856
37
    }
857
858
20
    return rc;
859
20
}
860
861
HT_VALUE *ossl_ht_deref_value(HT *h, HT_VALUE **val)
862
5
{
863
5
    HT_VALUE *v;
864
865
5
    if (!h->config.no_rcu)
866
5
        v = ossl_rcu_deref(val);
867
0
    else
868
0
        v = *val;
869
870
5
    return v;
871
5
}
872
873
void *ossl_ht_inner_value(HT *h, HT_VALUE *v)
874
2
{
875
2
    void *inner;
876
877
2
    if (!h->config.no_rcu) {
878
2
        inner = v->value;
879
2
    } else {
880
0
        inner = v->value;
881
0
        OPENSSL_free(v);
882
0
    }
883
884
2
    return inner;
885
2
}