/src/openssl/crypto/err/err.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* crypto/err/err.c */ |
2 | | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | | * All rights reserved. |
4 | | * |
5 | | * This package is an SSL implementation written |
6 | | * by Eric Young (eay@cryptsoft.com). |
7 | | * The implementation was written so as to conform with Netscapes SSL. |
8 | | * |
9 | | * This library is free for commercial and non-commercial use as long as |
10 | | * the following conditions are aheared to. The following conditions |
11 | | * apply to all code found in this distribution, be it the RC4, RSA, |
12 | | * lhash, DES, etc., code; not just the SSL code. The SSL documentation |
13 | | * included with this distribution is covered by the same copyright terms |
14 | | * except that the holder is Tim Hudson (tjh@cryptsoft.com). |
15 | | * |
16 | | * Copyright remains Eric Young's, and as such any Copyright notices in |
17 | | * the code are not to be removed. |
18 | | * If this package is used in a product, Eric Young should be given attribution |
19 | | * as the author of the parts of the library used. |
20 | | * This can be in the form of a textual message at program startup or |
21 | | * in documentation (online or textual) provided with the package. |
22 | | * |
23 | | * Redistribution and use in source and binary forms, with or without |
24 | | * modification, are permitted provided that the following conditions |
25 | | * are met: |
26 | | * 1. Redistributions of source code must retain the copyright |
27 | | * notice, this list of conditions and the following disclaimer. |
28 | | * 2. Redistributions in binary form must reproduce the above copyright |
29 | | * notice, this list of conditions and the following disclaimer in the |
30 | | * documentation and/or other materials provided with the distribution. |
31 | | * 3. All advertising materials mentioning features or use of this software |
32 | | * must display the following acknowledgement: |
33 | | * "This product includes cryptographic software written by |
34 | | * Eric Young (eay@cryptsoft.com)" |
35 | | * The word 'cryptographic' can be left out if the rouines from the library |
36 | | * being used are not cryptographic related :-). |
37 | | * 4. If you include any Windows specific code (or a derivative thereof) from |
38 | | * the apps directory (application code) you must include an acknowledgement: |
39 | | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
40 | | * |
41 | | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND |
42 | | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
43 | | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
44 | | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
45 | | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
46 | | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
47 | | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
48 | | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
49 | | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
50 | | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
51 | | * SUCH DAMAGE. |
52 | | * |
53 | | * The licence and distribution terms for any publically available version or |
54 | | * derivative of this code cannot be changed. i.e. this code cannot simply be |
55 | | * copied and put under another distribution licence |
56 | | * [including the GNU Public Licence.] |
57 | | */ |
58 | | /* ==================================================================== |
59 | | * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. |
60 | | * |
61 | | * Redistribution and use in source and binary forms, with or without |
62 | | * modification, are permitted provided that the following conditions |
63 | | * are met: |
64 | | * |
65 | | * 1. Redistributions of source code must retain the above copyright |
66 | | * notice, this list of conditions and the following disclaimer. |
67 | | * |
68 | | * 2. Redistributions in binary form must reproduce the above copyright |
69 | | * notice, this list of conditions and the following disclaimer in |
70 | | * the documentation and/or other materials provided with the |
71 | | * distribution. |
72 | | * |
73 | | * 3. All advertising materials mentioning features or use of this |
74 | | * software must display the following acknowledgment: |
75 | | * "This product includes software developed by the OpenSSL Project |
76 | | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" |
77 | | * |
78 | | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to |
79 | | * endorse or promote products derived from this software without |
80 | | * prior written permission. For written permission, please contact |
81 | | * openssl-core@openssl.org. |
82 | | * |
83 | | * 5. Products derived from this software may not be called "OpenSSL" |
84 | | * nor may "OpenSSL" appear in their names without prior written |
85 | | * permission of the OpenSSL Project. |
86 | | * |
87 | | * 6. Redistributions of any form whatsoever must retain the following |
88 | | * acknowledgment: |
89 | | * "This product includes software developed by the OpenSSL Project |
90 | | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" |
91 | | * |
92 | | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY |
93 | | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
94 | | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
95 | | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR |
96 | | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
97 | | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
98 | | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
99 | | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
100 | | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
101 | | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
102 | | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
103 | | * OF THE POSSIBILITY OF SUCH DAMAGE. |
104 | | * ==================================================================== |
105 | | * |
106 | | * This product includes cryptographic software written by Eric Young |
107 | | * (eay@cryptsoft.com). This product includes software written by Tim |
108 | | * Hudson (tjh@cryptsoft.com). |
109 | | * |
110 | | */ |
111 | | |
112 | | #include <stdio.h> |
113 | | #include <stdarg.h> |
114 | | #include <string.h> |
115 | | #include "cryptlib.h" |
116 | | #include <openssl/lhash.h> |
117 | | #include <openssl/crypto.h> |
118 | | #include <openssl/buffer.h> |
119 | | #include <openssl/bio.h> |
120 | | #include <openssl/err.h> |
121 | | |
122 | | DECLARE_LHASH_OF(ERR_STRING_DATA); |
123 | | DECLARE_LHASH_OF(ERR_STATE); |
124 | | |
125 | | static void err_load_strings(int lib, ERR_STRING_DATA *str); |
126 | | |
127 | | static void ERR_STATE_free(ERR_STATE *s); |
128 | | #ifndef OPENSSL_NO_ERR |
129 | | static ERR_STRING_DATA ERR_str_libraries[] = { |
130 | | {ERR_PACK(ERR_LIB_NONE, 0, 0), "unknown library"}, |
131 | | {ERR_PACK(ERR_LIB_SYS, 0, 0), "system library"}, |
132 | | {ERR_PACK(ERR_LIB_BN, 0, 0), "bignum routines"}, |
133 | | {ERR_PACK(ERR_LIB_RSA, 0, 0), "rsa routines"}, |
134 | | {ERR_PACK(ERR_LIB_DH, 0, 0), "Diffie-Hellman routines"}, |
135 | | {ERR_PACK(ERR_LIB_EVP, 0, 0), "digital envelope routines"}, |
136 | | {ERR_PACK(ERR_LIB_BUF, 0, 0), "memory buffer routines"}, |
137 | | {ERR_PACK(ERR_LIB_OBJ, 0, 0), "object identifier routines"}, |
138 | | {ERR_PACK(ERR_LIB_PEM, 0, 0), "PEM routines"}, |
139 | | {ERR_PACK(ERR_LIB_DSA, 0, 0), "dsa routines"}, |
140 | | {ERR_PACK(ERR_LIB_X509, 0, 0), "x509 certificate routines"}, |
141 | | {ERR_PACK(ERR_LIB_ASN1, 0, 0), "asn1 encoding routines"}, |
142 | | {ERR_PACK(ERR_LIB_CONF, 0, 0), "configuration file routines"}, |
143 | | {ERR_PACK(ERR_LIB_CRYPTO, 0, 0), "common libcrypto routines"}, |
144 | | {ERR_PACK(ERR_LIB_EC, 0, 0), "elliptic curve routines"}, |
145 | | {ERR_PACK(ERR_LIB_SSL, 0, 0), "SSL routines"}, |
146 | | {ERR_PACK(ERR_LIB_BIO, 0, 0), "BIO routines"}, |
147 | | {ERR_PACK(ERR_LIB_PKCS7, 0, 0), "PKCS7 routines"}, |
148 | | {ERR_PACK(ERR_LIB_X509V3, 0, 0), "X509 V3 routines"}, |
149 | | {ERR_PACK(ERR_LIB_PKCS12, 0, 0), "PKCS12 routines"}, |
150 | | {ERR_PACK(ERR_LIB_RAND, 0, 0), "random number generator"}, |
151 | | {ERR_PACK(ERR_LIB_DSO, 0, 0), "DSO support routines"}, |
152 | | {ERR_PACK(ERR_LIB_TS, 0, 0), "time stamp routines"}, |
153 | | {ERR_PACK(ERR_LIB_ENGINE, 0, 0), "engine routines"}, |
154 | | {ERR_PACK(ERR_LIB_OCSP, 0, 0), "OCSP routines"}, |
155 | | {ERR_PACK(ERR_LIB_FIPS, 0, 0), "FIPS routines"}, |
156 | | {ERR_PACK(ERR_LIB_CMS, 0, 0), "CMS routines"}, |
157 | | {ERR_PACK(ERR_LIB_HMAC, 0, 0), "HMAC routines"}, |
158 | | {0, NULL}, |
159 | | }; |
160 | | |
161 | | static ERR_STRING_DATA ERR_str_functs[] = { |
162 | | {ERR_PACK(0, SYS_F_FOPEN, 0), "fopen"}, |
163 | | {ERR_PACK(0, SYS_F_CONNECT, 0), "connect"}, |
164 | | {ERR_PACK(0, SYS_F_GETSERVBYNAME, 0), "getservbyname"}, |
165 | | {ERR_PACK(0, SYS_F_SOCKET, 0), "socket"}, |
166 | | {ERR_PACK(0, SYS_F_IOCTLSOCKET, 0), "ioctlsocket"}, |
167 | | {ERR_PACK(0, SYS_F_BIND, 0), "bind"}, |
168 | | {ERR_PACK(0, SYS_F_LISTEN, 0), "listen"}, |
169 | | {ERR_PACK(0, SYS_F_ACCEPT, 0), "accept"}, |
170 | | # ifdef OPENSSL_SYS_WINDOWS |
171 | | {ERR_PACK(0, SYS_F_WSASTARTUP, 0), "WSAstartup"}, |
172 | | # endif |
173 | | {ERR_PACK(0, SYS_F_OPENDIR, 0), "opendir"}, |
174 | | {ERR_PACK(0, SYS_F_FREAD, 0), "fread"}, |
175 | | {ERR_PACK(0, SYS_F_FFLUSH, 0), "fflush"}, |
176 | | {0, NULL}, |
177 | | }; |
178 | | |
179 | | static ERR_STRING_DATA ERR_str_reasons[] = { |
180 | | {ERR_R_SYS_LIB, "system lib"}, |
181 | | {ERR_R_BN_LIB, "BN lib"}, |
182 | | {ERR_R_RSA_LIB, "RSA lib"}, |
183 | | {ERR_R_DH_LIB, "DH lib"}, |
184 | | {ERR_R_EVP_LIB, "EVP lib"}, |
185 | | {ERR_R_BUF_LIB, "BUF lib"}, |
186 | | {ERR_R_OBJ_LIB, "OBJ lib"}, |
187 | | {ERR_R_PEM_LIB, "PEM lib"}, |
188 | | {ERR_R_DSA_LIB, "DSA lib"}, |
189 | | {ERR_R_X509_LIB, "X509 lib"}, |
190 | | {ERR_R_ASN1_LIB, "ASN1 lib"}, |
191 | | {ERR_R_CONF_LIB, "CONF lib"}, |
192 | | {ERR_R_CRYPTO_LIB, "CRYPTO lib"}, |
193 | | {ERR_R_EC_LIB, "EC lib"}, |
194 | | {ERR_R_SSL_LIB, "SSL lib"}, |
195 | | {ERR_R_BIO_LIB, "BIO lib"}, |
196 | | {ERR_R_PKCS7_LIB, "PKCS7 lib"}, |
197 | | {ERR_R_X509V3_LIB, "X509V3 lib"}, |
198 | | {ERR_R_PKCS12_LIB, "PKCS12 lib"}, |
199 | | {ERR_R_RAND_LIB, "RAND lib"}, |
200 | | {ERR_R_DSO_LIB, "DSO lib"}, |
201 | | {ERR_R_ENGINE_LIB, "ENGINE lib"}, |
202 | | {ERR_R_OCSP_LIB, "OCSP lib"}, |
203 | | {ERR_R_TS_LIB, "TS lib"}, |
204 | | |
205 | | {ERR_R_NESTED_ASN1_ERROR, "nested asn1 error"}, |
206 | | {ERR_R_BAD_ASN1_OBJECT_HEADER, "bad asn1 object header"}, |
207 | | {ERR_R_BAD_GET_ASN1_OBJECT_CALL, "bad get asn1 object call"}, |
208 | | {ERR_R_EXPECTING_AN_ASN1_SEQUENCE, "expecting an asn1 sequence"}, |
209 | | {ERR_R_ASN1_LENGTH_MISMATCH, "asn1 length mismatch"}, |
210 | | {ERR_R_MISSING_ASN1_EOS, "missing asn1 eos"}, |
211 | | |
212 | | {ERR_R_FATAL, "fatal"}, |
213 | | {ERR_R_MALLOC_FAILURE, "malloc failure"}, |
214 | | {ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED, |
215 | | "called a function you should not call"}, |
216 | | {ERR_R_PASSED_NULL_PARAMETER, "passed a null parameter"}, |
217 | | {ERR_R_INTERNAL_ERROR, "internal error"}, |
218 | | {ERR_R_DISABLED, "called a function that was disabled at compile-time"}, |
219 | | |
220 | | {0, NULL}, |
221 | | }; |
222 | | #endif |
223 | | |
224 | | /* Define the predeclared (but externally opaque) "ERR_FNS" type */ |
225 | | struct st_ERR_FNS { |
226 | | /* Works on the "error_hash" string table */ |
227 | | LHASH_OF(ERR_STRING_DATA) *(*cb_err_get) (int create); |
228 | | void (*cb_err_del) (void); |
229 | | ERR_STRING_DATA *(*cb_err_get_item) (const ERR_STRING_DATA *); |
230 | | ERR_STRING_DATA *(*cb_err_set_item) (ERR_STRING_DATA *); |
231 | | ERR_STRING_DATA *(*cb_err_del_item) (ERR_STRING_DATA *); |
232 | | /* Works on the "thread_hash" error-state table */ |
233 | | LHASH_OF(ERR_STATE) *(*cb_thread_get) (int create); |
234 | | void (*cb_thread_release) (LHASH_OF(ERR_STATE) **hash); |
235 | | ERR_STATE *(*cb_thread_get_item) (const ERR_STATE *); |
236 | | ERR_STATE *(*cb_thread_set_item) (ERR_STATE *); |
237 | | void (*cb_thread_del_item) (const ERR_STATE *); |
238 | | /* Returns the next available error "library" numbers */ |
239 | | int (*cb_get_next_lib) (void); |
240 | | }; |
241 | | |
242 | | /* Predeclarations of the "err_defaults" functions */ |
243 | | static LHASH_OF(ERR_STRING_DATA) *int_err_get(int create); |
244 | | static void int_err_del(void); |
245 | | static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *); |
246 | | static ERR_STRING_DATA *int_err_set_item(ERR_STRING_DATA *); |
247 | | static ERR_STRING_DATA *int_err_del_item(ERR_STRING_DATA *); |
248 | | static LHASH_OF(ERR_STATE) *int_thread_get(int create); |
249 | | static void int_thread_release(LHASH_OF(ERR_STATE) **hash); |
250 | | static ERR_STATE *int_thread_get_item(const ERR_STATE *); |
251 | | static ERR_STATE *int_thread_set_item(ERR_STATE *); |
252 | | static void int_thread_del_item(const ERR_STATE *); |
253 | | static int int_err_get_next_lib(void); |
254 | | /* The static ERR_FNS table using these defaults functions */ |
255 | | static const ERR_FNS err_defaults = { |
256 | | int_err_get, |
257 | | int_err_del, |
258 | | int_err_get_item, |
259 | | int_err_set_item, |
260 | | int_err_del_item, |
261 | | int_thread_get, |
262 | | int_thread_release, |
263 | | int_thread_get_item, |
264 | | int_thread_set_item, |
265 | | int_thread_del_item, |
266 | | int_err_get_next_lib |
267 | | }; |
268 | | |
269 | | /* The replacable table of ERR_FNS functions we use at run-time */ |
270 | | static const ERR_FNS *err_fns = NULL; |
271 | | |
272 | | /* Eg. rather than using "err_get()", use "ERRFN(err_get)()". */ |
273 | 1.64M | #define ERRFN(a) err_fns->cb_##a |
274 | | |
275 | | /* |
276 | | * The internal state used by "err_defaults" - as such, the setting, reading, |
277 | | * creating, and deleting of this data should only be permitted via the |
278 | | * "err_defaults" functions. This way, a linked module can completely defer |
279 | | * all ERR state operation (together with requisite locking) to the |
280 | | * implementations and state in the loading application. |
281 | | */ |
282 | | static LHASH_OF(ERR_STRING_DATA) *int_error_hash = NULL; |
283 | | static LHASH_OF(ERR_STATE) *int_thread_hash = NULL; |
284 | | static int int_thread_hash_references = 0; |
285 | | static int int_err_library_number = ERR_LIB_USER; |
286 | | |
287 | | /* |
288 | | * Internal function that checks whether "err_fns" is set and if not, sets it |
289 | | * to the defaults. |
290 | | */ |
291 | | static void err_fns_check(void) |
292 | 1.06M | { |
293 | 1.06M | if (err_fns) |
294 | 1.06M | return; |
295 | | |
296 | 19 | CRYPTO_w_lock(CRYPTO_LOCK_ERR); |
297 | 19 | if (!err_fns) |
298 | 19 | err_fns = &err_defaults; |
299 | 19 | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
300 | 19 | } |
301 | | |
302 | | /* API functions to get or set the underlying ERR functions. */ |
303 | | |
304 | | const ERR_FNS *ERR_get_implementation(void) |
305 | 0 | { |
306 | 0 | err_fns_check(); |
307 | 0 | return err_fns; |
308 | 0 | } |
309 | | |
310 | | int ERR_set_implementation(const ERR_FNS *fns) |
311 | 0 | { |
312 | 0 | int ret = 0; |
313 | |
|
314 | 0 | CRYPTO_w_lock(CRYPTO_LOCK_ERR); |
315 | | /* |
316 | | * It's too late if 'err_fns' is non-NULL. BTW: not much point setting an |
317 | | * error is there?! |
318 | | */ |
319 | 0 | if (!err_fns) { |
320 | 0 | err_fns = fns; |
321 | 0 | ret = 1; |
322 | 0 | } |
323 | 0 | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
324 | 0 | return ret; |
325 | 0 | } |
326 | | |
327 | | /* |
328 | | * These are the callbacks provided to "lh_new()" when creating the LHASH |
329 | | * tables internal to the "err_defaults" implementation. |
330 | | */ |
331 | | |
332 | | static unsigned long get_error_values(int inc, int top, const char **file, |
333 | | int *line, const char **data, |
334 | | int *flags); |
335 | | |
336 | | /* The internal functions used in the "err_defaults" implementation */ |
337 | | |
338 | | static unsigned long err_string_data_hash(const ERR_STRING_DATA *a) |
339 | 362k | { |
340 | 362k | unsigned long ret, l; |
341 | | |
342 | 362k | l = a->error; |
343 | 362k | ret = l ^ ERR_GET_LIB(l) ^ ERR_GET_FUNC(l); |
344 | 362k | return (ret ^ ret % 19 * 13); |
345 | 362k | } |
346 | | |
347 | | static IMPLEMENT_LHASH_HASH_FN(err_string_data, ERR_STRING_DATA) |
348 | | |
349 | | static int err_string_data_cmp(const ERR_STRING_DATA *a, |
350 | | const ERR_STRING_DATA *b) |
351 | 327k | { |
352 | 327k | return (int)(a->error - b->error); |
353 | 327k | } |
354 | | |
355 | | static IMPLEMENT_LHASH_COMP_FN(err_string_data, ERR_STRING_DATA) |
356 | | |
357 | | static LHASH_OF(ERR_STRING_DATA) *int_err_get(int create) |
358 | 362k | { |
359 | 362k | LHASH_OF(ERR_STRING_DATA) *ret = NULL; |
360 | | |
361 | 362k | CRYPTO_w_lock(CRYPTO_LOCK_ERR); |
362 | 362k | if (!int_error_hash && create) { |
363 | 19 | CRYPTO_push_info("int_err_get (err.c)"); |
364 | 19 | int_error_hash = lh_ERR_STRING_DATA_new(); |
365 | 19 | CRYPTO_pop_info(); |
366 | 19 | } |
367 | 362k | if (int_error_hash) |
368 | 362k | ret = int_error_hash; |
369 | 362k | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
370 | | |
371 | 362k | return ret; |
372 | 362k | } |
373 | | |
374 | | static void int_err_del(void) |
375 | 0 | { |
376 | 0 | CRYPTO_w_lock(CRYPTO_LOCK_ERR); |
377 | 0 | if (int_error_hash) { |
378 | 0 | lh_ERR_STRING_DATA_free(int_error_hash); |
379 | 0 | int_error_hash = NULL; |
380 | 0 | } |
381 | 0 | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
382 | 0 | } |
383 | | |
384 | | static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *d) |
385 | 532 | { |
386 | 532 | ERR_STRING_DATA *p; |
387 | 532 | LHASH_OF(ERR_STRING_DATA) *hash; |
388 | | |
389 | 532 | err_fns_check(); |
390 | 532 | hash = ERRFN(err_get) (0); |
391 | 532 | if (!hash) |
392 | 0 | return NULL; |
393 | | |
394 | 532 | CRYPTO_r_lock(CRYPTO_LOCK_ERR); |
395 | 532 | p = lh_ERR_STRING_DATA_retrieve(hash, d); |
396 | 532 | CRYPTO_r_unlock(CRYPTO_LOCK_ERR); |
397 | | |
398 | 532 | return p; |
399 | 532 | } |
400 | | |
401 | | static ERR_STRING_DATA *int_err_set_item(ERR_STRING_DATA *d) |
402 | 362k | { |
403 | 362k | ERR_STRING_DATA *p; |
404 | 362k | LHASH_OF(ERR_STRING_DATA) *hash; |
405 | | |
406 | 362k | err_fns_check(); |
407 | 362k | hash = ERRFN(err_get) (1); |
408 | 362k | if (!hash) |
409 | 0 | return NULL; |
410 | | |
411 | 362k | CRYPTO_w_lock(CRYPTO_LOCK_ERR); |
412 | 362k | p = lh_ERR_STRING_DATA_insert(hash, d); |
413 | 362k | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
414 | | |
415 | 362k | return p; |
416 | 362k | } |
417 | | |
418 | | static ERR_STRING_DATA *int_err_del_item(ERR_STRING_DATA *d) |
419 | 0 | { |
420 | 0 | ERR_STRING_DATA *p; |
421 | 0 | LHASH_OF(ERR_STRING_DATA) *hash; |
422 | |
|
423 | 0 | err_fns_check(); |
424 | 0 | hash = ERRFN(err_get) (0); |
425 | 0 | if (!hash) |
426 | 0 | return NULL; |
427 | | |
428 | 0 | CRYPTO_w_lock(CRYPTO_LOCK_ERR); |
429 | 0 | p = lh_ERR_STRING_DATA_delete(hash, d); |
430 | 0 | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
431 | |
|
432 | 0 | return p; |
433 | 0 | } |
434 | | |
435 | | static unsigned long err_state_hash(const ERR_STATE *a) |
436 | 200k | { |
437 | 200k | return CRYPTO_THREADID_hash(&a->tid) * 13; |
438 | 200k | } |
439 | | |
440 | | static IMPLEMENT_LHASH_HASH_FN(err_state, ERR_STATE) |
441 | | |
442 | | static int err_state_cmp(const ERR_STATE *a, const ERR_STATE *b) |
443 | 187k | { |
444 | 187k | return CRYPTO_THREADID_cmp(&a->tid, &b->tid); |
445 | 187k | } |
446 | | |
447 | | static IMPLEMENT_LHASH_COMP_FN(err_state, ERR_STATE) |
448 | | |
449 | | static LHASH_OF(ERR_STATE) *int_thread_get(int create) |
450 | 360k | { |
451 | 360k | LHASH_OF(ERR_STATE) *ret = NULL; |
452 | | |
453 | 360k | CRYPTO_w_lock(CRYPTO_LOCK_ERR); |
454 | 360k | if (!int_thread_hash && create) { |
455 | 12.7k | CRYPTO_push_info("int_thread_get (err.c)"); |
456 | 12.7k | int_thread_hash = lh_ERR_STATE_new(); |
457 | 12.7k | CRYPTO_pop_info(); |
458 | 12.7k | } |
459 | 360k | if (int_thread_hash) { |
460 | 200k | int_thread_hash_references++; |
461 | 200k | ret = int_thread_hash; |
462 | 200k | } |
463 | 360k | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
464 | 360k | return ret; |
465 | 360k | } |
466 | | |
467 | | static void int_thread_release(LHASH_OF(ERR_STATE) **hash) |
468 | 200k | { |
469 | 200k | int i; |
470 | | |
471 | 200k | if (hash == NULL || *hash == NULL) |
472 | 0 | return; |
473 | | |
474 | 200k | i = CRYPTO_add(&int_thread_hash_references, -1, CRYPTO_LOCK_ERR); |
475 | | |
476 | | #ifdef REF_PRINT |
477 | | fprintf(stderr, "%4d:%s\n", int_thread_hash_references, "ERR"); |
478 | | #endif |
479 | 200k | if (i > 0) |
480 | 0 | return; |
481 | | #ifdef REF_CHECK |
482 | | if (i < 0) { |
483 | | fprintf(stderr, "int_thread_release, bad reference count\n"); |
484 | | abort(); /* ok */ |
485 | | } |
486 | | #endif |
487 | 200k | *hash = NULL; |
488 | 200k | } |
489 | | |
490 | | static ERR_STATE *int_thread_get_item(const ERR_STATE *d) |
491 | 187k | { |
492 | 187k | ERR_STATE *p; |
493 | 187k | LHASH_OF(ERR_STATE) *hash; |
494 | | |
495 | 187k | err_fns_check(); |
496 | 187k | hash = ERRFN(thread_get) (0); |
497 | 187k | if (!hash) |
498 | 12.7k | return NULL; |
499 | | |
500 | 175k | CRYPTO_r_lock(CRYPTO_LOCK_ERR); |
501 | 175k | p = lh_ERR_STATE_retrieve(hash, d); |
502 | 175k | CRYPTO_r_unlock(CRYPTO_LOCK_ERR); |
503 | | |
504 | 175k | ERRFN(thread_release) (&hash); |
505 | 175k | return p; |
506 | 187k | } |
507 | | |
508 | | static ERR_STATE *int_thread_set_item(ERR_STATE *d) |
509 | 12.7k | { |
510 | 12.7k | ERR_STATE *p; |
511 | 12.7k | LHASH_OF(ERR_STATE) *hash; |
512 | | |
513 | 12.7k | err_fns_check(); |
514 | 12.7k | hash = ERRFN(thread_get) (1); |
515 | 12.7k | if (!hash) |
516 | 0 | return NULL; |
517 | | |
518 | 12.7k | CRYPTO_w_lock(CRYPTO_LOCK_ERR); |
519 | 12.7k | p = lh_ERR_STATE_insert(hash, d); |
520 | 12.7k | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
521 | | |
522 | 12.7k | ERRFN(thread_release) (&hash); |
523 | 12.7k | return p; |
524 | 12.7k | } |
525 | | |
526 | | static void int_thread_del_item(const ERR_STATE *d) |
527 | 159k | { |
528 | 159k | ERR_STATE *p; |
529 | 159k | LHASH_OF(ERR_STATE) *hash; |
530 | | |
531 | 159k | err_fns_check(); |
532 | 159k | hash = ERRFN(thread_get) (0); |
533 | 159k | if (!hash) |
534 | 146k | return; |
535 | | |
536 | 12.7k | CRYPTO_w_lock(CRYPTO_LOCK_ERR); |
537 | 12.7k | p = lh_ERR_STATE_delete(hash, d); |
538 | | /* make sure we don't leak memory */ |
539 | 12.7k | if (int_thread_hash_references == 1 |
540 | 12.7k | && int_thread_hash && lh_ERR_STATE_num_items(int_thread_hash) == 0) { |
541 | 12.7k | lh_ERR_STATE_free(int_thread_hash); |
542 | 12.7k | int_thread_hash = NULL; |
543 | 12.7k | } |
544 | 12.7k | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
545 | | |
546 | 12.7k | ERRFN(thread_release) (&hash); |
547 | 12.7k | if (p) |
548 | 12.7k | ERR_STATE_free(p); |
549 | 12.7k | } |
550 | | |
551 | | static int int_err_get_next_lib(void) |
552 | 171 | { |
553 | 171 | int ret; |
554 | | |
555 | 171 | CRYPTO_w_lock(CRYPTO_LOCK_ERR); |
556 | 171 | ret = int_err_library_number++; |
557 | 171 | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
558 | | |
559 | 171 | return ret; |
560 | 171 | } |
561 | | |
562 | | #ifndef OPENSSL_NO_ERR |
563 | 2.43k | # define NUM_SYS_STR_REASONS 127 |
564 | | # define LEN_SYS_STR_REASON 32 |
565 | | |
566 | | static ERR_STRING_DATA SYS_str_reasons[NUM_SYS_STR_REASONS + 1]; |
567 | | /* |
568 | | * SYS_str_reasons is filled with copies of strerror() results at |
569 | | * initialization. 'errno' values up to 127 should cover all usual errors, |
570 | | * others will be displayed numerically by ERR_error_string. It is crucial |
571 | | * that we have something for each reason code that occurs in |
572 | | * ERR_str_reasons, or bogus reason strings will be returned for SYSerr(), |
573 | | * which always gets an errno value and never one of those 'standard' reason |
574 | | * codes. |
575 | | */ |
576 | | |
577 | | static void build_SYS_str_reasons(void) |
578 | 1.53k | { |
579 | | /* OPENSSL_malloc cannot be used here, use static storage instead */ |
580 | 1.53k | static char strerror_tab[NUM_SYS_STR_REASONS][LEN_SYS_STR_REASON]; |
581 | 1.53k | int i; |
582 | 1.53k | static int init = 1; |
583 | | |
584 | 1.53k | CRYPTO_r_lock(CRYPTO_LOCK_ERR); |
585 | 1.53k | if (!init) { |
586 | 1.52k | CRYPTO_r_unlock(CRYPTO_LOCK_ERR); |
587 | 1.52k | return; |
588 | 1.52k | } |
589 | | |
590 | 19 | CRYPTO_r_unlock(CRYPTO_LOCK_ERR); |
591 | 19 | CRYPTO_w_lock(CRYPTO_LOCK_ERR); |
592 | 19 | if (!init) { |
593 | 0 | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
594 | 0 | return; |
595 | 0 | } |
596 | | |
597 | 2.43k | for (i = 1; i <= NUM_SYS_STR_REASONS; i++) { |
598 | 2.41k | ERR_STRING_DATA *str = &SYS_str_reasons[i - 1]; |
599 | | |
600 | 2.41k | str->error = (unsigned long)i; |
601 | 2.41k | if (str->string == NULL) { |
602 | 2.41k | char (*dest)[LEN_SYS_STR_REASON] = &(strerror_tab[i - 1]); |
603 | 2.41k | char *src = strerror(i); |
604 | 2.41k | if (src != NULL) { |
605 | 2.41k | strncpy(*dest, src, sizeof *dest); |
606 | 2.41k | (*dest)[sizeof *dest - 1] = '\0'; |
607 | 2.41k | str->string = *dest; |
608 | 2.41k | } |
609 | 2.41k | } |
610 | 2.41k | if (str->string == NULL) |
611 | 0 | str->string = "unknown"; |
612 | 2.41k | } |
613 | | |
614 | | /* |
615 | | * Now we still have SYS_str_reasons[NUM_SYS_STR_REASONS] = {0, NULL}, as |
616 | | * required by ERR_load_strings. |
617 | | */ |
618 | | |
619 | 19 | init = 0; |
620 | | |
621 | 19 | CRYPTO_w_unlock(CRYPTO_LOCK_ERR); |
622 | 19 | } |
623 | | #endif |
624 | | |
625 | | #define err_clear_data(p,i) \ |
626 | 232k | do { \ |
627 | 232k | if (((p)->err_data[i] != NULL) && \ |
628 | 232k | (p)->err_data_flags[i] & ERR_TXT_MALLOCED) \ |
629 | 232k | { \ |
630 | 1.33k | OPENSSL_free((p)->err_data[i]); \ |
631 | 1.33k | (p)->err_data[i]=NULL; \ |
632 | 1.33k | } \ |
633 | 232k | (p)->err_data_flags[i]=0; \ |
634 | 232k | } while(0) |
635 | | |
636 | | #define err_clear(p,i) \ |
637 | 23.7k | do { \ |
638 | 23.7k | (p)->err_flags[i]=0; \ |
639 | 23.7k | (p)->err_buffer[i]=0; \ |
640 | 23.7k | err_clear_data(p,i); \ |
641 | 23.7k | (p)->err_file[i]=NULL; \ |
642 | 23.7k | (p)->err_line[i]= -1; \ |
643 | 23.7k | } while(0) |
644 | | |
645 | | static void ERR_STATE_free(ERR_STATE *s) |
646 | 12.7k | { |
647 | 12.7k | int i; |
648 | | |
649 | 12.7k | if (s == NULL) |
650 | 0 | return; |
651 | | |
652 | 215k | for (i = 0; i < ERR_NUM_ERRORS; i++) { |
653 | 203k | err_clear_data(s, i); |
654 | 203k | } |
655 | 12.7k | OPENSSL_free(s); |
656 | 12.7k | } |
657 | | |
658 | | void ERR_load_ERR_strings(void) |
659 | 1.53k | { |
660 | 1.53k | err_fns_check(); |
661 | 1.53k | #ifndef OPENSSL_NO_ERR |
662 | 1.53k | err_load_strings(0, ERR_str_libraries); |
663 | 1.53k | err_load_strings(0, ERR_str_reasons); |
664 | 1.53k | err_load_strings(ERR_LIB_SYS, ERR_str_functs); |
665 | 1.53k | build_SYS_str_reasons(); |
666 | 1.53k | err_load_strings(ERR_LIB_SYS, SYS_str_reasons); |
667 | 1.53k | #endif |
668 | 1.53k | } |
669 | | |
670 | | static void err_load_strings(int lib, ERR_STRING_DATA *str) |
671 | 7.67k | { |
672 | 370k | while (str->error) { |
673 | 362k | if (lib) |
674 | 216k | str->error |= ERR_PACK(lib, 0, 0); |
675 | 362k | ERRFN(err_set_item) (str); |
676 | 362k | str++; |
677 | 362k | } |
678 | 7.67k | } |
679 | | |
680 | | void ERR_load_strings(int lib, ERR_STRING_DATA *str) |
681 | 1.52k | { |
682 | 1.52k | ERR_load_ERR_strings(); |
683 | 1.52k | err_load_strings(lib, str); |
684 | 1.52k | } |
685 | | |
686 | | void ERR_unload_strings(int lib, ERR_STRING_DATA *str) |
687 | 0 | { |
688 | 0 | while (str->error) { |
689 | 0 | if (lib) |
690 | 0 | str->error |= ERR_PACK(lib, 0, 0); |
691 | 0 | ERRFN(err_del_item) (str); |
692 | 0 | str++; |
693 | 0 | } |
694 | 0 | } |
695 | | |
696 | | void ERR_free_strings(void) |
697 | 0 | { |
698 | 0 | err_fns_check(); |
699 | 0 | ERRFN(err_del) (); |
700 | 0 | } |
701 | | |
702 | | /********************************************************/ |
703 | | |
704 | | void ERR_put_error(int lib, int func, int reason, const char *file, int line) |
705 | 4.00k | { |
706 | 4.00k | ERR_STATE *es; |
707 | | |
708 | | #ifdef _OSD_POSIX |
709 | | /* |
710 | | * In the BS2000-OSD POSIX subsystem, the compiler generates path names |
711 | | * in the form "*POSIX(/etc/passwd)". This dirty hack strips them to |
712 | | * something sensible. @@@ We shouldn't modify a const string, though. |
713 | | */ |
714 | | if (strncmp(file, "*POSIX(", sizeof("*POSIX(") - 1) == 0) { |
715 | | char *end; |
716 | | |
717 | | /* Skip the "*POSIX(" prefix */ |
718 | | file += sizeof("*POSIX(") - 1; |
719 | | end = &file[strlen(file) - 1]; |
720 | | if (*end == ')') |
721 | | *end = '\0'; |
722 | | /* Optional: use the basename of the path only. */ |
723 | | if ((end = strrchr(file, '/')) != NULL) |
724 | | file = &end[1]; |
725 | | } |
726 | | #endif |
727 | 4.00k | es = ERR_get_state(); |
728 | 4.00k | if (es == NULL) |
729 | 0 | return; |
730 | | |
731 | 4.00k | es->top = (es->top + 1) % ERR_NUM_ERRORS; |
732 | 4.00k | if (es->top == es->bottom) |
733 | 0 | es->bottom = (es->bottom + 1) % ERR_NUM_ERRORS; |
734 | 4.00k | es->err_flags[es->top] = 0; |
735 | 4.00k | es->err_buffer[es->top] = ERR_PACK(lib, func, reason); |
736 | 4.00k | es->err_file[es->top] = file; |
737 | 4.00k | es->err_line[es->top] = line; |
738 | 4.00k | err_clear_data(es, es->top); |
739 | 4.00k | } |
740 | | |
741 | | void ERR_clear_error(void) |
742 | 1.47k | { |
743 | 1.47k | int i; |
744 | 1.47k | ERR_STATE *es; |
745 | | |
746 | 1.47k | es = ERR_get_state(); |
747 | 1.47k | if (es == NULL) |
748 | 0 | return; |
749 | | |
750 | 25.0k | for (i = 0; i < ERR_NUM_ERRORS; i++) { |
751 | 23.5k | err_clear(es, i); |
752 | 23.5k | } |
753 | 1.47k | es->top = es->bottom = 0; |
754 | 1.47k | } |
755 | | |
756 | | unsigned long ERR_get_error(void) |
757 | 0 | { |
758 | 0 | return (get_error_values(1, 0, NULL, NULL, NULL, NULL)); |
759 | 0 | } |
760 | | |
761 | | unsigned long ERR_get_error_line(const char **file, int *line) |
762 | 0 | { |
763 | 0 | return (get_error_values(1, 0, file, line, NULL, NULL)); |
764 | 0 | } |
765 | | |
766 | | unsigned long ERR_get_error_line_data(const char **file, int *line, |
767 | | const char **data, int *flags) |
768 | 0 | { |
769 | 0 | return (get_error_values(1, 0, file, line, data, flags)); |
770 | 0 | } |
771 | | |
772 | | unsigned long ERR_peek_error(void) |
773 | 1.24k | { |
774 | 1.24k | return (get_error_values(0, 0, NULL, NULL, NULL, NULL)); |
775 | 1.24k | } |
776 | | |
777 | | unsigned long ERR_peek_error_line(const char **file, int *line) |
778 | 0 | { |
779 | 0 | return (get_error_values(0, 0, file, line, NULL, NULL)); |
780 | 0 | } |
781 | | |
782 | | unsigned long ERR_peek_error_line_data(const char **file, int *line, |
783 | | const char **data, int *flags) |
784 | 0 | { |
785 | 0 | return (get_error_values(0, 0, file, line, data, flags)); |
786 | 0 | } |
787 | | |
788 | | unsigned long ERR_peek_last_error(void) |
789 | 2.52k | { |
790 | 2.52k | return (get_error_values(0, 1, NULL, NULL, NULL, NULL)); |
791 | 2.52k | } |
792 | | |
793 | | unsigned long ERR_peek_last_error_line(const char **file, int *line) |
794 | 0 | { |
795 | 0 | return (get_error_values(0, 1, file, line, NULL, NULL)); |
796 | 0 | } |
797 | | |
798 | | unsigned long ERR_peek_last_error_line_data(const char **file, int *line, |
799 | | const char **data, int *flags) |
800 | 0 | { |
801 | 0 | return (get_error_values(0, 1, file, line, data, flags)); |
802 | 0 | } |
803 | | |
804 | | static unsigned long get_error_values(int inc, int top, const char **file, |
805 | | int *line, const char **data, |
806 | | int *flags) |
807 | 3.76k | { |
808 | 3.76k | int i = 0; |
809 | 3.76k | ERR_STATE *es; |
810 | 3.76k | unsigned long ret; |
811 | | |
812 | 3.76k | es = ERR_get_state(); |
813 | 3.76k | if (es == NULL) |
814 | 0 | return 0; |
815 | | |
816 | 3.76k | if (inc && top) { |
817 | 0 | if (file) |
818 | 0 | *file = ""; |
819 | 0 | if (line) |
820 | 0 | *line = 0; |
821 | 0 | if (data) |
822 | 0 | *data = ""; |
823 | 0 | if (flags) |
824 | 0 | *flags = 0; |
825 | |
|
826 | 0 | return ERR_R_INTERNAL_ERROR; |
827 | 0 | } |
828 | | |
829 | 3.76k | if (es->bottom == es->top) |
830 | 0 | return 0; |
831 | 3.76k | if (top) |
832 | 2.52k | i = es->top; /* last error */ |
833 | 1.24k | else |
834 | 1.24k | i = (es->bottom + 1) % ERR_NUM_ERRORS; /* first error */ |
835 | | |
836 | 3.76k | ret = es->err_buffer[i]; |
837 | 3.76k | if (inc) { |
838 | 0 | es->bottom = i; |
839 | 0 | es->err_buffer[i] = 0; |
840 | 0 | } |
841 | | |
842 | 3.76k | if ((file != NULL) && (line != NULL)) { |
843 | 0 | if (es->err_file[i] == NULL) { |
844 | 0 | *file = "NA"; |
845 | 0 | if (line != NULL) |
846 | 0 | *line = 0; |
847 | 0 | } else { |
848 | 0 | *file = es->err_file[i]; |
849 | 0 | if (line != NULL) |
850 | 0 | *line = es->err_line[i]; |
851 | 0 | } |
852 | 0 | } |
853 | | |
854 | 3.76k | if (data == NULL) { |
855 | 3.76k | if (inc) { |
856 | 0 | err_clear_data(es, i); |
857 | 0 | } |
858 | 3.76k | } else { |
859 | 0 | if (es->err_data[i] == NULL) { |
860 | 0 | *data = ""; |
861 | 0 | if (flags != NULL) |
862 | 0 | *flags = 0; |
863 | 0 | } else { |
864 | 0 | *data = es->err_data[i]; |
865 | 0 | if (flags != NULL) |
866 | 0 | *flags = es->err_data_flags[i]; |
867 | 0 | } |
868 | 0 | } |
869 | 3.76k | return ret; |
870 | 3.76k | } |
871 | | |
872 | | void ERR_error_string_n(unsigned long e, char *buf, size_t len) |
873 | 0 | { |
874 | 0 | char lsbuf[64], fsbuf[64], rsbuf[64]; |
875 | 0 | const char *ls, *fs, *rs; |
876 | 0 | unsigned long l, f, r; |
877 | |
|
878 | 0 | if (len == 0) |
879 | 0 | return; |
880 | | |
881 | 0 | l = ERR_GET_LIB(e); |
882 | 0 | f = ERR_GET_FUNC(e); |
883 | 0 | r = ERR_GET_REASON(e); |
884 | |
|
885 | 0 | ls = ERR_lib_error_string(e); |
886 | 0 | fs = ERR_func_error_string(e); |
887 | 0 | rs = ERR_reason_error_string(e); |
888 | |
|
889 | 0 | if (ls == NULL) |
890 | 0 | BIO_snprintf(lsbuf, sizeof(lsbuf), "lib(%lu)", l); |
891 | 0 | if (fs == NULL) |
892 | 0 | BIO_snprintf(fsbuf, sizeof(fsbuf), "func(%lu)", f); |
893 | 0 | if (rs == NULL) |
894 | 0 | BIO_snprintf(rsbuf, sizeof(rsbuf), "reason(%lu)", r); |
895 | |
|
896 | 0 | BIO_snprintf(buf, len, "error:%08lX:%s:%s:%s", e, ls ? ls : lsbuf, |
897 | 0 | fs ? fs : fsbuf, rs ? rs : rsbuf); |
898 | 0 | if (strlen(buf) == len - 1) { |
899 | | /* |
900 | | * output may be truncated; make sure we always have 5 |
901 | | * colon-separated fields, i.e. 4 colons ... |
902 | | */ |
903 | 0 | #define NUM_COLONS 4 |
904 | 0 | if (len > NUM_COLONS) { /* ... if possible */ |
905 | 0 | int i; |
906 | 0 | char *s = buf; |
907 | |
|
908 | 0 | for (i = 0; i < NUM_COLONS; i++) { |
909 | 0 | char *colon = strchr(s, ':'); |
910 | 0 | if (colon == NULL || colon > &buf[len - 1] - NUM_COLONS + i) { |
911 | | /* |
912 | | * set colon no. i at last possible position (buf[len-1] |
913 | | * is the terminating 0) |
914 | | */ |
915 | 0 | colon = &buf[len - 1] - NUM_COLONS + i; |
916 | 0 | *colon = ':'; |
917 | 0 | } |
918 | 0 | s = colon + 1; |
919 | 0 | } |
920 | 0 | } |
921 | 0 | } |
922 | 0 | } |
923 | | |
924 | | /* BAD for multi-threading: uses a local buffer if ret == NULL */ |
925 | | /* |
926 | | * ERR_error_string_n should be used instead for ret != NULL as |
927 | | * ERR_error_string cannot know how large the buffer is |
928 | | */ |
929 | | char *ERR_error_string(unsigned long e, char *ret) |
930 | 0 | { |
931 | 0 | static char buf[256]; |
932 | |
|
933 | 0 | if (ret == NULL) |
934 | 0 | ret = buf; |
935 | 0 | ERR_error_string_n(e, ret, 256); |
936 | |
|
937 | 0 | return ret; |
938 | 0 | } |
939 | | |
940 | | LHASH_OF(ERR_STRING_DATA) *ERR_get_string_table(void) |
941 | 0 | { |
942 | 0 | err_fns_check(); |
943 | 0 | return ERRFN(err_get) (0); |
944 | 0 | } |
945 | | |
946 | | LHASH_OF(ERR_STATE) *ERR_get_err_state_table(void) |
947 | 0 | { |
948 | 0 | err_fns_check(); |
949 | 0 | return ERRFN(thread_get) (0); |
950 | 0 | } |
951 | | |
952 | | void ERR_release_err_state_table(LHASH_OF(ERR_STATE) **hash) |
953 | 0 | { |
954 | 0 | err_fns_check(); |
955 | 0 | ERRFN(thread_release) (hash); |
956 | 0 | } |
957 | | |
958 | | const char *ERR_lib_error_string(unsigned long e) |
959 | 0 | { |
960 | 0 | ERR_STRING_DATA d, *p; |
961 | 0 | unsigned long l; |
962 | |
|
963 | 0 | err_fns_check(); |
964 | 0 | l = ERR_GET_LIB(e); |
965 | 0 | d.error = ERR_PACK(l, 0, 0); |
966 | 0 | p = ERRFN(err_get_item) (&d); |
967 | 0 | return ((p == NULL) ? NULL : p->string); |
968 | 0 | } |
969 | | |
970 | | const char *ERR_func_error_string(unsigned long e) |
971 | 532 | { |
972 | 532 | ERR_STRING_DATA d, *p; |
973 | 532 | unsigned long l, f; |
974 | | |
975 | 532 | err_fns_check(); |
976 | 532 | l = ERR_GET_LIB(e); |
977 | 532 | f = ERR_GET_FUNC(e); |
978 | 532 | d.error = ERR_PACK(l, f, 0); |
979 | 532 | p = ERRFN(err_get_item) (&d); |
980 | 532 | return ((p == NULL) ? NULL : p->string); |
981 | 532 | } |
982 | | |
983 | | const char *ERR_reason_error_string(unsigned long e) |
984 | 0 | { |
985 | 0 | ERR_STRING_DATA d, *p = NULL; |
986 | 0 | unsigned long l, r; |
987 | |
|
988 | 0 | err_fns_check(); |
989 | 0 | l = ERR_GET_LIB(e); |
990 | 0 | r = ERR_GET_REASON(e); |
991 | 0 | d.error = ERR_PACK(l, 0, r); |
992 | 0 | p = ERRFN(err_get_item) (&d); |
993 | 0 | if (!p) { |
994 | 0 | d.error = ERR_PACK(0, 0, r); |
995 | 0 | p = ERRFN(err_get_item) (&d); |
996 | 0 | } |
997 | 0 | return ((p == NULL) ? NULL : p->string); |
998 | 0 | } |
999 | | |
1000 | | void ERR_remove_thread_state(const CRYPTO_THREADID *id) |
1001 | 159k | { |
1002 | 159k | ERR_STATE tmp; |
1003 | | |
1004 | 159k | if (id) |
1005 | 0 | CRYPTO_THREADID_cpy(&tmp.tid, id); |
1006 | 159k | else |
1007 | 159k | CRYPTO_THREADID_current(&tmp.tid); |
1008 | 159k | err_fns_check(); |
1009 | | /* |
1010 | | * thread_del_item automatically destroys the LHASH if the number of |
1011 | | * items reaches zero. |
1012 | | */ |
1013 | 159k | ERRFN(thread_del_item) (&tmp); |
1014 | 159k | } |
1015 | | |
1016 | | #ifndef OPENSSL_NO_DEPRECATED |
1017 | | void ERR_remove_state(unsigned long pid) |
1018 | 0 | { |
1019 | 0 | ERR_remove_thread_state(NULL); |
1020 | 0 | } |
1021 | | #endif |
1022 | | |
1023 | | ERR_STATE *ERR_get_state(void) |
1024 | 175k | { |
1025 | 175k | ERR_STATE *ret, tmp, *tmpp = NULL; |
1026 | 175k | int i; |
1027 | 175k | CRYPTO_THREADID tid; |
1028 | | |
1029 | 175k | err_fns_check(); |
1030 | 175k | CRYPTO_THREADID_current(&tid); |
1031 | 175k | CRYPTO_THREADID_cpy(&tmp.tid, &tid); |
1032 | 175k | ret = ERRFN(thread_get_item) (&tmp); |
1033 | | |
1034 | | /* ret == the error state, if NULL, make a new one */ |
1035 | 175k | if (ret == NULL) { |
1036 | 12.7k | ret = (ERR_STATE *)OPENSSL_malloc(sizeof(ERR_STATE)); |
1037 | 12.7k | if (ret == NULL) |
1038 | 0 | return NULL; |
1039 | 12.7k | CRYPTO_THREADID_cpy(&ret->tid, &tid); |
1040 | 12.7k | ret->top = 0; |
1041 | 12.7k | ret->bottom = 0; |
1042 | 215k | for (i = 0; i < ERR_NUM_ERRORS; i++) { |
1043 | 203k | ret->err_data[i] = NULL; |
1044 | 203k | ret->err_data_flags[i] = 0; |
1045 | 203k | } |
1046 | 12.7k | tmpp = ERRFN(thread_set_item) (ret); |
1047 | | /* To check if insertion failed, do a get. */ |
1048 | 12.7k | if (ERRFN(thread_get_item) (ret) != ret) { |
1049 | 0 | ERR_STATE_free(ret); /* could not insert it */ |
1050 | 0 | return NULL; |
1051 | 0 | } |
1052 | | /* |
1053 | | * If a race occured in this function and we came second, tmpp is the |
1054 | | * first one that we just replaced. |
1055 | | */ |
1056 | 12.7k | if (tmpp) |
1057 | 0 | ERR_STATE_free(tmpp); |
1058 | 12.7k | } |
1059 | 175k | return ret; |
1060 | 175k | } |
1061 | | |
1062 | | int ERR_get_next_error_library(void) |
1063 | 171 | { |
1064 | 171 | err_fns_check(); |
1065 | 171 | return ERRFN(get_next_lib) (); |
1066 | 171 | } |
1067 | | |
1068 | | void ERR_set_error_data(char *data, int flags) |
1069 | 1.33k | { |
1070 | 1.33k | ERR_STATE *es; |
1071 | 1.33k | int i; |
1072 | | |
1073 | 1.33k | es = ERR_get_state(); |
1074 | 1.33k | if (es == NULL) |
1075 | 0 | return; |
1076 | | |
1077 | 1.33k | i = es->top; |
1078 | | |
1079 | 1.33k | err_clear_data(es, i); |
1080 | 1.33k | es->err_data[i] = data; |
1081 | 1.33k | es->err_data_flags[i] = flags; |
1082 | 1.33k | } |
1083 | | |
1084 | | void ERR_add_error_data(int num, ...) |
1085 | 1.33k | { |
1086 | 1.33k | va_list args; |
1087 | 1.33k | va_start(args, num); |
1088 | 1.33k | ERR_add_error_vdata(num, args); |
1089 | 1.33k | va_end(args); |
1090 | 1.33k | } |
1091 | | |
1092 | | void ERR_add_error_vdata(int num, va_list args) |
1093 | 1.33k | { |
1094 | 1.33k | int i, n, s; |
1095 | 1.33k | char *str, *p, *a; |
1096 | | |
1097 | 1.33k | s = 80; |
1098 | 1.33k | str = OPENSSL_malloc(s + 1); |
1099 | 1.33k | if (str == NULL) |
1100 | 0 | return; |
1101 | 1.33k | str[0] = '\0'; |
1102 | | |
1103 | 1.33k | n = 0; |
1104 | 4.20k | for (i = 0; i < num; i++) { |
1105 | 2.86k | a = va_arg(args, char *); |
1106 | | /* ignore NULLs, thanks to Bob Beck <beck@obtuse.com> */ |
1107 | 2.86k | if (a != NULL) { |
1108 | 2.86k | n += strlen(a); |
1109 | 2.86k | if (n > s) { |
1110 | 72 | s = n + 20; |
1111 | 72 | p = OPENSSL_realloc(str, s + 1); |
1112 | 72 | if (p == NULL) { |
1113 | 0 | OPENSSL_free(str); |
1114 | 0 | return; |
1115 | 0 | } else |
1116 | 72 | str = p; |
1117 | 72 | } |
1118 | 2.86k | BUF_strlcat(str, a, (size_t)s + 1); |
1119 | 2.86k | } |
1120 | 2.86k | } |
1121 | 1.33k | ERR_set_error_data(str, ERR_TXT_MALLOCED | ERR_TXT_STRING); |
1122 | 1.33k | } |
1123 | | |
1124 | | int ERR_set_mark(void) |
1125 | 82.3k | { |
1126 | 82.3k | ERR_STATE *es; |
1127 | | |
1128 | 82.3k | es = ERR_get_state(); |
1129 | 82.3k | if (es == NULL) |
1130 | 0 | return 0; |
1131 | | |
1132 | 82.3k | if (es->bottom == es->top) |
1133 | 82.3k | return 0; |
1134 | 0 | es->err_flags[es->top] |= ERR_FLAG_MARK; |
1135 | 0 | return 1; |
1136 | 82.3k | } |
1137 | | |
1138 | | int ERR_pop_to_mark(void) |
1139 | 82.3k | { |
1140 | 82.3k | ERR_STATE *es; |
1141 | | |
1142 | 82.3k | es = ERR_get_state(); |
1143 | 82.3k | if (es == NULL) |
1144 | 0 | return 0; |
1145 | | |
1146 | 82.5k | while (es->bottom != es->top |
1147 | 82.5k | && (es->err_flags[es->top] & ERR_FLAG_MARK) == 0) { |
1148 | 216 | err_clear(es, es->top); |
1149 | 216 | es->top -= 1; |
1150 | 216 | if (es->top == -1) |
1151 | 0 | es->top = ERR_NUM_ERRORS - 1; |
1152 | 216 | } |
1153 | | |
1154 | 82.3k | if (es->bottom == es->top) |
1155 | 82.3k | return 0; |
1156 | 0 | es->err_flags[es->top] &= ~ERR_FLAG_MARK; |
1157 | 0 | return 1; |
1158 | 82.3k | } |