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 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
err_string_data_hash(const ERR_STRING_DATA * a)168 static unsigned long err_string_data_hash(const ERR_STRING_DATA *a)
169 {
170     unsigned long ret, l;
171 
172     l = a->error;
173     ret = l ^ ERR_GET_LIB(l);
174     return (ret ^ ret % 19 * 13);
175 }
176 
err_string_data_cmp(const ERR_STRING_DATA * a,const ERR_STRING_DATA * b)177 static int err_string_data_cmp(const ERR_STRING_DATA *a,
178                                const ERR_STRING_DATA *b)
179 {
180     if (a->error == b->error)
181         return 0;
182     return a->error > b->error ? 1 : -1;
183 }
184 
int_err_get_item(const ERR_STRING_DATA * d)185 static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *d)
186 {
187     ERR_STRING_DATA *p = NULL;
188 
189     if (!CRYPTO_THREAD_read_lock(err_string_lock))
190         return NULL;
191     p = lh_ERR_STRING_DATA_retrieve(int_error_hash, d);
192     CRYPTO_THREAD_unlock(err_string_lock);
193 
194     return p;
195 }
196 #endif
197 
OSSL_ERR_STATE_free(ERR_STATE * state)198 void OSSL_ERR_STATE_free(ERR_STATE *state)
199 {
200     int i;
201 
202     if (state == NULL)
203         return;
204     for (i = 0; i < ERR_NUM_ERRORS; i++) {
205         err_clear(state, i, 1);
206     }
207     CRYPTO_free(state, OPENSSL_FILE, OPENSSL_LINE);
208 }
209 
DEFINE_RUN_ONCE_STATIC(do_err_strings_init)210 DEFINE_RUN_ONCE_STATIC(do_err_strings_init)
211 {
212     if (!OPENSSL_init_crypto(OPENSSL_INIT_BASE_ONLY, NULL))
213         return 0;
214     err_string_lock = CRYPTO_THREAD_lock_new();
215     if (err_string_lock == NULL)
216         return 0;
217 #ifndef OPENSSL_NO_ERR
218     int_error_hash = lh_ERR_STRING_DATA_new(err_string_data_hash,
219                                             err_string_data_cmp);
220     if (int_error_hash == NULL) {
221         CRYPTO_THREAD_lock_free(err_string_lock);
222         err_string_lock = NULL;
223         return 0;
224     }
225 #endif
226     return 1;
227 }
228 
err_cleanup(void)229 void err_cleanup(void)
230 {
231     CRYPTO_THREAD_lock_free(err_string_lock);
232     err_string_lock = NULL;
233 #ifndef OPENSSL_NO_ERR
234     lh_ERR_STRING_DATA_free(int_error_hash);
235     int_error_hash = NULL;
236 #endif
237 }
238 
239 #ifndef OPENSSL_NO_ERR
240 /*
241  * Legacy; pack in the library.
242  */
err_patch(int lib,ERR_STRING_DATA * str)243 static void err_patch(int lib, ERR_STRING_DATA *str)
244 {
245     unsigned long plib = ERR_PACK(lib, 0, 0);
246 
247     for (; str->error != 0; str++)
248         str->error |= plib;
249 }
250 
251 /*
252  * Hash in |str| error strings. Assumes the RUN_ONCE was done.
253  */
err_load_strings(const ERR_STRING_DATA * str)254 static int err_load_strings(const ERR_STRING_DATA *str)
255 {
256     if (!CRYPTO_THREAD_write_lock(err_string_lock))
257         return 0;
258     for (; str->error; str++)
259         (void)lh_ERR_STRING_DATA_insert(int_error_hash,
260                                        (ERR_STRING_DATA *)str);
261     CRYPTO_THREAD_unlock(err_string_lock);
262     return 1;
263 }
264 #endif
265 
ossl_err_load_ERR_strings(void)266 int ossl_err_load_ERR_strings(void)
267 {
268 #ifndef OPENSSL_NO_ERR
269     if (!RUN_ONCE(&err_string_init, do_err_strings_init))
270         return 0;
271 
272     err_load_strings(ERR_str_libraries);
273     err_load_strings(ERR_str_reasons);
274 #endif
275     return 1;
276 }
277 
ERR_load_strings(int lib,ERR_STRING_DATA * str)278 int ERR_load_strings(int lib, ERR_STRING_DATA *str)
279 {
280 #ifndef OPENSSL_NO_ERR
281     if (ossl_err_load_ERR_strings() == 0)
282         return 0;
283 
284     err_patch(lib, str);
285     err_load_strings(str);
286 #endif
287 
288     return 1;
289 }
290 
ERR_load_strings_const(const ERR_STRING_DATA * str)291 int ERR_load_strings_const(const ERR_STRING_DATA *str)
292 {
293 #ifndef OPENSSL_NO_ERR
294     if (ossl_err_load_ERR_strings() == 0)
295         return 0;
296     err_load_strings(str);
297 #endif
298 
299     return 1;
300 }
301 
ERR_unload_strings(int lib,ERR_STRING_DATA * str)302 int ERR_unload_strings(int lib, ERR_STRING_DATA *str)
303 {
304 #ifndef OPENSSL_NO_ERR
305     if (!RUN_ONCE(&err_string_init, do_err_strings_init))
306         return 0;
307 
308     if (!CRYPTO_THREAD_write_lock(err_string_lock))
309         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     for (; str->error; str++)
315         (void)lh_ERR_STRING_DATA_delete(int_error_hash, str);
316     CRYPTO_THREAD_unlock(err_string_lock);
317 #endif
318 
319     return 1;
320 }
321 
err_free_strings_int(void)322 void err_free_strings_int(void)
323 {
324     /* obsolete */
325 }
326 
327 /********************************************************/
328 
ERR_clear_error(void)329 void ERR_clear_error(void)
330 {
331     int i;
332     ERR_STATE *es;
333 
334     es = ossl_err_get_state_int();
335     if (es == NULL)
336         return;
337 
338     for (i = 0; i < ERR_NUM_ERRORS; i++) {
339         err_clear(es, i, 0);
340     }
341     es->top = es->bottom = 0;
342 }
343 
ERR_get_error(void)344 unsigned long ERR_get_error(void)
345 {
346     return get_error_values(EV_POP, NULL, NULL, NULL, NULL, NULL);
347 }
348 
ERR_get_error_all(const char ** file,int * line,const char ** func,const char ** data,int * flags)349 unsigned long ERR_get_error_all(const char **file, int *line,
350                                 const char **func,
351                                 const char **data, int *flags)
352 {
353     return get_error_values(EV_POP, file, line, func, data, flags);
354 }
355 
356 #ifndef OPENSSL_NO_DEPRECATED_3_0
ERR_get_error_line(const char ** file,int * line)357 unsigned long ERR_get_error_line(const char **file, int *line)
358 {
359     return get_error_values(EV_POP, file, line, NULL, NULL, NULL);
360 }
361 
ERR_get_error_line_data(const char ** file,int * line,const char ** data,int * flags)362 unsigned long ERR_get_error_line_data(const char **file, int *line,
363                                       const char **data, int *flags)
364 {
365     return get_error_values(EV_POP, file, line, NULL, data, flags);
366 }
367 #endif
368 
ERR_peek_error(void)369 unsigned long ERR_peek_error(void)
370 {
371     return get_error_values(EV_PEEK, NULL, NULL, NULL, NULL, NULL);
372 }
373 
ERR_peek_error_line(const char ** file,int * line)374 unsigned long ERR_peek_error_line(const char **file, int *line)
375 {
376     return get_error_values(EV_PEEK, file, line, NULL, NULL, NULL);
377 }
378 
ERR_peek_error_func(const char ** func)379 unsigned long ERR_peek_error_func(const char **func)
380 {
381     return get_error_values(EV_PEEK, NULL, NULL, func, NULL, NULL);
382 }
383 
ERR_peek_error_data(const char ** data,int * flags)384 unsigned long ERR_peek_error_data(const char **data, int *flags)
385 {
386     return get_error_values(EV_PEEK, NULL, NULL, NULL, data, flags);
387 }
388 
ERR_peek_error_all(const char ** file,int * line,const char ** func,const char ** data,int * flags)389 unsigned long ERR_peek_error_all(const char **file, int *line,
390                                  const char **func,
391                                  const char **data, int *flags)
392 {
393     return get_error_values(EV_PEEK, file, line, func, data, flags);
394 }
395 
396 #ifndef OPENSSL_NO_DEPRECATED_3_0
ERR_peek_error_line_data(const char ** file,int * line,const char ** data,int * flags)397 unsigned long ERR_peek_error_line_data(const char **file, int *line,
398                                        const char **data, int *flags)
399 {
400     return get_error_values(EV_PEEK, file, line, NULL, data, flags);
401 }
402 #endif
403 
ERR_peek_last_error(void)404 unsigned long ERR_peek_last_error(void)
405 {
406     return get_error_values(EV_PEEK_LAST, NULL, NULL, NULL, NULL, NULL);
407 }
408 
ERR_peek_last_error_line(const char ** file,int * line)409 unsigned long ERR_peek_last_error_line(const char **file, int *line)
410 {
411     return get_error_values(EV_PEEK_LAST, file, line, NULL, NULL, NULL);
412 }
413 
ERR_peek_last_error_func(const char ** func)414 unsigned long ERR_peek_last_error_func(const char **func)
415 {
416     return get_error_values(EV_PEEK_LAST, NULL, NULL, func, NULL, NULL);
417 }
418 
ERR_peek_last_error_data(const char ** data,int * flags)419 unsigned long ERR_peek_last_error_data(const char **data, int *flags)
420 {
421     return get_error_values(EV_PEEK_LAST, NULL, NULL, NULL, data, flags);
422 }
423 
ERR_peek_last_error_all(const char ** file,int * line,const char ** func,const char ** data,int * flags)424 unsigned long ERR_peek_last_error_all(const char **file, int *line,
425                                       const char **func,
426                                       const char **data, int *flags)
427 {
428     return get_error_values(EV_PEEK_LAST, file, line, func, data, flags);
429 }
430 
431 #ifndef OPENSSL_NO_DEPRECATED_3_0
ERR_peek_last_error_line_data(const char ** file,int * line,const char ** data,int * flags)432 unsigned long ERR_peek_last_error_line_data(const char **file, int *line,
433                                             const char **data, int *flags)
434 {
435     return get_error_values(EV_PEEK_LAST, file, line, NULL, data, flags);
436 }
437 #endif
438 
get_error_values(ERR_GET_ACTION g,const char ** file,int * line,const char ** func,const char ** data,int * flags)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 {
444     int i = 0;
445     ERR_STATE *es;
446     unsigned long ret;
447 
448     es = ossl_err_get_state_int();
449     if (es == NULL)
450         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     while (es->bottom != es->top) {
457         if (es->err_flags[es->top] & ERR_FLAG_CLEAR) {
458             err_clear(es, es->top, 0);
459             es->top = es->top > 0 ? es->top - 1 : ERR_NUM_ERRORS - 1;
460             continue;
461         }
462         i = (es->bottom + 1) % ERR_NUM_ERRORS;
463         if (es->err_flags[i] & ERR_FLAG_CLEAR) {
464             es->bottom = i;
465             err_clear(es, es->bottom, 0);
466             continue;
467         }
468         break;
469     }
470 
471     /* If everything has been cleared, the stack is empty. */
472     if (es->bottom == es->top)
473         return 0;
474 
475     /* Which error, the top of stack (latest one) or the first one? */
476     if (g == EV_PEEK_LAST)
477         i = es->top;
478     else
479         i = (es->bottom + 1) % ERR_NUM_ERRORS;
480 
481     ret = es->err_buffer[i];
482     if (g == EV_POP) {
483         es->bottom = i;
484         es->err_buffer[i] = 0;
485     }
486 
487     if (file != NULL) {
488         *file = es->err_file[i];
489         if (*file == NULL)
490             *file = "";
491     }
492     if (line != NULL)
493         *line = es->err_line[i];
494     if (func != NULL) {
495         *func = es->err_func[i];
496         if (*func == NULL)
497             *func = "";
498     }
499     if (flags != NULL)
500         *flags = es->err_data_flags[i];
501     if (data == NULL) {
502         if (g == EV_POP) {
503             err_clear_data(es, i, 0);
504         }
505     } else {
506         *data = es->err_data[i];
507         if (*data == NULL) {
508             *data = "";
509             if (flags != NULL)
510                 *flags = 0;
511         }
512     }
513     return ret;
514 }
515 
ossl_err_string_int(unsigned long e,const char * func,char * buf,size_t len)516 void ossl_err_string_int(unsigned long e, const char *func,
517                          char *buf, size_t len)
518 {
519     char lsbuf[64], rsbuf[256];
520     const char *ls, *rs = NULL;
521     unsigned long l, r;
522 
523     if (len == 0)
524         return;
525 
526     l = ERR_GET_LIB(e);
527     ls = ERR_lib_error_string(e);
528     if (ls == NULL) {
529         BIO_snprintf(lsbuf, sizeof(lsbuf), "lib(%lu)", l);
530         ls = lsbuf;
531     }
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     r = ERR_GET_REASON(e);
540 #ifndef OPENSSL_NO_ERR
541     if (ERR_SYSTEM_ERROR(e)) {
542         if (openssl_strerror_r(r, rsbuf, sizeof(rsbuf)))
543             rs = rsbuf;
544     } else {
545         rs = ERR_reason_error_string(e);
546     }
547 #endif
548     if (rs == NULL) {
549         BIO_snprintf(rsbuf, sizeof(rsbuf), "reason(%lu)",
550                      r & ~(ERR_RFLAGS_MASK << ERR_RFLAGS_OFFSET));
551         rs = rsbuf;
552     }
553 
554     BIO_snprintf(buf, len, "error:%08lX:%s:%s:%s", e, ls, func, rs);
555     if (strlen(buf) == len - 1) {
556         /* Didn't fit; use a minimal format. */
557         BIO_snprintf(buf, len, "err:%lx:%lx:%lx:%lx", e, l, 0L, r);
558     }
559 }
560 
561 
ERR_error_string_n(unsigned long e,char * buf,size_t len)562 void ERR_error_string_n(unsigned long e, char *buf, size_t len)
563 {
564     ossl_err_string_int(e, "", buf, len);
565 }
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  */
ERR_error_string(unsigned long e,char * ret)571 char *ERR_error_string(unsigned long e, char *ret)
572 {
573     static char buf[256];
574 
575     if (ret == NULL)
576         ret = buf;
577     ERR_error_string_n(e, ret, (int)sizeof(buf));
578     return ret;
579 }
580 
ERR_lib_error_string(unsigned long e)581 const char *ERR_lib_error_string(unsigned long e)
582 {
583 #ifndef OPENSSL_NO_ERR
584     ERR_STRING_DATA d, *p;
585     unsigned long l;
586 
587     if (!RUN_ONCE(&err_string_init, do_err_strings_init)) {
588         return NULL;
589     }
590 
591     l = ERR_GET_LIB(e);
592     d.error = ERR_PACK(l, 0, 0);
593     p = int_err_get_item(&d);
594     return ((p == NULL) ? NULL : p->string);
595 #else
596     return NULL;
597 #endif
598 }
599 
600 #ifndef OPENSSL_NO_DEPRECATED_3_0
ERR_func_error_string(unsigned long e)601 const char *ERR_func_error_string(unsigned long e)
602 {
603     return NULL;
604 }
605 #endif
606 
ERR_reason_error_string(unsigned long e)607 const char *ERR_reason_error_string(unsigned long e)
608 {
609 #ifndef OPENSSL_NO_ERR
610     ERR_STRING_DATA d, *p = NULL;
611     unsigned long l, r;
612 
613     if (!RUN_ONCE(&err_string_init, do_err_strings_init)) {
614         return NULL;
615     }
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     if (ERR_SYSTEM_ERROR(e))
623         return NULL;
624 
625     l = ERR_GET_LIB(e);
626     r = ERR_GET_REASON(e);
627     d.error = ERR_PACK(l, 0, r);
628     p = int_err_get_item(&d);
629     if (p == NULL) {
630         d.error = ERR_PACK(0, 0, r);
631         p = int_err_get_item(&d);
632     }
633     return ((p == NULL) ? NULL : p->string);
634 #else
635     return NULL;
636 #endif
637 }
638 
err_delete_thread_state(void * unused)639 static void err_delete_thread_state(void *unused)
640 {
641     ERR_STATE *state = CRYPTO_THREAD_get_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY,
642                                                   CRYPTO_THREAD_NO_CONTEXT);
643 
644     if (state == NULL)
645         return;
646 
647     CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY,
648                                CRYPTO_THREAD_NO_CONTEXT, NULL);
649     OSSL_ERR_STATE_free(state);
650 }
651 
652 #ifndef OPENSSL_NO_DEPRECATED_1_1_0
ERR_remove_thread_state(void * dummy)653 void ERR_remove_thread_state(void *dummy)
654 {
655 }
656 #endif
657 
658 #ifndef OPENSSL_NO_DEPRECATED_1_0_0
ERR_remove_state(unsigned long pid)659 void ERR_remove_state(unsigned long pid)
660 {
661 }
662 #endif
663 
ossl_err_get_state_int(void)664 ERR_STATE *ossl_err_get_state_int(void)
665 {
666     ERR_STATE *state;
667     int saveerrno = get_last_sys_error();
668 
669     if (!OPENSSL_init_crypto(OPENSSL_INIT_BASE_ONLY, NULL))
670         return NULL;
671 
672     state = CRYPTO_THREAD_get_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY,
673                                        CRYPTO_THREAD_NO_CONTEXT);
674     if (state == (ERR_STATE *)-1)
675         return NULL;
676 
677     if (state == NULL) {
678         if (!CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY,
679                                         CRYPTO_THREAD_NO_CONTEXT, (ERR_STATE *)-1))
680             return NULL;
681 
682         state = OSSL_ERR_STATE_new();
683         if (state == NULL) {
684             CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY,
685                                        CRYPTO_THREAD_NO_CONTEXT, NULL);
686             return NULL;
687         }
688 
689         if (!ossl_init_thread_start(NULL, NULL, err_delete_thread_state)
690                 || !CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY,
691                                                CRYPTO_THREAD_NO_CONTEXT, state)) {
692             OSSL_ERR_STATE_free(state);
693             CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY,
694                                        CRYPTO_THREAD_NO_CONTEXT, NULL);
695             return NULL;
696         }
697 
698         /* Ignore failures from these */
699         OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
700     }
701 
702     set_sys_error(saveerrno);
703     return state;
704 }
705 
706 #ifndef OPENSSL_NO_DEPRECATED_3_0
ERR_get_state(void)707 ERR_STATE *ERR_get_state(void)
708 {
709     return ossl_err_get_state_int();
710 }
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  */
err_shelve_state(void ** state)718 int err_shelve_state(void **state)
719 {
720     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     if (!OPENSSL_init_crypto(OPENSSL_INIT_BASE_ONLY, NULL))
735         return 0;
736 
737     *state = CRYPTO_THREAD_get_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY,
738                                         CRYPTO_THREAD_NO_CONTEXT);
739     if (!CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY,
740                                     CRYPTO_THREAD_NO_CONTEXT, (ERR_STATE *)-1))
741         return 0;
742 
743     set_sys_error(saveerrno);
744     return 1;
745 }
746 
747 /*
748  * err_unshelve_state restores the error state that was returned
749  * by err_shelve_state previously.
750  */
err_unshelve_state(void * state)751 void err_unshelve_state(void* state)
752 {
753     if (state != (void*)-1)
754         CRYPTO_THREAD_set_local_ex(CRYPTO_THREAD_LOCAL_ERR_KEY,
755                                    CRYPTO_THREAD_NO_CONTEXT, (ERR_STATE *)state);
756 }
757 
ERR_get_next_error_library(void)758 int ERR_get_next_error_library(void)
759 {
760     int ret;
761 
762     if (!RUN_ONCE(&err_string_init, do_err_strings_init))
763         return 0;
764 
765     if (!CRYPTO_THREAD_write_lock(err_string_lock))
766         return 0;
767     ret = int_err_library_number++;
768     CRYPTO_THREAD_unlock(err_string_lock);
769     return ret;
770 }
771 
err_set_error_data_int(char * data,size_t size,int flags,int deallocate)772 static int err_set_error_data_int(char *data, size_t size, int flags,
773                                   int deallocate)
774 {
775     ERR_STATE *es;
776 
777     es = ossl_err_get_state_int();
778     if (es == NULL)
779         return 0;
780 
781     err_clear_data(es, es->top, deallocate);
782     err_set_data(es, es->top, data, size, flags);
783 
784     return 1;
785 }
786 
ERR_set_error_data(char * data,int flags)787 void ERR_set_error_data(char *data, int flags)
788 {
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     err_set_error_data_int(data, strlen(data) + 1, flags, 1);
804 }
805 
ERR_add_error_data(int num,...)806 void ERR_add_error_data(int num, ...)
807 {
808     va_list args;
809     va_start(args, num);
810     ERR_add_error_vdata(num, args);
811     va_end(args);
812 }
813 
ERR_add_error_vdata(int num,va_list args)814 void ERR_add_error_vdata(int num, va_list args)
815 {
816     int i;
817     size_t len, size;
818     int flags = ERR_TXT_MALLOCED | ERR_TXT_STRING;
819     char *str, *arg;
820     ERR_STATE *es;
821 
822     /* Get the current error data; if an allocated string get it. */
823     es = ossl_err_get_state_int();
824     if (es == NULL)
825         return;
826     i = es->top;
827 
828     /*
829      * If err_data is allocated already, reuse the space.
830      * Otherwise, allocate a small new buffer.
831      */
832     if ((es->err_data_flags[i] & flags) == flags
833             && ossl_assert(es->err_data[i] != NULL)) {
834         str = es->err_data[i];
835         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         es->err_data[i] = NULL;
845         es->err_data_flags[i] = 0;
846     } else if ((str = OPENSSL_malloc(size = 81)) == NULL) {
847         return;
848     } else {
849         str[0] = '\0';
850     }
851     len = strlen(str);
852 
853     while (--num >= 0) {
854         arg = va_arg(args, char *);
855         if (arg == NULL)
856             arg = "<NULL>";
857         len += strlen(arg);
858         if (len >= size) {
859             char *p;
860 
861             size = len + 20;
862             p = OPENSSL_realloc(str, size);
863             if (p == NULL) {
864                 OPENSSL_free(str);
865                 return;
866             }
867             str = p;
868         }
869         OPENSSL_strlcat(str, arg, size);
870     }
871     if (!err_set_error_data_int(str, size, flags, 0))
872         OPENSSL_free(str);
873 }
874 
err_clear_last_constant_time(int clear)875 void err_clear_last_constant_time(int clear)
876 {
877     ERR_STATE *es;
878     int top;
879 
880     es = ossl_err_get_state_int();
881     if (es == NULL)
882         return;
883 
884     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     clear = constant_time_select_int(constant_time_eq_int(clear, 0),
891                                      0, ERR_FLAG_CLEAR);
892     es->err_flags[top] |= clear;
893 }
894