Coverage Report

Created: 2026-05-30 06:06

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/include/internal/cryptlib.h
Line
Count
Source
1
/*
2
 * Copyright 1995-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
#ifndef OSSL_INTERNAL_CRYPTLIB_H
11
#define OSSL_INTERNAL_CRYPTLIB_H
12
#pragma once
13
14
#ifdef OPENSSL_USE_APPLINK
15
#define BIO_FLAGS_UPLINK_INTERNAL 0x8000
16
#include "ms/uplink.h"
17
#else
18
0
#define BIO_FLAGS_UPLINK_INTERNAL 0
19
#endif
20
21
#include "internal/common.h"
22
23
#include <openssl/crypto.h>
24
#include <openssl/buffer.h>
25
#include <openssl/bio.h>
26
#include <openssl/asn1.h>
27
#include <openssl/err.h>
28
29
typedef struct ex_callback_st EX_CALLBACK;
30
DEFINE_STACK_OF(EX_CALLBACK)
31
32
typedef struct mem_st MEM;
33
DEFINE_LHASH_OF_EX(MEM);
34
35
void OPENSSL_cpuid_setup(void);
36
#if defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || defined(_M_X64)
37
#define OPENSSL_IA32CAP_P_MAX_INDEXES 10
38
extern unsigned int OPENSSL_ia32cap_P[];
39
#endif
40
41
void OPENSSL_showfatal(const char *fmta, ...);
42
int ossl_do_ex_data_init(OSSL_LIB_CTX *ctx);
43
void ossl_crypto_cleanup_all_ex_data_int(OSSL_LIB_CTX *ctx);
44
int openssl_init_fork_handlers(void);
45
int openssl_get_fork_id(void);
46
47
char *ossl_safe_getenv(const char *name);
48
49
int openssl_strerror_r(int errnum, char *buf, size_t buflen);
50
#if !defined(OPENSSL_NO_STDIO)
51
FILE *openssl_fopen(const char *filename, const char *mode);
52
#else
53
void *openssl_fopen(const char *filename, const char *mode);
54
#endif
55
56
uint32_t OPENSSL_rdtsc(void);
57
size_t OPENSSL_instrument_bus(unsigned int *, size_t);
58
size_t OPENSSL_instrument_bus2(unsigned int *, size_t, size_t);
59
60
/* ex_data structures */
61
62
/*
63
 * Each structure type (sometimes called a class), that supports
64
 * exdata has a stack of callbacks for each instance.
65
 */
66
struct ex_callback_st {
67
    long argl; /* Arbitrary long */
68
    void *argp; /* Arbitrary void * */
69
    int priority; /* Priority ordering for freeing */
70
    CRYPTO_EX_new *new_func;
71
    CRYPTO_EX_free *free_func;
72
    CRYPTO_EX_dup *dup_func;
73
};
74
75
/*
76
 * The state for each class.  This could just be a typedef, but
77
 * a structure allows future changes.
78
 */
79
typedef struct ex_callbacks_st {
80
    STACK_OF(EX_CALLBACK) *meth;
81
} EX_CALLBACKS;
82
83
typedef struct ossl_ex_data_global_st {
84
    CRYPTO_RWLOCK *ex_data_lock;
85
    EX_CALLBACKS ex_data[CRYPTO_EX_INDEX__COUNT];
86
} OSSL_EX_DATA_GLOBAL;
87
88
/* OSSL_LIB_CTX */
89
90
#define OSSL_LIB_CTX_PROVIDER_STORE_RUN_ONCE_INDEX 0
91
#define OSSL_LIB_CTX_DEFAULT_METHOD_STORE_RUN_ONCE_INDEX 1
92
#define OSSL_LIB_CTX_METHOD_STORE_RUN_ONCE_INDEX 2
93
#define OSSL_LIB_CTX_MAX_RUN_ONCE 3
94
95
1.41M
#define OSSL_LIB_CTX_EVP_METHOD_STORE_INDEX 0
96
1.06k
#define OSSL_LIB_CTX_PROVIDER_STORE_INDEX 1
97
72
#define OSSL_LIB_CTX_PROPERTY_DEFN_INDEX 2
98
56
#define OSSL_LIB_CTX_PROPERTY_STRING_INDEX 3
99
1.41M
#define OSSL_LIB_CTX_NAMEMAP_INDEX 4
100
0
#define OSSL_LIB_CTX_DRBG_INDEX 5
101
0
#define OSSL_LIB_CTX_DRBG_NONCE_INDEX 6
102
/* slot 7 unused, was CRNG test data and can be reused */
103
/*
104
 * slot 8 unused, was OSSL_LIB_CTX_THREAD_EVENT_HANDLER_INDEX
105
 */
106
#define OSSL_LIB_CTX_FIPS_PROV_INDEX 9
107
8
#define OSSL_LIB_CTX_ENCODER_STORE_INDEX 10
108
8
#define OSSL_LIB_CTX_DECODER_STORE_INDEX 11
109
0
#define OSSL_LIB_CTX_SELF_TEST_CB_INDEX 12
110
#define OSSL_LIB_CTX_BIO_PROV_INDEX 13
111
408
#define OSSL_LIB_CTX_GLOBAL_PROPERTIES 14
112
8
#define OSSL_LIB_CTX_STORE_LOADER_STORE_INDEX 15
113
0
#define OSSL_LIB_CTX_PROVIDER_CONF_INDEX 16
114
2
#define OSSL_LIB_CTX_BIO_CORE_INDEX 17
115
10
#define OSSL_LIB_CTX_CHILD_PROVIDER_INDEX 18
116
4
#define OSSL_LIB_CTX_THREAD_INDEX 19
117
10
#define OSSL_LIB_CTX_DECODER_CACHE_INDEX 20
118
0
#define OSSL_LIB_CTX_COMP_METHODS 21
119
0
#define OSSL_LIB_CTX_INDICATOR_CB_INDEX 22
120
0
#define OSSL_LIB_CTX_SSL_CONF_IMODULE 23
121
#define OSSL_LIB_CTX_MAX_INDEXES 23
122
123
OSSL_LIB_CTX *ossl_lib_ctx_get_concrete(OSSL_LIB_CTX *ctx);
124
int ossl_lib_ctx_is_default(OSSL_LIB_CTX *ctx);
125
int ossl_lib_ctx_is_default_nocreate(OSSL_LIB_CTX *ctx);
126
int ossl_lib_ctx_is_global_default(OSSL_LIB_CTX *ctx);
127
128
/* Functions to retrieve pointers to data by index */
129
void *ossl_lib_ctx_get_data(OSSL_LIB_CTX *, int /* index */);
130
131
void ossl_lib_ctx_default_deinit(void);
132
OSSL_EX_DATA_GLOBAL *ossl_lib_ctx_get_ex_data_global(OSSL_LIB_CTX *ctx);
133
134
const char *ossl_lib_ctx_get_descriptor(OSSL_LIB_CTX *libctx);
135
136
int ossl_crypto_new_ex_data_ex(OSSL_LIB_CTX *ctx, int class_index, void *obj,
137
    CRYPTO_EX_DATA *ad);
138
int ossl_crypto_get_ex_new_index_ex(OSSL_LIB_CTX *ctx, int class_index,
139
    long argl, void *argp,
140
    CRYPTO_EX_new *new_func,
141
    CRYPTO_EX_dup *dup_func,
142
    CRYPTO_EX_free *free_func,
143
    int priority);
144
int ossl_crypto_free_ex_index_ex(OSSL_LIB_CTX *ctx, int class_index, int idx);
145
146
/* Function for simple binary search */
147
148
/* Flags */
149
4
#define OSSL_BSEARCH_VALUE_ON_NOMATCH 0x01
150
8
#define OSSL_BSEARCH_FIRST_VALUE_ON_MATCH 0x02
151
152
const void *ossl_bsearch(const void *key, const void *base, int num,
153
    int size, int (*cmp)(const void *, const void *),
154
    int (*cmp_thunk)(int (*real_cmp_fn)(const void *, const void *), const void *, const void *),
155
    int flags);
156
157
char *ossl_sk_ASN1_UTF8STRING2text(STACK_OF(ASN1_UTF8STRING) *text,
158
    const char *sep, size_t max_len);
159
char *ossl_ipaddr_to_asc(const unsigned char *p, int len);
160
161
char *ossl_buf2hexstr_sep(const unsigned char *buf, long buflen, char sep);
162
unsigned char *ossl_hexstr2buf_sep(const char *str, long *buflen,
163
    const char sep);
164
165
/**
166
 *  Writes |n| value in hex format into |buf|,
167
 *  and returns the number of bytes written
168
 */
169
size_t ossl_to_hex(char *buf, uint8_t n);
170
171
STACK_OF(SSL_COMP) *ossl_load_builtin_compressions(void);
172
void ossl_free_compression_methods_int(STACK_OF(SSL_COMP) *methods);
173
174
#endif