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