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