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