]> git.ipfire.org Git - thirdparty/openssl.git/blob - include/internal/cryptlib.h
Rename OSSL_SERIALIZER / OSSL_DESERIALIZER to OSSL_ENCODE / OSSL_DECODE
[thirdparty/openssl.git] / include / internal / cryptlib.h
1 /*
2 * Copyright 1995-2020 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
13 # include <stdlib.h>
14 # include <string.h>
15
16 # ifdef OPENSSL_USE_APPLINK
17 # define BIO_FLAGS_UPLINK_INTERNAL 0x8000
18 # include "ms/uplink.h"
19 # else
20 # define BIO_FLAGS_UPLINK_INTERNAL 0
21 # endif
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 # include "internal/nelem.h"
29
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
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
57 typedef struct ex_callback_st EX_CALLBACK;
58 DEFINE_STACK_OF(EX_CALLBACK)
59
60 typedef struct mem_st MEM;
61 DEFINE_LHASH_OF(MEM);
62
63 # define OPENSSL_CONF "openssl.cnf"
64
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"
70 # define CTLOG_FILE OPENSSLDIR "/ct_log_list.cnf"
71 # else
72 # define X509_CERT_AREA "OSSL$DATAROOT:[000000]"
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"
77 # endif
78
79 # define X509_CERT_DIR_EVP "SSL_CERT_DIR"
80 # define X509_CERT_FILE_EVP "SSL_CERT_FILE"
81 # define CTLOG_FILE_EVP "CTLOG_FILE"
82
83 /* size of string representations */
84 # define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1)
85 # define HEX_SIZE(type) (sizeof(type)*2)
86
87 void OPENSSL_cpuid_setup(void);
88 #if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
89 defined(__x86_64) || defined(__x86_64__) || \
90 defined(_M_AMD64) || defined(_M_X64)
91 extern unsigned int OPENSSL_ia32cap_P[];
92 #endif
93 void OPENSSL_showfatal(const char *fmta, ...);
94 int do_ex_data_init(OPENSSL_CTX *ctx);
95 void crypto_cleanup_all_ex_data_int(OPENSSL_CTX *ctx);
96 int openssl_init_fork_handlers(void);
97 int openssl_get_fork_id(void);
98
99 char *ossl_safe_getenv(const char *name);
100
101 extern CRYPTO_RWLOCK *memdbg_lock;
102 int openssl_strerror_r(int errnum, char *buf, size_t buflen);
103 # if !defined(OPENSSL_NO_STDIO)
104 FILE *openssl_fopen(const char *filename, const char *mode);
105 # else
106 void *openssl_fopen(const char *filename, const char *mode);
107 # endif
108
109 uint32_t OPENSSL_rdtsc(void);
110 size_t OPENSSL_instrument_bus(unsigned int *, size_t);
111 size_t OPENSSL_instrument_bus2(unsigned int *, size_t, size_t);
112
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 */
119 struct 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 */
131 typedef struct ex_callbacks_st {
132 STACK_OF(EX_CALLBACK) *meth;
133 } EX_CALLBACKS;
134
135 typedef 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
148 # define OPENSSL_CTX_EVP_METHOD_STORE_INDEX 0
149 # define OPENSSL_CTX_PROVIDER_STORE_INDEX 1
150 # define OPENSSL_CTX_PROPERTY_DEFN_INDEX 2
151 # define OPENSSL_CTX_PROPERTY_STRING_INDEX 3
152 # define OPENSSL_CTX_NAMEMAP_INDEX 4
153 # define OPENSSL_CTX_DRBG_INDEX 5
154 # define OPENSSL_CTX_DRBG_NONCE_INDEX 6
155 # define OPENSSL_CTX_RAND_CRNGT_INDEX 7
156 # define OPENSSL_CTX_THREAD_EVENT_HANDLER_INDEX 8
157 # define OPENSSL_CTX_FIPS_PROV_INDEX 9
158 # define OPENSSL_CTX_ENCODER_STORE_INDEX 10
159 # define OPENSSL_CTX_DECODER_STORE_INDEX 11
160 # define OPENSSL_CTX_SELF_TEST_CB_INDEX 12
161 # define OPENSSL_CTX_BIO_PROV_INDEX 13
162 # define OPENSSL_CTX_GLOBAL_PROPERTIES 14
163 # define OPENSSL_CTX_MAX_INDEXES 15
164
165 typedef struct openssl_ctx_method {
166 void *(*new_func)(OPENSSL_CTX *ctx);
167 void (*free_func)(void *);
168 } OPENSSL_CTX_METHOD;
169
170 OPENSSL_CTX *openssl_ctx_get_concrete(OPENSSL_CTX *ctx);
171 int openssl_ctx_is_default(OPENSSL_CTX *ctx);
172 int openssl_ctx_is_global_default(OPENSSL_CTX *ctx);
173
174 /* Functions to retrieve pointers to data by index */
175 void *openssl_ctx_get_data(OPENSSL_CTX *, int /* index */,
176 const OPENSSL_CTX_METHOD * ctx);
177
178 void openssl_ctx_default_deinit(void);
179 OSSL_EX_DATA_GLOBAL *openssl_ctx_get_ex_data_global(OPENSSL_CTX *ctx);
180 typedef int (openssl_ctx_run_once_fn)(OPENSSL_CTX *ctx);
181 typedef void (openssl_ctx_onfree_fn)(OPENSSL_CTX *ctx);
182
183 int openssl_ctx_run_once(OPENSSL_CTX *ctx, unsigned int idx,
184 openssl_ctx_run_once_fn run_once_fn);
185 int openssl_ctx_onfree(OPENSSL_CTX *ctx, openssl_ctx_onfree_fn onfreefn);
186
187 OPENSSL_CTX *crypto_ex_data_get_openssl_ctx(const CRYPTO_EX_DATA *ad);
188 int crypto_new_ex_data_ex(OPENSSL_CTX *ctx, int class_index, void *obj,
189 CRYPTO_EX_DATA *ad);
190 int crypto_get_ex_new_index_ex(OPENSSL_CTX *ctx, int class_index,
191 long argl, void *argp,
192 CRYPTO_EX_new *new_func,
193 CRYPTO_EX_dup *dup_func,
194 CRYPTO_EX_free *free_func);
195 int crypto_free_ex_index_ex(OPENSSL_CTX *ctx, int class_index, int idx);
196
197 /* Function for simple binary search */
198
199 /* Flags */
200 # define OSSL_BSEARCH_VALUE_ON_NOMATCH 0x01
201 # define OSSL_BSEARCH_FIRST_VALUE_ON_MATCH 0x02
202
203 const void *ossl_bsearch(const void *key, const void *base, int num,
204 int size, int (*cmp) (const void *, const void *),
205 int flags);
206
207 /* system-specific variants defining ossl_sleep() */
208 #ifdef OPENSSL_SYS_UNIX
209 # include <unistd.h>
210 static ossl_inline void ossl_sleep(unsigned long millis)
211 {
212 # ifdef OPENSSL_SYS_VXWORKS
213 struct timespec ts;
214 ts.tv_sec = (long int) (millis / 1000);
215 ts.tv_nsec = (long int) (millis % 1000) * 1000000ul;
216 nanosleep(&ts, NULL);
217 # else
218 usleep(millis * 1000);
219 # endif
220 }
221 #elif defined(_WIN32)
222 # include <windows.h>
223 static ossl_inline void ossl_sleep(unsigned long millis)
224 {
225 Sleep(millis);
226 }
227 #else
228 /* Fallback to a busy wait */
229 static ossl_inline void ossl_sleep(unsigned long millis)
230 {
231 struct timeval start, now;
232 unsigned long elapsedms;
233
234 gettimeofday(&start, NULL);
235 do {
236 gettimeofday(&now, NULL);
237 elapsedms = (((now.tv_sec - start.tv_sec) * 1000000)
238 + now.tv_usec - start.tv_usec) / 1000;
239 } while (elapsedms < millis);
240 }
241 #endif /* defined OPENSSL_SYS_UNIX */
242
243 char *sk_ASN1_UTF8STRING2text(STACK_OF(ASN1_UTF8STRING) *text, const char *sep,
244 size_t max_len);
245 char *ipaddr_to_asc(unsigned char *p, int len);
246
247 char *openssl_buf2hexstr_sep(const unsigned char *buf, long buflen, char sep);
248 unsigned char *openssl_hexstr2buf_sep(const char *str, long *buflen,
249 const char sep);
250
251 #endif