]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/internal/cryptlib.h
NonStop port updates for 3.0.0.
[thirdparty/openssl.git] / include / internal / cryptlib.h
CommitLineData
aa6bb135 1/*
33388b44 2 * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
48f4ad77 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
aa6bb135
RS
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
d02b48c6
RE
8 */
9
ae4186b0
DMSP
10#ifndef OSSL_INTERNAL_CRYPTLIB_H
11# define OSSL_INTERNAL_CRYPTLIB_H
d02b48c6 12
0f113f3e
MC
13# include <stdlib.h>
14# include <string.h>
d02b48c6 15
0f113f3e 16# ifdef OPENSSL_USE_APPLINK
b1132792 17# define BIO_FLAGS_UPLINK_INTERNAL 0x8000
0f113f3e 18# include "ms/uplink.h"
b1132792
BE
19# else
20# define BIO_FLAGS_UPLINK_INTERNAL 0
0f113f3e 21# endif
ea1b02db 22
0f113f3e
MC
23# include <openssl/crypto.h>
24# include <openssl/buffer.h>
25# include <openssl/bio.h>
da42c2a3 26# include <openssl/asn1.h>
0f113f3e 27# include <openssl/err.h>
677963e5 28# include "internal/nelem.h"
d02b48c6 29
67dc995e
MC
30#ifdef NDEBUG
31# define ossl_assert(x) ((x) != 0)
32#else
33__owur static ossl_inline int ossl_assert_int(int expr, const char *exprstr,
34 const char *file, int line)
35{
36 if (!expr)
37 OPENSSL_die(exprstr, file, line);
38
39 return expr;
40}
41
42# define ossl_assert(x) ossl_assert_int((x) != 0, "Assertion failed: "#x, \
43 __FILE__, __LINE__)
44
45#endif
46
39147079
P
47/*
48 * Use this inside a union with the field that needs to be aligned to a
49 * reasonable boundary for the platform. The most pessimistic alignment
50 * of the listed types will be used by the compiler.
51 */
52# define OSSL_UNION_ALIGN \
53 double align; \
54 ossl_uintmax_t align_int; \
55 void *align_ptr
56
4a1f3f27 57typedef struct ex_callback_st EX_CALLBACK;
4a1f3f27
DSH
58DEFINE_STACK_OF(EX_CALLBACK)
59
e6b5c341 60typedef struct mem_st MEM;
89d6aa10 61DEFINE_LHASH_OF(MEM);
4a1f3f27 62
198c42f5
P
63# define OPENSSL_CONF "openssl.cnf"
64
0f113f3e
MC
65# ifndef OPENSSL_SYS_VMS
66# define X509_CERT_AREA OPENSSLDIR
67# define X509_CERT_DIR OPENSSLDIR "/certs"
68# define X509_CERT_FILE OPENSSLDIR "/cert.pem"
69# define X509_PRIVATE_DIR OPENSSLDIR "/private"
98d8ddd2 70# define CTLOG_FILE OPENSSLDIR "/ct_log_list.cnf"
0f113f3e 71# else
d17d3293 72# define X509_CERT_AREA "OSSL$DATAROOT:[000000]"
a90f8d76
RL
73# define X509_CERT_DIR "OSSL$DATAROOT:[CERTS]"
74# define X509_CERT_FILE "OSSL$DATAROOT:[000000]cert.pem"
75# define X509_PRIVATE_DIR "OSSL$DATAROOT:[PRIVATE]"
76# define CTLOG_FILE "OSSL$DATAROOT:[000000]ct_log_list.cnf"
0f113f3e 77# endif
d02b48c6 78
0f113f3e
MC
79# define X509_CERT_DIR_EVP "SSL_CERT_DIR"
80# define X509_CERT_FILE_EVP "SSL_CERT_FILE"
8c6afbc5 81# define CTLOG_FILE_EVP "CTLOG_FILE"
d02b48c6 82
54a656ef 83/* size of string representations */
0f113f3e
MC
84# define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1)
85# define HEX_SIZE(type) (sizeof(type)*2)
54a656ef 86
2b247cf8 87void OPENSSL_cpuid_setup(void);
24fd8541
BE
88#if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
89 defined(__x86_64) || defined(__x86_64__) || \
90 defined(_M_AMD64) || defined(_M_X64)
e303f55f 91extern unsigned int OPENSSL_ia32cap_P[];
24fd8541 92#endif
0f113f3e 93void OPENSSL_showfatal(const char *fmta, ...);
1aedc35f
MC
94int do_ex_data_init(OPENSSL_CTX *ctx);
95void crypto_cleanup_all_ex_data_int(OPENSSL_CTX *ctx);
2915fe19 96int openssl_init_fork_handlers(void);
84952925 97int openssl_get_fork_id(void);
2b247cf8 98
5c39a55d
P
99char *ossl_safe_getenv(const char *name);
100
0e598a3d 101extern CRYPTO_RWLOCK *memdbg_lock;
7d37818d 102int openssl_strerror_r(int errnum, char *buf, size_t buflen);
09487816
AP
103# if !defined(OPENSSL_NO_STDIO)
104FILE *openssl_fopen(const char *filename, const char *mode);
105# else
106void *openssl_fopen(const char *filename, const char *mode);
107# endif
7d37818d 108
360fc9f4 109uint32_t OPENSSL_rdtsc(void);
c8f37048
BE
110size_t OPENSSL_instrument_bus(unsigned int *, size_t);
111size_t OPENSSL_instrument_bus2(unsigned int *, size_t, size_t);
d807db26 112
1aedc35f
MC
113/* ex_data structures */
114
115/*
116 * Each structure type (sometimes called a class), that supports
117 * exdata has a stack of callbacks for each instance.
118 */
119struct ex_callback_st {
120 long argl; /* Arbitrary long */
121 void *argp; /* Arbitrary void * */
122 CRYPTO_EX_new *new_func;
123 CRYPTO_EX_free *free_func;
124 CRYPTO_EX_dup *dup_func;
125};
126
127/*
128 * The state for each class. This could just be a typedef, but
129 * a structure allows future changes.
130 */
131typedef struct ex_callbacks_st {
132 STACK_OF(EX_CALLBACK) *meth;
133} EX_CALLBACKS;
134
135typedef struct ossl_ex_data_global_st {
136 CRYPTO_RWLOCK *ex_data_lock;
137 EX_CALLBACKS ex_data[CRYPTO_EX_INDEX__COUNT];
138} OSSL_EX_DATA_GLOBAL;
139
140
141/* OPENSSL_CTX */
142
143# define OPENSSL_CTX_PROVIDER_STORE_RUN_ONCE_INDEX 0
144# define OPENSSL_CTX_DEFAULT_METHOD_STORE_RUN_ONCE_INDEX 1
145# define OPENSSL_CTX_METHOD_STORE_RUN_ONCE_INDEX 2
146# define OPENSSL_CTX_MAX_RUN_ONCE 3
147
181ea366 148# define OPENSSL_CTX_EVP_METHOD_STORE_INDEX 0
1aedc35f
MC
149# define OPENSSL_CTX_PROVIDER_STORE_INDEX 1
150# define OPENSSL_CTX_PROPERTY_DEFN_INDEX 2
151# define OPENSSL_CTX_PROPERTY_STRING_INDEX 3
f2182a4e 152# define OPENSSL_CTX_NAMEMAP_INDEX 4
da0d114c 153# define OPENSSL_CTX_DRBG_INDEX 5
a2f27fd7
MC
154# define OPENSSL_CTX_DRBG_NONCE_INDEX 6
155# define OPENSSL_CTX_RAND_CRNGT_INDEX 7
e41faf57 156# define OPENSSL_CTX_THREAD_EVENT_HANDLER_INDEX 8
da747958 157# define OPENSSL_CTX_FIPS_PROV_INDEX 9
ece9304c
RL
158# define OPENSSL_CTX_ENCODER_STORE_INDEX 10
159# define OPENSSL_CTX_DECODER_STORE_INDEX 11
c3e4c1f3
RL
160# define OPENSSL_CTX_SELF_TEST_CB_INDEX 12
161# define OPENSSL_CTX_BIO_PROV_INDEX 13
162# define OPENSSL_CTX_GLOBAL_PROPERTIES 14
c4fc564d
RL
163# define OPENSSL_CTX_STORE_LOADER_STORE_INDEX 15
164# define OPENSSL_CTX_MAX_INDEXES 16
b8fe36fe 165
d64b6299 166typedef struct openssl_ctx_method {
1aedc35f 167 void *(*new_func)(OPENSSL_CTX *ctx);
d64b6299
RL
168 void (*free_func)(void *);
169} OPENSSL_CTX_METHOD;
1aedc35f 170
d4c051ce 171OPENSSL_CTX *openssl_ctx_get_concrete(OPENSSL_CTX *ctx);
6b1e5fa4 172int openssl_ctx_is_default(OPENSSL_CTX *ctx);
cfbd76c1 173int openssl_ctx_is_global_default(OPENSSL_CTX *ctx);
d4c051ce 174
d64b6299 175/* Functions to retrieve pointers to data by index */
1aedc35f
MC
176void *openssl_ctx_get_data(OPENSSL_CTX *, int /* index */,
177 const OPENSSL_CTX_METHOD * ctx);
d64b6299 178
1aedc35f
MC
179void openssl_ctx_default_deinit(void);
180OSSL_EX_DATA_GLOBAL *openssl_ctx_get_ex_data_global(OPENSSL_CTX *ctx);
181typedef int (openssl_ctx_run_once_fn)(OPENSSL_CTX *ctx);
182typedef void (openssl_ctx_onfree_fn)(OPENSSL_CTX *ctx);
b8fe36fe
MC
183
184int openssl_ctx_run_once(OPENSSL_CTX *ctx, unsigned int idx,
185 openssl_ctx_run_once_fn run_once_fn);
186int openssl_ctx_onfree(OPENSSL_CTX *ctx, openssl_ctx_onfree_fn onfreefn);
1aedc35f
MC
187
188OPENSSL_CTX *crypto_ex_data_get_openssl_ctx(const CRYPTO_EX_DATA *ad);
189int crypto_new_ex_data_ex(OPENSSL_CTX *ctx, int class_index, void *obj,
190 CRYPTO_EX_DATA *ad);
191int crypto_get_ex_new_index_ex(OPENSSL_CTX *ctx, int class_index,
192 long argl, void *argp,
193 CRYPTO_EX_new *new_func,
194 CRYPTO_EX_dup *dup_func,
195 CRYPTO_EX_free *free_func);
196int crypto_free_ex_index_ex(OPENSSL_CTX *ctx, int class_index, int idx);
5c3f1e34
RL
197
198/* Function for simple binary search */
199
200/* Flags */
201# define OSSL_BSEARCH_VALUE_ON_NOMATCH 0x01
202# define OSSL_BSEARCH_FIRST_VALUE_ON_MATCH 0x02
203
204const void *ossl_bsearch(const void *key, const void *base, int num,
205 int size, int (*cmp) (const void *, const void *),
206 int flags);
207
e8d0819d
DDO
208/* system-specific variants defining ossl_sleep() */
209#ifdef OPENSSL_SYS_UNIX
210# include <unistd.h>
211static ossl_inline void ossl_sleep(unsigned long millis)
212{
213# ifdef OPENSSL_SYS_VXWORKS
214 struct timespec ts;
215 ts.tv_sec = (long int) (millis / 1000);
216 ts.tv_nsec = (long int) (millis % 1000) * 1000000ul;
217 nanosleep(&ts, NULL);
08073700
RB
218# elif defined(__TANDEM) && !defined(_REENTRANT)
219# include <cextdecs.h(PROCESS_DELAY_)>
220 /* HPNS does not support usleep for non threaded apps */
221 PROCESS_DELAY_(millis * 1000);
e8d0819d
DDO
222# else
223 usleep(millis * 1000);
224# endif
225}
226#elif defined(_WIN32)
227# include <windows.h>
228static ossl_inline void ossl_sleep(unsigned long millis)
229{
230 Sleep(millis);
231}
232#else
233/* Fallback to a busy wait */
234static ossl_inline void ossl_sleep(unsigned long millis)
235{
236 struct timeval start, now;
237 unsigned long elapsedms;
238
239 gettimeofday(&start, NULL);
240 do {
241 gettimeofday(&now, NULL);
242 elapsedms = (((now.tv_sec - start.tv_sec) * 1000000)
243 + now.tv_usec - start.tv_usec) / 1000;
244 } while (elapsedms < millis);
245}
246#endif /* defined OPENSSL_SYS_UNIX */
247
da42c2a3
DDO
248char *sk_ASN1_UTF8STRING2text(STACK_OF(ASN1_UTF8STRING) *text, const char *sep,
249 size_t max_len);
278260bf 250char *ipaddr_to_asc(unsigned char *p, int len);
e8d0819d 251
f32af93c
SL
252char *openssl_buf2hexstr_sep(const unsigned char *buf, long buflen, char sep);
253unsigned char *openssl_hexstr2buf_sep(const char *str, long *buflen,
254 const char sep);
255
d02b48c6 256#endif