Coverage Report

Created: 2025-12-10 06:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/include/crypto/sparse_array.h
Line
Count
Source
1
/*
2
 * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright (c) 2019, Oracle and/or its affiliates.  All rights reserved.
4
 *
5
 * Licensed under the Apache License 2.0 (the "License").  You may not use
6
 * this file except in compliance with the License.  You can obtain a copy
7
 * in the file LICENSE in the source distribution or at
8
 * https://www.openssl.org/source/license.html
9
 */
10
11
#ifndef OSSL_CRYPTO_SPARSE_ARRAY_H
12
#define OSSL_CRYPTO_SPARSE_ARRAY_H
13
#pragma once
14
15
#include <openssl/e_os2.h>
16
17
#ifdef __cplusplus
18
extern "C" {
19
#endif
20
21
0
#define SPARSE_ARRAY_OF(type) struct sparse_array_st_##type
22
23
#define DEFINE_SPARSE_ARRAY_OF_INTERNAL(type, ctype)                                                               \
24
    SPARSE_ARRAY_OF(type);                                                                                         \
25
    static ossl_unused ossl_inline SPARSE_ARRAY_OF(type) * ossl_sa_##type##_new(void)                              \
26
39
    {                                                                                                              \
27
39
        return (SPARSE_ARRAY_OF(type) *)ossl_sa_new();                                                             \
28
39
    }                                                                                                              \
threads_common.c:ossl_sa_CTX_TABLE_ENTRY_new
Line
Count
Source
26
3
    {                                                                                                              \
27
3
        return (SPARSE_ARRAY_OF(type) *)ossl_sa_new();                                                             \
28
3
    }                                                                                                              \
property.c:ossl_sa_ALGORITHM_new
Line
Count
Source
26
36
    {                                                                                                              \
27
36
        return (SPARSE_ARRAY_OF(type) *)ossl_sa_new();                                                             \
28
36
    }                                                                                                              \
Unexecuted instantiation: rsa_ossl.c:ossl_sa_BN_BLINDING_new
29
    static ossl_unused ossl_inline void                                                                            \
30
    ossl_sa_##type##_free(SPARSE_ARRAY_OF(type) * sa)                                                              \
31
15
    {                                                                                                              \
32
15
        ossl_sa_free((OPENSSL_SA *)sa);                                                                            \
33
15
    }                                                                                                              \
threads_common.c:ossl_sa_CTX_TABLE_ENTRY_free
Line
Count
Source
31
3
    {                                                                                                              \
32
3
        ossl_sa_free((OPENSSL_SA *)sa);                                                                            \
33
3
    }                                                                                                              \
property.c:ossl_sa_ALGORITHM_free
Line
Count
Source
31
12
    {                                                                                                              \
32
12
        ossl_sa_free((OPENSSL_SA *)sa);                                                                            \
33
12
    }                                                                                                              \
Unexecuted instantiation: rsa_ossl.c:ossl_sa_BN_BLINDING_free
34
    static ossl_unused ossl_inline void                                                                            \
35
    ossl_sa_##type##_free_leaves(SPARSE_ARRAY_OF(type) * sa)                                                       \
36
0
    {                                                                                                              \
37
0
        ossl_sa_free_leaves((OPENSSL_SA *)sa);                                                                     \
38
0
    }                                                                                                              \
Unexecuted instantiation: threads_common.c:ossl_sa_CTX_TABLE_ENTRY_free_leaves
Unexecuted instantiation: property.c:ossl_sa_ALGORITHM_free_leaves
Unexecuted instantiation: rsa_ossl.c:ossl_sa_BN_BLINDING_free_leaves
39
    static ossl_unused ossl_inline size_t                                                                          \
40
    ossl_sa_##type##_num(const SPARSE_ARRAY_OF(type) * sa)                                                         \
41
0
    {                                                                                                              \
42
0
        return ossl_sa_num((OPENSSL_SA *)sa);                                                                      \
43
0
    }                                                                                                              \
Unexecuted instantiation: threads_common.c:ossl_sa_CTX_TABLE_ENTRY_num
Unexecuted instantiation: property.c:ossl_sa_ALGORITHM_num
Unexecuted instantiation: rsa_ossl.c:ossl_sa_BN_BLINDING_num
44
    static ossl_unused ossl_inline void                                                                            \
45
    ossl_sa_##type##_doall(const SPARSE_ARRAY_OF(type) * sa,                                                       \
46
        void (*leaf)(ossl_uintmax_t, type *))                                                                      \
47
51
    {                                                                                                              \
48
51
        ossl_sa_doall((OPENSSL_SA *)sa,                                                                            \
49
51
            (void (*)(ossl_uintmax_t, void *))leaf);                                                               \
50
51
    }                                                                                                              \
Unexecuted instantiation: threads_common.c:ossl_sa_CTX_TABLE_ENTRY_doall
property.c:ossl_sa_ALGORITHM_doall
Line
Count
Source
47
51
    {                                                                                                              \
48
51
        ossl_sa_doall((OPENSSL_SA *)sa,                                                                            \
49
51
            (void (*)(ossl_uintmax_t, void *))leaf);                                                               \
50
51
    }                                                                                                              \
Unexecuted instantiation: rsa_ossl.c:ossl_sa_BN_BLINDING_doall
51
    static ossl_unused ossl_inline void                                                                            \
52
    ossl_sa_##type##_doall_arg(const SPARSE_ARRAY_OF(type) * sa,                                                   \
53
        void (*leaf)(ossl_uintmax_t, type *, void *),                                                              \
54
        void *arg)                                                                                                 \
55
12
    {                                                                                                              \
56
12
        ossl_sa_doall_arg((OPENSSL_SA *)sa,                                                                        \
57
12
            (void (*)(ossl_uintmax_t, void *, void *))leaf, arg);                                                  \
58
12
    }                                                                                                              \
Unexecuted instantiation: threads_common.c:ossl_sa_CTX_TABLE_ENTRY_doall_arg
property.c:ossl_sa_ALGORITHM_doall_arg
Line
Count
Source
55
12
    {                                                                                                              \
56
12
        ossl_sa_doall_arg((OPENSSL_SA *)sa,                                                                        \
57
12
            (void (*)(ossl_uintmax_t, void *, void *))leaf, arg);                                                  \
58
12
    }                                                                                                              \
Unexecuted instantiation: rsa_ossl.c:ossl_sa_BN_BLINDING_doall_arg
59
    static ossl_unused ossl_inline ctype *ossl_sa_##type##_get(const SPARSE_ARRAY_OF(type) * sa, ossl_uintmax_t n) \
60
1.03M
    {                                                                                                              \
61
1.03M
        return (type *)ossl_sa_get((OPENSSL_SA *)sa, n);                                                           \
62
1.03M
    }                                                                                                              \
threads_common.c:ossl_sa_CTX_TABLE_ENTRY_get
Line
Count
Source
60
3.31k
    {                                                                                                              \
61
3.31k
        return (type *)ossl_sa_get((OPENSSL_SA *)sa, n);                                                           \
62
3.31k
    }                                                                                                              \
property.c:ossl_sa_ALGORITHM_get
Line
Count
Source
60
1.02M
    {                                                                                                              \
61
1.02M
        return (type *)ossl_sa_get((OPENSSL_SA *)sa, n);                                                           \
62
1.02M
    }                                                                                                              \
Unexecuted instantiation: rsa_ossl.c:ossl_sa_BN_BLINDING_get
63
    static ossl_unused ossl_inline int                                                                             \
64
    ossl_sa_##type##_set(SPARSE_ARRAY_OF(type) * sa,                                                               \
65
        ossl_uintmax_t n, ctype * val)                                                                             \
66
317
    {                                                                                                              \
67
317
        return ossl_sa_set((OPENSSL_SA *)sa, n, (void *)val);                                                      \
68
317
    }                                                                                                              \
threads_common.c:ossl_sa_CTX_TABLE_ENTRY_set
Line
Count
Source
66
15
    {                                                                                                              \
67
15
        return ossl_sa_set((OPENSSL_SA *)sa, n, (void *)val);                                                      \
68
15
    }                                                                                                              \
property.c:ossl_sa_ALGORITHM_set
Line
Count
Source
66
302
    {                                                                                                              \
67
302
        return ossl_sa_set((OPENSSL_SA *)sa, n, (void *)val);                                                      \
68
302
    }                                                                                                              \
Unexecuted instantiation: rsa_ossl.c:ossl_sa_BN_BLINDING_set
69
    SPARSE_ARRAY_OF(type)
70
71
#define DEFINE_SPARSE_ARRAY_OF(type) \
72
    DEFINE_SPARSE_ARRAY_OF_INTERNAL(type, type)
73
#define DEFINE_SPARSE_ARRAY_OF_CONST(type) \
74
    DEFINE_SPARSE_ARRAY_OF_INTERNAL(type, const type)
75
76
typedef struct sparse_array_st OPENSSL_SA;
77
OPENSSL_SA *ossl_sa_new(void);
78
void ossl_sa_free(OPENSSL_SA *sa);
79
void ossl_sa_free_leaves(OPENSSL_SA *sa);
80
size_t ossl_sa_num(const OPENSSL_SA *sa);
81
void ossl_sa_doall(const OPENSSL_SA *sa, void (*leaf)(ossl_uintmax_t, void *));
82
void ossl_sa_doall_arg(const OPENSSL_SA *sa,
83
    void (*leaf)(ossl_uintmax_t, void *, void *), void *);
84
void *ossl_sa_get(const OPENSSL_SA *sa, ossl_uintmax_t n);
85
int ossl_sa_set(OPENSSL_SA *sa, ossl_uintmax_t n, void *val);
86
87
#ifdef __cplusplus
88
}
89
#endif
90
#endif