/src/openssl/crypto/err/err.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 1995-2023 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 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 | 13.1k | { |
170 | 13.1k | unsigned long ret, l; |
171 | | |
172 | 13.1k | l = a->error; |
173 | 13.1k | ret = l ^ ERR_GET_LIB(l); |
174 | 13.1k | return (ret ^ ret % 19 * 13); |
175 | 13.1k | } |
176 | | |
177 | | static int err_string_data_cmp(const ERR_STRING_DATA *a, |
178 | | const ERR_STRING_DATA *b) |
179 | 8.84k | { |
180 | 8.84k | if (a->error == b->error) |
181 | 8.36k | return 0; |
182 | 474 | return a->error > b->error ? 1 : -1; |
183 | 8.84k | } |
184 | | |
185 | | static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *d) |
186 | 204 | { |
187 | 204 | ERR_STRING_DATA *p = NULL; |
188 | | |
189 | 204 | if (!CRYPTO_THREAD_read_lock(err_string_lock)) |
190 | 0 | return NULL; |
191 | 204 | p = lh_ERR_STRING_DATA_retrieve(int_error_hash, d); |
192 | 204 | CRYPTO_THREAD_unlock(err_string_lock); |
193 | | |
194 | 204 | return p; |
195 | 204 | } |
196 | | #endif |
197 | | |
198 | | void OSSL_ERR_STATE_free(ERR_STATE *state) |
199 | 3 | { |
200 | 3 | int i; |
201 | | |
202 | 3 | if (state == NULL) |
203 | 0 | return; |
204 | 51 | for (i = 0; i < ERR_NUM_ERRORS; i++) { |
205 | 48 | err_clear(state, i, 1); |
206 | 48 | } |
207 | 3 | CRYPTO_free(state, OPENSSL_FILE, OPENSSL_LINE); |
208 | 3 | } |
209 | | |
210 | | DEFINE_RUN_ONCE_STATIC(do_err_strings_init) |
211 | 3 | { |
212 | 3 | if (!OPENSSL_init_crypto(OPENSSL_INIT_BASE_ONLY, NULL)) |
213 | 0 | return 0; |
214 | 3 | err_string_lock = CRYPTO_THREAD_lock_new(); |
215 | 3 | if (err_string_lock == NULL) |
216 | 0 | return 0; |
217 | 3 | #ifndef OPENSSL_NO_ERR |
218 | 3 | int_error_hash = lh_ERR_STRING_DATA_new(err_string_data_hash, |
219 | 3 | err_string_data_cmp); |
220 | 3 | 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 | 3 | #endif |
226 | 3 | return 1; |
227 | 3 | } |
228 | | |
229 | | void err_cleanup(void) |
230 | 3 | { |
231 | 3 | CRYPTO_THREAD_lock_free(err_string_lock); |
232 | 3 | err_string_lock = NULL; |
233 | 3 | #ifndef OPENSSL_NO_ERR |
234 | 3 | lh_ERR_STRING_DATA_free(int_error_hash); |
235 | 3 | int_error_hash = NULL; |
236 | 3 | #endif |
237 | 3 | } |
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 | 312 | { |
256 | 312 | if (!CRYPTO_THREAD_write_lock(err_string_lock)) |
257 | 0 | return 0; |
258 | 13.2k | for (; str->error; str++) |
259 | 12.9k | (void)lh_ERR_STRING_DATA_insert(int_error_hash, |
260 | 312 | (ERR_STRING_DATA *)str); |
261 | 312 | CRYPTO_THREAD_unlock(err_string_lock); |
262 | 312 | return 1; |
263 | 312 | } |
264 | | #endif |
265 | | |
266 | | int ossl_err_load_ERR_strings(void) |
267 | 105 | { |
268 | 105 | #ifndef OPENSSL_NO_ERR |
269 | 105 | if (!RUN_ONCE(&err_string_init, do_err_strings_init)) |
270 | 0 | return 0; |
271 | | |
272 | 105 | err_load_strings(ERR_str_libraries); |
273 | 105 | err_load_strings(ERR_str_reasons); |
274 | 105 | #endif |
275 | 105 | return 1; |
276 | 105 | } |
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 | 102 | { |
293 | 102 | #ifndef OPENSSL_NO_ERR |
294 | 102 | if (ossl_err_load_ERR_strings() == 0) |
295 | 0 | return 0; |
296 | 102 | err_load_strings(str); |
297 | 102 | #endif |
298 | | |
299 | 102 | return 1; |
300 | 102 | } |
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 | 0 | { |
346 | 0 | return get_error_values(EV_POP, NULL, NULL, NULL, NULL, NULL); |
347 | 0 | } |
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 | 6 | { |
406 | 6 | return get_error_values(EV_PEEK_LAST, NULL, NULL, NULL, NULL, NULL); |
407 | 6 | } |
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 | 6 | { |
444 | 6 | int i = 0; |
445 | 6 | ERR_STATE *es; |
446 | 6 | unsigned long ret; |
447 | | |
448 | 6 | es = ossl_err_get_state_int(); |
449 | 6 | 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 | 6 | while (es->bottom != es->top) { |
457 | 6 | 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 | 6 | i = (es->bottom + 1) % ERR_NUM_ERRORS; |
463 | 6 | 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 | 6 | break; |
469 | 6 | } |
470 | | |
471 | | /* If everything has been cleared, the stack is empty. */ |
472 | 6 | if (es->bottom == es->top) |
473 | 0 | return 0; |
474 | | |
475 | | /* Which error, the top of stack (latest one) or the first one? */ |
476 | 6 | if (g == EV_PEEK_LAST) |
477 | 6 | i = es->top; |
478 | 0 | else |
479 | 0 | i = (es->bottom + 1) % ERR_NUM_ERRORS; |
480 | | |
481 | 6 | ret = es->err_buffer[i]; |
482 | 6 | if (g == EV_POP) { |
483 | 0 | es->bottom = i; |
484 | 0 | es->err_buffer[i] = 0; |
485 | 0 | } |
486 | | |
487 | 6 | if (file != NULL) { |
488 | 0 | *file = es->err_file[i]; |
489 | 0 | if (*file == NULL) |
490 | 0 | *file = ""; |
491 | 0 | } |
492 | 6 | if (line != NULL) |
493 | 0 | *line = es->err_line[i]; |
494 | 6 | if (func != NULL) { |
495 | 0 | *func = es->err_func[i]; |
496 | 0 | if (*func == NULL) |
497 | 0 | *func = ""; |
498 | 0 | } |
499 | 6 | if (flags != NULL) |
500 | 0 | *flags = es->err_data_flags[i]; |
501 | 6 | if (data == NULL) { |
502 | 6 | if (g == EV_POP) { |
503 | 0 | err_clear_data(es, i, 0); |
504 | 0 | } |
505 | 6 | } 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 | 6 | return ret; |
514 | 6 | } |
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 | 0 | { |
583 | 0 | #ifndef OPENSSL_NO_ERR |
584 | 0 | ERR_STRING_DATA d, *p; |
585 | 0 | unsigned long l; |
586 | |
|
587 | 0 | if (!RUN_ONCE(&err_string_init, do_err_strings_init)) { |
588 | 0 | return NULL; |
589 | 0 | } |
590 | | |
591 | 0 | l = ERR_GET_LIB(e); |
592 | 0 | d.error = ERR_PACK(l, 0, 0); |
593 | 0 | p = int_err_get_item(&d); |
594 | 0 | return ((p == NULL) ? NULL : p->string); |
595 | | #else |
596 | | return NULL; |
597 | | #endif |
598 | 0 | } |
599 | | |
600 | | #ifndef OPENSSL_NO_DEPRECATED_3_0 |
601 | | const char *ERR_func_error_string(unsigned long e) |
602 | 0 | { |
603 | 0 | return NULL; |
604 | 0 | } |
605 | | #endif |
606 | | |
607 | | const char *ERR_reason_error_string(unsigned long e) |
608 | 102 | { |
609 | 102 | #ifndef OPENSSL_NO_ERR |
610 | 102 | ERR_STRING_DATA d, *p = NULL; |
611 | 102 | unsigned long l, r; |
612 | | |
613 | 102 | 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 | 102 | if (ERR_SYSTEM_ERROR(e)) |
623 | 0 | return NULL; |
624 | | |
625 | 102 | l = ERR_GET_LIB(e); |
626 | 102 | r = ERR_GET_REASON(e); |
627 | 102 | d.error = ERR_PACK(l, 0, r); |
628 | 102 | p = int_err_get_item(&d); |
629 | 102 | if (p == NULL) { |
630 | 102 | d.error = ERR_PACK(0, 0, r); |
631 | 102 | p = int_err_get_item(&d); |
632 | 102 | } |
633 | 102 | return ((p == NULL) ? NULL : p->string); |
634 | | #else |
635 | | return NULL; |
636 | | #endif |
637 | 102 | } |
638 | | |
639 | | static void err_delete_thread_state(void *unused) |
640 | 3 | { |
641 | 3 | ERR_STATE *state = CRYPTO_THREAD_get_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY, |
642 | 3 | CRYPTO_THREAD_NO_CONTEXT); |
643 | | |
644 | 3 | if (state == NULL) |
645 | 0 | return; |
646 | | |
647 | 3 | CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY, |
648 | 3 | CRYPTO_THREAD_NO_CONTEXT, NULL); |
649 | 3 | OSSL_ERR_STATE_free(state); |
650 | 3 | } |
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 | 3.61k | { |
666 | 3.61k | ERR_STATE *state; |
667 | 3.61k | int saveerrno = get_last_sys_error(); |
668 | | |
669 | 3.61k | if (!OPENSSL_init_crypto(OPENSSL_INIT_BASE_ONLY, NULL)) |
670 | 0 | return NULL; |
671 | | |
672 | 3.61k | state = CRYPTO_THREAD_get_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY, |
673 | 3.61k | CRYPTO_THREAD_NO_CONTEXT); |
674 | 3.61k | if (state == (ERR_STATE *)-1) |
675 | 0 | return NULL; |
676 | | |
677 | 3.61k | if (state == NULL) { |
678 | 3 | if (!CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY, |
679 | 3 | CRYPTO_THREAD_NO_CONTEXT, (ERR_STATE *)-1)) |
680 | 0 | return NULL; |
681 | | |
682 | 3 | state = OSSL_ERR_STATE_new(); |
683 | 3 | 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 | 3 | if (!ossl_init_thread_start(NULL, NULL, err_delete_thread_state) |
690 | 3 | || !CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY, |
691 | 3 | 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 | 3 | OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL); |
700 | 3 | } |
701 | | |
702 | 3.61k | set_sys_error(saveerrno); |
703 | 3.61k | return state; |
704 | 3.61k | } |
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 | 3 | { |
720 | 3 | 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 | 3 | if (!OPENSSL_init_crypto(OPENSSL_INIT_BASE_ONLY, NULL)) |
735 | 0 | return 0; |
736 | | |
737 | 3 | *state = CRYPTO_THREAD_get_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY, |
738 | 3 | CRYPTO_THREAD_NO_CONTEXT); |
739 | 3 | if (!CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY, |
740 | 3 | CRYPTO_THREAD_NO_CONTEXT, (ERR_STATE *)-1)) |
741 | 0 | return 0; |
742 | | |
743 | 3 | set_sys_error(saveerrno); |
744 | 3 | return 1; |
745 | 3 | } |
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 | 3 | { |
753 | 3 | if (state != (void*)-1) |
754 | 3 | CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY, |
755 | 3 | CRYPTO_THREAD_NO_CONTEXT, (ERR_STATE *)state); |
756 | 3 | } |
757 | | |
758 | | int ERR_get_next_error_library(void) |
759 | 13 | { |
760 | 13 | int ret; |
761 | | |
762 | 13 | if (!RUN_ONCE(&err_string_init, do_err_strings_init)) |
763 | 0 | return 0; |
764 | | |
765 | 13 | if (!CRYPTO_THREAD_write_lock(err_string_lock)) |
766 | 0 | return 0; |
767 | 13 | ret = int_err_library_number++; |
768 | 13 | CRYPTO_THREAD_unlock(err_string_lock); |
769 | 13 | return ret; |
770 | 13 | } |
771 | | |
772 | | static int err_set_error_data_int(char *data, size_t size, int flags, |
773 | | int deallocate) |
774 | 0 | { |
775 | 0 | ERR_STATE *es; |
776 | |
|
777 | 0 | es = ossl_err_get_state_int(); |
778 | 0 | if (es == NULL) |
779 | 0 | return 0; |
780 | | |
781 | 0 | err_clear_data(es, es->top, deallocate); |
782 | 0 | err_set_data(es, es->top, data, size, flags); |
783 | |
|
784 | 0 | return 1; |
785 | 0 | } |
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 | 0 | { |
808 | 0 | va_list args; |
809 | 0 | va_start(args, num); |
810 | 0 | ERR_add_error_vdata(num, args); |
811 | 0 | va_end(args); |
812 | 0 | } |
813 | | |
814 | | void ERR_add_error_vdata(int num, va_list args) |
815 | 0 | { |
816 | 0 | int i, len, size; |
817 | 0 | int flags = ERR_TXT_MALLOCED | ERR_TXT_STRING; |
818 | 0 | char *str, *arg; |
819 | 0 | ERR_STATE *es; |
820 | | |
821 | | /* Get the current error data; if an allocated string get it. */ |
822 | 0 | es = ossl_err_get_state_int(); |
823 | 0 | if (es == NULL) |
824 | 0 | return; |
825 | 0 | i = es->top; |
826 | | |
827 | | /* |
828 | | * If err_data is allocated already, reuse the space. |
829 | | * Otherwise, allocate a small new buffer. |
830 | | */ |
831 | 0 | if ((es->err_data_flags[i] & flags) == flags |
832 | 0 | && ossl_assert(es->err_data[i] != NULL)) { |
833 | 0 | str = es->err_data[i]; |
834 | 0 | size = es->err_data_size[i]; |
835 | | |
836 | | /* |
837 | | * To protect the string we just grabbed from tampering by other |
838 | | * functions we may call, or to protect them from freeing a pointer |
839 | | * that may no longer be valid at that point, we clear away the |
840 | | * data pointer and the flags. We will set them again at the end |
841 | | * of this function. |
842 | | */ |
843 | 0 | es->err_data[i] = NULL; |
844 | 0 | es->err_data_flags[i] = 0; |
845 | 0 | } else if ((str = OPENSSL_malloc(size = 81)) == NULL) { |
846 | 0 | return; |
847 | 0 | } else { |
848 | 0 | str[0] = '\0'; |
849 | 0 | } |
850 | 0 | len = strlen(str); |
851 | |
|
852 | 0 | while (--num >= 0) { |
853 | 0 | arg = va_arg(args, char *); |
854 | 0 | if (arg == NULL) |
855 | 0 | arg = "<NULL>"; |
856 | 0 | len += strlen(arg); |
857 | 0 | if (len >= size) { |
858 | 0 | char *p; |
859 | |
|
860 | 0 | size = len + 20; |
861 | 0 | p = OPENSSL_realloc(str, size); |
862 | 0 | if (p == NULL) { |
863 | 0 | OPENSSL_free(str); |
864 | 0 | return; |
865 | 0 | } |
866 | 0 | str = p; |
867 | 0 | } |
868 | 0 | OPENSSL_strlcat(str, arg, (size_t)size); |
869 | 0 | } |
870 | 0 | if (!err_set_error_data_int(str, size, flags, 0)) |
871 | 0 | OPENSSL_free(str); |
872 | 0 | } |
873 | | |
874 | | void err_clear_last_constant_time(int clear) |
875 | 0 | { |
876 | 0 | ERR_STATE *es; |
877 | 0 | int top; |
878 | |
|
879 | 0 | es = ossl_err_get_state_int(); |
880 | 0 | if (es == NULL) |
881 | 0 | return; |
882 | | |
883 | 0 | top = es->top; |
884 | | |
885 | | /* |
886 | | * Flag error as cleared but remove it elsewhere to avoid two errors |
887 | | * accessing the same error stack location, revealing timing information. |
888 | | */ |
889 | 0 | clear = constant_time_select_int(constant_time_eq_int(clear, 0), |
890 | 0 | 0, ERR_FLAG_CLEAR); |
891 | 0 | es->err_flags[top] |= clear; |
892 | 0 | } |