Rich Salz | aa6bb13 | 2016-05-17 15:38:09 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3 | * |
Rich Salz | aa6bb13 | 2016-05-17 15:38:09 -0400 | [diff] [blame] | 4 | * Licensed under the OpenSSL license (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 |
Bodo Möller | 0a150c5 | 2000-03-04 01:36:53 +0000 | [diff] [blame] | 8 | */ |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 9 | |
| 10 | #include <stdio.h> |
Ulf Möller | 4565c3e | 1999-05-05 12:35:27 +0000 | [diff] [blame] | 11 | #include <stdarg.h> |
Bodo Möller | 0a150c5 | 2000-03-04 01:36:53 +0000 | [diff] [blame] | 12 | #include <string.h> |
Matt Caswell | 7b9f8f7 | 2016-02-08 16:43:03 +0000 | [diff] [blame] | 13 | #include <internal/cryptlib_int.h> |
Matt Caswell | ff23440 | 2016-03-11 21:53:18 +0000 | [diff] [blame] | 14 | #include <internal/err.h> |
Matt Caswell | c3a64b5 | 2016-04-14 13:37:41 +0100 | [diff] [blame] | 15 | #include <internal/err_int.h> |
Bodo Möller | ec57782 | 1999-04-23 22:13:45 +0000 | [diff] [blame] | 16 | #include <openssl/lhash.h> |
| 17 | #include <openssl/crypto.h> |
Bodo Möller | ec57782 | 1999-04-23 22:13:45 +0000 | [diff] [blame] | 18 | #include <openssl/buffer.h> |
Bodo Möller | e5c84d5 | 2000-04-14 23:36:15 +0000 | [diff] [blame] | 19 | #include <openssl/bio.h> |
Viktor Dukhovni | 98186eb | 2016-01-04 23:00:33 -0500 | [diff] [blame] | 20 | #include <openssl/opensslconf.h> |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 21 | #include <internal/thread_once.h> |
Ben Laurie | 3c1d6bb | 2008-05-26 11:24:29 +0000 | [diff] [blame] | 22 | |
Bodo Möller | cf5bfbf | 2001-09-04 11:49:14 +0000 | [diff] [blame] | 23 | static void err_load_strings(int lib, ERR_STRING_DATA *str); |
| 24 | |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 25 | static void ERR_STATE_free(ERR_STATE *s); |
Richard Levitte | cf1b7d9 | 2001-02-19 16:06:34 +0000 | [diff] [blame] | 26 | #ifndef OPENSSL_NO_ERR |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 27 | static ERR_STRING_DATA ERR_str_libraries[] = { |
| 28 | {ERR_PACK(ERR_LIB_NONE, 0, 0), "unknown library"}, |
| 29 | {ERR_PACK(ERR_LIB_SYS, 0, 0), "system library"}, |
| 30 | {ERR_PACK(ERR_LIB_BN, 0, 0), "bignum routines"}, |
| 31 | {ERR_PACK(ERR_LIB_RSA, 0, 0), "rsa routines"}, |
| 32 | {ERR_PACK(ERR_LIB_DH, 0, 0), "Diffie-Hellman routines"}, |
| 33 | {ERR_PACK(ERR_LIB_EVP, 0, 0), "digital envelope routines"}, |
| 34 | {ERR_PACK(ERR_LIB_BUF, 0, 0), "memory buffer routines"}, |
| 35 | {ERR_PACK(ERR_LIB_OBJ, 0, 0), "object identifier routines"}, |
| 36 | {ERR_PACK(ERR_LIB_PEM, 0, 0), "PEM routines"}, |
| 37 | {ERR_PACK(ERR_LIB_DSA, 0, 0), "dsa routines"}, |
| 38 | {ERR_PACK(ERR_LIB_X509, 0, 0), "x509 certificate routines"}, |
| 39 | {ERR_PACK(ERR_LIB_ASN1, 0, 0), "asn1 encoding routines"}, |
| 40 | {ERR_PACK(ERR_LIB_CONF, 0, 0), "configuration file routines"}, |
| 41 | {ERR_PACK(ERR_LIB_CRYPTO, 0, 0), "common libcrypto routines"}, |
| 42 | {ERR_PACK(ERR_LIB_EC, 0, 0), "elliptic curve routines"}, |
| 43 | {ERR_PACK(ERR_LIB_ECDSA, 0, 0), "ECDSA routines"}, |
| 44 | {ERR_PACK(ERR_LIB_ECDH, 0, 0), "ECDH routines"}, |
| 45 | {ERR_PACK(ERR_LIB_SSL, 0, 0), "SSL routines"}, |
| 46 | {ERR_PACK(ERR_LIB_BIO, 0, 0), "BIO routines"}, |
| 47 | {ERR_PACK(ERR_LIB_PKCS7, 0, 0), "PKCS7 routines"}, |
| 48 | {ERR_PACK(ERR_LIB_X509V3, 0, 0), "X509 V3 routines"}, |
| 49 | {ERR_PACK(ERR_LIB_PKCS12, 0, 0), "PKCS12 routines"}, |
| 50 | {ERR_PACK(ERR_LIB_RAND, 0, 0), "random number generator"}, |
| 51 | {ERR_PACK(ERR_LIB_DSO, 0, 0), "DSO support routines"}, |
| 52 | {ERR_PACK(ERR_LIB_TS, 0, 0), "time stamp routines"}, |
| 53 | {ERR_PACK(ERR_LIB_ENGINE, 0, 0), "engine routines"}, |
| 54 | {ERR_PACK(ERR_LIB_OCSP, 0, 0), "OCSP routines"}, |
Richard Levitte | 4984448 | 2016-12-08 11:16:37 +0100 | [diff] [blame] | 55 | {ERR_PACK(ERR_LIB_UI, 0, 0), "UI routines"}, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 56 | {ERR_PACK(ERR_LIB_FIPS, 0, 0), "FIPS routines"}, |
| 57 | {ERR_PACK(ERR_LIB_CMS, 0, 0), "CMS routines"}, |
| 58 | {ERR_PACK(ERR_LIB_HMAC, 0, 0), "HMAC routines"}, |
Rob Percival | 0cea883 | 2016-02-25 18:11:16 +0000 | [diff] [blame] | 59 | {ERR_PACK(ERR_LIB_CT, 0, 0), "CT routines"}, |
Matt Caswell | 079a1a9 | 2015-10-06 14:47:00 +0100 | [diff] [blame] | 60 | {ERR_PACK(ERR_LIB_ASYNC, 0, 0), "ASYNC routines"}, |
Dr. Stephen Henson | 3e30fa0 | 2016-03-02 04:11:02 +0000 | [diff] [blame] | 61 | {ERR_PACK(ERR_LIB_KDF, 0, 0), "KDF routines"}, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 62 | {0, NULL}, |
| 63 | }; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 64 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 65 | static ERR_STRING_DATA ERR_str_functs[] = { |
| 66 | {ERR_PACK(0, SYS_F_FOPEN, 0), "fopen"}, |
| 67 | {ERR_PACK(0, SYS_F_CONNECT, 0), "connect"}, |
| 68 | {ERR_PACK(0, SYS_F_GETSERVBYNAME, 0), "getservbyname"}, |
| 69 | {ERR_PACK(0, SYS_F_SOCKET, 0), "socket"}, |
| 70 | {ERR_PACK(0, SYS_F_IOCTLSOCKET, 0), "ioctlsocket"}, |
| 71 | {ERR_PACK(0, SYS_F_BIND, 0), "bind"}, |
| 72 | {ERR_PACK(0, SYS_F_LISTEN, 0), "listen"}, |
| 73 | {ERR_PACK(0, SYS_F_ACCEPT, 0), "accept"}, |
| 74 | # ifdef OPENSSL_SYS_WINDOWS |
| 75 | {ERR_PACK(0, SYS_F_WSASTARTUP, 0), "WSAstartup"}, |
| 76 | # endif |
| 77 | {ERR_PACK(0, SYS_F_OPENDIR, 0), "opendir"}, |
| 78 | {ERR_PACK(0, SYS_F_FREAD, 0), "fread"}, |
Richard Levitte | 83be277 | 2016-02-02 16:25:42 +0100 | [diff] [blame] | 79 | {ERR_PACK(0, SYS_F_GETADDRINFO, 0), "getaddrinfo"}, |
| 80 | {ERR_PACK(0, SYS_F_GETNAMEINFO, 0), "getnameinfo"}, |
Richard Levitte | d33b215 | 2016-02-02 21:04:54 +0100 | [diff] [blame] | 81 | {ERR_PACK(0, SYS_F_SETSOCKOPT, 0), "setsockopt"}, |
| 82 | {ERR_PACK(0, SYS_F_GETSOCKOPT, 0), "getsockopt"}, |
| 83 | {ERR_PACK(0, SYS_F_GETSOCKNAME, 0), "getsockname"}, |
Kurt Roeckx | c86d1f1 | 2016-02-04 15:20:26 +0100 | [diff] [blame] | 84 | {ERR_PACK(0, SYS_F_GETHOSTBYNAME, 0), "gethostbyname"}, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 85 | {0, NULL}, |
| 86 | }; |
| 87 | |
| 88 | static ERR_STRING_DATA ERR_str_reasons[] = { |
| 89 | {ERR_R_SYS_LIB, "system lib"}, |
| 90 | {ERR_R_BN_LIB, "BN lib"}, |
| 91 | {ERR_R_RSA_LIB, "RSA lib"}, |
| 92 | {ERR_R_DH_LIB, "DH lib"}, |
| 93 | {ERR_R_EVP_LIB, "EVP lib"}, |
| 94 | {ERR_R_BUF_LIB, "BUF lib"}, |
| 95 | {ERR_R_OBJ_LIB, "OBJ lib"}, |
| 96 | {ERR_R_PEM_LIB, "PEM lib"}, |
| 97 | {ERR_R_DSA_LIB, "DSA lib"}, |
| 98 | {ERR_R_X509_LIB, "X509 lib"}, |
| 99 | {ERR_R_ASN1_LIB, "ASN1 lib"}, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 100 | {ERR_R_EC_LIB, "EC lib"}, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 101 | {ERR_R_BIO_LIB, "BIO lib"}, |
| 102 | {ERR_R_PKCS7_LIB, "PKCS7 lib"}, |
| 103 | {ERR_R_X509V3_LIB, "X509V3 lib"}, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 104 | {ERR_R_ENGINE_LIB, "ENGINE lib"}, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 105 | {ERR_R_ECDSA_LIB, "ECDSA lib"}, |
| 106 | |
| 107 | {ERR_R_NESTED_ASN1_ERROR, "nested asn1 error"}, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 108 | {ERR_R_MISSING_ASN1_EOS, "missing asn1 eos"}, |
| 109 | |
| 110 | {ERR_R_FATAL, "fatal"}, |
| 111 | {ERR_R_MALLOC_FAILURE, "malloc failure"}, |
| 112 | {ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED, |
| 113 | "called a function you should not call"}, |
| 114 | {ERR_R_PASSED_NULL_PARAMETER, "passed a null parameter"}, |
| 115 | {ERR_R_INTERNAL_ERROR, "internal error"}, |
| 116 | {ERR_R_DISABLED, "called a function that was disabled at compile-time"}, |
Matt Caswell | 302f758 | 2016-02-10 15:16:06 +0000 | [diff] [blame] | 117 | {ERR_R_INIT_FAIL, "init fail"}, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 118 | |
| 119 | {0, NULL}, |
| 120 | }; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 121 | #endif |
Bodo Möller | 0a150c5 | 2000-03-04 01:36:53 +0000 | [diff] [blame] | 122 | |
Alessandro Ghedini | 8509dcc | 2016-03-02 17:36:17 +0000 | [diff] [blame] | 123 | static CRYPTO_ONCE err_init = CRYPTO_ONCE_STATIC_INIT; |
| 124 | static CRYPTO_THREAD_LOCAL err_thread_local; |
| 125 | |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 126 | static CRYPTO_ONCE err_string_init = CRYPTO_ONCE_STATIC_INIT; |
| 127 | static CRYPTO_RWLOCK *err_string_lock; |
| 128 | |
Geoff Thorpe | 566bdf2 | 2001-08-25 17:51:59 +0000 | [diff] [blame] | 129 | static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *); |
Geoff Thorpe | 566bdf2 | 2001-08-25 17:51:59 +0000 | [diff] [blame] | 130 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 131 | /* |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 132 | * The internal state |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 133 | */ |
Rich Salz | f3f1cf8 | 2016-01-30 12:04:25 -0500 | [diff] [blame] | 134 | |
Ben Laurie | 3c1d6bb | 2008-05-26 11:24:29 +0000 | [diff] [blame] | 135 | static LHASH_OF(ERR_STRING_DATA) *int_error_hash = NULL; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 136 | static int int_err_library_number = ERR_LIB_USER; |
Geoff Thorpe | 566bdf2 | 2001-08-25 17:51:59 +0000 | [diff] [blame] | 137 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 138 | static unsigned long get_error_values(int inc, int top, const char **file, |
| 139 | int *line, const char **data, |
| 140 | int *flags); |
Geoff Thorpe | 566bdf2 | 2001-08-25 17:51:59 +0000 | [diff] [blame] | 141 | |
Ben Laurie | 3c1d6bb | 2008-05-26 11:24:29 +0000 | [diff] [blame] | 142 | static unsigned long err_string_data_hash(const ERR_STRING_DATA *a) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 143 | { |
| 144 | unsigned long ret, l; |
Ben Laurie | 3c1d6bb | 2008-05-26 11:24:29 +0000 | [diff] [blame] | 145 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 146 | l = a->error; |
| 147 | ret = l ^ ERR_GET_LIB(l) ^ ERR_GET_FUNC(l); |
| 148 | return (ret ^ ret % 19 * 13); |
| 149 | } |
| 150 | |
Ben Laurie | 3c1d6bb | 2008-05-26 11:24:29 +0000 | [diff] [blame] | 151 | static int err_string_data_cmp(const ERR_STRING_DATA *a, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 152 | const ERR_STRING_DATA *b) |
| 153 | { |
| 154 | return (int)(a->error - b->error); |
| 155 | } |
| 156 | |
Geoff Thorpe | 566bdf2 | 2001-08-25 17:51:59 +0000 | [diff] [blame] | 157 | static ERR_STRING_DATA *int_err_get_item(const ERR_STRING_DATA *d) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 158 | { |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 159 | ERR_STRING_DATA *p = NULL; |
Bodo Möller | 78f7923 | 2001-09-06 12:37:36 +0000 | [diff] [blame] | 160 | |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 161 | CRYPTO_THREAD_read_lock(err_string_lock); |
Rich Salz | 219116d | 2016-08-03 15:24:57 -0400 | [diff] [blame] | 162 | if (int_error_hash != NULL) |
| 163 | p = lh_ERR_STRING_DATA_retrieve(int_error_hash, d); |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 164 | CRYPTO_THREAD_unlock(err_string_lock); |
Bodo Möller | 78f7923 | 2001-09-06 12:37:36 +0000 | [diff] [blame] | 165 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 166 | return p; |
| 167 | } |
Bodo Möller | 567fef8 | 2001-09-04 11:15:55 +0000 | [diff] [blame] | 168 | |
Richard Levitte | 758f942 | 2003-02-18 12:14:57 +0000 | [diff] [blame] | 169 | #ifndef OPENSSL_NO_ERR |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 170 | # define NUM_SYS_STR_REASONS 127 |
| 171 | # define LEN_SYS_STR_REASON 32 |
Bodo Möller | 0a150c5 | 2000-03-04 01:36:53 +0000 | [diff] [blame] | 172 | |
| 173 | static ERR_STRING_DATA SYS_str_reasons[NUM_SYS_STR_REASONS + 1]; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 174 | /* |
| 175 | * SYS_str_reasons is filled with copies of strerror() results at |
| 176 | * initialization. 'errno' values up to 127 should cover all usual errors, |
| 177 | * others will be displayed numerically by ERR_error_string. It is crucial |
| 178 | * that we have something for each reason code that occurs in |
| 179 | * ERR_str_reasons, or bogus reason strings will be returned for SYSerr(), |
| 180 | * which always gets an errno value and never one of those 'standard' reason |
| 181 | * codes. |
| 182 | */ |
Bodo Möller | 0a150c5 | 2000-03-04 01:36:53 +0000 | [diff] [blame] | 183 | |
Ben Laurie | 41a15c4 | 2005-03-31 09:26:39 +0000 | [diff] [blame] | 184 | static void build_SYS_str_reasons(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 185 | { |
| 186 | /* OPENSSL_malloc cannot be used here, use static storage instead */ |
| 187 | static char strerror_tab[NUM_SYS_STR_REASONS][LEN_SYS_STR_REASON]; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 188 | static int init = 1; |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 189 | int i; |
Bodo Möller | cf5bfbf | 2001-09-04 11:49:14 +0000 | [diff] [blame] | 190 | |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 191 | CRYPTO_THREAD_write_lock(err_string_lock); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 192 | if (!init) { |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 193 | CRYPTO_THREAD_unlock(err_string_lock); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 194 | return; |
| 195 | } |
Bodo Möller | 0a150c5 | 2000-03-04 01:36:53 +0000 | [diff] [blame] | 196 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 197 | for (i = 1; i <= NUM_SYS_STR_REASONS; i++) { |
| 198 | ERR_STRING_DATA *str = &SYS_str_reasons[i - 1]; |
Bodo Möller | 0a150c5 | 2000-03-04 01:36:53 +0000 | [diff] [blame] | 199 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 200 | str->error = (unsigned long)i; |
| 201 | if (str->string == NULL) { |
| 202 | char (*dest)[LEN_SYS_STR_REASON] = &(strerror_tab[i - 1]); |
Matt Caswell | 7d37818 | 2016-05-23 13:52:29 +0100 | [diff] [blame] | 203 | if (openssl_strerror_r(i, *dest, sizeof(*dest))) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 204 | str->string = *dest; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 205 | } |
| 206 | if (str->string == NULL) |
| 207 | str->string = "unknown"; |
| 208 | } |
Bodo Möller | 0a150c5 | 2000-03-04 01:36:53 +0000 | [diff] [blame] | 209 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 210 | /* |
| 211 | * Now we still have SYS_str_reasons[NUM_SYS_STR_REASONS] = {0, NULL}, as |
| 212 | * required by ERR_load_strings. |
| 213 | */ |
| 214 | |
| 215 | init = 0; |
| 216 | |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 217 | CRYPTO_THREAD_unlock(err_string_lock); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 218 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 219 | #endif |
| 220 | |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 221 | #define err_clear_data(p,i) \ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 222 | do { \ |
Rich Salz | b548a1f | 2015-05-01 10:02:07 -0400 | [diff] [blame] | 223 | if ((p)->err_data_flags[i] & ERR_TXT_MALLOCED) \ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 224 | { \ |
| 225 | OPENSSL_free((p)->err_data[i]); \ |
| 226 | (p)->err_data[i]=NULL; \ |
| 227 | } \ |
| 228 | (p)->err_data_flags[i]=0; \ |
| 229 | } while(0) |
Richard Levitte | 54f6451 | 2003-06-11 20:49:58 +0000 | [diff] [blame] | 230 | |
| 231 | #define err_clear(p,i) \ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 232 | do { \ |
| 233 | (p)->err_flags[i]=0; \ |
| 234 | (p)->err_buffer[i]=0; \ |
| 235 | err_clear_data(p,i); \ |
| 236 | (p)->err_file[i]=NULL; \ |
| 237 | (p)->err_line[i]= -1; \ |
| 238 | } while(0) |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 239 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 240 | static void ERR_STATE_free(ERR_STATE *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 241 | { |
| 242 | int i; |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 243 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 244 | if (s == NULL) |
| 245 | return; |
Ben Laurie | e03ddfa | 1999-01-07 19:15:59 +0000 | [diff] [blame] | 246 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 247 | for (i = 0; i < ERR_NUM_ERRORS; i++) { |
| 248 | err_clear_data(s, i); |
| 249 | } |
| 250 | OPENSSL_free(s); |
| 251 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 252 | |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 253 | DEFINE_RUN_ONCE_STATIC(do_err_strings_init) |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 254 | { |
Matt Caswell | 135648b | 2016-09-05 14:12:58 +0100 | [diff] [blame] | 255 | OPENSSL_init_crypto(0, NULL); |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 256 | err_string_lock = CRYPTO_THREAD_lock_new(); |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 257 | return err_string_lock != NULL; |
Matt Caswell | ff23440 | 2016-03-11 21:53:18 +0000 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | void err_cleanup(void) |
| 261 | { |
| 262 | CRYPTO_THREAD_lock_free(err_string_lock); |
| 263 | err_string_lock = NULL; |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Kurt Roeckx | 69588ed | 2016-07-12 15:50:06 +0200 | [diff] [blame] | 266 | int ERR_load_ERR_strings(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 267 | { |
Richard Levitte | cf1b7d9 | 2001-02-19 16:06:34 +0000 | [diff] [blame] | 268 | #ifndef OPENSSL_NO_ERR |
Kurt Roeckx | 69588ed | 2016-07-12 15:50:06 +0200 | [diff] [blame] | 269 | if (!RUN_ONCE(&err_string_init, do_err_strings_init)) |
| 270 | return 0; |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 271 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 272 | err_load_strings(0, ERR_str_libraries); |
| 273 | err_load_strings(0, ERR_str_reasons); |
| 274 | err_load_strings(ERR_LIB_SYS, ERR_str_functs); |
| 275 | build_SYS_str_reasons(); |
| 276 | err_load_strings(ERR_LIB_SYS, SYS_str_reasons); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 277 | #endif |
Kurt Roeckx | 69588ed | 2016-07-12 15:50:06 +0200 | [diff] [blame] | 278 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 279 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 280 | |
Bodo Möller | cf5bfbf | 2001-09-04 11:49:14 +0000 | [diff] [blame] | 281 | static void err_load_strings(int lib, ERR_STRING_DATA *str) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 282 | { |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 283 | CRYPTO_THREAD_write_lock(err_string_lock); |
Rich Salz | 219116d | 2016-08-03 15:24:57 -0400 | [diff] [blame] | 284 | if (int_error_hash == NULL) |
| 285 | int_error_hash = lh_ERR_STRING_DATA_new(err_string_data_hash, |
| 286 | err_string_data_cmp); |
| 287 | if (int_error_hash != NULL) { |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 288 | for (; str->error; str++) { |
| 289 | if (lib) |
| 290 | str->error |= ERR_PACK(lib, 0, 0); |
Rich Salz | 219116d | 2016-08-03 15:24:57 -0400 | [diff] [blame] | 291 | (void)lh_ERR_STRING_DATA_insert(int_error_hash, str); |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 292 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 293 | } |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 294 | CRYPTO_THREAD_unlock(err_string_lock); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 295 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 296 | |
Kurt Roeckx | 69588ed | 2016-07-12 15:50:06 +0200 | [diff] [blame] | 297 | int ERR_load_strings(int lib, ERR_STRING_DATA *str) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 298 | { |
Kurt Roeckx | 69588ed | 2016-07-12 15:50:06 +0200 | [diff] [blame] | 299 | if (ERR_load_ERR_strings() == 0) |
| 300 | return 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 301 | err_load_strings(lib, str); |
Kurt Roeckx | 69588ed | 2016-07-12 15:50:06 +0200 | [diff] [blame] | 302 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 303 | } |
Bodo Möller | cf5bfbf | 2001-09-04 11:49:14 +0000 | [diff] [blame] | 304 | |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 305 | int ERR_unload_strings(int lib, ERR_STRING_DATA *str) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 306 | { |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 307 | if (!RUN_ONCE(&err_string_init, do_err_strings_init)) |
| 308 | return 0; |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 309 | |
| 310 | CRYPTO_THREAD_write_lock(err_string_lock); |
Rich Salz | 219116d | 2016-08-03 15:24:57 -0400 | [diff] [blame] | 311 | if (int_error_hash != NULL) { |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 312 | for (; str->error; str++) { |
| 313 | if (lib) |
| 314 | str->error |= ERR_PACK(lib, 0, 0); |
Rich Salz | 219116d | 2016-08-03 15:24:57 -0400 | [diff] [blame] | 315 | (void)lh_ERR_STRING_DATA_delete(int_error_hash, str); |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 316 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 317 | } |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 318 | CRYPTO_THREAD_unlock(err_string_lock); |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 319 | |
| 320 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 321 | } |
Geoff Thorpe | 1738bb6 | 2001-09-03 18:24:56 +0000 | [diff] [blame] | 322 | |
Matt Caswell | b3599db | 2016-04-12 12:20:16 +0100 | [diff] [blame] | 323 | void err_free_strings_int(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 324 | { |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 325 | if (!RUN_ONCE(&err_string_init, do_err_strings_init)) |
| 326 | return; |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 327 | |
| 328 | CRYPTO_THREAD_write_lock(err_string_lock); |
Rich Salz | 25aaa98 | 2015-05-01 14:37:16 -0400 | [diff] [blame] | 329 | lh_ERR_STRING_DATA_free(int_error_hash); |
| 330 | int_error_hash = NULL; |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 331 | CRYPTO_THREAD_unlock(err_string_lock); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 332 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 333 | |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 334 | /********************************************************/ |
| 335 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 336 | void ERR_put_error(int lib, int func, int reason, const char *file, int line) |
| 337 | { |
| 338 | ERR_STATE *es; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 339 | |
Ulf Möller | a53955d | 1999-06-04 21:35:58 +0000 | [diff] [blame] | 340 | #ifdef _OSD_POSIX |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 341 | /* |
| 342 | * In the BS2000-OSD POSIX subsystem, the compiler generates path names |
| 343 | * in the form "*POSIX(/etc/passwd)". This dirty hack strips them to |
| 344 | * something sensible. @@@ We shouldn't modify a const string, though. |
| 345 | */ |
| 346 | if (strncmp(file, "*POSIX(", sizeof("*POSIX(") - 1) == 0) { |
| 347 | char *end; |
Ulf Möller | a53955d | 1999-06-04 21:35:58 +0000 | [diff] [blame] | 348 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 349 | /* Skip the "*POSIX(" prefix */ |
| 350 | file += sizeof("*POSIX(") - 1; |
| 351 | end = &file[strlen(file) - 1]; |
| 352 | if (*end == ')') |
| 353 | *end = '\0'; |
| 354 | /* Optional: use the basename of the path only. */ |
| 355 | if ((end = strrchr(file, '/')) != NULL) |
| 356 | file = &end[1]; |
| 357 | } |
Ulf Möller | a53955d | 1999-06-04 21:35:58 +0000 | [diff] [blame] | 358 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 359 | es = ERR_get_state(); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 360 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 361 | es->top = (es->top + 1) % ERR_NUM_ERRORS; |
| 362 | if (es->top == es->bottom) |
| 363 | es->bottom = (es->bottom + 1) % ERR_NUM_ERRORS; |
| 364 | es->err_flags[es->top] = 0; |
| 365 | es->err_buffer[es->top] = ERR_PACK(lib, func, reason); |
| 366 | es->err_file[es->top] = file; |
| 367 | es->err_line[es->top] = line; |
| 368 | err_clear_data(es, es->top); |
| 369 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 370 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 371 | void ERR_clear_error(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 372 | { |
| 373 | int i; |
| 374 | ERR_STATE *es; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 375 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 376 | es = ERR_get_state(); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 377 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 378 | for (i = 0; i < ERR_NUM_ERRORS; i++) { |
| 379 | err_clear(es, i); |
| 380 | } |
| 381 | es->top = es->bottom = 0; |
| 382 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 383 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 384 | unsigned long ERR_get_error(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 385 | { |
| 386 | return (get_error_values(1, 0, NULL, NULL, NULL, NULL)); |
| 387 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 388 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 389 | unsigned long ERR_get_error_line(const char **file, int *line) |
| 390 | { |
| 391 | return (get_error_values(1, 0, file, line, NULL, NULL)); |
| 392 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 393 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 394 | unsigned long ERR_get_error_line_data(const char **file, int *line, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 395 | const char **data, int *flags) |
| 396 | { |
| 397 | return (get_error_values(1, 0, file, line, data, flags)); |
| 398 | } |
Bodo Möller | 273db40 | 2002-01-24 17:17:33 +0000 | [diff] [blame] | 399 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 400 | unsigned long ERR_peek_error(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 401 | { |
| 402 | return (get_error_values(0, 0, NULL, NULL, NULL, NULL)); |
| 403 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 404 | |
Bodo Möller | a14e2d9 | 2002-01-24 16:16:43 +0000 | [diff] [blame] | 405 | unsigned long ERR_peek_error_line(const char **file, int *line) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 406 | { |
| 407 | return (get_error_values(0, 0, file, line, NULL, NULL)); |
| 408 | } |
Ben Laurie | 0fc5cf0 | 2002-01-22 22:29:58 +0000 | [diff] [blame] | 409 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 410 | unsigned long ERR_peek_error_line_data(const char **file, int *line, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 411 | const char **data, int *flags) |
| 412 | { |
| 413 | return (get_error_values(0, 0, file, line, data, flags)); |
| 414 | } |
Bodo Möller | 273db40 | 2002-01-24 17:17:33 +0000 | [diff] [blame] | 415 | |
| 416 | unsigned long ERR_peek_last_error(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 417 | { |
| 418 | return (get_error_values(0, 1, NULL, NULL, NULL, NULL)); |
| 419 | } |
Bodo Möller | 273db40 | 2002-01-24 17:17:33 +0000 | [diff] [blame] | 420 | |
| 421 | unsigned long ERR_peek_last_error_line(const char **file, int *line) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 422 | { |
| 423 | return (get_error_values(0, 1, file, line, NULL, NULL)); |
| 424 | } |
Bodo Möller | 273db40 | 2002-01-24 17:17:33 +0000 | [diff] [blame] | 425 | |
Bodo Möller | a14e2d9 | 2002-01-24 16:16:43 +0000 | [diff] [blame] | 426 | unsigned long ERR_peek_last_error_line_data(const char **file, int *line, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 427 | const char **data, int *flags) |
| 428 | { |
| 429 | return (get_error_values(0, 1, file, line, data, flags)); |
| 430 | } |
Bodo Möller | a14e2d9 | 2002-01-24 16:16:43 +0000 | [diff] [blame] | 431 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 432 | static unsigned long get_error_values(int inc, int top, const char **file, |
| 433 | int *line, const char **data, |
| 434 | int *flags) |
| 435 | { |
| 436 | int i = 0; |
| 437 | ERR_STATE *es; |
| 438 | unsigned long ret; |
Bodo Möller | 273db40 | 2002-01-24 17:17:33 +0000 | [diff] [blame] | 439 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 440 | es = ERR_get_state(); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 441 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 442 | if (inc && top) { |
| 443 | if (file) |
| 444 | *file = ""; |
| 445 | if (line) |
| 446 | *line = 0; |
| 447 | if (data) |
| 448 | *data = ""; |
| 449 | if (flags) |
| 450 | *flags = 0; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 451 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 452 | return ERR_R_INTERNAL_ERROR; |
| 453 | } |
Bodo Möller | a14e2d9 | 2002-01-24 16:16:43 +0000 | [diff] [blame] | 454 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 455 | if (es->bottom == es->top) |
| 456 | return 0; |
| 457 | if (top) |
| 458 | i = es->top; /* last error */ |
| 459 | else |
| 460 | i = (es->bottom + 1) % ERR_NUM_ERRORS; /* first error */ |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 461 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 462 | ret = es->err_buffer[i]; |
| 463 | if (inc) { |
| 464 | es->bottom = i; |
| 465 | es->err_buffer[i] = 0; |
| 466 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 467 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 468 | if ((file != NULL) && (line != NULL)) { |
| 469 | if (es->err_file[i] == NULL) { |
| 470 | *file = "NA"; |
| 471 | if (line != NULL) |
| 472 | *line = 0; |
| 473 | } else { |
| 474 | *file = es->err_file[i]; |
| 475 | if (line != NULL) |
| 476 | *line = es->err_line[i]; |
| 477 | } |
| 478 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 479 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 480 | if (data == NULL) { |
| 481 | if (inc) { |
| 482 | err_clear_data(es, i); |
| 483 | } |
| 484 | } else { |
| 485 | if (es->err_data[i] == NULL) { |
| 486 | *data = ""; |
| 487 | if (flags != NULL) |
| 488 | *flags = 0; |
| 489 | } else { |
| 490 | *data = es->err_data[i]; |
| 491 | if (flags != NULL) |
| 492 | *flags = es->err_data_flags[i]; |
| 493 | } |
| 494 | } |
| 495 | return ret; |
| 496 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 497 | |
Bodo Möller | e5c84d5 | 2000-04-14 23:36:15 +0000 | [diff] [blame] | 498 | void ERR_error_string_n(unsigned long e, char *buf, size_t len) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 499 | { |
| 500 | char lsbuf[64], fsbuf[64], rsbuf[64]; |
| 501 | const char *ls, *fs, *rs; |
| 502 | unsigned long l, f, r; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 503 | |
Matt Caswell | e5c1361 | 2016-10-12 16:43:03 +0100 | [diff] [blame] | 504 | if (len == 0) |
| 505 | return; |
| 506 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 507 | l = ERR_GET_LIB(e); |
| 508 | f = ERR_GET_FUNC(e); |
| 509 | r = ERR_GET_REASON(e); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 510 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 511 | ls = ERR_lib_error_string(e); |
| 512 | fs = ERR_func_error_string(e); |
| 513 | rs = ERR_reason_error_string(e); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 514 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 515 | if (ls == NULL) |
| 516 | BIO_snprintf(lsbuf, sizeof(lsbuf), "lib(%lu)", l); |
| 517 | if (fs == NULL) |
| 518 | BIO_snprintf(fsbuf, sizeof(fsbuf), "func(%lu)", f); |
| 519 | if (rs == NULL) |
| 520 | BIO_snprintf(rsbuf, sizeof(rsbuf), "reason(%lu)", r); |
Bodo Möller | e5c84d5 | 2000-04-14 23:36:15 +0000 | [diff] [blame] | 521 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 522 | BIO_snprintf(buf, len, "error:%08lX:%s:%s:%s", e, ls ? ls : lsbuf, |
| 523 | fs ? fs : fsbuf, rs ? rs : rsbuf); |
| 524 | if (strlen(buf) == len - 1) { |
| 525 | /* |
| 526 | * output may be truncated; make sure we always have 5 |
| 527 | * colon-separated fields, i.e. 4 colons ... |
| 528 | */ |
Bodo Möller | e5c84d5 | 2000-04-14 23:36:15 +0000 | [diff] [blame] | 529 | #define NUM_COLONS 4 |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 530 | if (len > NUM_COLONS) { /* ... if possible */ |
| 531 | int i; |
| 532 | char *s = buf; |
| 533 | |
| 534 | for (i = 0; i < NUM_COLONS; i++) { |
| 535 | char *colon = strchr(s, ':'); |
| 536 | if (colon == NULL || colon > &buf[len - 1] - NUM_COLONS + i) { |
| 537 | /* |
| 538 | * set colon no. i at last possible position (buf[len-1] |
| 539 | * is the terminating 0) |
| 540 | */ |
| 541 | colon = &buf[len - 1] - NUM_COLONS + i; |
| 542 | *colon = ':'; |
| 543 | } |
| 544 | s = colon + 1; |
| 545 | } |
| 546 | } |
| 547 | } |
| 548 | } |
Bodo Möller | e5c84d5 | 2000-04-14 23:36:15 +0000 | [diff] [blame] | 549 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 550 | /* |
| 551 | * ERR_error_string_n should be used instead for ret != NULL as |
| 552 | * ERR_error_string cannot know how large the buffer is |
| 553 | */ |
Bodo Möller | e5c84d5 | 2000-04-14 23:36:15 +0000 | [diff] [blame] | 554 | char *ERR_error_string(unsigned long e, char *ret) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 555 | { |
| 556 | static char buf[256]; |
Bodo Möller | e5c84d5 | 2000-04-14 23:36:15 +0000 | [diff] [blame] | 557 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 558 | if (ret == NULL) |
| 559 | ret = buf; |
| 560 | ERR_error_string_n(e, ret, 256); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 561 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 562 | return ret; |
| 563 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 564 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 565 | const char *ERR_lib_error_string(unsigned long e) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 566 | { |
| 567 | ERR_STRING_DATA d, *p; |
| 568 | unsigned long l; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 569 | |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 570 | if (!RUN_ONCE(&err_string_init, do_err_strings_init)) { |
| 571 | return NULL; |
| 572 | } |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 573 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 574 | l = ERR_GET_LIB(e); |
| 575 | d.error = ERR_PACK(l, 0, 0); |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 576 | p = int_err_get_item(&d); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 577 | return ((p == NULL) ? NULL : p->string); |
| 578 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 579 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 580 | const char *ERR_func_error_string(unsigned long e) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 581 | { |
| 582 | ERR_STRING_DATA d, *p; |
| 583 | unsigned long l, f; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 584 | |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 585 | if (!RUN_ONCE(&err_string_init, do_err_strings_init)) { |
| 586 | return NULL; |
| 587 | } |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 588 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 589 | l = ERR_GET_LIB(e); |
| 590 | f = ERR_GET_FUNC(e); |
| 591 | d.error = ERR_PACK(l, f, 0); |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 592 | p = int_err_get_item(&d); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 593 | return ((p == NULL) ? NULL : p->string); |
| 594 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 595 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 596 | const char *ERR_reason_error_string(unsigned long e) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 597 | { |
| 598 | ERR_STRING_DATA d, *p = NULL; |
| 599 | unsigned long l, r; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 600 | |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 601 | if (!RUN_ONCE(&err_string_init, do_err_strings_init)) { |
| 602 | return NULL; |
| 603 | } |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 604 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 605 | l = ERR_GET_LIB(e); |
| 606 | r = ERR_GET_REASON(e); |
| 607 | d.error = ERR_PACK(l, 0, r); |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 608 | p = int_err_get_item(&d); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 609 | if (!p) { |
| 610 | d.error = ERR_PACK(0, 0, r); |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 611 | p = int_err_get_item(&d); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 612 | } |
| 613 | return ((p == NULL) ? NULL : p->string); |
| 614 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 615 | |
Richard Levitte | 21e0017 | 2016-05-08 17:01:09 +0200 | [diff] [blame] | 616 | void err_delete_thread_state(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 617 | { |
Alessandro Ghedini | 8509dcc | 2016-03-02 17:36:17 +0000 | [diff] [blame] | 618 | ERR_STATE *state = ERR_get_state(); |
| 619 | if (state == NULL) |
| 620 | return; |
Bodo Möller | 78f7923 | 2001-09-06 12:37:36 +0000 | [diff] [blame] | 621 | |
Alessandro Ghedini | 8509dcc | 2016-03-02 17:36:17 +0000 | [diff] [blame] | 622 | CRYPTO_THREAD_set_local(&err_thread_local, NULL); |
| 623 | ERR_STATE_free(state); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 624 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 625 | |
Matt Caswell | 1aca361 | 2016-06-27 11:28:29 +0100 | [diff] [blame] | 626 | #if OPENSSL_API_COMPAT < 0x10100000L |
Richard Levitte | 21e0017 | 2016-05-08 17:01:09 +0200 | [diff] [blame] | 627 | void ERR_remove_thread_state(void *dummy) |
| 628 | { |
| 629 | } |
| 630 | #endif |
| 631 | |
| 632 | #if OPENSSL_API_COMPAT < 0x10000000L |
Geoff Thorpe | 4c32969 | 2008-08-06 15:54:15 +0000 | [diff] [blame] | 633 | void ERR_remove_state(unsigned long pid) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 634 | { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 635 | } |
Geoff Thorpe | 4c32969 | 2008-08-06 15:54:15 +0000 | [diff] [blame] | 636 | #endif |
| 637 | |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 638 | DEFINE_RUN_ONCE_STATIC(err_do_init) |
Alessandro Ghedini | 8509dcc | 2016-03-02 17:36:17 +0000 | [diff] [blame] | 639 | { |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 640 | return CRYPTO_THREAD_init_local(&err_thread_local, NULL); |
Alessandro Ghedini | 8509dcc | 2016-03-02 17:36:17 +0000 | [diff] [blame] | 641 | } |
| 642 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 643 | ERR_STATE *ERR_get_state(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 644 | { |
Alessandro Ghedini | 8509dcc | 2016-03-02 17:36:17 +0000 | [diff] [blame] | 645 | ERR_STATE *state = NULL; |
Bodo Möller | 78f7923 | 2001-09-06 12:37:36 +0000 | [diff] [blame] | 646 | |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 647 | if (!RUN_ONCE(&err_init, err_do_init)) |
| 648 | return NULL; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 649 | |
Alessandro Ghedini | 8509dcc | 2016-03-02 17:36:17 +0000 | [diff] [blame] | 650 | state = CRYPTO_THREAD_get_local(&err_thread_local); |
| 651 | |
| 652 | if (state == NULL) { |
| 653 | state = OPENSSL_zalloc(sizeof(*state)); |
| 654 | if (state == NULL) |
| 655 | return NULL; |
| 656 | |
| 657 | if (!CRYPTO_THREAD_set_local(&err_thread_local, state)) { |
| 658 | ERR_STATE_free(state); |
| 659 | return NULL; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 660 | } |
Matt Caswell | 0fc32b0 | 2016-02-10 13:59:15 +0000 | [diff] [blame] | 661 | |
| 662 | /* Ignore failures from these */ |
Rich Salz | f672aee | 2016-02-09 11:52:40 -0500 | [diff] [blame] | 663 | OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL); |
Matt Caswell | 7b9f8f7 | 2016-02-08 16:43:03 +0000 | [diff] [blame] | 664 | ossl_init_thread_start(OPENSSL_INIT_THREAD_ERR_STATE); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 665 | } |
Alessandro Ghedini | 8509dcc | 2016-03-02 17:36:17 +0000 | [diff] [blame] | 666 | |
| 667 | return state; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 668 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 669 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 670 | int ERR_get_next_error_library(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 671 | { |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 672 | int ret; |
| 673 | |
Richard Levitte | c2e4e5d | 2016-07-19 19:42:11 +0200 | [diff] [blame] | 674 | if (!RUN_ONCE(&err_string_init, do_err_strings_init)) { |
| 675 | return 0; |
| 676 | } |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 677 | |
| 678 | CRYPTO_THREAD_write_lock(err_string_lock); |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 679 | ret = int_err_library_number++; |
Alessandro Ghedini | 7b8e12d | 2016-03-05 21:31:43 +0000 | [diff] [blame] | 680 | CRYPTO_THREAD_unlock(err_string_lock); |
Rich Salz | 3e47caf | 2015-04-28 10:50:54 -0400 | [diff] [blame] | 681 | return ret; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 682 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 683 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 684 | void ERR_set_error_data(char *data, int flags) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 685 | { |
| 686 | ERR_STATE *es; |
| 687 | int i; |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 688 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 689 | es = ERR_get_state(); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 690 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 691 | i = es->top; |
| 692 | if (i == 0) |
| 693 | i = ERR_NUM_ERRORS - 1; |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 694 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 695 | err_clear_data(es, i); |
| 696 | es->err_data[i] = data; |
| 697 | es->err_data_flags[i] = flags; |
| 698 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 699 | |
Ulf Möller | 4565c3e | 1999-05-05 12:35:27 +0000 | [diff] [blame] | 700 | void ERR_add_error_data(int num, ...) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 701 | { |
| 702 | va_list args; |
| 703 | va_start(args, num); |
| 704 | ERR_add_error_vdata(num, args); |
| 705 | va_end(args); |
| 706 | } |
Dr. Stephen Henson | 78c4572 | 2011-01-14 15:13:37 +0000 | [diff] [blame] | 707 | |
| 708 | void ERR_add_error_vdata(int num, va_list args) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 709 | { |
| 710 | int i, n, s; |
| 711 | char *str, *p, *a; |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 712 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 713 | s = 80; |
| 714 | str = OPENSSL_malloc(s + 1); |
| 715 | if (str == NULL) |
| 716 | return; |
| 717 | str[0] = '\0'; |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 718 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 719 | n = 0; |
| 720 | for (i = 0; i < num; i++) { |
| 721 | a = va_arg(args, char *); |
| 722 | /* ignore NULLs, thanks to Bob Beck <beck@obtuse.com> */ |
| 723 | if (a != NULL) { |
| 724 | n += strlen(a); |
| 725 | if (n > s) { |
| 726 | s = n + 20; |
| 727 | p = OPENSSL_realloc(str, s + 1); |
| 728 | if (p == NULL) { |
| 729 | OPENSSL_free(str); |
| 730 | return; |
Rich Salz | 2d29e2d | 2015-04-28 16:34:52 -0400 | [diff] [blame] | 731 | } |
| 732 | str = p; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 733 | } |
Rich Salz | 7644a9a | 2015-12-16 16:12:24 -0500 | [diff] [blame] | 734 | OPENSSL_strlcat(str, a, (size_t)s + 1); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 735 | } |
| 736 | } |
| 737 | ERR_set_error_data(str, ERR_TXT_MALLOCED | ERR_TXT_STRING); |
| 738 | } |
Richard Levitte | 54f6451 | 2003-06-11 20:49:58 +0000 | [diff] [blame] | 739 | |
| 740 | int ERR_set_mark(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 741 | { |
| 742 | ERR_STATE *es; |
Richard Levitte | 54f6451 | 2003-06-11 20:49:58 +0000 | [diff] [blame] | 743 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 744 | es = ERR_get_state(); |
Richard Levitte | 54f6451 | 2003-06-11 20:49:58 +0000 | [diff] [blame] | 745 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 746 | if (es->bottom == es->top) |
| 747 | return 0; |
| 748 | es->err_flags[es->top] |= ERR_FLAG_MARK; |
| 749 | return 1; |
| 750 | } |
Richard Levitte | 54f6451 | 2003-06-11 20:49:58 +0000 | [diff] [blame] | 751 | |
| 752 | int ERR_pop_to_mark(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 753 | { |
| 754 | ERR_STATE *es; |
Richard Levitte | 54f6451 | 2003-06-11 20:49:58 +0000 | [diff] [blame] | 755 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 756 | es = ERR_get_state(); |
Richard Levitte | 54f6451 | 2003-06-11 20:49:58 +0000 | [diff] [blame] | 757 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 758 | while (es->bottom != es->top |
| 759 | && (es->err_flags[es->top] & ERR_FLAG_MARK) == 0) { |
| 760 | err_clear(es, es->top); |
| 761 | es->top -= 1; |
| 762 | if (es->top == -1) |
| 763 | es->top = ERR_NUM_ERRORS - 1; |
| 764 | } |
| 765 | |
| 766 | if (es->bottom == es->top) |
| 767 | return 0; |
| 768 | es->err_flags[es->top] &= ~ERR_FLAG_MARK; |
| 769 | return 1; |
| 770 | } |