err.c revision 1.53
1/* $OpenBSD: err.c,v 1.53 2023/07/07 13:54:45 beck Exp $ */
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 <pthread.h>
113#include <stdarg.h>
114#include <stdio.h>
115#include <string.h>
116
117#include <openssl/opensslconf.h>
118
119#include <openssl/bio.h>
120#include <openssl/buffer.h>
121#include <openssl/crypto.h>
122#include <openssl/err.h>
123#include <openssl/lhash.h>
124
125DECLARE_LHASH_OF(ERR_STRING_DATA);
126DECLARE_LHASH_OF(ERR_STATE);
127
128static void err_load_strings(int lib, ERR_STRING_DATA *str);
129
130static void ERR_STATE_free(ERR_STATE *s);
131#ifndef OPENSSL_NO_ERR
132static ERR_STRING_DATA ERR_str_libraries[] = {
133	{ERR_PACK(ERR_LIB_NONE,0,0),		"unknown library"},
134	{ERR_PACK(ERR_LIB_SYS,0,0),		"system library"},
135	{ERR_PACK(ERR_LIB_BN,0,0),		"bignum routines"},
136	{ERR_PACK(ERR_LIB_RSA,0,0),		"rsa routines"},
137	{ERR_PACK(ERR_LIB_DH,0,0),		"Diffie-Hellman routines"},
138	{ERR_PACK(ERR_LIB_EVP,0,0),		"digital envelope routines"},
139	{ERR_PACK(ERR_LIB_BUF,0,0),		"memory buffer routines"},
140	{ERR_PACK(ERR_LIB_OBJ,0,0),		"object identifier routines"},
141	{ERR_PACK(ERR_LIB_PEM,0,0),		"PEM routines"},
142	{ERR_PACK(ERR_LIB_DSA,0,0),		"dsa routines"},
143	{ERR_PACK(ERR_LIB_X509,0,0),		"x509 certificate routines"},
144	{ERR_PACK(ERR_LIB_ASN1,0,0),		"asn1 encoding routines"},
145	{ERR_PACK(ERR_LIB_CONF,0,0),		"configuration file routines"},
146	{ERR_PACK(ERR_LIB_CRYPTO,0,0),		"common libcrypto routines"},
147	{ERR_PACK(ERR_LIB_EC,0,0),		"elliptic curve routines"},
148	{ERR_PACK(ERR_LIB_SSL,0,0),		"SSL routines"},
149	{ERR_PACK(ERR_LIB_BIO,0,0),		"BIO routines"},
150	{ERR_PACK(ERR_LIB_PKCS7,0,0),		"PKCS7 routines"},
151	{ERR_PACK(ERR_LIB_X509V3,0,0),		"X509 V3 routines"},
152	{ERR_PACK(ERR_LIB_PKCS12,0,0),		"PKCS12 routines"},
153	{ERR_PACK(ERR_LIB_RAND,0,0),		"random number generator"},
154	{ERR_PACK(ERR_LIB_DSO,0,0),		"DSO support routines"},
155	{ERR_PACK(ERR_LIB_TS,0,0),		"time stamp routines"},
156	{ERR_PACK(ERR_LIB_ENGINE,0,0),		"engine routines"},
157	{ERR_PACK(ERR_LIB_OCSP,0,0),		"OCSP routines"},
158	{ERR_PACK(ERR_LIB_FIPS,0,0),		"FIPS routines"},
159	{ERR_PACK(ERR_LIB_CMS,0,0),		"CMS routines"},
160	{ERR_PACK(ERR_LIB_HMAC,0,0),		"HMAC routines"},
161	{ERR_PACK(ERR_LIB_GOST,0,0),		"GOST routines"},
162	{0, NULL},
163};
164
165static ERR_STRING_DATA ERR_str_functs[] = {
166	{ERR_PACK(0,SYS_F_FOPEN, 0),     	"fopen"},
167	{ERR_PACK(0,SYS_F_CONNECT, 0),		"connect"},
168	{ERR_PACK(0,SYS_F_GETSERVBYNAME, 0),	"getservbyname"},
169	{ERR_PACK(0,SYS_F_SOCKET, 0),		"socket"},
170	{ERR_PACK(0,SYS_F_IOCTLSOCKET, 0),	"ioctl"},
171	{ERR_PACK(0,SYS_F_BIND, 0),		"bind"},
172	{ERR_PACK(0,SYS_F_LISTEN, 0),		"listen"},
173	{ERR_PACK(0,SYS_F_ACCEPT, 0),		"accept"},
174	{ERR_PACK(0,SYS_F_OPENDIR, 0),		"opendir"},
175	{ERR_PACK(0,SYS_F_FREAD, 0),		"fread"},
176	{0, NULL},
177};
178
179static 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,	"called a function you should not call"},
215	{ERR_R_PASSED_NULL_PARAMETER,		"passed a null parameter"},
216	{ERR_R_INTERNAL_ERROR,			"internal error"},
217	{ERR_R_DISABLED	,			"called a function that was disabled at compile-time"},
218	{ERR_R_INIT_FAIL,			"initialization failure"},
219
220	{0, NULL},
221};
222#endif
223
224
225/* Define the predeclared (but externally opaque) "ERR_FNS" type */
226struct st_ERR_FNS {
227	/* Works on the "error_hash" string table */
228	LHASH_OF(ERR_STRING_DATA) *(*cb_err_get)(int create);
229	void (*cb_err_del)(void);
230	ERR_STRING_DATA *(*cb_err_get_item)(const ERR_STRING_DATA *);
231	ERR_STRING_DATA *(*cb_err_set_item)(ERR_STRING_DATA *);
232	ERR_STRING_DATA *(*cb_err_del_item)(ERR_STRING_DATA *);
233	/* Works on the "thread_hash" error-state table */
234	LHASH_OF(ERR_STATE) *(*cb_thread_get)(int create);
235	void (*cb_thread_release)(LHASH_OF(ERR_STATE) **hash);
236	ERR_STATE *(*cb_thread_get_item)(const ERR_STATE *);
237	ERR_STATE *(*cb_thread_set_item)(ERR_STATE *);
238	void (*cb_thread_del_item)(const ERR_STATE *);
239	/* Returns the next available error "library" numbers */
240	int (*cb_get_next_lib)(void);
241};
242
243/* Predeclarations of the "err_defaults" functions */
244static LHASH_OF(ERR_STRING_DATA) *int_err_get(int create);
245static void int_err_del(void);
246static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *);
247static ERR_STRING_DATA *int_err_set_item(ERR_STRING_DATA *);
248static ERR_STRING_DATA *int_err_del_item(ERR_STRING_DATA *);
249static LHASH_OF(ERR_STATE) *int_thread_get(int create);
250static void int_thread_release(LHASH_OF(ERR_STATE) **hash);
251static ERR_STATE *int_thread_get_item(const ERR_STATE *);
252static ERR_STATE *int_thread_set_item(ERR_STATE *);
253static void int_thread_del_item(const ERR_STATE *);
254static int int_err_get_next_lib(void);
255
256/* The static ERR_FNS table using these defaults functions */
257static const ERR_FNS err_defaults = {
258	int_err_get,
259	int_err_del,
260	int_err_get_item,
261	int_err_set_item,
262	int_err_del_item,
263	int_thread_get,
264	int_thread_release,
265	int_thread_get_item,
266	int_thread_set_item,
267	int_thread_del_item,
268	int_err_get_next_lib
269};
270
271/* The replacable table of ERR_FNS functions we use at run-time */
272static const ERR_FNS *err_fns = NULL;
273
274/* Eg. rather than using "err_get()", use "ERRFN(err_get)()". */
275#define ERRFN(a) err_fns->cb_##a
276
277/* The internal state used by "err_defaults" - as such, the setting, reading,
278 * creating, and deleting of this data should only be permitted via the
279 * "err_defaults" functions. This way, a linked module can completely defer all
280 * ERR state operation (together with requisite locking) to the implementations
281 * and state in the loading application. */
282static LHASH_OF(ERR_STRING_DATA) *int_error_hash = NULL;
283static LHASH_OF(ERR_STATE) *int_thread_hash = NULL;
284static int int_thread_hash_references = 0;
285static int int_err_library_number = ERR_LIB_USER;
286
287static pthread_t err_init_thread;
288
289/* Internal function that checks whether "err_fns" is set and if not, sets it to
290 * the defaults. */
291static void
292err_fns_check(void)
293{
294	if (err_fns)
295		return;
296
297	CRYPTO_w_lock(CRYPTO_LOCK_ERR);
298	if (!err_fns)
299		err_fns = &err_defaults;
300	CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
301}
302
303/* API functions to get or set the underlying ERR functions. */
304
305const ERR_FNS *
306ERR_get_implementation(void)
307{
308	err_fns_check();
309	return err_fns;
310}
311LCRYPTO_ALIAS(ERR_get_implementation);
312
313int
314ERR_set_implementation(const ERR_FNS *fns)
315{
316	int ret = 0;
317
318	CRYPTO_w_lock(CRYPTO_LOCK_ERR);
319	/* It's too late if 'err_fns' is non-NULL. BTW: not much point setting
320	 * an error is there?! */
321	if (!err_fns) {
322		err_fns = fns;
323		ret = 1;
324	}
325	CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
326	return ret;
327}
328LCRYPTO_ALIAS(ERR_set_implementation);
329
330/* These are the callbacks provided to "lh_new()" when creating the LHASH tables
331 * internal to the "err_defaults" implementation. */
332
333static unsigned long get_error_values(int inc, int top, const char **file,
334    int *line, const char **data, int *flags);
335
336/* The internal functions used in the "err_defaults" implementation */
337
338static unsigned long
339err_string_data_hash(const ERR_STRING_DATA *a)
340{
341	unsigned long ret, l;
342
343	l = a->error;
344	ret = l^ERR_GET_LIB(l)^ERR_GET_FUNC(l);
345	return (ret^ret % 19*13);
346}
347static IMPLEMENT_LHASH_HASH_FN(err_string_data, ERR_STRING_DATA)
348
349static int
350err_string_data_cmp(const ERR_STRING_DATA *a, const ERR_STRING_DATA *b)
351{
352	return (int)(a->error - b->error);
353}
354static IMPLEMENT_LHASH_COMP_FN(err_string_data, ERR_STRING_DATA)
355
356static
357LHASH_OF(ERR_STRING_DATA) *int_err_get(int create)
358{
359	LHASH_OF(ERR_STRING_DATA) *ret = NULL;
360
361	CRYPTO_w_lock(CRYPTO_LOCK_ERR);
362	if (!int_error_hash && create) {
363		CRYPTO_push_info("int_err_get (err.c)");
364		int_error_hash = lh_ERR_STRING_DATA_new();
365		CRYPTO_pop_info();
366	}
367	if (int_error_hash)
368		ret = int_error_hash;
369	CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
370
371	return ret;
372}
373
374static void
375int_err_del(void)
376{
377	CRYPTO_w_lock(CRYPTO_LOCK_ERR);
378	if (int_error_hash) {
379		lh_ERR_STRING_DATA_free(int_error_hash);
380		int_error_hash = NULL;
381	}
382	CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
383}
384
385static ERR_STRING_DATA *
386int_err_get_item(const ERR_STRING_DATA *d)
387{
388	ERR_STRING_DATA *p;
389	LHASH_OF(ERR_STRING_DATA) *hash;
390
391	err_fns_check();
392	hash = ERRFN(err_get)(0);
393	if (!hash)
394		return NULL;
395
396	CRYPTO_r_lock(CRYPTO_LOCK_ERR);
397	p = lh_ERR_STRING_DATA_retrieve(hash, d);
398	CRYPTO_r_unlock(CRYPTO_LOCK_ERR);
399
400	return p;
401}
402
403static ERR_STRING_DATA *
404int_err_set_item(ERR_STRING_DATA *d)
405{
406	ERR_STRING_DATA *p;
407	LHASH_OF(ERR_STRING_DATA) *hash;
408
409	err_fns_check();
410	hash = ERRFN(err_get)(1);
411	if (!hash)
412		return NULL;
413
414	CRYPTO_w_lock(CRYPTO_LOCK_ERR);
415	p = lh_ERR_STRING_DATA_insert(hash, d);
416	CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
417
418	return p;
419}
420
421static ERR_STRING_DATA *
422int_err_del_item(ERR_STRING_DATA *d)
423{
424	ERR_STRING_DATA *p;
425	LHASH_OF(ERR_STRING_DATA) *hash;
426
427	err_fns_check();
428	hash = ERRFN(err_get)(0);
429	if (!hash)
430		return NULL;
431
432	CRYPTO_w_lock(CRYPTO_LOCK_ERR);
433	p = lh_ERR_STRING_DATA_delete(hash, d);
434	CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
435
436	return p;
437}
438
439static unsigned long
440err_state_hash(const ERR_STATE *a)
441{
442	return CRYPTO_THREADID_hash(&a->tid) * 13;
443}
444static IMPLEMENT_LHASH_HASH_FN(err_state, ERR_STATE)
445
446static int
447err_state_cmp(const ERR_STATE *a, const ERR_STATE *b)
448{
449	return CRYPTO_THREADID_cmp(&a->tid, &b->tid);
450}
451static IMPLEMENT_LHASH_COMP_FN(err_state, ERR_STATE)
452
453static
454LHASH_OF(ERR_STATE) *int_thread_get(int create)
455{
456	LHASH_OF(ERR_STATE) *ret = NULL;
457
458	CRYPTO_w_lock(CRYPTO_LOCK_ERR);
459	if (!int_thread_hash && create) {
460		CRYPTO_push_info("int_thread_get (err.c)");
461		int_thread_hash = lh_ERR_STATE_new();
462		CRYPTO_pop_info();
463	}
464	if (int_thread_hash) {
465		int_thread_hash_references++;
466		ret = int_thread_hash;
467	}
468	CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
469	return ret;
470}
471
472static void
473int_thread_release(LHASH_OF(ERR_STATE) **hash)
474{
475	int i;
476
477	if (hash == NULL || *hash == NULL)
478		return;
479
480	i = CRYPTO_add(&int_thread_hash_references, -1, CRYPTO_LOCK_ERR);
481	if (i > 0)
482		return;
483
484	*hash = NULL;
485}
486
487static ERR_STATE *
488int_thread_get_item(const ERR_STATE *d)
489{
490	ERR_STATE *p;
491	LHASH_OF(ERR_STATE) *hash;
492
493	err_fns_check();
494	hash = ERRFN(thread_get)(0);
495	if (!hash)
496		return NULL;
497
498	CRYPTO_r_lock(CRYPTO_LOCK_ERR);
499	p = lh_ERR_STATE_retrieve(hash, d);
500	CRYPTO_r_unlock(CRYPTO_LOCK_ERR);
501
502	ERRFN(thread_release)(&hash);
503	return p;
504}
505
506static ERR_STATE *
507int_thread_set_item(ERR_STATE *d)
508{
509	ERR_STATE *p;
510	LHASH_OF(ERR_STATE) *hash;
511
512	err_fns_check();
513	hash = ERRFN(thread_get)(1);
514	if (!hash)
515		return NULL;
516
517	CRYPTO_w_lock(CRYPTO_LOCK_ERR);
518	p = lh_ERR_STATE_insert(hash, d);
519	CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
520
521	ERRFN(thread_release)(&hash);
522	return p;
523}
524
525static void
526int_thread_del_item(const ERR_STATE *d)
527{
528	ERR_STATE *p;
529	LHASH_OF(ERR_STATE) *hash;
530
531	err_fns_check();
532	hash = ERRFN(thread_get)(0);
533	if (!hash)
534		return;
535
536	CRYPTO_w_lock(CRYPTO_LOCK_ERR);
537	p = lh_ERR_STATE_delete(hash, d);
538	/* make sure we don't leak memory */
539	if (int_thread_hash_references == 1 &&
540	    int_thread_hash && lh_ERR_STATE_num_items(int_thread_hash) == 0) {
541		lh_ERR_STATE_free(int_thread_hash);
542		int_thread_hash = NULL;
543	}
544	CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
545
546	ERRFN(thread_release)(&hash);
547	if (p)
548		ERR_STATE_free(p);
549}
550
551static int
552int_err_get_next_lib(void)
553{
554	int ret;
555
556	CRYPTO_w_lock(CRYPTO_LOCK_ERR);
557	ret = int_err_library_number++;
558	CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
559
560	return ret;
561}
562
563
564#ifndef OPENSSL_NO_ERR
565#define NUM_SYS_STR_REASONS 127
566#define LEN_SYS_STR_REASON 32
567
568static ERR_STRING_DATA SYS_str_reasons[NUM_SYS_STR_REASONS + 1];
569/* SYS_str_reasons is filled with copies of strerror() results at
570 * initialization.
571 * 'errno' values up to 127 should cover all usual errors,
572 * others will be displayed numerically by ERR_error_string.
573 * It is crucial that we have something for each reason code
574 * that occurs in ERR_str_reasons, or bogus reason strings
575 * will be returned for SYSerror(which always gets an errno
576 * value and never one of those 'standard' reason codes. */
577
578static void
579build_SYS_str_reasons(void)
580{
581	/* malloc cannot be used here, use static storage instead */
582	static char strerror_tab[NUM_SYS_STR_REASONS][LEN_SYS_STR_REASON];
583	int i;
584	static int init = 1;
585	int save_errno;
586
587	CRYPTO_r_lock(CRYPTO_LOCK_ERR);
588	if (!init) {
589		CRYPTO_r_unlock(CRYPTO_LOCK_ERR);
590		return;
591	}
592
593	CRYPTO_r_unlock(CRYPTO_LOCK_ERR);
594	CRYPTO_w_lock(CRYPTO_LOCK_ERR);
595	if (!init) {
596		CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
597		return;
598	}
599
600	/* strerror(3) will set errno to EINVAL when i is an unknown errno. */
601	save_errno = errno;
602	for (i = 1; i <= NUM_SYS_STR_REASONS; i++) {
603		ERR_STRING_DATA *str = &SYS_str_reasons[i - 1];
604
605		str->error = (unsigned long)i;
606		if (str->string == NULL) {
607			char (*dest)[LEN_SYS_STR_REASON] =
608			    &(strerror_tab[i - 1]);
609			const char *src = strerror(i);
610			if (src != NULL) {
611				strlcpy(*dest, src, sizeof *dest);
612				str->string = *dest;
613			}
614		}
615		if (str->string == NULL)
616			str->string = "unknown";
617	}
618	errno = save_errno;
619
620	/* Now we still have SYS_str_reasons[NUM_SYS_STR_REASONS] = {0, NULL},
621	 * as required by ERR_load_strings. */
622
623	init = 0;
624
625	CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
626}
627#endif
628
629#define err_clear_data(p,i) \
630	do { \
631		if (((p)->err_data[i] != NULL) && \
632		    (p)->err_data_flags[i] & ERR_TXT_MALLOCED) { \
633			free((p)->err_data[i]); \
634			(p)->err_data[i] = NULL; \
635		} \
636		(p)->err_data_flags[i] = 0; \
637	} while(0)
638
639#define err_clear(p,i) \
640	do { \
641		(p)->err_flags[i] = 0; \
642		(p)->err_buffer[i] = 0; \
643		err_clear_data(p, i); \
644		(p)->err_file[i] = NULL; \
645		(p)->err_line[i] = -1; \
646	} while(0)
647
648static void
649ERR_STATE_free(ERR_STATE *s)
650{
651	int i;
652
653	if (s == NULL)
654		return;
655
656	for (i = 0; i < ERR_NUM_ERRORS; i++) {
657		err_clear_data(s, i);
658	}
659	free(s);
660}
661
662void
663ERR_load_ERR_strings_internal(void)
664{
665	err_init_thread = pthread_self();
666	err_fns_check();
667#ifndef OPENSSL_NO_ERR
668	err_load_strings(0, ERR_str_libraries);
669	err_load_strings(0, ERR_str_reasons);
670	err_load_strings(ERR_LIB_SYS, ERR_str_functs);
671	build_SYS_str_reasons();
672	err_load_strings(ERR_LIB_SYS, SYS_str_reasons);
673#endif
674}
675
676
677void
678ERR_load_ERR_strings(void)
679{
680	static pthread_once_t once = PTHREAD_ONCE_INIT;
681
682	if (pthread_equal(pthread_self(), err_init_thread))
683		return; /* don't recurse */
684
685	/* Prayer and clean living lets you ignore errors, OpenSSL style */
686	(void) OPENSSL_init_crypto(0, NULL);
687
688	(void) pthread_once(&once, ERR_load_ERR_strings_internal);
689}
690LCRYPTO_ALIAS(ERR_load_ERR_strings);
691
692static void
693err_load_strings(int lib, ERR_STRING_DATA *str)
694{
695	while (str->error) {
696		if (lib)
697			str->error |= ERR_PACK(lib, 0, 0);
698		ERRFN(err_set_item)(str);
699		str++;
700	}
701}
702
703void
704ERR_load_strings(int lib, ERR_STRING_DATA *str)
705{
706	ERR_load_ERR_strings();
707	err_load_strings(lib, str);
708}
709LCRYPTO_ALIAS(ERR_load_strings);
710
711void
712ERR_unload_strings(int lib, ERR_STRING_DATA *str)
713{
714	/* Prayer and clean living lets you ignore errors, OpenSSL style */
715	(void) OPENSSL_init_crypto(0, NULL);
716
717	while (str->error) {
718		if (lib)
719			str->error |= ERR_PACK(lib, 0, 0);
720		ERRFN(err_del_item)(str);
721		str++;
722	}
723}
724LCRYPTO_ALIAS(ERR_unload_strings);
725
726void
727ERR_free_strings(void)
728{
729	/* Prayer and clean living lets you ignore errors, OpenSSL style */
730	(void) OPENSSL_init_crypto(0, NULL);
731
732	err_fns_check();
733	ERRFN(err_del)();
734}
735LCRYPTO_ALIAS(ERR_free_strings);
736
737/********************************************************/
738
739void
740ERR_put_error(int lib, int func, int reason, const char *file, int line)
741{
742	ERR_STATE *es;
743	int save_errno = errno;
744
745	es = ERR_get_state();
746
747	es->top = (es->top + 1) % ERR_NUM_ERRORS;
748	if (es->top == es->bottom)
749		es->bottom = (es->bottom + 1) % ERR_NUM_ERRORS;
750	es->err_flags[es->top] = 0;
751	es->err_buffer[es->top] = ERR_PACK(lib, func, reason);
752	es->err_file[es->top] = file;
753	es->err_line[es->top] = line;
754	err_clear_data(es, es->top);
755	errno = save_errno;
756}
757LCRYPTO_ALIAS(ERR_put_error);
758
759void
760ERR_clear_error(void)
761{
762	int i;
763	ERR_STATE *es;
764
765	es = ERR_get_state();
766
767	for (i = 0; i < ERR_NUM_ERRORS; i++) {
768		err_clear(es, i);
769	}
770	es->top = es->bottom = 0;
771}
772LCRYPTO_ALIAS(ERR_clear_error);
773
774
775unsigned long
776ERR_get_error(void)
777{
778	return (get_error_values(1, 0, NULL, NULL, NULL, NULL));
779}
780LCRYPTO_ALIAS(ERR_get_error);
781
782unsigned long
783ERR_get_error_line(const char **file, int *line)
784{
785	return (get_error_values(1, 0, file, line, NULL, NULL));
786}
787LCRYPTO_ALIAS(ERR_get_error_line);
788
789unsigned long
790ERR_get_error_line_data(const char **file, int *line,
791    const char **data, int *flags)
792{
793	return (get_error_values(1, 0, file, line, data, flags));
794}
795LCRYPTO_ALIAS(ERR_get_error_line_data);
796
797
798unsigned long
799ERR_peek_error(void)
800{
801	return (get_error_values(0, 0, NULL, NULL, NULL, NULL));
802}
803LCRYPTO_ALIAS(ERR_peek_error);
804
805unsigned long
806ERR_peek_error_line(const char **file, int *line)
807{
808	return (get_error_values(0, 0, file, line, NULL, NULL));
809}
810LCRYPTO_ALIAS(ERR_peek_error_line);
811
812unsigned long
813ERR_peek_error_line_data(const char **file, int *line,
814    const char **data, int *flags)
815{
816	return (get_error_values(0, 0, file, line, data, flags));
817}
818LCRYPTO_ALIAS(ERR_peek_error_line_data);
819
820unsigned long
821ERR_peek_last_error(void)
822{
823	return (get_error_values(0, 1, NULL, NULL, NULL, NULL));
824}
825LCRYPTO_ALIAS(ERR_peek_last_error);
826
827unsigned long
828ERR_peek_last_error_line(const char **file, int *line)
829{
830	return (get_error_values(0, 1, file, line, NULL, NULL));
831}
832LCRYPTO_ALIAS(ERR_peek_last_error_line);
833
834unsigned long
835ERR_peek_last_error_line_data(const char **file, int *line,
836    const char **data, int *flags)
837{
838	return (get_error_values(0, 1, file, line, data, flags));
839}
840LCRYPTO_ALIAS(ERR_peek_last_error_line_data);
841
842static unsigned long
843get_error_values(int inc, int top, const char **file, int *line,
844    const char **data, int *flags)
845{
846	int i = 0;
847	ERR_STATE *es;
848	unsigned long ret;
849
850	es = ERR_get_state();
851
852	if (inc && top) {
853		if (file)
854			*file = "";
855		if (line)
856			*line = 0;
857		if (data)
858			*data = "";
859		if (flags)
860			*flags = 0;
861
862		return ERR_R_INTERNAL_ERROR;
863	}
864
865	if (es->bottom == es->top)
866		return 0;
867	if (top)
868		i = es->top;			 /* last error */
869	else
870		i = (es->bottom + 1) % ERR_NUM_ERRORS; /* first error */
871
872	ret = es->err_buffer[i];
873	if (inc) {
874		es->bottom = i;
875		es->err_buffer[i] = 0;
876	}
877
878	if ((file != NULL) && (line != NULL)) {
879		if (es->err_file[i] == NULL) {
880			*file = "NA";
881			if (line != NULL)
882				*line = 0;
883		} else {
884			*file = es->err_file[i];
885			if (line != NULL)
886				*line = es->err_line[i];
887		}
888	}
889
890	if (data == NULL) {
891		if (inc) {
892			err_clear_data(es, i);
893		}
894	} else {
895		if (es->err_data[i] == NULL) {
896			*data = "";
897			if (flags != NULL)
898				*flags = 0;
899		} else {
900			*data = es->err_data[i];
901			if (flags != NULL)
902				*flags = es->err_data_flags[i];
903		}
904	}
905	return ret;
906}
907
908void
909ERR_error_string_n(unsigned long e, char *buf, size_t len)
910{
911	char lsbuf[30], fsbuf[30], rsbuf[30];
912	const char *ls, *fs, *rs;
913	int l, f, r, ret;
914
915	l = ERR_GET_LIB(e);
916	f = ERR_GET_FUNC(e);
917	r = ERR_GET_REASON(e);
918
919	ls = ERR_lib_error_string(e);
920	fs = ERR_func_error_string(e);
921	rs = ERR_reason_error_string(e);
922
923	if (ls == NULL) {
924		(void) snprintf(lsbuf, sizeof(lsbuf), "lib(%d)", l);
925		ls = lsbuf;
926	}
927	if (fs == NULL) {
928		(void) snprintf(fsbuf, sizeof(fsbuf), "func(%d)", f);
929		fs = fsbuf;
930	}
931	if (rs == NULL) {
932		(void) snprintf(rsbuf, sizeof(rsbuf), "reason(%d)", r);
933		rs = rsbuf;
934	}
935
936	ret = snprintf(buf, len, "error:%08lX:%s:%s:%s", e, ls, fs, rs);
937	if (ret == -1)
938		return;	/* can't happen, and can't do better if it does */
939	if (ret >= len) {
940		/* output may be truncated; make sure we always have 5
941		 * colon-separated fields, i.e. 4 colons ... */
942#define NUM_COLONS 4
943		if (len > NUM_COLONS) /* ... if possible */
944		{
945			int i;
946			char *s = buf;
947
948			for (i = 0; i < NUM_COLONS; i++) {
949				char *colon = strchr(s, ':');
950				if (colon == NULL ||
951				    colon > &buf[len - 1] - NUM_COLONS + i) {
952					/* set colon no. i at last possible position
953					 * (buf[len-1] is the terminating 0)*/
954					colon = &buf[len - 1] - NUM_COLONS + i;
955					*colon = ':';
956				}
957				s = colon + 1;
958			}
959		}
960	}
961}
962LCRYPTO_ALIAS(ERR_error_string_n);
963
964/* BAD for multi-threading: uses a local buffer if ret == NULL */
965/* ERR_error_string_n should be used instead for ret != NULL
966 * as ERR_error_string cannot know how large the buffer is */
967char *
968ERR_error_string(unsigned long e, char *ret)
969{
970	static char buf[256];
971
972	if (ret == NULL)
973		ret = buf;
974	ERR_error_string_n(e, ret, 256);
975
976	return ret;
977}
978LCRYPTO_ALIAS(ERR_error_string);
979
980LHASH_OF(ERR_STRING_DATA) *ERR_get_string_table(void)
981{
982	err_fns_check();
983	return ERRFN(err_get)(0);
984}
985
986LHASH_OF(ERR_STATE) *ERR_get_err_state_table(void)
987{
988	err_fns_check();
989	return ERRFN(thread_get)(0);
990}
991
992void
993ERR_release_err_state_table(LHASH_OF(ERR_STATE) **hash)
994{
995	err_fns_check();
996	ERRFN(thread_release)(hash);
997}
998LCRYPTO_ALIAS(ERR_release_err_state_table);
999
1000const char *
1001ERR_lib_error_string(unsigned long e)
1002{
1003	ERR_STRING_DATA d, *p;
1004	unsigned long l;
1005
1006	if (!OPENSSL_init_crypto(0, NULL))
1007		return NULL;
1008
1009	err_fns_check();
1010	l = ERR_GET_LIB(e);
1011	d.error = ERR_PACK(l, 0, 0);
1012	p = ERRFN(err_get_item)(&d);
1013	return ((p == NULL) ? NULL : p->string);
1014}
1015LCRYPTO_ALIAS(ERR_lib_error_string);
1016
1017const char *
1018ERR_func_error_string(unsigned long e)
1019{
1020	ERR_STRING_DATA d, *p;
1021	unsigned long l, f;
1022
1023	err_fns_check();
1024	l = ERR_GET_LIB(e);
1025	f = ERR_GET_FUNC(e);
1026	d.error = ERR_PACK(l, f, 0);
1027	p = ERRFN(err_get_item)(&d);
1028	return ((p == NULL) ? NULL : p->string);
1029}
1030LCRYPTO_ALIAS(ERR_func_error_string);
1031
1032const char *
1033ERR_reason_error_string(unsigned long e)
1034{
1035	ERR_STRING_DATA d, *p = NULL;
1036	unsigned long l, r;
1037
1038	err_fns_check();
1039	l = ERR_GET_LIB(e);
1040	r = ERR_GET_REASON(e);
1041	d.error = ERR_PACK(l, 0, r);
1042	p = ERRFN(err_get_item)(&d);
1043	if (!p) {
1044		d.error = ERR_PACK(0, 0, r);
1045		p = ERRFN(err_get_item)(&d);
1046	}
1047	return ((p == NULL) ? NULL : p->string);
1048}
1049LCRYPTO_ALIAS(ERR_reason_error_string);
1050
1051void
1052ERR_remove_thread_state(const CRYPTO_THREADID *id)
1053{
1054	ERR_STATE tmp;
1055
1056	if (id)
1057		CRYPTO_THREADID_cpy(&tmp.tid, id);
1058	else
1059		CRYPTO_THREADID_current(&tmp.tid);
1060	err_fns_check();
1061	/* thread_del_item automatically destroys the LHASH if the number of
1062	 * items reaches zero. */
1063	ERRFN(thread_del_item)(&tmp);
1064}
1065LCRYPTO_ALIAS(ERR_remove_thread_state);
1066
1067void
1068ERR_remove_state(unsigned long pid)
1069{
1070	ERR_remove_thread_state(NULL);
1071}
1072LCRYPTO_ALIAS(ERR_remove_state);
1073
1074ERR_STATE *
1075ERR_get_state(void)
1076{
1077	static ERR_STATE fallback;
1078	ERR_STATE *ret, tmp, *tmpp = NULL;
1079	int i;
1080	CRYPTO_THREADID tid;
1081
1082	err_fns_check();
1083	CRYPTO_THREADID_current(&tid);
1084	CRYPTO_THREADID_cpy(&tmp.tid, &tid);
1085	ret = ERRFN(thread_get_item)(&tmp);
1086
1087	/* ret == the error state, if NULL, make a new one */
1088	if (ret == NULL) {
1089		ret = malloc(sizeof(ERR_STATE));
1090		if (ret == NULL)
1091			return (&fallback);
1092		CRYPTO_THREADID_cpy(&ret->tid, &tid);
1093		ret->top = 0;
1094		ret->bottom = 0;
1095		for (i = 0; i < ERR_NUM_ERRORS; i++) {
1096			ret->err_data[i] = NULL;
1097			ret->err_data_flags[i] = 0;
1098		}
1099		tmpp = ERRFN(thread_set_item)(ret);
1100		/* To check if insertion failed, do a get. */
1101		if (ERRFN(thread_get_item)(ret) != ret) {
1102			ERR_STATE_free(ret); /* could not insert it */
1103			return (&fallback);
1104		}
1105		/* If a race occurred in this function and we came second, tmpp
1106		 * is the first one that we just replaced. */
1107		if (tmpp)
1108			ERR_STATE_free(tmpp);
1109	}
1110	return ret;
1111}
1112LCRYPTO_ALIAS(ERR_get_state);
1113
1114int
1115ERR_get_next_error_library(void)
1116{
1117	err_fns_check();
1118	return ERRFN(get_next_lib)();
1119}
1120LCRYPTO_ALIAS(ERR_get_next_error_library);
1121
1122void
1123ERR_set_error_data(char *data, int flags)
1124{
1125	ERR_STATE *es;
1126	int i;
1127
1128	es = ERR_get_state();
1129
1130	i = es->top;
1131	if (i == 0)
1132		i = ERR_NUM_ERRORS - 1;
1133
1134	err_clear_data(es, i);
1135	es->err_data[i] = data;
1136	es->err_data_flags[i] = flags;
1137}
1138LCRYPTO_ALIAS(ERR_set_error_data);
1139
1140void
1141ERR_asprintf_error_data(char * format, ...)
1142{
1143	char *errbuf = NULL;
1144	va_list ap;
1145	int r;
1146
1147	va_start(ap, format);
1148	r = vasprintf(&errbuf, format, ap);
1149	va_end(ap);
1150	if (r == -1)
1151		ERR_set_error_data("malloc failed", ERR_TXT_STRING);
1152	else
1153		ERR_set_error_data(errbuf, ERR_TXT_MALLOCED|ERR_TXT_STRING);
1154}
1155LCRYPTO_ALIAS(ERR_asprintf_error_data);
1156
1157void
1158ERR_add_error_vdata(int num, va_list args)
1159{
1160	char format[129];
1161	char *errbuf;
1162	int i;
1163
1164	format[0] = '\0';
1165	for (i = 0; i < num; i++) {
1166		if (strlcat(format, "%s", sizeof(format)) >= sizeof(format)) {
1167			ERR_set_error_data("too many errors", ERR_TXT_STRING);
1168			return;
1169		}
1170	}
1171	if (vasprintf(&errbuf, format, args) == -1)
1172		ERR_set_error_data("malloc failed", ERR_TXT_STRING);
1173	else
1174		ERR_set_error_data(errbuf, ERR_TXT_MALLOCED|ERR_TXT_STRING);
1175}
1176LCRYPTO_ALIAS(ERR_add_error_vdata);
1177
1178void
1179ERR_add_error_data(int num, ...)
1180{
1181	va_list args;
1182	va_start(args, num);
1183	ERR_add_error_vdata(num, args);
1184	va_end(args);
1185}
1186LCRYPTO_ALIAS(ERR_add_error_data);
1187
1188int
1189ERR_set_mark(void)
1190{
1191	ERR_STATE *es;
1192
1193	es = ERR_get_state();
1194
1195	if (es->bottom == es->top)
1196		return 0;
1197	es->err_flags[es->top] |= ERR_FLAG_MARK;
1198	return 1;
1199}
1200LCRYPTO_ALIAS(ERR_set_mark);
1201
1202int
1203ERR_pop_to_mark(void)
1204{
1205	ERR_STATE *es;
1206
1207	es = ERR_get_state();
1208
1209	while (es->bottom != es->top &&
1210	    (es->err_flags[es->top] & ERR_FLAG_MARK) == 0) {
1211		err_clear(es, es->top);
1212		es->top -= 1;
1213		if (es->top == -1)
1214			es->top = ERR_NUM_ERRORS - 1;
1215	}
1216
1217	if (es->bottom == es->top)
1218		return 0;
1219	es->err_flags[es->top]&=~ERR_FLAG_MARK;
1220	return 1;
1221}
1222LCRYPTO_ALIAS(ERR_pop_to_mark);
1223
1224void
1225err_clear_last_constant_time(int clear)
1226{
1227	ERR_STATE *es;
1228	int top;
1229
1230	es = ERR_get_state();
1231	if (es == NULL)
1232        return;
1233
1234	top = es->top;
1235
1236	es->err_flags[top] &= ~(0 - clear);
1237	es->err_buffer[top] &= ~(0UL - clear);
1238	es->err_file[top] = (const char *)((uintptr_t)es->err_file[top] &
1239	    ~((uintptr_t)0 - clear));
1240	es->err_line[top] |= 0 - clear;
1241
1242	es->top = (top + ERR_NUM_ERRORS - clear) % ERR_NUM_ERRORS;
1243}
1244