Coverage Report

Created: 2025-12-04 06:33

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl33/ssl/priority_queue.c
Line
Count
Source
1
/*
2
 * Copyright 2022-2023 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 <openssl/crypto.h>
11
#include <openssl/err.h>
12
#include <assert.h>
13
#include "internal/priority_queue.h"
14
#include "internal/safe_math.h"
15
#include "internal/numbers.h"
16
17
OSSL_SAFE_MATH_UNSIGNED(size_t, size_t)
18
19
/*
20
 * Fundamental operations:
21
 *                        Binary Heap   Fibonacci Heap
22
 *  Get smallest            O(1)          O(1)
23
 *  Delete any              O(log n)      O(log n) average but worst O(n)
24
 *  Insert                  O(log n)      O(1)
25
 *
26
 * Not supported:
27
 *  Merge two structures    O(log n)      O(1)
28
 *  Decrease key            O(log n)      O(1)
29
 *  Increase key            O(log n)      ?
30
 *
31
 * The Fibonacci heap is quite a bit more complicated to implement and has
32
 * larger overhead in practice.  We favour the binary heap here.  A multi-way
33
 * (ternary or quaternary) heap might elicit a performance advantage via better
34
 * cache access patterns.
35
 */
36
37
struct pq_heap_st {
38
    void *data;     /* User supplied data pointer */
39
    size_t index;   /* Constant index in elements[] */
40
};
41
42
struct pq_elem_st {
43
    size_t posn;    /* Current index in heap[] or link in free list */
44
#ifndef NDEBUG
45
    int used;       /* Debug flag indicating that this is in use */
46
#endif
47
};
48
49
struct ossl_pqueue_st
50
{
51
    struct pq_heap_st *heap;
52
    struct pq_elem_st *elements;
53
    int (*compare)(const void *, const void *);
54
    size_t htop;        /* Highest used heap element */
55
    size_t hmax;        /* Allocated heap & element space */
56
    size_t freelist;    /* Index into elements[], start of free element list */
57
};
58
59
/*
60
 * The initial and maximum number of elements in the heap.
61
 */
62
static const size_t min_nodes = 8;
63
static const size_t max_nodes =
64
        SIZE_MAX / (sizeof(struct pq_heap_st) > sizeof(struct pq_elem_st)
65
                    ? sizeof(struct pq_heap_st) : sizeof(struct pq_elem_st));
66
67
#ifndef NDEBUG
68
/* Some basic sanity checking of the data structure */
69
# define ASSERT_USED(pq, idx)                                               \
70
139M
    assert(pq->elements[pq->heap[idx].index].used);                         \
71
135M
    assert(pq->elements[pq->heap[idx].index].posn == idx)
72
# define ASSERT_ELEM_USED(pq, elem)                                         \
73
2.90M
    assert(pq->elements[elem].used)
74
#else
75
# define ASSERT_USED(pq, idx)
76
# define ASSERT_ELEM_USED(pq, elem)
77
#endif
78
79
/*
80
 * Calculate the array growth based on the target size.
81
 *
82
 * The growth factor is a rational number and is defined by a numerator
83
 * and a denominator.  According to Andrew Koenig in his paper "Why Are
84
 * Vectors Efficient?" from JOOP 11(5) 1998, this factor should be less
85
 * than the golden ratio (1.618...).
86
 *
87
 * We use an expansion factor of 8 / 5 = 1.6
88
 */
89
static ossl_inline size_t compute_pqueue_growth(size_t target, size_t current)
90
76.5k
{
91
76.5k
    int err = 0;
92
93
153k
    while (current < target) {
94
76.5k
        if (current >= max_nodes)
95
0
            return 0;
96
97
76.5k
        current = safe_muldiv_size_t(current, 8, 5, &err);
98
76.5k
        if (err)
99
0
            return 0;
100
76.5k
        if (current >= max_nodes)
101
0
            current = max_nodes;
102
76.5k
    }
103
76.5k
    return current;
104
76.5k
}
105
106
static ossl_inline void pqueue_swap_elem(OSSL_PQUEUE *pq, size_t i, size_t j)
107
26.2M
{
108
26.2M
    struct pq_heap_st *h = pq->heap, t_h;
109
26.2M
    struct pq_elem_st *e = pq->elements;
110
111
26.2M
    ASSERT_USED(pq, i);
112
52.5M
    ASSERT_USED(pq, j);
113
114
52.5M
    t_h = h[i];
115
26.2M
    h[i] = h[j];
116
26.2M
    h[j] = t_h;
117
118
26.2M
    e[h[i].index].posn = i;
119
26.2M
    e[h[j].index].posn = j;
120
26.2M
}
121
122
static ossl_inline void pqueue_move_elem(OSSL_PQUEUE *pq, size_t from, size_t to)
123
4.11M
{
124
4.11M
    struct pq_heap_st *h = pq->heap;
125
4.11M
    struct pq_elem_st *e = pq->elements;
126
127
4.11M
    ASSERT_USED(pq, from);
128
129
4.11M
    h[to] = h[from];
130
4.11M
    e[h[to].index].posn = to;
131
4.11M
}
132
133
/*
134
 * Force the specified element to the front of the heap.  This breaks
135
 * the heap partial ordering pre-condition.
136
 */
137
static ossl_inline void pqueue_force_bottom(OSSL_PQUEUE *pq, size_t n)
138
0
{
139
0
    ASSERT_USED(pq, n);
140
0
    while (n > 0) {
141
0
        const size_t p = (n - 1) / 2;
142
143
0
        ASSERT_USED(pq, p);
144
0
        pqueue_swap_elem(pq, n, p);
145
0
        n = p;
146
0
    }
147
0
}
148
149
/*
150
 * Move an element down to its correct position to restore the partial
151
 * order pre-condition.
152
 */
153
static ossl_inline void pqueue_move_down(OSSL_PQUEUE *pq, size_t n)
154
4.68M
{
155
4.68M
    struct pq_heap_st *h = pq->heap;
156
157
4.68M
    ASSERT_USED(pq, n);
158
7.04M
    while (n > 0) {
159
6.41M
        const size_t p = (n - 1) / 2;
160
161
6.41M
        ASSERT_USED(pq, p);
162
6.41M
        if (pq->compare(h[n].data, h[p].data) >= 0)
163
4.05M
            break;
164
2.36M
        pqueue_swap_elem(pq, n, p);
165
2.36M
        n = p;
166
2.36M
    }
167
4.68M
}
168
169
/*
170
 * Move an element up to its correct position to restore the partial
171
 * order pre-condition.
172
 */
173
static ossl_inline void pqueue_move_up(OSSL_PQUEUE *pq, size_t n)
174
4.11M
{
175
4.11M
    struct pq_heap_st *h = pq->heap;
176
4.11M
    size_t p = n * 2 + 1;
177
178
4.11M
    ASSERT_USED(pq, n);
179
4.11M
    if (pq->htop > p + 1) {
180
3.90M
        ASSERT_USED(pq, p);
181
7.81M
        ASSERT_USED(pq, p + 1);
182
7.81M
        if (pq->compare(h[p].data, h[p + 1].data) > 0)
183
971k
            p++;
184
3.90M
    }
185
28.0M
    while (pq->htop > p && pq->compare(h[p].data, h[n].data) < 0) {
186
23.9M
        ASSERT_USED(pq, p);
187
23.9M
        pqueue_swap_elem(pq, n, p);
188
23.9M
        n = p;
189
23.9M
        p = n * 2 + 1;
190
23.9M
        if (pq->htop > p + 1) {
191
22.0M
            ASSERT_USED(pq, p + 1);
192
22.0M
            if (pq->compare(h[p].data, h[p + 1].data) > 0)
193
10.3M
                p++;
194
22.0M
        }
195
23.9M
    }
196
4.11M
}
197
198
int ossl_pqueue_push(OSSL_PQUEUE *pq, void *data, size_t *elem)
199
4.68M
{
200
4.68M
    size_t n, m;
201
202
4.68M
    if (!ossl_pqueue_reserve(pq, 1))
203
0
        return 0;
204
205
4.68M
    n = pq->htop++;
206
4.68M
    m = pq->freelist;
207
4.68M
    pq->freelist = pq->elements[m].posn;
208
209
4.68M
    pq->heap[n].data = data;
210
4.68M
    pq->heap[n].index = m;
211
212
4.68M
    pq->elements[m].posn = n;
213
4.68M
#ifndef NDEBUG
214
4.68M
    pq->elements[m].used = 1;
215
4.68M
#endif
216
4.68M
    pqueue_move_down(pq, n);
217
4.68M
    if (elem != NULL)
218
4.68M
        *elem = m;
219
4.68M
    return 1;
220
4.68M
}
221
222
void *ossl_pqueue_peek(const OSSL_PQUEUE *pq)
223
12.0M
{
224
12.0M
    if (pq->htop > 0) {
225
3.11M
        ASSERT_USED(pq, 0);
226
3.11M
        return pq->heap->data;
227
3.11M
    }
228
8.89M
    return NULL;
229
12.0M
}
230
231
void *ossl_pqueue_pop(OSSL_PQUEUE *pq)
232
8.08M
{
233
8.08M
    void *res;
234
8.08M
    size_t elem;
235
236
8.08M
    if (pq == NULL || pq->htop == 0)
237
3.92M
        return NULL;
238
239
8.31M
    ASSERT_USED(pq, 0);
240
8.31M
    res = pq->heap->data;
241
4.15M
    elem = pq->heap->index;
242
243
4.15M
    if (--pq->htop != 0) {
244
4.11M
        pqueue_move_elem(pq, pq->htop, 0);
245
4.11M
        pqueue_move_up(pq, 0);
246
4.11M
    }
247
248
4.15M
    pq->elements[elem].posn = pq->freelist;
249
4.15M
    pq->freelist = elem;
250
4.15M
#ifndef NDEBUG
251
4.15M
    pq->elements[elem].used = 0;
252
4.15M
#endif
253
4.15M
    return res;
254
8.31M
}
255
256
void *ossl_pqueue_remove(OSSL_PQUEUE *pq, size_t elem)
257
2.90M
{
258
2.90M
    size_t n;
259
260
2.90M
    if (pq == NULL || elem >= pq->hmax || pq->htop == 0)
261
0
        return 0;
262
263
2.90M
    ASSERT_ELEM_USED(pq, elem);
264
2.90M
    n = pq->elements[elem].posn;
265
266
2.90M
    ASSERT_USED(pq, n);
267
268
2.90M
    if (n == pq->htop - 1) {
269
530k
        pq->elements[elem].posn = pq->freelist;
270
530k
        pq->freelist = elem;
271
530k
#ifndef NDEBUG
272
530k
        pq->elements[elem].used = 0;
273
530k
#endif
274
530k
        return pq->heap[--pq->htop].data;
275
530k
    }
276
2.37M
    if (n > 0)
277
0
        pqueue_force_bottom(pq, n);
278
2.37M
    return ossl_pqueue_pop(pq);
279
2.90M
}
280
281
static void pqueue_add_freelist(OSSL_PQUEUE *pq, size_t from)
282
4.00M
{
283
4.00M
    struct pq_elem_st *e = pq->elements;
284
4.00M
    size_t i;
285
286
4.00M
#ifndef NDEBUG
287
39.8M
    for (i = from; i < pq->hmax; i++)
288
35.8M
        e[i].used = 0;
289
4.00M
#endif
290
4.00M
    e[from].posn = pq->freelist;
291
35.8M
    for (i = from + 1; i < pq->hmax; i++)
292
31.8M
        e[i].posn = i - 1;
293
4.00M
    pq->freelist = pq->hmax - 1;
294
4.00M
}
295
296
int ossl_pqueue_reserve(OSSL_PQUEUE *pq, size_t n)
297
4.68M
{
298
4.68M
    size_t new_max, cur_max;
299
4.68M
    struct pq_heap_st *h;
300
4.68M
    struct pq_elem_st *e;
301
302
4.68M
    if (pq == NULL)
303
0
        return 0;
304
4.68M
    cur_max = pq->hmax;
305
4.68M
    if (pq->htop + n < cur_max)
306
4.60M
        return 1;
307
308
76.5k
    new_max = compute_pqueue_growth(n + cur_max, cur_max);
309
76.5k
    if (new_max == 0) {
310
0
        ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
311
0
        return 0;
312
0
    }
313
314
76.5k
    h = OPENSSL_realloc(pq->heap, new_max * sizeof(*pq->heap));
315
76.5k
    if (h == NULL)
316
0
        return 0;
317
76.5k
    pq->heap = h;
318
319
76.5k
    e = OPENSSL_realloc(pq->elements, new_max * sizeof(*pq->elements));
320
76.5k
    if (e == NULL)
321
0
        return 0;
322
76.5k
    pq->elements = e;
323
324
76.5k
    pq->hmax = new_max;
325
76.5k
    pqueue_add_freelist(pq, cur_max);
326
76.5k
    return 1;
327
76.5k
}
328
329
OSSL_PQUEUE *ossl_pqueue_new(int (*compare)(const void *, const void *))
330
3.92M
{
331
3.92M
    OSSL_PQUEUE *pq;
332
333
3.92M
    if (compare == NULL)
334
0
        return NULL;
335
336
3.92M
    pq = OPENSSL_malloc(sizeof(*pq));
337
3.92M
    if (pq == NULL)
338
0
        return NULL;
339
3.92M
    pq->compare = compare;
340
3.92M
    pq->hmax = min_nodes;
341
3.92M
    pq->htop = 0;
342
3.92M
    pq->freelist = 0;
343
3.92M
    pq->heap = OPENSSL_malloc(sizeof(*pq->heap) * min_nodes);
344
3.92M
    pq->elements = OPENSSL_malloc(sizeof(*pq->elements) * min_nodes);
345
3.92M
    if (pq->heap == NULL || pq->elements == NULL) {
346
0
        ossl_pqueue_free(pq);
347
0
        return NULL;
348
0
    }
349
3.92M
    pqueue_add_freelist(pq, 0);
350
3.92M
    return pq;
351
3.92M
}
352
353
void ossl_pqueue_free(OSSL_PQUEUE *pq)
354
3.92M
{
355
3.92M
    if (pq != NULL) {
356
3.92M
        OPENSSL_free(pq->heap);
357
3.92M
        OPENSSL_free(pq->elements);
358
3.92M
        OPENSSL_free(pq);
359
3.92M
    }
360
3.92M
}
361
362
void ossl_pqueue_pop_free(OSSL_PQUEUE *pq, void (*freefunc)(void *))
363
0
{
364
0
    size_t i;
365
366
0
    if (pq != NULL) {
367
0
        for (i = 0; i < pq->htop; i++)
368
0
            (*freefunc)(pq->heap[i].data);
369
0
        ossl_pqueue_free(pq);
370
0
    }
371
0
}
372
373
size_t ossl_pqueue_num(const OSSL_PQUEUE *pq)
374
5.97M
{
375
5.97M
    return pq != NULL ? pq->htop : 0;
376
5.97M
}