OpenSSL 3.2.0, QUIC, macOS, error 56 on connected UDP socket
[openssl.git] / crypto / err / err.c
1 /*
2  * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (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 /* TODO: When ERR_STATE becomes opaque, this musts be removed */
11 #define OSSL_FORCE_ERR_STATE
12
13 #include <stdio.h>
14 #include <stdarg.h>
15 #include <string.h>
16 #include "crypto/cryptlib.h"
17 #include "internal/err.h"
18 #include "crypto/err.h"
19 #include <openssl/err.h>
20 #include <openssl/crypto.h>
21 #include <openssl/buffer.h>
22 #include <openssl/bio.h>
23 #include <openssl/opensslconf.h>
24 #include "internal/thread_once.h"
25 #include "crypto/ctype.h"
26 #include "internal/constant_time.h"
27 #include "e_os.h"
28 #include "err_local.h"
29
30 /* Forward declaration in case it's not published because of configuration */
31 ERR_STATE *ERR_get_state(void);
32
33 static int err_load_strings(const ERR_STRING_DATA *str);
34
35 static void ERR_STATE_free(ERR_STATE *s);
36 #ifndef OPENSSL_NO_ERR
37 static ERR_STRING_DATA ERR_str_libraries[] = {
38     {ERR_PACK(ERR_LIB_NONE, 0, 0), "unknown library"},
39     {ERR_PACK(ERR_LIB_SYS, 0, 0), "system library"},
40     {ERR_PACK(ERR_LIB_BN, 0, 0), "bignum routines"},
41     {ERR_PACK(ERR_LIB_RSA, 0, 0), "rsa routines"},
42     {ERR_PACK(ERR_LIB_DH, 0, 0), "Diffie-Hellman routines"},
43     {ERR_PACK(ERR_LIB_EVP, 0, 0), "digital envelope routines"},
44     {ERR_PACK(ERR_LIB_BUF, 0, 0), "memory buffer routines"},
45     {ERR_PACK(ERR_LIB_OBJ, 0, 0), "object identifier routines"},
46     {ERR_PACK(ERR_LIB_PEM, 0, 0), "PEM routines"},
47     {ERR_PACK(ERR_LIB_DSA, 0, 0), "dsa routines"},
48     {ERR_PACK(ERR_LIB_X509, 0, 0), "x509 certificate routines"},
49     {ERR_PACK(ERR_LIB_ASN1, 0, 0), "asn1 encoding routines"},
50     {ERR_PACK(ERR_LIB_CONF, 0, 0), "configuration file routines"},
51     {ERR_PACK(ERR_LIB_CRYPTO, 0, 0), "common libcrypto routines"},
52     {ERR_PACK(ERR_LIB_EC, 0, 0), "elliptic curve routines"},
53     {ERR_PACK(ERR_LIB_ECDSA, 0, 0), "ECDSA routines"},
54     {ERR_PACK(ERR_LIB_ECDH, 0, 0), "ECDH routines"},
55     {ERR_PACK(ERR_LIB_SSL, 0, 0), "SSL routines"},
56     {ERR_PACK(ERR_LIB_BIO, 0, 0), "BIO routines"},
57     {ERR_PACK(ERR_LIB_PKCS7, 0, 0), "PKCS7 routines"},
58     {ERR_PACK(ERR_LIB_X509V3, 0, 0), "X509 V3 routines"},
59     {ERR_PACK(ERR_LIB_PKCS12, 0, 0), "PKCS12 routines"},
60     {ERR_PACK(ERR_LIB_RAND, 0, 0), "random number generator"},
61     {ERR_PACK(ERR_LIB_DSO, 0, 0), "DSO support routines"},
62     {ERR_PACK(ERR_LIB_TS, 0, 0), "time stamp routines"},
63     {ERR_PACK(ERR_LIB_ENGINE, 0, 0), "engine routines"},
64     {ERR_PACK(ERR_LIB_OCSP, 0, 0), "OCSP routines"},
65     {ERR_PACK(ERR_LIB_UI, 0, 0), "UI routines"},
66     {ERR_PACK(ERR_LIB_FIPS, 0, 0), "FIPS routines"},
67     {ERR_PACK(ERR_LIB_CMS, 0, 0), "CMS routines"},
68     {ERR_PACK(ERR_LIB_CRMF, 0, 0), "CRMF routines"},
69     {ERR_PACK(ERR_LIB_CMP, 0, 0), "CMP routines"},
70     {ERR_PACK(ERR_LIB_HMAC, 0, 0), "HMAC routines"},
71     {ERR_PACK(ERR_LIB_CT, 0, 0), "CT routines"},
72     {ERR_PACK(ERR_LIB_ASYNC, 0, 0), "ASYNC routines"},
73     {ERR_PACK(ERR_LIB_OSSL_STORE, 0, 0), "STORE routines"},
74     {ERR_PACK(ERR_LIB_SM2, 0, 0), "SM2 routines"},
75     {ERR_PACK(ERR_LIB_ESS, 0, 0), "ESS routines"},
76     {ERR_PACK(ERR_LIB_PROV, 0, 0), "Provider routines"},
77     {0, NULL},
78 };
79
80 static ERR_STRING_DATA ERR_str_reasons[] = {
81     {ERR_R_SYS_LIB, "system lib"},
82     {ERR_R_BN_LIB, "BN lib"},
83     {ERR_R_RSA_LIB, "RSA lib"},
84     {ERR_R_DH_LIB, "DH lib"},
85     {ERR_R_EVP_LIB, "EVP lib"},
86     {ERR_R_BUF_LIB, "BUF lib"},
87     {ERR_R_OBJ_LIB, "OBJ lib"},
88     {ERR_R_PEM_LIB, "PEM lib"},
89     {ERR_R_DSA_LIB, "DSA lib"},
90     {ERR_R_X509_LIB, "X509 lib"},
91     {ERR_R_ASN1_LIB, "ASN1 lib"},
92     {ERR_R_EC_LIB, "EC lib"},
93     {ERR_R_BIO_LIB, "BIO lib"},
94     {ERR_R_PKCS7_LIB, "PKCS7 lib"},
95     {ERR_R_X509V3_LIB, "X509V3 lib"},
96     {ERR_R_ENGINE_LIB, "ENGINE lib"},
97     {ERR_R_UI_LIB, "UI lib"},
98     {ERR_R_OSSL_STORE_LIB, "STORE lib"},
99     {ERR_R_ECDSA_LIB, "ECDSA lib"},
100
101     {ERR_R_NESTED_ASN1_ERROR, "nested asn1 error"},
102     {ERR_R_MISSING_ASN1_EOS, "missing asn1 eos"},
103
104     {ERR_R_FATAL, "fatal"},
105     {ERR_R_MALLOC_FAILURE, "malloc failure"},
106     {ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED,
107      "called a function you should not call"},
108     {ERR_R_PASSED_NULL_PARAMETER, "passed a null parameter"},
109     {ERR_R_INTERNAL_ERROR, "internal error"},
110     {ERR_R_DISABLED, "called a function that was disabled at compile-time"},
111     {ERR_R_INIT_FAIL, "init fail"},
112     {ERR_R_OPERATION_FAIL, "operation fail"},
113
114     {0, NULL},
115 };
116 #endif
117
118 static CRYPTO_ONCE err_init = CRYPTO_ONCE_STATIC_INIT;
119 static int set_err_thread_local;
120 static CRYPTO_THREAD_LOCAL err_thread_local;
121
122 static CRYPTO_ONCE err_string_init = CRYPTO_ONCE_STATIC_INIT;
123 static CRYPTO_RWLOCK *err_string_lock;
124
125 static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *);
126
127 /*
128  * The internal state
129  */
130
131 static LHASH_OF(ERR_STRING_DATA) *int_error_hash = NULL;
132 static int int_err_library_number = ERR_LIB_USER;
133
134 typedef enum ERR_GET_ACTION_e {
135     EV_POP, EV_PEEK, EV_PEEK_LAST
136 } ERR_GET_ACTION;
137
138 static unsigned long get_error_values(ERR_GET_ACTION g,
139                                       const char **file, int *line,
140                                       const char **func, const char **data,
141                                       int *flags);
142
143 static unsigned long err_string_data_hash(const ERR_STRING_DATA *a)
144 {
145     unsigned long ret, l;
146
147     l = a->error;
148     ret = l ^ ERR_GET_LIB(l);
149     return (ret ^ ret % 19 * 13);
150 }
151
152 static int err_string_data_cmp(const ERR_STRING_DATA *a,
153                                const ERR_STRING_DATA *b)
154 {
155     if (a->error == b->error)
156         return 0;
157     return a->error > b->error ? 1 : -1;
158 }
159
160 static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *d)
161 {
162     ERR_STRING_DATA *p = NULL;
163
164     CRYPTO_THREAD_read_lock(err_string_lock);
165     p = lh_ERR_STRING_DATA_retrieve(int_error_hash, d);
166     CRYPTO_THREAD_unlock(err_string_lock);
167
168     return p;
169 }
170
171 #ifndef OPENSSL_NO_ERR
172 /* 2019-05-21: Russian and Ukrainian locales on Linux require more than 6,5 kB */
173 # define SPACE_SYS_STR_REASONS 8 * 1024
174 # define NUM_SYS_STR_REASONS 127
175
176 static ERR_STRING_DATA SYS_str_reasons[NUM_SYS_STR_REASONS + 1];
177 /*
178  * SYS_str_reasons is filled with copies of strerror() results at
179  * initialization. 'errno' values up to 127 should cover all usual errors,
180  * others will be displayed numerically by ERR_error_string. It is crucial
181  * that we have something for each reason code that occurs in
182  * ERR_str_reasons, or bogus reason strings will be returned for SYSerr(),
183  * which always gets an errno value and never one of those 'standard' reason
184  * codes.
185  */
186
187 static void build_SYS_str_reasons(void)
188 {
189     /* OPENSSL_malloc cannot be used here, use static storage instead */
190     static char strerror_pool[SPACE_SYS_STR_REASONS];
191     char *cur = strerror_pool;
192     size_t cnt = 0;
193     static int init = 1;
194     int i;
195     int saveerrno = get_last_sys_error();
196
197     CRYPTO_THREAD_write_lock(err_string_lock);
198     if (!init) {
199         CRYPTO_THREAD_unlock(err_string_lock);
200         return;
201     }
202
203     for (i = 1; i <= NUM_SYS_STR_REASONS; i++) {
204         ERR_STRING_DATA *str = &SYS_str_reasons[i - 1];
205
206         str->error = ERR_PACK(ERR_LIB_SYS, 0, i);
207         /*
208          * If we have used up all the space in strerror_pool,
209          * there's no point in calling openssl_strerror_r()
210          */
211         if (str->string == NULL && cnt < sizeof(strerror_pool)) {
212             if (openssl_strerror_r(i, cur, sizeof(strerror_pool) - cnt)) {
213                 size_t l = strlen(cur);
214
215                 str->string = cur;
216                 cnt += l;
217                 cur += l;
218
219                 /*
220                  * VMS has an unusual quirk of adding spaces at the end of
221                  * some (most? all?) messages. Lets trim them off.
222                  */
223                 while (cur > strerror_pool && ossl_isspace(cur[-1])) {
224                     cur--;
225                     cnt--;
226                 }
227                 *cur++ = '\0';
228                 cnt++;
229             }
230         }
231         if (str->string == NULL)
232             str->string = "unknown";
233     }
234
235     /*
236      * Now we still have SYS_str_reasons[NUM_SYS_STR_REASONS] = {0, NULL}, as
237      * required by ERR_load_strings.
238      */
239
240     init = 0;
241
242     CRYPTO_THREAD_unlock(err_string_lock);
243     /* openssl_strerror_r could change errno, but we want to preserve it */
244     set_sys_error(saveerrno);
245     err_load_strings(SYS_str_reasons);
246 }
247 #endif
248
249 static void ERR_STATE_free(ERR_STATE *s)
250 {
251     int i;
252
253     if (s == NULL)
254         return;
255     for (i = 0; i < ERR_NUM_ERRORS; i++) {
256         err_clear_data(s, i, 1);
257     }
258     OPENSSL_free(s);
259 }
260
261 DEFINE_RUN_ONCE_STATIC(do_err_strings_init)
262 {
263     if (!OPENSSL_init_crypto(0, NULL))
264         return 0;
265     err_string_lock = CRYPTO_THREAD_lock_new();
266     if (err_string_lock == NULL)
267         return 0;
268     int_error_hash = lh_ERR_STRING_DATA_new(err_string_data_hash,
269                                             err_string_data_cmp);
270     if (int_error_hash == NULL) {
271         CRYPTO_THREAD_lock_free(err_string_lock);
272         err_string_lock = NULL;
273         return 0;
274     }
275     return 1;
276 }
277
278 void err_cleanup(void)
279 {
280     if (set_err_thread_local != 0)
281         CRYPTO_THREAD_cleanup_local(&err_thread_local);
282     CRYPTO_THREAD_lock_free(err_string_lock);
283     err_string_lock = NULL;
284     lh_ERR_STRING_DATA_free(int_error_hash);
285     int_error_hash = NULL;
286 }
287
288 /*
289  * Legacy; pack in the library.
290  */
291 static void err_patch(int lib, ERR_STRING_DATA *str)
292 {
293     unsigned long plib = ERR_PACK(lib, 0, 0);
294
295     for (; str->error != 0; str++)
296         str->error |= plib;
297 }
298
299 /*
300  * Hash in |str| error strings. Assumes the URN_ONCE was done.
301  */
302 static int err_load_strings(const ERR_STRING_DATA *str)
303 {
304     CRYPTO_THREAD_write_lock(err_string_lock);
305     for (; str->error; str++)
306         (void)lh_ERR_STRING_DATA_insert(int_error_hash,
307                                        (ERR_STRING_DATA *)str);
308     CRYPTO_THREAD_unlock(err_string_lock);
309     return 1;
310 }
311
312 int ERR_load_ERR_strings(void)
313 {
314 #ifndef OPENSSL_NO_ERR
315     if (!RUN_ONCE(&err_string_init, do_err_strings_init))
316         return 0;
317
318     err_load_strings(ERR_str_libraries);
319     err_load_strings(ERR_str_reasons);
320     build_SYS_str_reasons();
321 #endif
322     return 1;
323 }
324
325 int ERR_load_strings(int lib, ERR_STRING_DATA *str)
326 {
327     if (ERR_load_ERR_strings() == 0)
328         return 0;
329
330     err_patch(lib, str);
331     err_load_strings(str);
332     return 1;
333 }
334
335 int ERR_load_strings_const(const ERR_STRING_DATA *str)
336 {
337     if (ERR_load_ERR_strings() == 0)
338         return 0;
339     err_load_strings(str);
340     return 1;
341 }
342
343 int ERR_unload_strings(int lib, ERR_STRING_DATA *str)
344 {
345     if (!RUN_ONCE(&err_string_init, do_err_strings_init))
346         return 0;
347
348     CRYPTO_THREAD_write_lock(err_string_lock);
349     /*
350      * We don't need to ERR_PACK the lib, since that was done (to
351      * the table) when it was loaded.
352      */
353     for (; str->error; str++)
354         (void)lh_ERR_STRING_DATA_delete(int_error_hash, str);
355     CRYPTO_THREAD_unlock(err_string_lock);
356
357     return 1;
358 }
359
360 void err_free_strings_int(void)
361 {
362     if (!RUN_ONCE(&err_string_init, do_err_strings_init))
363         return;
364 }
365
366 /********************************************************/
367
368 void ERR_clear_error(void)
369 {
370     int i;
371     ERR_STATE *es;
372
373     es = err_get_state_int();
374     if (es == NULL)
375         return;
376
377     for (i = 0; i < ERR_NUM_ERRORS; i++) {
378         err_clear(es, i, 0);
379     }
380     es->top = es->bottom = 0;
381 }
382
383 unsigned long ERR_get_error(void)
384 {
385     return get_error_values(EV_POP, NULL, NULL, NULL, NULL, NULL);
386 }
387
388 unsigned long ERR_get_error_line(const char **file, int *line)
389 {
390     return get_error_values(EV_POP, file, line, NULL, NULL, NULL);
391 }
392
393 unsigned long ERR_get_error_func(const char **func)
394 {
395     return get_error_values(EV_POP, NULL, NULL, func, NULL, NULL);
396 }
397
398 unsigned long ERR_get_error_data(const char **data, int *flags)
399 {
400     return get_error_values(EV_POP, NULL, NULL, NULL, data, flags);
401 }
402
403 unsigned long ERR_get_error_all(const char **file, int *line,
404                                 const char **func,
405                                 const char **data, int *flags)
406 {
407     return get_error_values(EV_POP, file, line, func, data, flags);
408 }
409
410 #if !OPENSSL_API_3
411 unsigned long ERR_get_error_line_data(const char **file, int *line,
412                                       const char **data, int *flags)
413 {
414     return get_error_values(EV_POP, file, line, NULL, data, flags);
415 }
416 #endif
417
418 unsigned long ERR_peek_error(void)
419 {
420     return get_error_values(EV_PEEK, NULL, NULL, NULL, NULL, NULL);
421 }
422
423 unsigned long ERR_peek_error_line(const char **file, int *line)
424 {
425     return get_error_values(EV_PEEK, file, line, NULL, NULL, NULL);
426 }
427
428 unsigned long ERR_peek_error_func(const char **func)
429 {
430     return get_error_values(EV_PEEK, NULL, NULL, func, NULL, NULL);
431 }
432
433 unsigned long ERR_peek_error_data(const char **data, int *flags)
434 {
435     return get_error_values(EV_PEEK, NULL, NULL, NULL, data, flags);
436 }
437
438 unsigned long ERR_peek_error_all(const char **file, int *line,
439                                  const char **func,
440                                  const char **data, int *flags)
441 {
442     return get_error_values(EV_PEEK, file, line, func, data, flags);
443 }
444
445 #if !OPENSSL_API_3
446 unsigned long ERR_peek_error_line_data(const char **file, int *line,
447                                        const char **data, int *flags)
448 {
449     return get_error_values(EV_PEEK, file, line, NULL, data, flags);
450 }
451 #endif
452
453 unsigned long ERR_peek_last_error(void)
454 {
455     return get_error_values(EV_PEEK_LAST, NULL, NULL, NULL, NULL, NULL);
456 }
457
458 unsigned long ERR_peek_last_error_line(const char **file, int *line)
459 {
460     return get_error_values(EV_PEEK_LAST, file, line, NULL, NULL, NULL);
461 }
462
463 unsigned long ERR_peek_last_error_func(const char **func)
464 {
465     return get_error_values(EV_PEEK_LAST, NULL, NULL, func, NULL, NULL);
466 }
467
468 unsigned long ERR_peek_last_error_data(const char **data, int *flags)
469 {
470     return get_error_values(EV_PEEK_LAST, NULL, NULL, NULL, data, flags);
471 }
472
473 unsigned long ERR_peek_last_error_all(const char **file, int *line,
474                                       const char **func,
475                                       const char **data, int *flags)
476 {
477     return get_error_values(EV_PEEK_LAST, file, line, func, data, flags);
478 }
479
480 #if !OPENSSL_API_3
481 unsigned long ERR_peek_last_error_line_data(const char **file, int *line,
482                                             const char **data, int *flags)
483 {
484     return get_error_values(EV_PEEK_LAST, file, line, NULL, data, flags);
485 }
486 #endif
487
488 static unsigned long get_error_values(ERR_GET_ACTION g,
489                                       const char **file, int *line,
490                                       const char **func,
491                                       const char **data, int *flags)
492 {
493     int i = 0;
494     ERR_STATE *es;
495     unsigned long ret;
496
497     es = err_get_state_int();
498     if (es == NULL)
499         return 0;
500
501     /*
502      * Clear anything that should have been cleared earlier. We do this
503      * here because this doesn't have constant-time issues.
504      */
505     while (es->bottom != es->top) {
506         if (es->err_flags[es->top] & ERR_FLAG_CLEAR) {
507             err_clear(es, es->top, 0);
508             es->top = es->top > 0 ? es->top - 1 : ERR_NUM_ERRORS - 1;
509             continue;
510         }
511         i = (es->bottom + 1) % ERR_NUM_ERRORS;
512         if (es->err_flags[i] & ERR_FLAG_CLEAR) {
513             es->bottom = i;
514             err_clear(es, es->bottom, 0);
515             continue;
516         }
517         break;
518     }
519
520     /* If everything has been cleared, the stack is empty. */
521     if (es->bottom == es->top)
522         return 0;
523
524     /* Which error, the top of stack (latest one) or the first one? */
525     if (g == EV_PEEK_LAST)
526         i = es->top;
527     else
528         i = (es->bottom + 1) % ERR_NUM_ERRORS;
529
530     ret = es->err_buffer[i];
531     if (g == EV_POP) {
532         es->bottom = i;
533         es->err_buffer[i] = 0;
534     }
535
536     if (file != NULL) {
537         *file = es->err_file[i];
538         if (*file == NULL)
539             *file = "";
540     }
541     if (line != NULL)
542         *line = es->err_line[i];
543     if (func != NULL) {
544         *func = es->err_func[i];
545         if (*func == NULL)
546             *func = "";
547     }
548     if (flags != NULL)
549         *flags = es->err_data_flags[i];
550     if (data == NULL) {
551         if (g == EV_POP) {
552             err_clear_data(es, i, 0);
553         }
554     } else {
555         *data = es->err_data[i];
556         if (*data == NULL) {
557             *data = "";
558             if (flags != NULL)
559                 *flags = 0;
560         }
561     }
562     return ret;
563 }
564
565 void ERR_error_string_n(unsigned long e, char *buf, size_t len)
566 {
567     char lsbuf[64], rsbuf[64];
568     const char *ls, *rs;
569     unsigned long f = 0, l, r;
570
571     if (len == 0)
572         return;
573
574     l = ERR_GET_LIB(e);
575     ls = ERR_lib_error_string(e);
576     if (ls == NULL) {
577         BIO_snprintf(lsbuf, sizeof(lsbuf), "lib(%lu)", l);
578         ls = lsbuf;
579     }
580
581     rs = ERR_reason_error_string(e);
582     r = ERR_GET_REASON(e);
583     if (rs == NULL) {
584         BIO_snprintf(rsbuf, sizeof(rsbuf), "reason(%lu)", r);
585         rs = rsbuf;
586     }
587
588     BIO_snprintf(buf, len, "error:%08lX:%s:%s:%s", e, ls, "", rs);
589     if (strlen(buf) == len - 1) {
590         /* Didn't fit; use a minimal format. */
591         BIO_snprintf(buf, len, "err:%lx:%lx:%lx:%lx", e, l, f, r);
592     }
593 }
594
595 /*
596  * ERR_error_string_n should be used instead for ret != NULL as
597  * ERR_error_string cannot know how large the buffer is
598  */
599 char *ERR_error_string(unsigned long e, char *ret)
600 {
601     static char buf[256];
602
603     if (ret == NULL)
604         ret = buf;
605     ERR_error_string_n(e, ret, (int)sizeof(buf));
606     return ret;
607 }
608
609 const char *ERR_lib_error_string(unsigned long e)
610 {
611     ERR_STRING_DATA d, *p;
612     unsigned long l;
613
614     if (!RUN_ONCE(&err_string_init, do_err_strings_init)) {
615         return NULL;
616     }
617
618     l = ERR_GET_LIB(e);
619     d.error = ERR_PACK(l, 0, 0);
620     p = int_err_get_item(&d);
621     return ((p == NULL) ? NULL : p->string);
622 }
623
624 #if !OPENSSL_API_3
625 const char *ERR_func_error_string(unsigned long e)
626 {
627     return NULL;
628 }
629 #endif
630
631 const char *ERR_reason_error_string(unsigned long e)
632 {
633     ERR_STRING_DATA d, *p = NULL;
634     unsigned long l, r;
635
636     if (!RUN_ONCE(&err_string_init, do_err_strings_init)) {
637         return NULL;
638     }
639
640     l = ERR_GET_LIB(e);
641     r = ERR_GET_REASON(e);
642     d.error = ERR_PACK(l, 0, r);
643     p = int_err_get_item(&d);
644     if (p == NULL) {
645         d.error = ERR_PACK(0, 0, r);
646         p = int_err_get_item(&d);
647     }
648     return ((p == NULL) ? NULL : p->string);
649 }
650
651 /* TODO(3.0): arg ignored for now */
652 static void err_delete_thread_state(void *arg)
653 {
654     ERR_STATE *state = CRYPTO_THREAD_get_local(&err_thread_local);
655     if (state == NULL)
656         return;
657
658     CRYPTO_THREAD_set_local(&err_thread_local, NULL);
659     ERR_STATE_free(state);
660 }
661
662 #if !OPENSSL_API_1_1_0
663 void ERR_remove_thread_state(void *dummy)
664 {
665 }
666 #endif
667
668 #if !OPENSSL_API_1_0_0
669 void ERR_remove_state(unsigned long pid)
670 {
671 }
672 #endif
673
674 DEFINE_RUN_ONCE_STATIC(err_do_init)
675 {
676     set_err_thread_local = 1;
677     return CRYPTO_THREAD_init_local(&err_thread_local, NULL);
678 }
679
680 ERR_STATE *err_get_state_int(void)
681 {
682     ERR_STATE *state;
683     int saveerrno = get_last_sys_error();
684
685     if (!OPENSSL_init_crypto(OPENSSL_INIT_BASE_ONLY, NULL))
686         return NULL;
687
688     if (!RUN_ONCE(&err_init, err_do_init))
689         return NULL;
690
691     state = CRYPTO_THREAD_get_local(&err_thread_local);
692     if (state == (ERR_STATE*)-1)
693         return NULL;
694
695     if (state == NULL) {
696         if (!CRYPTO_THREAD_set_local(&err_thread_local, (ERR_STATE*)-1))
697             return NULL;
698
699         if ((state = OPENSSL_zalloc(sizeof(*state))) == NULL) {
700             CRYPTO_THREAD_set_local(&err_thread_local, NULL);
701             return NULL;
702         }
703
704         if (!ossl_init_thread_start(NULL, NULL, err_delete_thread_state)
705                 || !CRYPTO_THREAD_set_local(&err_thread_local, state)) {
706             ERR_STATE_free(state);
707             CRYPTO_THREAD_set_local(&err_thread_local, NULL);
708             return NULL;
709         }
710
711         /* Ignore failures from these */
712         OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
713     }
714
715     set_sys_error(saveerrno);
716     return state;
717 }
718
719 #if !OPENSSL_API_3
720 ERR_STATE *ERR_get_state(void)
721 {
722     return err_get_state_int();
723 }
724 #endif
725
726
727 /*
728  * err_shelve_state returns the current thread local error state
729  * and freezes the error module until err_unshelve_state is called.
730  */
731 int err_shelve_state(void **state)
732 {
733     int saveerrno = get_last_sys_error();
734
735     /*
736      * Note, at present our only caller is OPENSSL_init_crypto(), indirectly
737      * via ossl_init_load_crypto_nodelete(), by which point the requested
738      * "base" initialization has already been performed, so the below call is a
739      * NOOP, that re-enters OPENSSL_init_crypto() only to quickly return.
740      *
741      * If are no other valid callers of this function, the call below can be
742      * removed, avoiding the re-entry into OPENSSL_init_crypto().  If there are
743      * potential uses that are not from inside OPENSSL_init_crypto(), then this
744      * call is needed, but some care is required to make sure that the re-entry
745      * remains a NOOP.
746      */
747     if (!OPENSSL_init_crypto(OPENSSL_INIT_BASE_ONLY, NULL))
748         return 0;
749
750     if (!RUN_ONCE(&err_init, err_do_init))
751         return 0;
752
753     *state = CRYPTO_THREAD_get_local(&err_thread_local);
754     if (!CRYPTO_THREAD_set_local(&err_thread_local, (ERR_STATE*)-1))
755         return 0;
756
757     set_sys_error(saveerrno);
758     return 1;
759 }
760
761 /*
762  * err_unshelve_state restores the error state that was returned
763  * by err_shelve_state previously.
764  */
765 void err_unshelve_state(void* state)
766 {
767     if (state != (void*)-1)
768         CRYPTO_THREAD_set_local(&err_thread_local, (ERR_STATE*)state);
769 }
770
771 int ERR_get_next_error_library(void)
772 {
773     int ret;
774
775     if (!RUN_ONCE(&err_string_init, do_err_strings_init))
776         return 0;
777
778     CRYPTO_THREAD_write_lock(err_string_lock);
779     ret = int_err_library_number++;
780     CRYPTO_THREAD_unlock(err_string_lock);
781     return ret;
782 }
783
784 static int err_set_error_data_int(char *data, size_t size, int flags,
785                                   int deallocate)
786 {
787     ERR_STATE *es;
788
789     es = err_get_state_int();
790     if (es == NULL)
791         return 0;
792
793     err_clear_data(es, es->top, deallocate);
794     err_set_data(es, es->top, data, size, flags);
795
796     return 1;
797 }
798
799 void ERR_set_error_data(char *data, int flags)
800 {
801     /*
802      * This function is void so we cannot propagate the error return. Since it
803      * is also in the public API we can't change the return type.
804      *
805      * We estimate the size of the data.  If it's not flagged as allocated,
806      * then this is safe, and if it is flagged as allocated, then our size
807      * may be smaller than the actual allocation, but that doesn't matter
808      * too much, the buffer will remain untouched or will eventually be
809      * reallocated to a new size.
810      *
811      * callers should be advised that this function takes over ownership of
812      * the allocated memory, i.e. they can't count on the pointer to remain
813      * valid.
814      */
815     err_set_error_data_int(data, strlen(data) + 1, flags, 1);
816 }
817
818 void ERR_add_error_data(int num, ...)
819 {
820     va_list args;
821     va_start(args, num);
822     ERR_add_error_vdata(num, args);
823     va_end(args);
824 }
825
826 void ERR_add_error_vdata(int num, va_list args)
827 {
828     int i, len, size;
829     int flags = ERR_TXT_MALLOCED | ERR_TXT_STRING;
830     char *str, *arg;
831     ERR_STATE *es;
832
833     /* Get the current error data; if an allocated string get it. */
834     es = err_get_state_int();
835     if (es == NULL)
836         return;
837     i = es->top;
838
839     /*
840      * If err_data is allocated already, re-use the space.
841      * Otherwise, allocate a small new buffer.
842      */
843     if ((es->err_data_flags[i] & flags) == flags) {
844         str = es->err_data[i];
845         size = es->err_data_size[i];
846
847         /*
848          * To protect the string we just grabbed from tampering by other
849          * functions we may call, or to protect them from freeing a pointer
850          * that may no longer be valid at that point, we clear away the
851          * data pointer and the flags.  We will set them again at the end
852          * of this function.
853          */
854         es->err_data[i] = NULL;
855         es->err_data_flags[i] = 0;
856     } else if ((str = OPENSSL_malloc(size = 81)) == NULL) {
857         return;
858     } else {
859         str[0] = '\0';
860     }
861     len = strlen(str);
862
863     while (--num >= 0) {
864         arg = va_arg(args, char *);
865         if (arg == NULL)
866             arg = "<NULL>";
867         len += strlen(arg);
868         if (len >= size) {
869             char *p;
870
871             size = len + 20;
872             p = OPENSSL_realloc(str, size);
873             if (p == NULL) {
874                 OPENSSL_free(str);
875                 return;
876             }
877             str = p;
878         }
879         OPENSSL_strlcat(str, arg, (size_t)size);
880     }
881     if (!err_set_error_data_int(str, size, flags, 0))
882         OPENSSL_free(str);
883 }
884
885 int ERR_set_mark(void)
886 {
887     ERR_STATE *es;
888
889     es = err_get_state_int();
890     if (es == NULL)
891         return 0;
892
893     if (es->bottom == es->top)
894         return 0;
895     es->err_flags[es->top] |= ERR_FLAG_MARK;
896     return 1;
897 }
898
899 int ERR_pop_to_mark(void)
900 {
901     ERR_STATE *es;
902
903     es = err_get_state_int();
904     if (es == NULL)
905         return 0;
906
907     while (es->bottom != es->top
908            && (es->err_flags[es->top] & ERR_FLAG_MARK) == 0) {
909         err_clear(es, es->top, 0);
910         es->top = es->top > 0 ? es->top - 1 : ERR_NUM_ERRORS - 1;
911     }
912
913     if (es->bottom == es->top)
914         return 0;
915     es->err_flags[es->top] &= ~ERR_FLAG_MARK;
916     return 1;
917 }
918
919 int ERR_clear_last_mark(void)
920 {
921     ERR_STATE *es;
922     int top;
923
924     es = err_get_state_int();
925     if (es == NULL)
926         return 0;
927
928     top = es->top;
929     while (es->bottom != top
930            && (es->err_flags[top] & ERR_FLAG_MARK) == 0) {
931         top = top > 0 ? top - 1 : ERR_NUM_ERRORS - 1;
932     }
933
934     if (es->bottom == top)
935         return 0;
936     es->err_flags[top] &= ~ERR_FLAG_MARK;
937     return 1;
938 }
939
940 void err_clear_last_constant_time(int clear)
941 {
942     ERR_STATE *es;
943     int top;
944
945     es = err_get_state_int();
946     if (es == NULL)
947         return;
948
949     top = es->top;
950
951     /*
952      * Flag error as cleared but remove it elsewhere to avoid two errors
953      * accessing the same error stack location, revealing timing information.
954      */
955     clear = constant_time_select_int(constant_time_eq_int(clear, 0),
956                                      0, ERR_FLAG_CLEAR);
957     es->err_flags[top] |= clear;
958 }