Fold threads.h into crypto.h making API public
[openssl.git] / crypto / err / err.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57 /* ====================================================================
58  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
59  *
60  * Redistribution and use in source and binary forms, with or without
61  * modification, are permitted provided that the following conditions
62  * are met:
63  *
64  * 1. Redistributions of source code must retain the above copyright
65  *    notice, this list of conditions and the following disclaimer.
66  *
67  * 2. Redistributions in binary form must reproduce the above copyright
68  *    notice, this list of conditions and the following disclaimer in
69  *    the documentation and/or other materials provided with the
70  *    distribution.
71  *
72  * 3. All advertising materials mentioning features or use of this
73  *    software must display the following acknowledgment:
74  *    "This product includes software developed by the OpenSSL Project
75  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
76  *
77  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
78  *    endorse or promote products derived from this software without
79  *    prior written permission. For written permission, please contact
80  *    openssl-core@openssl.org.
81  *
82  * 5. Products derived from this software may not be called "OpenSSL"
83  *    nor may "OpenSSL" appear in their names without prior written
84  *    permission of the OpenSSL Project.
85  *
86  * 6. Redistributions of any form whatsoever must retain the following
87  *    acknowledgment:
88  *    "This product includes software developed by the OpenSSL Project
89  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
90  *
91  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
92  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
93  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
95  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
96  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
98  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
100  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
101  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102  * OF THE POSSIBILITY OF SUCH DAMAGE.
103  * ====================================================================
104  *
105  * This product includes cryptographic software written by Eric Young
106  * (eay@cryptsoft.com).  This product includes software written by Tim
107  * Hudson (tjh@cryptsoft.com).
108  *
109  */
110
111 #include <stdio.h>
112 #include <stdarg.h>
113 #include <string.h>
114 #include <internal/cryptlib_int.h>
115 #include <internal/err.h>
116 #include <internal/err_int.h>
117 #include <openssl/lhash.h>
118 #include <openssl/crypto.h>
119 #include <openssl/buffer.h>
120 #include <openssl/bio.h>
121 #include <openssl/opensslconf.h>
122
123 static void err_load_strings(int lib, ERR_STRING_DATA *str);
124
125 static void ERR_STATE_free(ERR_STATE *s);
126 #ifndef OPENSSL_NO_ERR
127 static ERR_STRING_DATA ERR_str_libraries[] = {
128     {ERR_PACK(ERR_LIB_NONE, 0, 0), "unknown library"},
129     {ERR_PACK(ERR_LIB_SYS, 0, 0), "system library"},
130     {ERR_PACK(ERR_LIB_BN, 0, 0), "bignum routines"},
131     {ERR_PACK(ERR_LIB_RSA, 0, 0), "rsa routines"},
132     {ERR_PACK(ERR_LIB_DH, 0, 0), "Diffie-Hellman routines"},
133     {ERR_PACK(ERR_LIB_EVP, 0, 0), "digital envelope routines"},
134     {ERR_PACK(ERR_LIB_BUF, 0, 0), "memory buffer routines"},
135     {ERR_PACK(ERR_LIB_OBJ, 0, 0), "object identifier routines"},
136     {ERR_PACK(ERR_LIB_PEM, 0, 0), "PEM routines"},
137     {ERR_PACK(ERR_LIB_DSA, 0, 0), "dsa routines"},
138     {ERR_PACK(ERR_LIB_X509, 0, 0), "x509 certificate routines"},
139     {ERR_PACK(ERR_LIB_ASN1, 0, 0), "asn1 encoding routines"},
140     {ERR_PACK(ERR_LIB_CONF, 0, 0), "configuration file routines"},
141     {ERR_PACK(ERR_LIB_CRYPTO, 0, 0), "common libcrypto routines"},
142     {ERR_PACK(ERR_LIB_EC, 0, 0), "elliptic curve routines"},
143     {ERR_PACK(ERR_LIB_ECDSA, 0, 0), "ECDSA routines"},
144     {ERR_PACK(ERR_LIB_ECDH, 0, 0), "ECDH 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     {ERR_PACK(ERR_LIB_CT, 0, 0), "CT routines"},
159     {ERR_PACK(ERR_LIB_ASYNC, 0, 0), "ASYNC routines"},
160     {ERR_PACK(ERR_LIB_KDF, 0, 0), "KDF routines"},
161     {0, NULL},
162 };
163
164 static ERR_STRING_DATA ERR_str_functs[] = {
165     {ERR_PACK(0, SYS_F_FOPEN, 0), "fopen"},
166     {ERR_PACK(0, SYS_F_CONNECT, 0), "connect"},
167     {ERR_PACK(0, SYS_F_GETSERVBYNAME, 0), "getservbyname"},
168     {ERR_PACK(0, SYS_F_SOCKET, 0), "socket"},
169     {ERR_PACK(0, SYS_F_IOCTLSOCKET, 0), "ioctlsocket"},
170     {ERR_PACK(0, SYS_F_BIND, 0), "bind"},
171     {ERR_PACK(0, SYS_F_LISTEN, 0), "listen"},
172     {ERR_PACK(0, SYS_F_ACCEPT, 0), "accept"},
173 # ifdef OPENSSL_SYS_WINDOWS
174     {ERR_PACK(0, SYS_F_WSASTARTUP, 0), "WSAstartup"},
175 # endif
176     {ERR_PACK(0, SYS_F_OPENDIR, 0), "opendir"},
177     {ERR_PACK(0, SYS_F_FREAD, 0), "fread"},
178     {ERR_PACK(0, SYS_F_GETADDRINFO, 0), "getaddrinfo"},
179     {ERR_PACK(0, SYS_F_GETNAMEINFO, 0), "getnameinfo"},
180     {ERR_PACK(0, SYS_F_SETSOCKOPT, 0), "setsockopt"},
181     {ERR_PACK(0, SYS_F_GETSOCKOPT, 0), "getsockopt"},
182     {ERR_PACK(0, SYS_F_GETSOCKNAME, 0), "getsockname"},
183     {ERR_PACK(0, SYS_F_GETHOSTBYNAME, 0), "gethostbyname"},
184     {0, NULL},
185 };
186
187 static ERR_STRING_DATA ERR_str_reasons[] = {
188     {ERR_R_SYS_LIB, "system lib"},
189     {ERR_R_BN_LIB, "BN lib"},
190     {ERR_R_RSA_LIB, "RSA lib"},
191     {ERR_R_DH_LIB, "DH lib"},
192     {ERR_R_EVP_LIB, "EVP lib"},
193     {ERR_R_BUF_LIB, "BUF lib"},
194     {ERR_R_OBJ_LIB, "OBJ lib"},
195     {ERR_R_PEM_LIB, "PEM lib"},
196     {ERR_R_DSA_LIB, "DSA lib"},
197     {ERR_R_X509_LIB, "X509 lib"},
198     {ERR_R_ASN1_LIB, "ASN1 lib"},
199     {ERR_R_CONF_LIB, "CONF lib"},
200     {ERR_R_CRYPTO_LIB, "CRYPTO lib"},
201     {ERR_R_EC_LIB, "EC lib"},
202     {ERR_R_SSL_LIB, "SSL lib"},
203     {ERR_R_BIO_LIB, "BIO lib"},
204     {ERR_R_PKCS7_LIB, "PKCS7 lib"},
205     {ERR_R_X509V3_LIB, "X509V3 lib"},
206     {ERR_R_PKCS12_LIB, "PKCS12 lib"},
207     {ERR_R_RAND_LIB, "RAND lib"},
208     {ERR_R_DSO_LIB, "DSO lib"},
209     {ERR_R_ENGINE_LIB, "ENGINE lib"},
210     {ERR_R_OCSP_LIB, "OCSP lib"},
211     {ERR_R_TS_LIB, "TS lib"},
212     {ERR_R_ECDSA_LIB, "ECDSA lib"},
213
214     {ERR_R_NESTED_ASN1_ERROR, "nested asn1 error"},
215     {ERR_R_BAD_ASN1_OBJECT_HEADER, "bad asn1 object header"},
216     {ERR_R_BAD_GET_ASN1_OBJECT_CALL, "bad get asn1 object call"},
217     {ERR_R_EXPECTING_AN_ASN1_SEQUENCE, "expecting an asn1 sequence"},
218     {ERR_R_ASN1_LENGTH_MISMATCH, "asn1 length mismatch"},
219     {ERR_R_MISSING_ASN1_EOS, "missing asn1 eos"},
220
221     {ERR_R_FATAL, "fatal"},
222     {ERR_R_MALLOC_FAILURE, "malloc failure"},
223     {ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED,
224      "called a function you should not call"},
225     {ERR_R_PASSED_NULL_PARAMETER, "passed a null parameter"},
226     {ERR_R_INTERNAL_ERROR, "internal error"},
227     {ERR_R_DISABLED, "called a function that was disabled at compile-time"},
228     {ERR_R_INIT_FAIL, "init fail"},
229
230     {0, NULL},
231 };
232 #endif
233
234 static CRYPTO_ONCE err_init = CRYPTO_ONCE_STATIC_INIT;
235 static CRYPTO_THREAD_LOCAL err_thread_local;
236
237 static CRYPTO_ONCE err_string_init = CRYPTO_ONCE_STATIC_INIT;
238 static CRYPTO_RWLOCK *err_string_lock;
239
240 /* Predeclarations of the "err_defaults" functions */
241 static LHASH_OF(ERR_STRING_DATA) *get_hash(int create, int lockit);
242 static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *);
243
244 /*
245  * The internal state
246  */
247
248 static LHASH_OF(ERR_STRING_DATA) *int_error_hash = NULL;
249 static int int_err_library_number = ERR_LIB_USER;
250
251 static unsigned long get_error_values(int inc, int top, const char **file,
252                                       int *line, const char **data,
253                                       int *flags);
254
255 static unsigned long err_string_data_hash(const ERR_STRING_DATA *a)
256 {
257     unsigned long ret, l;
258
259     l = a->error;
260     ret = l ^ ERR_GET_LIB(l) ^ ERR_GET_FUNC(l);
261     return (ret ^ ret % 19 * 13);
262 }
263
264 static int err_string_data_cmp(const ERR_STRING_DATA *a,
265                                const ERR_STRING_DATA *b)
266 {
267     return (int)(a->error - b->error);
268 }
269
270 static LHASH_OF(ERR_STRING_DATA) *get_hash(int create, int lockit)
271 {
272     LHASH_OF(ERR_STRING_DATA) *ret = NULL;
273
274     if (lockit)
275         CRYPTO_THREAD_write_lock(err_string_lock);
276     if (!int_error_hash && create) {
277         int_error_hash = lh_ERR_STRING_DATA_new(err_string_data_hash,
278                                                 err_string_data_cmp);
279     }
280     if (int_error_hash != NULL)
281         ret = int_error_hash;
282     if (lockit)
283         CRYPTO_THREAD_unlock(err_string_lock);
284
285     return ret;
286 }
287
288 static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *d)
289 {
290     ERR_STRING_DATA *p = NULL;
291     LHASH_OF(ERR_STRING_DATA) *hash;
292
293     CRYPTO_THREAD_read_lock(err_string_lock);
294     hash = get_hash(0, 0);
295     if (hash)
296         p = lh_ERR_STRING_DATA_retrieve(hash, d);
297     CRYPTO_THREAD_unlock(err_string_lock);
298
299     return p;
300 }
301
302 #ifndef OPENSSL_NO_ERR
303 # define NUM_SYS_STR_REASONS 127
304 # define LEN_SYS_STR_REASON 32
305
306 static ERR_STRING_DATA SYS_str_reasons[NUM_SYS_STR_REASONS + 1];
307 /*
308  * SYS_str_reasons is filled with copies of strerror() results at
309  * initialization. 'errno' values up to 127 should cover all usual errors,
310  * others will be displayed numerically by ERR_error_string. It is crucial
311  * that we have something for each reason code that occurs in
312  * ERR_str_reasons, or bogus reason strings will be returned for SYSerr(),
313  * which always gets an errno value and never one of those 'standard' reason
314  * codes.
315  */
316
317 static void build_SYS_str_reasons(void)
318 {
319     /* OPENSSL_malloc cannot be used here, use static storage instead */
320     static char strerror_tab[NUM_SYS_STR_REASONS][LEN_SYS_STR_REASON];
321     static int init = 1;
322     int i;
323
324     CRYPTO_THREAD_write_lock(err_string_lock);
325     if (!init) {
326         CRYPTO_THREAD_unlock(err_string_lock);
327         return;
328     }
329
330     for (i = 1; i <= NUM_SYS_STR_REASONS; i++) {
331         ERR_STRING_DATA *str = &SYS_str_reasons[i - 1];
332
333         str->error = (unsigned long)i;
334         if (str->string == NULL) {
335             char (*dest)[LEN_SYS_STR_REASON] = &(strerror_tab[i - 1]);
336             char *src = strerror(i);
337             if (src != NULL) {
338                 strncpy(*dest, src, sizeof(*dest));
339                 (*dest)[sizeof(*dest) - 1] = '\0';
340                 str->string = *dest;
341             }
342         }
343         if (str->string == NULL)
344             str->string = "unknown";
345     }
346
347     /*
348      * Now we still have SYS_str_reasons[NUM_SYS_STR_REASONS] = {0, NULL}, as
349      * required by ERR_load_strings.
350      */
351
352     init = 0;
353
354     CRYPTO_THREAD_unlock(err_string_lock);
355 }
356 #endif
357
358 #define err_clear_data(p,i) \
359         do { \
360         if ((p)->err_data_flags[i] & ERR_TXT_MALLOCED) \
361                 {  \
362                 OPENSSL_free((p)->err_data[i]); \
363                 (p)->err_data[i]=NULL; \
364                 } \
365         (p)->err_data_flags[i]=0; \
366         } while(0)
367
368 #define err_clear(p,i) \
369         do { \
370         (p)->err_flags[i]=0; \
371         (p)->err_buffer[i]=0; \
372         err_clear_data(p,i); \
373         (p)->err_file[i]=NULL; \
374         (p)->err_line[i]= -1; \
375         } while(0)
376
377 static void ERR_STATE_free(ERR_STATE *s)
378 {
379     int i;
380
381     if (s == NULL)
382         return;
383
384     for (i = 0; i < ERR_NUM_ERRORS; i++) {
385         err_clear_data(s, i);
386     }
387     OPENSSL_free(s);
388 }
389
390 static void do_err_strings_init(void)
391 {
392     err_string_lock = CRYPTO_THREAD_lock_new();
393 }
394
395 void err_cleanup(void)
396 {
397     CRYPTO_THREAD_lock_free(err_string_lock);
398     err_string_lock = NULL;
399 }
400
401 void ERR_load_ERR_strings(void)
402 {
403 #ifndef OPENSSL_NO_ERR
404     CRYPTO_THREAD_run_once(&err_string_init, do_err_strings_init);
405
406     err_load_strings(0, ERR_str_libraries);
407     err_load_strings(0, ERR_str_reasons);
408     err_load_strings(ERR_LIB_SYS, ERR_str_functs);
409     build_SYS_str_reasons();
410     err_load_strings(ERR_LIB_SYS, SYS_str_reasons);
411 #endif
412 }
413
414 static void err_load_strings(int lib, ERR_STRING_DATA *str)
415 {
416     LHASH_OF(ERR_STRING_DATA) *hash;
417
418     CRYPTO_THREAD_write_lock(err_string_lock);
419     hash = get_hash(1, 0);
420     if (hash) {
421         for (; str->error; str++) {
422             if (lib)
423                 str->error |= ERR_PACK(lib, 0, 0);
424             (void)lh_ERR_STRING_DATA_insert(hash, str);
425         }
426     }
427     CRYPTO_THREAD_unlock(err_string_lock);
428 }
429
430 void ERR_load_strings(int lib, ERR_STRING_DATA *str)
431 {
432     ERR_load_ERR_strings();
433     err_load_strings(lib, str);
434 }
435
436 void ERR_unload_strings(int lib, ERR_STRING_DATA *str)
437 {
438     LHASH_OF(ERR_STRING_DATA) *hash;
439
440     CRYPTO_THREAD_run_once(&err_string_init, do_err_strings_init);
441
442     CRYPTO_THREAD_write_lock(err_string_lock);
443     hash = get_hash(0, 0);
444     if (hash) {
445         for (; str->error; str++) {
446             if (lib)
447                 str->error |= ERR_PACK(lib, 0, 0);
448             (void)lh_ERR_STRING_DATA_delete(hash, str);
449         }
450     }
451     CRYPTO_THREAD_unlock(err_string_lock);
452 }
453
454 void err_free_strings_int(void)
455 {
456     CRYPTO_THREAD_run_once(&err_string_init, do_err_strings_init);
457
458     CRYPTO_THREAD_write_lock(err_string_lock);
459     lh_ERR_STRING_DATA_free(int_error_hash);
460     int_error_hash = NULL;
461     CRYPTO_THREAD_unlock(err_string_lock);
462 }
463
464 /********************************************************/
465
466 void ERR_put_error(int lib, int func, int reason, const char *file, int line)
467 {
468     ERR_STATE *es;
469
470 #ifdef _OSD_POSIX
471     /*
472      * In the BS2000-OSD POSIX subsystem, the compiler generates path names
473      * in the form "*POSIX(/etc/passwd)". This dirty hack strips them to
474      * something sensible. @@@ We shouldn't modify a const string, though.
475      */
476     if (strncmp(file, "*POSIX(", sizeof("*POSIX(") - 1) == 0) {
477         char *end;
478
479         /* Skip the "*POSIX(" prefix */
480         file += sizeof("*POSIX(") - 1;
481         end = &file[strlen(file) - 1];
482         if (*end == ')')
483             *end = '\0';
484         /* Optional: use the basename of the path only. */
485         if ((end = strrchr(file, '/')) != NULL)
486             file = &end[1];
487     }
488 #endif
489     es = ERR_get_state();
490
491     es->top = (es->top + 1) % ERR_NUM_ERRORS;
492     if (es->top == es->bottom)
493         es->bottom = (es->bottom + 1) % ERR_NUM_ERRORS;
494     es->err_flags[es->top] = 0;
495     es->err_buffer[es->top] = ERR_PACK(lib, func, reason);
496     es->err_file[es->top] = file;
497     es->err_line[es->top] = line;
498     err_clear_data(es, es->top);
499 }
500
501 void ERR_clear_error(void)
502 {
503     int i;
504     ERR_STATE *es;
505
506     es = ERR_get_state();
507
508     for (i = 0; i < ERR_NUM_ERRORS; i++) {
509         err_clear(es, i);
510     }
511     es->top = es->bottom = 0;
512 }
513
514 unsigned long ERR_get_error(void)
515 {
516     return (get_error_values(1, 0, NULL, NULL, NULL, NULL));
517 }
518
519 unsigned long ERR_get_error_line(const char **file, int *line)
520 {
521     return (get_error_values(1, 0, file, line, NULL, NULL));
522 }
523
524 unsigned long ERR_get_error_line_data(const char **file, int *line,
525                                       const char **data, int *flags)
526 {
527     return (get_error_values(1, 0, file, line, data, flags));
528 }
529
530 unsigned long ERR_peek_error(void)
531 {
532     return (get_error_values(0, 0, NULL, NULL, NULL, NULL));
533 }
534
535 unsigned long ERR_peek_error_line(const char **file, int *line)
536 {
537     return (get_error_values(0, 0, file, line, NULL, NULL));
538 }
539
540 unsigned long ERR_peek_error_line_data(const char **file, int *line,
541                                        const char **data, int *flags)
542 {
543     return (get_error_values(0, 0, file, line, data, flags));
544 }
545
546 unsigned long ERR_peek_last_error(void)
547 {
548     return (get_error_values(0, 1, NULL, NULL, NULL, NULL));
549 }
550
551 unsigned long ERR_peek_last_error_line(const char **file, int *line)
552 {
553     return (get_error_values(0, 1, file, line, NULL, NULL));
554 }
555
556 unsigned long ERR_peek_last_error_line_data(const char **file, int *line,
557                                             const char **data, int *flags)
558 {
559     return (get_error_values(0, 1, file, line, data, flags));
560 }
561
562 static unsigned long get_error_values(int inc, int top, const char **file,
563                                       int *line, const char **data,
564                                       int *flags)
565 {
566     int i = 0;
567     ERR_STATE *es;
568     unsigned long ret;
569
570     es = ERR_get_state();
571
572     if (inc && top) {
573         if (file)
574             *file = "";
575         if (line)
576             *line = 0;
577         if (data)
578             *data = "";
579         if (flags)
580             *flags = 0;
581
582         return ERR_R_INTERNAL_ERROR;
583     }
584
585     if (es->bottom == es->top)
586         return 0;
587     if (top)
588         i = es->top;            /* last error */
589     else
590         i = (es->bottom + 1) % ERR_NUM_ERRORS; /* first error */
591
592     ret = es->err_buffer[i];
593     if (inc) {
594         es->bottom = i;
595         es->err_buffer[i] = 0;
596     }
597
598     if ((file != NULL) && (line != NULL)) {
599         if (es->err_file[i] == NULL) {
600             *file = "NA";
601             if (line != NULL)
602                 *line = 0;
603         } else {
604             *file = es->err_file[i];
605             if (line != NULL)
606                 *line = es->err_line[i];
607         }
608     }
609
610     if (data == NULL) {
611         if (inc) {
612             err_clear_data(es, i);
613         }
614     } else {
615         if (es->err_data[i] == NULL) {
616             *data = "";
617             if (flags != NULL)
618                 *flags = 0;
619         } else {
620             *data = es->err_data[i];
621             if (flags != NULL)
622                 *flags = es->err_data_flags[i];
623         }
624     }
625     return ret;
626 }
627
628 void ERR_error_string_n(unsigned long e, char *buf, size_t len)
629 {
630     char lsbuf[64], fsbuf[64], rsbuf[64];
631     const char *ls, *fs, *rs;
632     unsigned long l, f, r;
633
634     l = ERR_GET_LIB(e);
635     f = ERR_GET_FUNC(e);
636     r = ERR_GET_REASON(e);
637
638     ls = ERR_lib_error_string(e);
639     fs = ERR_func_error_string(e);
640     rs = ERR_reason_error_string(e);
641
642     if (ls == NULL)
643         BIO_snprintf(lsbuf, sizeof(lsbuf), "lib(%lu)", l);
644     if (fs == NULL)
645         BIO_snprintf(fsbuf, sizeof(fsbuf), "func(%lu)", f);
646     if (rs == NULL)
647         BIO_snprintf(rsbuf, sizeof(rsbuf), "reason(%lu)", r);
648
649     BIO_snprintf(buf, len, "error:%08lX:%s:%s:%s", e, ls ? ls : lsbuf,
650                  fs ? fs : fsbuf, rs ? rs : rsbuf);
651     if (strlen(buf) == len - 1) {
652         /*
653          * output may be truncated; make sure we always have 5
654          * colon-separated fields, i.e. 4 colons ...
655          */
656 #define NUM_COLONS 4
657         if (len > NUM_COLONS) { /* ... if possible */
658             int i;
659             char *s = buf;
660
661             for (i = 0; i < NUM_COLONS; i++) {
662                 char *colon = strchr(s, ':');
663                 if (colon == NULL || colon > &buf[len - 1] - NUM_COLONS + i) {
664                     /*
665                      * set colon no. i at last possible position (buf[len-1]
666                      * is the terminating 0)
667                      */
668                     colon = &buf[len - 1] - NUM_COLONS + i;
669                     *colon = ':';
670                 }
671                 s = colon + 1;
672             }
673         }
674     }
675 }
676
677 /*
678  * ERR_error_string_n should be used instead for ret != NULL as
679  * ERR_error_string cannot know how large the buffer is
680  */
681 char *ERR_error_string(unsigned long e, char *ret)
682 {
683     static char buf[256];
684
685     if (ret == NULL)
686         ret = buf;
687     ERR_error_string_n(e, ret, 256);
688
689     return ret;
690 }
691
692 LHASH_OF(ERR_STRING_DATA) *ERR_get_string_table(void)
693 {
694     return get_hash(0, 1);
695 }
696
697 const char *ERR_lib_error_string(unsigned long e)
698 {
699     ERR_STRING_DATA d, *p;
700     unsigned long l;
701
702     CRYPTO_THREAD_run_once(&err_string_init, do_err_strings_init);
703
704     l = ERR_GET_LIB(e);
705     d.error = ERR_PACK(l, 0, 0);
706     p = int_err_get_item(&d);
707     return ((p == NULL) ? NULL : p->string);
708 }
709
710 const char *ERR_func_error_string(unsigned long e)
711 {
712     ERR_STRING_DATA d, *p;
713     unsigned long l, f;
714
715     CRYPTO_THREAD_run_once(&err_string_init, do_err_strings_init);
716
717     l = ERR_GET_LIB(e);
718     f = ERR_GET_FUNC(e);
719     d.error = ERR_PACK(l, f, 0);
720     p = int_err_get_item(&d);
721     return ((p == NULL) ? NULL : p->string);
722 }
723
724 const char *ERR_reason_error_string(unsigned long e)
725 {
726     ERR_STRING_DATA d, *p = NULL;
727     unsigned long l, r;
728
729     CRYPTO_THREAD_run_once(&err_string_init, do_err_strings_init);
730
731     l = ERR_GET_LIB(e);
732     r = ERR_GET_REASON(e);
733     d.error = ERR_PACK(l, 0, r);
734     p = int_err_get_item(&d);
735     if (!p) {
736         d.error = ERR_PACK(0, 0, r);
737         p = int_err_get_item(&d);
738     }
739     return ((p == NULL) ? NULL : p->string);
740 }
741
742 void err_delete_thread_state(void)
743 {
744     ERR_STATE *state = ERR_get_state();
745     if (state == NULL)
746         return;
747
748     CRYPTO_THREAD_set_local(&err_thread_local, NULL);
749     ERR_STATE_free(state);
750 }
751
752 #if OPENSSL_API_COMPAT < 0x10000000L
753 void ERR_remove_thread_state(void *dummy)
754 {
755 }
756 #endif
757
758 #if OPENSSL_API_COMPAT < 0x10000000L
759 void ERR_remove_state(unsigned long pid)
760 {
761 }
762 #endif
763
764 static void err_do_init(void)
765 {
766     CRYPTO_THREAD_init_local(&err_thread_local, NULL);
767 }
768
769 ERR_STATE *ERR_get_state(void)
770 {
771     ERR_STATE *state = NULL;
772
773     CRYPTO_THREAD_run_once(&err_init, err_do_init);
774
775     state = CRYPTO_THREAD_get_local(&err_thread_local);
776
777     if (state == NULL) {
778         state = OPENSSL_zalloc(sizeof(*state));
779         if (state == NULL)
780             return NULL;
781
782         if (!CRYPTO_THREAD_set_local(&err_thread_local, state)) {
783             ERR_STATE_free(state);
784             return NULL;
785         }
786
787         /* Ignore failures from these */
788         OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
789         ossl_init_thread_start(OPENSSL_INIT_THREAD_ERR_STATE);
790     }
791
792     return state;
793 }
794
795 int ERR_get_next_error_library(void)
796 {
797     int ret;
798
799     CRYPTO_THREAD_run_once(&err_string_init, do_err_strings_init);
800
801     CRYPTO_THREAD_write_lock(err_string_lock);
802     ret = int_err_library_number++;
803     CRYPTO_THREAD_unlock(err_string_lock);
804     return ret;
805 }
806
807 void ERR_set_error_data(char *data, int flags)
808 {
809     ERR_STATE *es;
810     int i;
811
812     es = ERR_get_state();
813
814     i = es->top;
815     if (i == 0)
816         i = ERR_NUM_ERRORS - 1;
817
818     err_clear_data(es, i);
819     es->err_data[i] = data;
820     es->err_data_flags[i] = flags;
821 }
822
823 void ERR_add_error_data(int num, ...)
824 {
825     va_list args;
826     va_start(args, num);
827     ERR_add_error_vdata(num, args);
828     va_end(args);
829 }
830
831 void ERR_add_error_vdata(int num, va_list args)
832 {
833     int i, n, s;
834     char *str, *p, *a;
835
836     s = 80;
837     str = OPENSSL_malloc(s + 1);
838     if (str == NULL)
839         return;
840     str[0] = '\0';
841
842     n = 0;
843     for (i = 0; i < num; i++) {
844         a = va_arg(args, char *);
845         /* ignore NULLs, thanks to Bob Beck <beck@obtuse.com> */
846         if (a != NULL) {
847             n += strlen(a);
848             if (n > s) {
849                 s = n + 20;
850                 p = OPENSSL_realloc(str, s + 1);
851                 if (p == NULL) {
852                     OPENSSL_free(str);
853                     return;
854                 }
855                 str = p;
856             }
857             OPENSSL_strlcat(str, a, (size_t)s + 1);
858         }
859     }
860     ERR_set_error_data(str, ERR_TXT_MALLOCED | ERR_TXT_STRING);
861 }
862
863 int ERR_set_mark(void)
864 {
865     ERR_STATE *es;
866
867     es = ERR_get_state();
868
869     if (es->bottom == es->top)
870         return 0;
871     es->err_flags[es->top] |= ERR_FLAG_MARK;
872     return 1;
873 }
874
875 int ERR_pop_to_mark(void)
876 {
877     ERR_STATE *es;
878
879     es = ERR_get_state();
880
881     while (es->bottom != es->top
882            && (es->err_flags[es->top] & ERR_FLAG_MARK) == 0) {
883         err_clear(es, es->top);
884         es->top -= 1;
885         if (es->top == -1)
886             es->top = ERR_NUM_ERRORS - 1;
887     }
888
889     if (es->bottom == es->top)
890         return 0;
891     es->err_flags[es->top] &= ~ERR_FLAG_MARK;
892     return 1;
893 }