f866f2fdd0ab0122065f68459ed570848e548707
[openssl.git] / crypto / err / err.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include <stdarg.h>
12 #include <string.h>
13 #include <internal/cryptlib_int.h>
14 #include <internal/err.h>
15 #include <internal/err_int.h>
16 #include <openssl/lhash.h>
17 #include <openssl/crypto.h>
18 #include <openssl/buffer.h>
19 #include <openssl/bio.h>
20 #include <openssl/opensslconf.h>
21 #include <internal/thread_once.h>
22
23 static void err_load_strings(int lib, ERR_STRING_DATA *str);
24
25 static void ERR_STATE_free(ERR_STATE *s);
26 #ifndef OPENSSL_NO_ERR
27 static ERR_STRING_DATA ERR_str_libraries[] = {
28     {ERR_PACK(ERR_LIB_NONE, 0, 0), "unknown library"},
29     {ERR_PACK(ERR_LIB_SYS, 0, 0), "system library"},
30     {ERR_PACK(ERR_LIB_BN, 0, 0), "bignum routines"},
31     {ERR_PACK(ERR_LIB_RSA, 0, 0), "rsa routines"},
32     {ERR_PACK(ERR_LIB_DH, 0, 0), "Diffie-Hellman routines"},
33     {ERR_PACK(ERR_LIB_EVP, 0, 0), "digital envelope routines"},
34     {ERR_PACK(ERR_LIB_BUF, 0, 0), "memory buffer routines"},
35     {ERR_PACK(ERR_LIB_OBJ, 0, 0), "object identifier routines"},
36     {ERR_PACK(ERR_LIB_PEM, 0, 0), "PEM routines"},
37     {ERR_PACK(ERR_LIB_DSA, 0, 0), "dsa routines"},
38     {ERR_PACK(ERR_LIB_X509, 0, 0), "x509 certificate routines"},
39     {ERR_PACK(ERR_LIB_ASN1, 0, 0), "asn1 encoding routines"},
40     {ERR_PACK(ERR_LIB_CONF, 0, 0), "configuration file routines"},
41     {ERR_PACK(ERR_LIB_CRYPTO, 0, 0), "common libcrypto routines"},
42     {ERR_PACK(ERR_LIB_EC, 0, 0), "elliptic curve routines"},
43     {ERR_PACK(ERR_LIB_ECDSA, 0, 0), "ECDSA routines"},
44     {ERR_PACK(ERR_LIB_ECDH, 0, 0), "ECDH routines"},
45     {ERR_PACK(ERR_LIB_SSL, 0, 0), "SSL routines"},
46     {ERR_PACK(ERR_LIB_BIO, 0, 0), "BIO routines"},
47     {ERR_PACK(ERR_LIB_PKCS7, 0, 0), "PKCS7 routines"},
48     {ERR_PACK(ERR_LIB_X509V3, 0, 0), "X509 V3 routines"},
49     {ERR_PACK(ERR_LIB_PKCS12, 0, 0), "PKCS12 routines"},
50     {ERR_PACK(ERR_LIB_RAND, 0, 0), "random number generator"},
51     {ERR_PACK(ERR_LIB_DSO, 0, 0), "DSO support routines"},
52     {ERR_PACK(ERR_LIB_TS, 0, 0), "time stamp routines"},
53     {ERR_PACK(ERR_LIB_ENGINE, 0, 0), "engine routines"},
54     {ERR_PACK(ERR_LIB_OCSP, 0, 0), "OCSP routines"},
55     {ERR_PACK(ERR_LIB_UI, 0, 0), "UI routines"},
56     {ERR_PACK(ERR_LIB_FIPS, 0, 0), "FIPS routines"},
57     {ERR_PACK(ERR_LIB_CMS, 0, 0), "CMS routines"},
58     {ERR_PACK(ERR_LIB_HMAC, 0, 0), "HMAC routines"},
59     {ERR_PACK(ERR_LIB_CT, 0, 0), "CT routines"},
60     {ERR_PACK(ERR_LIB_ASYNC, 0, 0), "ASYNC routines"},
61     {ERR_PACK(ERR_LIB_KDF, 0, 0), "KDF routines"},
62     {0, NULL},
63 };
64
65 static ERR_STRING_DATA ERR_str_functs[] = {
66     {ERR_PACK(0, SYS_F_FOPEN, 0), "fopen"},
67     {ERR_PACK(0, SYS_F_CONNECT, 0), "connect"},
68     {ERR_PACK(0, SYS_F_GETSERVBYNAME, 0), "getservbyname"},
69     {ERR_PACK(0, SYS_F_SOCKET, 0), "socket"},
70     {ERR_PACK(0, SYS_F_IOCTLSOCKET, 0), "ioctlsocket"},
71     {ERR_PACK(0, SYS_F_BIND, 0), "bind"},
72     {ERR_PACK(0, SYS_F_LISTEN, 0), "listen"},
73     {ERR_PACK(0, SYS_F_ACCEPT, 0), "accept"},
74 # ifdef OPENSSL_SYS_WINDOWS
75     {ERR_PACK(0, SYS_F_WSASTARTUP, 0), "WSAstartup"},
76 # endif
77     {ERR_PACK(0, SYS_F_OPENDIR, 0), "opendir"},
78     {ERR_PACK(0, SYS_F_FREAD, 0), "fread"},
79     {ERR_PACK(0, SYS_F_GETADDRINFO, 0), "getaddrinfo"},
80     {ERR_PACK(0, SYS_F_GETNAMEINFO, 0), "getnameinfo"},
81     {ERR_PACK(0, SYS_F_SETSOCKOPT, 0), "setsockopt"},
82     {ERR_PACK(0, SYS_F_GETSOCKOPT, 0), "getsockopt"},
83     {ERR_PACK(0, SYS_F_GETSOCKNAME, 0), "getsockname"},
84     {ERR_PACK(0, SYS_F_GETHOSTBYNAME, 0), "gethostbyname"},
85     {ERR_PACK(0, SYS_F_FFLUSH, 0), "fflush"},
86     {0, NULL},
87 };
88
89 static ERR_STRING_DATA ERR_str_reasons[] = {
90     {ERR_R_SYS_LIB, "system lib"},
91     {ERR_R_BN_LIB, "BN lib"},
92     {ERR_R_RSA_LIB, "RSA lib"},
93     {ERR_R_DH_LIB, "DH lib"},
94     {ERR_R_EVP_LIB, "EVP lib"},
95     {ERR_R_BUF_LIB, "BUF lib"},
96     {ERR_R_OBJ_LIB, "OBJ lib"},
97     {ERR_R_PEM_LIB, "PEM lib"},
98     {ERR_R_DSA_LIB, "DSA lib"},
99     {ERR_R_X509_LIB, "X509 lib"},
100     {ERR_R_ASN1_LIB, "ASN1 lib"},
101     {ERR_R_EC_LIB, "EC lib"},
102     {ERR_R_BIO_LIB, "BIO lib"},
103     {ERR_R_PKCS7_LIB, "PKCS7 lib"},
104     {ERR_R_X509V3_LIB, "X509V3 lib"},
105     {ERR_R_ENGINE_LIB, "ENGINE lib"},
106     {ERR_R_ECDSA_LIB, "ECDSA lib"},
107
108     {ERR_R_NESTED_ASN1_ERROR, "nested asn1 error"},
109     {ERR_R_MISSING_ASN1_EOS, "missing asn1 eos"},
110
111     {ERR_R_FATAL, "fatal"},
112     {ERR_R_MALLOC_FAILURE, "malloc failure"},
113     {ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED,
114      "called a function you should not call"},
115     {ERR_R_PASSED_NULL_PARAMETER, "passed a null parameter"},
116     {ERR_R_INTERNAL_ERROR, "internal error"},
117     {ERR_R_DISABLED, "called a function that was disabled at compile-time"},
118     {ERR_R_INIT_FAIL, "init fail"},
119
120     {0, NULL},
121 };
122 #endif
123
124 static CRYPTO_ONCE err_init = CRYPTO_ONCE_STATIC_INIT;
125 static CRYPTO_THREAD_LOCAL err_thread_local;
126
127 static CRYPTO_ONCE err_string_init = CRYPTO_ONCE_STATIC_INIT;
128 static CRYPTO_RWLOCK *err_string_lock;
129
130 static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *);
131
132 /*
133  * The internal state
134  */
135
136 static LHASH_OF(ERR_STRING_DATA) *int_error_hash = NULL;
137 static int int_err_library_number = ERR_LIB_USER;
138
139 static unsigned long get_error_values(int inc, int top, const char **file,
140                                       int *line, const char **data,
141                                       int *flags);
142
143 static unsigned long err_string_data_hash(const ERR_STRING_DATA *a)
144 {
145     unsigned long ret, l;
146
147     l = a->error;
148     ret = l ^ ERR_GET_LIB(l) ^ ERR_GET_FUNC(l);
149     return (ret ^ ret % 19 * 13);
150 }
151
152 static int err_string_data_cmp(const ERR_STRING_DATA *a,
153                                const ERR_STRING_DATA *b)
154 {
155     return (int)(a->error - b->error);
156 }
157
158 static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *d)
159 {
160     ERR_STRING_DATA *p = NULL;
161
162     CRYPTO_THREAD_read_lock(err_string_lock);
163     if (int_error_hash != NULL)
164         p = lh_ERR_STRING_DATA_retrieve(int_error_hash, d);
165     CRYPTO_THREAD_unlock(err_string_lock);
166
167     return p;
168 }
169
170 #ifndef OPENSSL_NO_ERR
171 # define NUM_SYS_STR_REASONS 127
172 # define LEN_SYS_STR_REASON 32
173
174 static ERR_STRING_DATA SYS_str_reasons[NUM_SYS_STR_REASONS + 1];
175 /*
176  * SYS_str_reasons is filled with copies of strerror() results at
177  * initialization. 'errno' values up to 127 should cover all usual errors,
178  * others will be displayed numerically by ERR_error_string. It is crucial
179  * that we have something for each reason code that occurs in
180  * ERR_str_reasons, or bogus reason strings will be returned for SYSerr(),
181  * which always gets an errno value and never one of those 'standard' reason
182  * codes.
183  */
184
185 static void build_SYS_str_reasons(void)
186 {
187     /* OPENSSL_malloc cannot be used here, use static storage instead */
188     static char strerror_tab[NUM_SYS_STR_REASONS][LEN_SYS_STR_REASON];
189     static int init = 1;
190     int i;
191
192     CRYPTO_THREAD_write_lock(err_string_lock);
193     if (!init) {
194         CRYPTO_THREAD_unlock(err_string_lock);
195         return;
196     }
197
198     for (i = 1; i <= NUM_SYS_STR_REASONS; i++) {
199         ERR_STRING_DATA *str = &SYS_str_reasons[i - 1];
200
201         str->error = (unsigned long)i;
202         if (str->string == NULL) {
203             char (*dest)[LEN_SYS_STR_REASON] = &(strerror_tab[i - 1]);
204             if (openssl_strerror_r(i, *dest, sizeof(*dest)))
205                 str->string = *dest;
206         }
207         if (str->string == NULL)
208             str->string = "unknown";
209     }
210
211     /*
212      * Now we still have SYS_str_reasons[NUM_SYS_STR_REASONS] = {0, NULL}, as
213      * required by ERR_load_strings.
214      */
215
216     init = 0;
217
218     CRYPTO_THREAD_unlock(err_string_lock);
219 }
220 #endif
221
222 #define err_clear_data(p,i) \
223         do { \
224         if ((p)->err_data_flags[i] & ERR_TXT_MALLOCED) \
225                 {  \
226                 OPENSSL_free((p)->err_data[i]); \
227                 (p)->err_data[i]=NULL; \
228                 } \
229         (p)->err_data_flags[i]=0; \
230         } while(0)
231
232 #define err_clear(p,i) \
233         do { \
234         (p)->err_flags[i]=0; \
235         (p)->err_buffer[i]=0; \
236         err_clear_data(p,i); \
237         (p)->err_file[i]=NULL; \
238         (p)->err_line[i]= -1; \
239         } while(0)
240
241 static void ERR_STATE_free(ERR_STATE *s)
242 {
243     int i;
244
245     if (s == NULL)
246         return;
247
248     for (i = 0; i < ERR_NUM_ERRORS; i++) {
249         err_clear_data(s, i);
250     }
251     OPENSSL_free(s);
252 }
253
254 DEFINE_RUN_ONCE_STATIC(do_err_strings_init)
255 {
256     OPENSSL_init_crypto(0, NULL);
257     err_string_lock = CRYPTO_THREAD_lock_new();
258     return err_string_lock != NULL;
259 }
260
261 void err_cleanup(void)
262 {
263     CRYPTO_THREAD_cleanup_local(&err_thread_local);
264     CRYPTO_THREAD_lock_free(err_string_lock);
265     err_string_lock = NULL;
266 }
267
268 int ERR_load_ERR_strings(void)
269 {
270 #ifndef OPENSSL_NO_ERR
271     if (!RUN_ONCE(&err_string_init, do_err_strings_init))
272         return 0;
273
274     err_load_strings(0, ERR_str_libraries);
275     err_load_strings(0, ERR_str_reasons);
276     err_load_strings(ERR_LIB_SYS, ERR_str_functs);
277     build_SYS_str_reasons();
278     err_load_strings(ERR_LIB_SYS, SYS_str_reasons);
279 #endif
280     return 1;
281 }
282
283 static void err_load_strings(int lib, ERR_STRING_DATA *str)
284 {
285     CRYPTO_THREAD_write_lock(err_string_lock);
286     if (int_error_hash == NULL)
287         int_error_hash = lh_ERR_STRING_DATA_new(err_string_data_hash,
288                                                 err_string_data_cmp);
289     if (int_error_hash != NULL) {
290         for (; str->error; str++) {
291             if (lib)
292                 str->error |= ERR_PACK(lib, 0, 0);
293             (void)lh_ERR_STRING_DATA_insert(int_error_hash, str);
294         }
295     }
296     CRYPTO_THREAD_unlock(err_string_lock);
297 }
298
299 int ERR_load_strings(int lib, ERR_STRING_DATA *str)
300 {
301     if (ERR_load_ERR_strings() == 0)
302         return 0;
303     err_load_strings(lib, str);
304     return 1;
305 }
306
307 int ERR_unload_strings(int lib, ERR_STRING_DATA *str)
308 {
309     if (!RUN_ONCE(&err_string_init, do_err_strings_init))
310         return 0;
311
312     CRYPTO_THREAD_write_lock(err_string_lock);
313     if (int_error_hash != NULL) {
314         for (; str->error; str++) {
315             if (lib)
316                 str->error |= ERR_PACK(lib, 0, 0);
317             (void)lh_ERR_STRING_DATA_delete(int_error_hash, str);
318         }
319     }
320     CRYPTO_THREAD_unlock(err_string_lock);
321
322     return 1;
323 }
324
325 void err_free_strings_int(void)
326 {
327     if (!RUN_ONCE(&err_string_init, do_err_strings_init))
328         return;
329
330     CRYPTO_THREAD_write_lock(err_string_lock);
331     lh_ERR_STRING_DATA_free(int_error_hash);
332     int_error_hash = NULL;
333     CRYPTO_THREAD_unlock(err_string_lock);
334 }
335
336 /********************************************************/
337
338 void ERR_put_error(int lib, int func, int reason, const char *file, int line)
339 {
340     ERR_STATE *es;
341
342 #ifdef _OSD_POSIX
343     /*
344      * In the BS2000-OSD POSIX subsystem, the compiler generates path names
345      * in the form "*POSIX(/etc/passwd)". This dirty hack strips them to
346      * something sensible. @@@ We shouldn't modify a const string, though.
347      */
348     if (strncmp(file, "*POSIX(", sizeof("*POSIX(") - 1) == 0) {
349         char *end;
350
351         /* Skip the "*POSIX(" prefix */
352         file += sizeof("*POSIX(") - 1;
353         end = &file[strlen(file) - 1];
354         if (*end == ')')
355             *end = '\0';
356         /* Optional: use the basename of the path only. */
357         if ((end = strrchr(file, '/')) != NULL)
358             file = &end[1];
359     }
360 #endif
361     es = ERR_get_state();
362
363     es->top = (es->top + 1) % ERR_NUM_ERRORS;
364     if (es->top == es->bottom)
365         es->bottom = (es->bottom + 1) % ERR_NUM_ERRORS;
366     es->err_flags[es->top] = 0;
367     es->err_buffer[es->top] = ERR_PACK(lib, func, reason);
368     es->err_file[es->top] = file;
369     es->err_line[es->top] = line;
370     err_clear_data(es, es->top);
371 }
372
373 void ERR_clear_error(void)
374 {
375     int i;
376     ERR_STATE *es;
377
378     es = ERR_get_state();
379
380     for (i = 0; i < ERR_NUM_ERRORS; i++) {
381         err_clear(es, i);
382     }
383     es->top = es->bottom = 0;
384 }
385
386 unsigned long ERR_get_error(void)
387 {
388     return (get_error_values(1, 0, NULL, NULL, NULL, NULL));
389 }
390
391 unsigned long ERR_get_error_line(const char **file, int *line)
392 {
393     return (get_error_values(1, 0, file, line, NULL, NULL));
394 }
395
396 unsigned long ERR_get_error_line_data(const char **file, int *line,
397                                       const char **data, int *flags)
398 {
399     return (get_error_values(1, 0, file, line, data, flags));
400 }
401
402 unsigned long ERR_peek_error(void)
403 {
404     return (get_error_values(0, 0, NULL, NULL, NULL, NULL));
405 }
406
407 unsigned long ERR_peek_error_line(const char **file, int *line)
408 {
409     return (get_error_values(0, 0, file, line, NULL, NULL));
410 }
411
412 unsigned long ERR_peek_error_line_data(const char **file, int *line,
413                                        const char **data, int *flags)
414 {
415     return (get_error_values(0, 0, file, line, data, flags));
416 }
417
418 unsigned long ERR_peek_last_error(void)
419 {
420     return (get_error_values(0, 1, NULL, NULL, NULL, NULL));
421 }
422
423 unsigned long ERR_peek_last_error_line(const char **file, int *line)
424 {
425     return (get_error_values(0, 1, file, line, NULL, NULL));
426 }
427
428 unsigned long ERR_peek_last_error_line_data(const char **file, int *line,
429                                             const char **data, int *flags)
430 {
431     return (get_error_values(0, 1, file, line, data, flags));
432 }
433
434 static unsigned long get_error_values(int inc, int top, const char **file,
435                                       int *line, const char **data,
436                                       int *flags)
437 {
438     int i = 0;
439     ERR_STATE *es;
440     unsigned long ret;
441
442     es = ERR_get_state();
443
444     if (inc && top) {
445         if (file)
446             *file = "";
447         if (line)
448             *line = 0;
449         if (data)
450             *data = "";
451         if (flags)
452             *flags = 0;
453
454         return ERR_R_INTERNAL_ERROR;
455     }
456
457     if (es->bottom == es->top)
458         return 0;
459     if (top)
460         i = es->top;            /* last error */
461     else
462         i = (es->bottom + 1) % ERR_NUM_ERRORS; /* first error */
463
464     ret = es->err_buffer[i];
465     if (inc) {
466         es->bottom = i;
467         es->err_buffer[i] = 0;
468     }
469
470     if ((file != NULL) && (line != NULL)) {
471         if (es->err_file[i] == NULL) {
472             *file = "NA";
473             if (line != NULL)
474                 *line = 0;
475         } else {
476             *file = es->err_file[i];
477             if (line != NULL)
478                 *line = es->err_line[i];
479         }
480     }
481
482     if (data == NULL) {
483         if (inc) {
484             err_clear_data(es, i);
485         }
486     } else {
487         if (es->err_data[i] == NULL) {
488             *data = "";
489             if (flags != NULL)
490                 *flags = 0;
491         } else {
492             *data = es->err_data[i];
493             if (flags != NULL)
494                 *flags = es->err_data_flags[i];
495         }
496     }
497     return ret;
498 }
499
500 void ERR_error_string_n(unsigned long e, char *buf, size_t len)
501 {
502     char lsbuf[64], fsbuf[64], rsbuf[64];
503     const char *ls, *fs, *rs;
504     unsigned long l, f, r;
505
506     if (len == 0)
507         return;
508
509     l = ERR_GET_LIB(e);
510     f = ERR_GET_FUNC(e);
511     r = ERR_GET_REASON(e);
512
513     ls = ERR_lib_error_string(e);
514     fs = ERR_func_error_string(e);
515     rs = ERR_reason_error_string(e);
516
517     if (ls == NULL)
518         BIO_snprintf(lsbuf, sizeof(lsbuf), "lib(%lu)", l);
519     if (fs == NULL)
520         BIO_snprintf(fsbuf, sizeof(fsbuf), "func(%lu)", f);
521     if (rs == NULL)
522         BIO_snprintf(rsbuf, sizeof(rsbuf), "reason(%lu)", r);
523
524     BIO_snprintf(buf, len, "error:%08lX:%s:%s:%s", e, ls ? ls : lsbuf,
525                  fs ? fs : fsbuf, rs ? rs : rsbuf);
526     if (strlen(buf) == len - 1) {
527         /*
528          * output may be truncated; make sure we always have 5
529          * colon-separated fields, i.e. 4 colons ...
530          */
531 #define NUM_COLONS 4
532         if (len > NUM_COLONS) { /* ... if possible */
533             int i;
534             char *s = buf;
535
536             for (i = 0; i < NUM_COLONS; i++) {
537                 char *colon = strchr(s, ':');
538                 if (colon == NULL || colon > &buf[len - 1] - NUM_COLONS + i) {
539                     /*
540                      * set colon no. i at last possible position (buf[len-1]
541                      * is the terminating 0)
542                      */
543                     colon = &buf[len - 1] - NUM_COLONS + i;
544                     *colon = ':';
545                 }
546                 s = colon + 1;
547             }
548         }
549     }
550 }
551
552 /*
553  * ERR_error_string_n should be used instead for ret != NULL as
554  * ERR_error_string cannot know how large the buffer is
555  */
556 char *ERR_error_string(unsigned long e, char *ret)
557 {
558     static char buf[256];
559
560     if (ret == NULL)
561         ret = buf;
562     ERR_error_string_n(e, ret, 256);
563
564     return ret;
565 }
566
567 const char *ERR_lib_error_string(unsigned long e)
568 {
569     ERR_STRING_DATA d, *p;
570     unsigned long l;
571
572     if (!RUN_ONCE(&err_string_init, do_err_strings_init)) {
573         return NULL;
574     }
575
576     l = ERR_GET_LIB(e);
577     d.error = ERR_PACK(l, 0, 0);
578     p = int_err_get_item(&d);
579     return ((p == NULL) ? NULL : p->string);
580 }
581
582 const char *ERR_func_error_string(unsigned long e)
583 {
584     ERR_STRING_DATA d, *p;
585     unsigned long l, f;
586
587     if (!RUN_ONCE(&err_string_init, do_err_strings_init)) {
588         return NULL;
589     }
590
591     l = ERR_GET_LIB(e);
592     f = ERR_GET_FUNC(e);
593     d.error = ERR_PACK(l, f, 0);
594     p = int_err_get_item(&d);
595     return ((p == NULL) ? NULL : p->string);
596 }
597
598 const char *ERR_reason_error_string(unsigned long e)
599 {
600     ERR_STRING_DATA d, *p = NULL;
601     unsigned long l, r;
602
603     if (!RUN_ONCE(&err_string_init, do_err_strings_init)) {
604         return NULL;
605     }
606
607     l = ERR_GET_LIB(e);
608     r = ERR_GET_REASON(e);
609     d.error = ERR_PACK(l, 0, r);
610     p = int_err_get_item(&d);
611     if (!p) {
612         d.error = ERR_PACK(0, 0, r);
613         p = int_err_get_item(&d);
614     }
615     return ((p == NULL) ? NULL : p->string);
616 }
617
618 void err_delete_thread_state(void)
619 {
620     ERR_STATE *state = ERR_get_state();
621     if (state == NULL)
622         return;
623
624     CRYPTO_THREAD_set_local(&err_thread_local, NULL);
625     ERR_STATE_free(state);
626 }
627
628 #if OPENSSL_API_COMPAT < 0x10100000L
629 void ERR_remove_thread_state(void *dummy)
630 {
631 }
632 #endif
633
634 #if OPENSSL_API_COMPAT < 0x10000000L
635 void ERR_remove_state(unsigned long pid)
636 {
637 }
638 #endif
639
640 DEFINE_RUN_ONCE_STATIC(err_do_init)
641 {
642     return CRYPTO_THREAD_init_local(&err_thread_local, NULL);
643 }
644
645 ERR_STATE *ERR_get_state(void)
646 {
647     ERR_STATE *state = NULL;
648
649     if (!RUN_ONCE(&err_init, err_do_init))
650         return NULL;
651
652     state = CRYPTO_THREAD_get_local(&err_thread_local);
653
654     if (state == NULL) {
655         state = OPENSSL_zalloc(sizeof(*state));
656         if (state == NULL)
657             return NULL;
658
659         if (!CRYPTO_THREAD_set_local(&err_thread_local, state)) {
660             ERR_STATE_free(state);
661             return NULL;
662         }
663
664         /* Ignore failures from these */
665         OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
666         ossl_init_thread_start(OPENSSL_INIT_THREAD_ERR_STATE);
667     }
668
669     return state;
670 }
671
672 int ERR_get_next_error_library(void)
673 {
674     int ret;
675
676     if (!RUN_ONCE(&err_string_init, do_err_strings_init)) {
677         return 0;
678     }
679
680     CRYPTO_THREAD_write_lock(err_string_lock);
681     ret = int_err_library_number++;
682     CRYPTO_THREAD_unlock(err_string_lock);
683     return ret;
684 }
685
686 void ERR_set_error_data(char *data, int flags)
687 {
688     ERR_STATE *es;
689     int i;
690
691     es = ERR_get_state();
692
693     i = es->top;
694     if (i == 0)
695         i = ERR_NUM_ERRORS - 1;
696
697     err_clear_data(es, i);
698     es->err_data[i] = data;
699     es->err_data_flags[i] = flags;
700 }
701
702 void ERR_add_error_data(int num, ...)
703 {
704     va_list args;
705     va_start(args, num);
706     ERR_add_error_vdata(num, args);
707     va_end(args);
708 }
709
710 void ERR_add_error_vdata(int num, va_list args)
711 {
712     int i, n, s;
713     char *str, *p, *a;
714
715     s = 80;
716     str = OPENSSL_malloc(s + 1);
717     if (str == NULL)
718         return;
719     str[0] = '\0';
720
721     n = 0;
722     for (i = 0; i < num; i++) {
723         a = va_arg(args, char *);
724         /* ignore NULLs, thanks to Bob Beck <beck@obtuse.com> */
725         if (a != NULL) {
726             n += strlen(a);
727             if (n > s) {
728                 s = n + 20;
729                 p = OPENSSL_realloc(str, s + 1);
730                 if (p == NULL) {
731                     OPENSSL_free(str);
732                     return;
733                 }
734                 str = p;
735             }
736             OPENSSL_strlcat(str, a, (size_t)s + 1);
737         }
738     }
739     ERR_set_error_data(str, ERR_TXT_MALLOCED | ERR_TXT_STRING);
740 }
741
742 int ERR_set_mark(void)
743 {
744     ERR_STATE *es;
745
746     es = ERR_get_state();
747
748     if (es->bottom == es->top)
749         return 0;
750     es->err_flags[es->top] |= ERR_FLAG_MARK;
751     return 1;
752 }
753
754 int ERR_pop_to_mark(void)
755 {
756     ERR_STATE *es;
757
758     es = ERR_get_state();
759
760     while (es->bottom != es->top
761            && (es->err_flags[es->top] & ERR_FLAG_MARK) == 0) {
762         err_clear(es, es->top);
763         es->top -= 1;
764         if (es->top == -1)
765             es->top = ERR_NUM_ERRORS - 1;
766     }
767
768     if (es->bottom == es->top)
769         return 0;
770     es->err_flags[es->top] &= ~ERR_FLAG_MARK;
771     return 1;
772 }