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