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