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