1 | /*
|
---|
2 | * Copyright 1995-2021 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 | # include <stdlib.h>
|
---|
15 | # include <string.h>
|
---|
16 |
|
---|
17 | # ifdef OPENSSL_USE_APPLINK
|
---|
18 | # define BIO_FLAGS_UPLINK_INTERNAL 0x8000
|
---|
19 | # include "ms/uplink.h"
|
---|
20 | # else
|
---|
21 | # define BIO_FLAGS_UPLINK_INTERNAL 0
|
---|
22 | # endif
|
---|
23 |
|
---|
24 | # include <openssl/crypto.h>
|
---|
25 | # include <openssl/buffer.h>
|
---|
26 | # include <openssl/bio.h>
|
---|
27 | # include <openssl/asn1.h>
|
---|
28 | # include <openssl/err.h>
|
---|
29 | # include "internal/nelem.h"
|
---|
30 |
|
---|
31 | #ifdef NDEBUG
|
---|
32 | # define ossl_assert(x) ((x) != 0)
|
---|
33 | #else
|
---|
34 | __owur static ossl_inline int ossl_assert_int(int expr, const char *exprstr,
|
---|
35 | const char *file, int line)
|
---|
36 | {
|
---|
37 | if (!expr)
|
---|
38 | OPENSSL_die(exprstr, file, line);
|
---|
39 |
|
---|
40 | return expr;
|
---|
41 | }
|
---|
42 |
|
---|
43 | # define ossl_assert(x) ossl_assert_int((x) != 0, "Assertion failed: "#x, \
|
---|
44 | __FILE__, __LINE__)
|
---|
45 |
|
---|
46 | #endif
|
---|
47 |
|
---|
48 | /*
|
---|
49 | * Use this inside a union with the field that needs to be aligned to a
|
---|
50 | * reasonable boundary for the platform. The most pessimistic alignment
|
---|
51 | * of the listed types will be used by the compiler.
|
---|
52 | */
|
---|
53 | # define OSSL_UNION_ALIGN \
|
---|
54 | double align; \
|
---|
55 | ossl_uintmax_t align_int; \
|
---|
56 | void *align_ptr
|
---|
57 |
|
---|
58 | typedef struct ex_callback_st EX_CALLBACK;
|
---|
59 | DEFINE_STACK_OF(EX_CALLBACK)
|
---|
60 |
|
---|
61 | typedef struct mem_st MEM;
|
---|
62 | DEFINE_LHASH_OF(MEM);
|
---|
63 |
|
---|
64 | #define OPENSSLDIR "/usr/local/ssl"
|
---|
65 |
|
---|
66 | # define OPENSSL_CONF "openssl.cnf"
|
---|
67 |
|
---|
68 | # ifndef OPENSSL_SYS_VMS
|
---|
69 | # define X509_CERT_AREA OPENSSLDIR
|
---|
70 | # define X509_CERT_DIR OPENSSLDIR "/certs"
|
---|
71 | # define X509_CERT_FILE OPENSSLDIR "/cert.pem"
|
---|
72 | # define X509_PRIVATE_DIR OPENSSLDIR "/private"
|
---|
73 | # define CTLOG_FILE OPENSSLDIR "/ct_log_list.cnf"
|
---|
74 | # else
|
---|
75 | # define X509_CERT_AREA "OSSL$DATAROOT:[000000]"
|
---|
76 | # define X509_CERT_DIR "OSSL$DATAROOT:[CERTS]"
|
---|
77 | # define X509_CERT_FILE "OSSL$DATAROOT:[000000]cert.pem"
|
---|
78 | # define X509_PRIVATE_DIR "OSSL$DATAROOT:[PRIVATE]"
|
---|
79 | # define CTLOG_FILE "OSSL$DATAROOT:[000000]ct_log_list.cnf"
|
---|
80 | # endif
|
---|
81 |
|
---|
82 | # define X509_CERT_DIR_EVP "SSL_CERT_DIR"
|
---|
83 | # define X509_CERT_FILE_EVP "SSL_CERT_FILE"
|
---|
84 | # define CTLOG_FILE_EVP "CTLOG_FILE"
|
---|
85 |
|
---|
86 | /* size of string representations */
|
---|
87 | # define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1)
|
---|
88 | # define HEX_SIZE(type) (sizeof(type)*2)
|
---|
89 |
|
---|
90 | void OPENSSL_cpuid_setup(void);
|
---|
91 | #if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
|
---|
92 | defined(__x86_64) || defined(__x86_64__) || \
|
---|
93 | defined(_M_AMD64) || defined(_M_X64)
|
---|
94 | extern unsigned int OPENSSL_ia32cap_P[];
|
---|
95 | #endif
|
---|
96 | void OPENSSL_showfatal(const char *fmta, ...);
|
---|
97 | int ossl_do_ex_data_init(OSSL_LIB_CTX *ctx);
|
---|
98 | void ossl_crypto_cleanup_all_ex_data_int(OSSL_LIB_CTX *ctx);
|
---|
99 | int openssl_init_fork_handlers(void);
|
---|
100 | int openssl_get_fork_id(void);
|
---|
101 |
|
---|
102 | char *ossl_safe_getenv(const char *name);
|
---|
103 |
|
---|
104 | extern CRYPTO_RWLOCK *memdbg_lock;
|
---|
105 | int openssl_strerror_r(int errnum, char *buf, size_t buflen);
|
---|
106 | # if !defined(OPENSSL_NO_STDIO)
|
---|
107 | FILE *openssl_fopen(const char *filename, const char *mode);
|
---|
108 | # else
|
---|
109 | void *openssl_fopen(const char *filename, const char *mode);
|
---|
110 | # endif
|
---|
111 |
|
---|
112 | uint32_t OPENSSL_rdtsc(void);
|
---|
113 | size_t OPENSSL_instrument_bus(unsigned int *, size_t);
|
---|
114 | size_t OPENSSL_instrument_bus2(unsigned int *, size_t, size_t);
|
---|
115 |
|
---|
116 | /* ex_data structures */
|
---|
117 |
|
---|
118 | /*
|
---|
119 | * Each structure type (sometimes called a class), that supports
|
---|
120 | * exdata has a stack of callbacks for each instance.
|
---|
121 | */
|
---|
122 | struct ex_callback_st {
|
---|
123 | long argl; /* Arbitrary long */
|
---|
124 | void *argp; /* Arbitrary void * */
|
---|
125 | int priority; /* Priority ordering for freeing */
|
---|
126 | CRYPTO_EX_new *new_func;
|
---|
127 | CRYPTO_EX_free *free_func;
|
---|
128 | CRYPTO_EX_dup *dup_func;
|
---|
129 | };
|
---|
130 |
|
---|
131 | /*
|
---|
132 | * The state for each class. This could just be a typedef, but
|
---|
133 | * a structure allows future changes.
|
---|
134 | */
|
---|
135 | typedef struct ex_callbacks_st {
|
---|
136 | STACK_OF(EX_CALLBACK) *meth;
|
---|
137 | } EX_CALLBACKS;
|
---|
138 |
|
---|
139 | typedef struct ossl_ex_data_global_st {
|
---|
140 | CRYPTO_RWLOCK *ex_data_lock;
|
---|
141 | EX_CALLBACKS ex_data[CRYPTO_EX_INDEX__COUNT];
|
---|
142 | } OSSL_EX_DATA_GLOBAL;
|
---|
143 |
|
---|
144 |
|
---|
145 | /* OSSL_LIB_CTX */
|
---|
146 |
|
---|
147 | # define OSSL_LIB_CTX_PROVIDER_STORE_RUN_ONCE_INDEX 0
|
---|
148 | # define OSSL_LIB_CTX_DEFAULT_METHOD_STORE_RUN_ONCE_INDEX 1
|
---|
149 | # define OSSL_LIB_CTX_METHOD_STORE_RUN_ONCE_INDEX 2
|
---|
150 | # define OSSL_LIB_CTX_MAX_RUN_ONCE 3
|
---|
151 |
|
---|
152 | # define OSSL_LIB_CTX_EVP_METHOD_STORE_INDEX 0
|
---|
153 | # define OSSL_LIB_CTX_PROVIDER_STORE_INDEX 1
|
---|
154 | # define OSSL_LIB_CTX_PROPERTY_DEFN_INDEX 2
|
---|
155 | # define OSSL_LIB_CTX_PROPERTY_STRING_INDEX 3
|
---|
156 | # define OSSL_LIB_CTX_NAMEMAP_INDEX 4
|
---|
157 | # define OSSL_LIB_CTX_DRBG_INDEX 5
|
---|
158 | # define OSSL_LIB_CTX_DRBG_NONCE_INDEX 6
|
---|
159 | # define OSSL_LIB_CTX_RAND_CRNGT_INDEX 7
|
---|
160 | # ifdef FIPS_MODULE
|
---|
161 | # define OSSL_LIB_CTX_THREAD_EVENT_HANDLER_INDEX 8
|
---|
162 | # endif
|
---|
163 | # define OSSL_LIB_CTX_FIPS_PROV_INDEX 9
|
---|
164 | # define OSSL_LIB_CTX_ENCODER_STORE_INDEX 10
|
---|
165 | # define OSSL_LIB_CTX_DECODER_STORE_INDEX 11
|
---|
166 | # define OSSL_LIB_CTX_SELF_TEST_CB_INDEX 12
|
---|
167 | # define OSSL_LIB_CTX_BIO_PROV_INDEX 13
|
---|
168 | # define OSSL_LIB_CTX_GLOBAL_PROPERTIES 14
|
---|
169 | # define OSSL_LIB_CTX_STORE_LOADER_STORE_INDEX 15
|
---|
170 | # define OSSL_LIB_CTX_PROVIDER_CONF_INDEX 16
|
---|
171 | # define OSSL_LIB_CTX_BIO_CORE_INDEX 17
|
---|
172 | # define OSSL_LIB_CTX_CHILD_PROVIDER_INDEX 18
|
---|
173 | # define OSSL_LIB_CTX_MAX_INDEXES 19
|
---|
174 |
|
---|
175 | # define OSSL_LIB_CTX_METHOD_LOW_PRIORITY -1
|
---|
176 | # define OSSL_LIB_CTX_METHOD_DEFAULT_PRIORITY 0
|
---|
177 | # define OSSL_LIB_CTX_METHOD_PRIORITY_1 1
|
---|
178 | # define OSSL_LIB_CTX_METHOD_PRIORITY_2 2
|
---|
179 |
|
---|
180 | typedef struct ossl_lib_ctx_method {
|
---|
181 | int priority;
|
---|
182 | void *(*new_func)(OSSL_LIB_CTX *ctx);
|
---|
183 | void (*free_func)(void *);
|
---|
184 | } OSSL_LIB_CTX_METHOD;
|
---|
185 |
|
---|
186 | OSSL_LIB_CTX *ossl_lib_ctx_get_concrete(OSSL_LIB_CTX *ctx);
|
---|
187 | int ossl_lib_ctx_is_default(OSSL_LIB_CTX *ctx);
|
---|
188 | int ossl_lib_ctx_is_global_default(OSSL_LIB_CTX *ctx);
|
---|
189 |
|
---|
190 | /* Functions to retrieve pointers to data by index */
|
---|
191 | void *ossl_lib_ctx_get_data(OSSL_LIB_CTX *, int /* index */,
|
---|
192 | const OSSL_LIB_CTX_METHOD * ctx);
|
---|
193 |
|
---|
194 | void ossl_lib_ctx_default_deinit(void);
|
---|
195 | OSSL_EX_DATA_GLOBAL *ossl_lib_ctx_get_ex_data_global(OSSL_LIB_CTX *ctx);
|
---|
196 | typedef int (ossl_lib_ctx_run_once_fn)(OSSL_LIB_CTX *ctx);
|
---|
197 | typedef void (ossl_lib_ctx_onfree_fn)(OSSL_LIB_CTX *ctx);
|
---|
198 |
|
---|
199 | int ossl_lib_ctx_run_once(OSSL_LIB_CTX *ctx, unsigned int idx,
|
---|
200 | ossl_lib_ctx_run_once_fn run_once_fn);
|
---|
201 | int ossl_lib_ctx_onfree(OSSL_LIB_CTX *ctx, ossl_lib_ctx_onfree_fn onfreefn);
|
---|
202 | const char *ossl_lib_ctx_get_descriptor(OSSL_LIB_CTX *libctx);
|
---|
203 |
|
---|
204 | OSSL_LIB_CTX *ossl_crypto_ex_data_get_ossl_lib_ctx(const CRYPTO_EX_DATA *ad);
|
---|
205 | int ossl_crypto_new_ex_data_ex(OSSL_LIB_CTX *ctx, int class_index, void *obj,
|
---|
206 | CRYPTO_EX_DATA *ad);
|
---|
207 | int ossl_crypto_get_ex_new_index_ex(OSSL_LIB_CTX *ctx, int class_index,
|
---|
208 | long argl, void *argp,
|
---|
209 | CRYPTO_EX_new *new_func,
|
---|
210 | CRYPTO_EX_dup *dup_func,
|
---|
211 | CRYPTO_EX_free *free_func,
|
---|
212 | int priority);
|
---|
213 | int ossl_crypto_free_ex_index_ex(OSSL_LIB_CTX *ctx, int class_index, int idx);
|
---|
214 |
|
---|
215 | /* Function for simple binary search */
|
---|
216 |
|
---|
217 | /* Flags */
|
---|
218 | # define OSSL_BSEARCH_VALUE_ON_NOMATCH 0x01
|
---|
219 | # define OSSL_BSEARCH_FIRST_VALUE_ON_MATCH 0x02
|
---|
220 |
|
---|
221 | const void *ossl_bsearch(const void *key, const void *base, int num,
|
---|
222 | int size, int (*cmp) (const void *, const void *),
|
---|
223 | int flags);
|
---|
224 |
|
---|
225 | char *ossl_sk_ASN1_UTF8STRING2text(STACK_OF(ASN1_UTF8STRING) *text,
|
---|
226 | const char *sep, size_t max_len);
|
---|
227 | char *ossl_ipaddr_to_asc(unsigned char *p, int len);
|
---|
228 |
|
---|
229 | char *ossl_buf2hexstr_sep(const unsigned char *buf, long buflen, char sep);
|
---|
230 | unsigned char *ossl_hexstr2buf_sep(const char *str, long *buflen,
|
---|
231 | const char sep);
|
---|
232 |
|
---|
233 | static ossl_inline int ossl_ends_with_dirsep(const char *path)
|
---|
234 | {
|
---|
235 | if (*path != '\0')
|
---|
236 | path += strlen(path) - 1;
|
---|
237 | # if defined __VMS
|
---|
238 | if (*path == ']' || *path == '>' || *path == ':')
|
---|
239 | return 1;
|
---|
240 | # elif defined _WIN32
|
---|
241 | if (*path == '\\')
|
---|
242 | return 1;
|
---|
243 | # endif
|
---|
244 | return *path == '/';
|
---|
245 | }
|
---|
246 |
|
---|
247 | static ossl_inline int ossl_is_absolute_path(const char *path)
|
---|
248 | {
|
---|
249 | # if defined __VMS
|
---|
250 | if (strchr(path, ':') != NULL
|
---|
251 | || ((path[0] == '[' || path[0] == '<')
|
---|
252 | && path[1] != '.' && path[1] != '-'
|
---|
253 | && path[1] != ']' && path[1] != '>'))
|
---|
254 | return 1;
|
---|
255 | # elif defined _WIN32
|
---|
256 | if (path[0] == '\\'
|
---|
257 | || (path[0] != '\0' && path[1] == ':'))
|
---|
258 | return 1;
|
---|
259 | # endif
|
---|
260 | return path[0] == '/';
|
---|
261 | }
|
---|
262 |
|
---|
263 | #endif
|
---|