1 /*
2 * Error message information
3 *
4 * Copyright The Mbed TLS Contributors
5 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
6 */
7
8 #include "common.h"
9
10 #include "mbedtls/error.h"
11
12 #if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY)
13
14 #if defined(MBEDTLS_ERROR_C)
15
16 #include "mbedtls/platform.h"
17
18 #include <stdio.h>
19 #include <string.h>
20
21 #if defined(MBEDTLS_AES_C)
22 #include "mbedtls/aes.h"
23 #endif
24
25 #if defined(MBEDTLS_ARIA_C)
26 #include "mbedtls/aria.h"
27 #endif
28
29 #if defined(MBEDTLS_ASN1_PARSE_C)
30 #include "mbedtls/asn1.h"
31 #endif
32
33 #if defined(MBEDTLS_BASE64_C)
34 #include "mbedtls/base64.h"
35 #endif
36
37 #if defined(MBEDTLS_BIGNUM_C)
38 #include "mbedtls/bignum.h"
39 #endif
40
41 #if defined(MBEDTLS_CAMELLIA_C)
42 #include "mbedtls/camellia.h"
43 #endif
44
45 #if defined(MBEDTLS_CCM_C)
46 #include "mbedtls/ccm.h"
47 #endif
48
49 #if defined(MBEDTLS_CHACHA20_C)
50 #include "mbedtls/chacha20.h"
51 #endif
52
53 #if defined(MBEDTLS_CHACHAPOLY_C)
54 #include "mbedtls/chachapoly.h"
55 #endif
56
57 #if defined(MBEDTLS_CIPHER_C)
58 #include "mbedtls/cipher.h"
59 #endif
60
61 #if defined(MBEDTLS_CTR_DRBG_C)
62 #include "mbedtls/ctr_drbg.h"
63 #endif
64
65 #if defined(MBEDTLS_DES_C)
66 #include "mbedtls/des.h"
67 #endif
68
69 #if defined(MBEDTLS_DHM_C)
70 #include "mbedtls/dhm.h"
71 #endif
72
73 #if defined(MBEDTLS_ECP_C)
74 #include "mbedtls/ecp.h"
75 #endif
76
77 #if defined(MBEDTLS_ENTROPY_C)
78 #include "mbedtls/entropy.h"
79 #endif
80
81 #if defined(MBEDTLS_ERROR_C)
82 #include "mbedtls/error.h"
83 #endif
84
85 #if defined(MBEDTLS_PLATFORM_C)
86 #include "mbedtls/platform.h"
87 #endif
88
89 #if defined(MBEDTLS_GCM_C)
90 #include "mbedtls/gcm.h"
91 #endif
92
93 #if defined(MBEDTLS_HKDF_C)
94 #include "mbedtls/hkdf.h"
95 #endif
96
97 #if defined(MBEDTLS_HMAC_DRBG_C)
98 #include "mbedtls/hmac_drbg.h"
99 #endif
100
101 #if defined(MBEDTLS_LMS_C)
102 #include "mbedtls/lms.h"
103 #endif
104
105 #if defined(MBEDTLS_MD_C)
106 #include "mbedtls/md.h"
107 #endif
108
109 #if defined(MBEDTLS_NET_C)
110 #include "mbedtls/net_sockets.h"
111 #endif
112
113 #if defined(MBEDTLS_OID_C)
114 #include "mbedtls/oid.h"
115 #endif
116
117 #if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C)
118 #include "mbedtls/pem.h"
119 #endif
120
121 #if defined(MBEDTLS_PK_C)
122 #include "mbedtls/pk.h"
123 #endif
124
125 #if defined(MBEDTLS_PKCS12_C)
126 #include "mbedtls/pkcs12.h"
127 #endif
128
129 #if defined(MBEDTLS_PKCS5_C)
130 #include "mbedtls/pkcs5.h"
131 #endif
132
133 #if defined(MBEDTLS_PKCS7_C)
134 #include "mbedtls/pkcs7.h"
135 #endif
136
137 #if defined(MBEDTLS_POLY1305_C)
138 #include "mbedtls/poly1305.h"
139 #endif
140
141 #if defined(MBEDTLS_RSA_C)
142 #include "mbedtls/rsa.h"
143 #endif
144
145 #if defined(MBEDTLS_SHA1_C)
146 #include "mbedtls/sha1.h"
147 #endif
148
149 #if defined(MBEDTLS_SHA256_C)
150 #include "mbedtls/sha256.h"
151 #endif
152
153 #if defined(MBEDTLS_SHA3_C)
154 #include "mbedtls/sha3.h"
155 #endif
156
157 #if defined(MBEDTLS_SHA512_C)
158 #include "mbedtls/sha512.h"
159 #endif
160
161 #if defined(MBEDTLS_SSL_TLS_C)
162 #include "mbedtls/ssl.h"
163 #endif
164
165 #if defined(MBEDTLS_THREADING_C)
166 #include "mbedtls/threading.h"
167 #endif
168
169 #if defined(MBEDTLS_X509_USE_C) || defined(MBEDTLS_X509_CREATE_C)
170 #include "mbedtls/x509.h"
171 #endif
172
173
mbedtls_high_level_strerr(int error_code)174 const char *mbedtls_high_level_strerr(int error_code)
175 {
176 int high_level_error_code;
177
178 if (error_code < 0) {
179 error_code = -error_code;
180 }
181
182 /* Extract the high-level part from the error code. */
183 high_level_error_code = error_code & 0xFF80;
184
185 switch (high_level_error_code) {
186 /* Begin Auto-Generated Code. */
187 #if defined(MBEDTLS_CIPHER_C)
188 case -(MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE):
189 return( "CIPHER - The selected feature is not available" );
190 case -(MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA):
191 return( "CIPHER - Bad input parameters" );
192 case -(MBEDTLS_ERR_CIPHER_ALLOC_FAILED):
193 return( "CIPHER - Failed to allocate memory" );
194 case -(MBEDTLS_ERR_CIPHER_INVALID_PADDING):
195 return( "CIPHER - Input data contains invalid padding and is rejected" );
196 case -(MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED):
197 return( "CIPHER - Decryption of block requires a full block" );
198 case -(MBEDTLS_ERR_CIPHER_AUTH_FAILED):
199 return( "CIPHER - Authentication failed (for AEAD modes)" );
200 case -(MBEDTLS_ERR_CIPHER_INVALID_CONTEXT):
201 return( "CIPHER - The context is invalid. For example, because it was freed" );
202 #endif /* MBEDTLS_CIPHER_C */
203
204 #if defined(MBEDTLS_DHM_C)
205 case -(MBEDTLS_ERR_DHM_BAD_INPUT_DATA):
206 return( "DHM - Bad input parameters" );
207 case -(MBEDTLS_ERR_DHM_READ_PARAMS_FAILED):
208 return( "DHM - Reading of the DHM parameters failed" );
209 case -(MBEDTLS_ERR_DHM_MAKE_PARAMS_FAILED):
210 return( "DHM - Making of the DHM parameters failed" );
211 case -(MBEDTLS_ERR_DHM_READ_PUBLIC_FAILED):
212 return( "DHM - Reading of the public values failed" );
213 case -(MBEDTLS_ERR_DHM_MAKE_PUBLIC_FAILED):
214 return( "DHM - Making of the public value failed" );
215 case -(MBEDTLS_ERR_DHM_CALC_SECRET_FAILED):
216 return( "DHM - Calculation of the DHM secret failed" );
217 case -(MBEDTLS_ERR_DHM_INVALID_FORMAT):
218 return( "DHM - The ASN.1 data is not formatted correctly" );
219 case -(MBEDTLS_ERR_DHM_ALLOC_FAILED):
220 return( "DHM - Allocation of memory failed" );
221 case -(MBEDTLS_ERR_DHM_FILE_IO_ERROR):
222 return( "DHM - Read or write of file failed" );
223 case -(MBEDTLS_ERR_DHM_SET_GROUP_FAILED):
224 return( "DHM - Setting the modulus and generator failed" );
225 #endif /* MBEDTLS_DHM_C */
226
227 #if defined(MBEDTLS_ECP_C)
228 case -(MBEDTLS_ERR_ECP_BAD_INPUT_DATA):
229 return( "ECP - Bad input parameters to function" );
230 case -(MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL):
231 return( "ECP - The buffer is too small to write to" );
232 case -(MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE):
233 return( "ECP - The requested feature is not available, for example, the requested curve is not supported" );
234 case -(MBEDTLS_ERR_ECP_VERIFY_FAILED):
235 return( "ECP - The signature is not valid" );
236 case -(MBEDTLS_ERR_ECP_ALLOC_FAILED):
237 return( "ECP - Memory allocation failed" );
238 case -(MBEDTLS_ERR_ECP_RANDOM_FAILED):
239 return( "ECP - Generation of random value, such as ephemeral key, failed" );
240 case -(MBEDTLS_ERR_ECP_INVALID_KEY):
241 return( "ECP - Invalid private or public key" );
242 case -(MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH):
243 return( "ECP - The buffer contains a valid signature followed by more data" );
244 case -(MBEDTLS_ERR_ECP_IN_PROGRESS):
245 return( "ECP - Operation in progress, call again with the same parameters to continue" );
246 #endif /* MBEDTLS_ECP_C */
247
248 #if defined(MBEDTLS_MD_C)
249 case -(MBEDTLS_ERR_MD_FEATURE_UNAVAILABLE):
250 return( "MD - The selected feature is not available" );
251 case -(MBEDTLS_ERR_MD_BAD_INPUT_DATA):
252 return( "MD - Bad input parameters to function" );
253 case -(MBEDTLS_ERR_MD_ALLOC_FAILED):
254 return( "MD - Failed to allocate memory" );
255 case -(MBEDTLS_ERR_MD_FILE_IO_ERROR):
256 return( "MD - Opening or reading of file failed" );
257 #endif /* MBEDTLS_MD_C */
258
259 #if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C)
260 case -(MBEDTLS_ERR_PEM_NO_HEADER_FOOTER_PRESENT):
261 return( "PEM - No PEM header or footer found" );
262 case -(MBEDTLS_ERR_PEM_INVALID_DATA):
263 return( "PEM - PEM string is not as expected" );
264 case -(MBEDTLS_ERR_PEM_ALLOC_FAILED):
265 return( "PEM - Failed to allocate memory" );
266 case -(MBEDTLS_ERR_PEM_INVALID_ENC_IV):
267 return( "PEM - RSA IV is not in hex-format" );
268 case -(MBEDTLS_ERR_PEM_UNKNOWN_ENC_ALG):
269 return( "PEM - Unsupported key encryption algorithm" );
270 case -(MBEDTLS_ERR_PEM_PASSWORD_REQUIRED):
271 return( "PEM - Private key password can't be empty" );
272 case -(MBEDTLS_ERR_PEM_PASSWORD_MISMATCH):
273 return( "PEM - Given private key password does not allow for correct decryption" );
274 case -(MBEDTLS_ERR_PEM_FEATURE_UNAVAILABLE):
275 return( "PEM - Unavailable feature, e.g. hashing/encryption combination" );
276 case -(MBEDTLS_ERR_PEM_BAD_INPUT_DATA):
277 return( "PEM - Bad input parameters to function" );
278 #endif /* MBEDTLS_PEM_PARSE_C || MBEDTLS_PEM_WRITE_C */
279
280 #if defined(MBEDTLS_PK_C)
281 case -(MBEDTLS_ERR_PK_ALLOC_FAILED):
282 return( "PK - Memory allocation failed" );
283 case -(MBEDTLS_ERR_PK_TYPE_MISMATCH):
284 return( "PK - Type mismatch, eg attempt to encrypt with an ECDSA key" );
285 case -(MBEDTLS_ERR_PK_BAD_INPUT_DATA):
286 return( "PK - Bad input parameters to function" );
287 case -(MBEDTLS_ERR_PK_FILE_IO_ERROR):
288 return( "PK - Read/write of file failed" );
289 case -(MBEDTLS_ERR_PK_KEY_INVALID_VERSION):
290 return( "PK - Unsupported key version" );
291 case -(MBEDTLS_ERR_PK_KEY_INVALID_FORMAT):
292 return( "PK - Invalid key tag or value" );
293 case -(MBEDTLS_ERR_PK_UNKNOWN_PK_ALG):
294 return( "PK - Key algorithm is unsupported (only RSA and EC are supported)" );
295 case -(MBEDTLS_ERR_PK_PASSWORD_REQUIRED):
296 return( "PK - Private key password can't be empty" );
297 case -(MBEDTLS_ERR_PK_PASSWORD_MISMATCH):
298 return( "PK - Given private key password does not allow for correct decryption" );
299 case -(MBEDTLS_ERR_PK_INVALID_PUBKEY):
300 return( "PK - The pubkey tag or value is invalid (only RSA and EC are supported)" );
301 case -(MBEDTLS_ERR_PK_INVALID_ALG):
302 return( "PK - The algorithm tag or value is invalid" );
303 case -(MBEDTLS_ERR_PK_UNKNOWN_NAMED_CURVE):
304 return( "PK - Elliptic curve is unsupported (only NIST curves are supported)" );
305 case -(MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE):
306 return( "PK - Unavailable feature, e.g. RSA disabled for RSA key" );
307 case -(MBEDTLS_ERR_PK_SIG_LEN_MISMATCH):
308 return( "PK - The buffer contains a valid signature followed by more data" );
309 case -(MBEDTLS_ERR_PK_BUFFER_TOO_SMALL):
310 return( "PK - The output buffer is too small" );
311 #endif /* MBEDTLS_PK_C */
312
313 #if defined(MBEDTLS_PKCS12_C)
314 case -(MBEDTLS_ERR_PKCS12_BAD_INPUT_DATA):
315 return( "PKCS12 - Bad input parameters to function" );
316 case -(MBEDTLS_ERR_PKCS12_FEATURE_UNAVAILABLE):
317 return( "PKCS12 - Feature not available, e.g. unsupported encryption scheme" );
318 case -(MBEDTLS_ERR_PKCS12_PBE_INVALID_FORMAT):
319 return( "PKCS12 - PBE ASN.1 data not as expected" );
320 case -(MBEDTLS_ERR_PKCS12_PASSWORD_MISMATCH):
321 return( "PKCS12 - Given private key password does not allow for correct decryption" );
322 #endif /* MBEDTLS_PKCS12_C */
323
324 #if defined(MBEDTLS_PKCS5_C)
325 case -(MBEDTLS_ERR_PKCS5_BAD_INPUT_DATA):
326 return( "PKCS5 - Bad input parameters to function" );
327 case -(MBEDTLS_ERR_PKCS5_INVALID_FORMAT):
328 return( "PKCS5 - Unexpected ASN.1 data" );
329 case -(MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE):
330 return( "PKCS5 - Requested encryption or digest alg not available" );
331 case -(MBEDTLS_ERR_PKCS5_PASSWORD_MISMATCH):
332 return( "PKCS5 - Given private key password does not allow for correct decryption" );
333 #endif /* MBEDTLS_PKCS5_C */
334
335 #if defined(MBEDTLS_PKCS7_C)
336 case -(MBEDTLS_ERR_PKCS7_INVALID_FORMAT):
337 return( "PKCS7 - The format is invalid, e.g. different type expected" );
338 case -(MBEDTLS_ERR_PKCS7_FEATURE_UNAVAILABLE):
339 return( "PKCS7 - Unavailable feature, e.g. anything other than signed data" );
340 case -(MBEDTLS_ERR_PKCS7_INVALID_VERSION):
341 return( "PKCS7 - The PKCS #7 version element is invalid or cannot be parsed" );
342 case -(MBEDTLS_ERR_PKCS7_INVALID_CONTENT_INFO):
343 return( "PKCS7 - The PKCS #7 content info is invalid or cannot be parsed" );
344 case -(MBEDTLS_ERR_PKCS7_INVALID_ALG):
345 return( "PKCS7 - The algorithm tag or value is invalid or cannot be parsed" );
346 case -(MBEDTLS_ERR_PKCS7_INVALID_CERT):
347 return( "PKCS7 - The certificate tag or value is invalid or cannot be parsed" );
348 case -(MBEDTLS_ERR_PKCS7_INVALID_SIGNATURE):
349 return( "PKCS7 - Error parsing the signature" );
350 case -(MBEDTLS_ERR_PKCS7_INVALID_SIGNER_INFO):
351 return( "PKCS7 - Error parsing the signer's info" );
352 case -(MBEDTLS_ERR_PKCS7_BAD_INPUT_DATA):
353 return( "PKCS7 - Input invalid" );
354 case -(MBEDTLS_ERR_PKCS7_ALLOC_FAILED):
355 return( "PKCS7 - Allocation of memory failed" );
356 case -(MBEDTLS_ERR_PKCS7_VERIFY_FAIL):
357 return( "PKCS7 - Verification Failed" );
358 case -(MBEDTLS_ERR_PKCS7_CERT_DATE_INVALID):
359 return( "PKCS7 - The PKCS #7 date issued/expired dates are invalid" );
360 #endif /* MBEDTLS_PKCS7_C */
361
362 #if defined(MBEDTLS_RSA_C)
363 case -(MBEDTLS_ERR_RSA_BAD_INPUT_DATA):
364 return( "RSA - Bad input parameters to function" );
365 case -(MBEDTLS_ERR_RSA_INVALID_PADDING):
366 return( "RSA - Input data contains invalid padding and is rejected" );
367 case -(MBEDTLS_ERR_RSA_KEY_GEN_FAILED):
368 return( "RSA - Something failed during generation of a key" );
369 case -(MBEDTLS_ERR_RSA_KEY_CHECK_FAILED):
370 return( "RSA - Key failed to pass the validity check of the library" );
371 case -(MBEDTLS_ERR_RSA_PUBLIC_FAILED):
372 return( "RSA - The public key operation failed" );
373 case -(MBEDTLS_ERR_RSA_PRIVATE_FAILED):
374 return( "RSA - The private key operation failed" );
375 case -(MBEDTLS_ERR_RSA_VERIFY_FAILED):
376 return( "RSA - The PKCS#1 verification failed" );
377 case -(MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE):
378 return( "RSA - The output buffer for decryption is not large enough" );
379 case -(MBEDTLS_ERR_RSA_RNG_FAILED):
380 return( "RSA - The random generator failed to generate non-zeros" );
381 #endif /* MBEDTLS_RSA_C */
382
383 #if defined(MBEDTLS_SSL_TLS_C)
384 case -(MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS):
385 return( "SSL - A cryptographic operation is in progress. Try again later" );
386 case -(MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE):
387 return( "SSL - The requested feature is not available" );
388 case -(MBEDTLS_ERR_SSL_BAD_INPUT_DATA):
389 return( "SSL - Bad input parameters to function" );
390 case -(MBEDTLS_ERR_SSL_INVALID_MAC):
391 return( "SSL - Verification of the message MAC failed" );
392 case -(MBEDTLS_ERR_SSL_INVALID_RECORD):
393 return( "SSL - An invalid SSL record was received" );
394 case -(MBEDTLS_ERR_SSL_CONN_EOF):
395 return( "SSL - The connection indicated an EOF" );
396 case -(MBEDTLS_ERR_SSL_DECODE_ERROR):
397 return( "SSL - A message could not be parsed due to a syntactic error" );
398 case -(MBEDTLS_ERR_SSL_NO_RNG):
399 return( "SSL - No RNG was provided to the SSL module" );
400 case -(MBEDTLS_ERR_SSL_NO_CLIENT_CERTIFICATE):
401 return( "SSL - No client certification received from the client, but required by the authentication mode" );
402 case -(MBEDTLS_ERR_SSL_UNSUPPORTED_EXTENSION):
403 return( "SSL - Client received an extended server hello containing an unsupported extension" );
404 case -(MBEDTLS_ERR_SSL_NO_APPLICATION_PROTOCOL):
405 return( "SSL - No ALPN protocols supported that the client advertises" );
406 case -(MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED):
407 return( "SSL - The own private key or pre-shared key is not set, but needed" );
408 case -(MBEDTLS_ERR_SSL_CA_CHAIN_REQUIRED):
409 return( "SSL - No CA Chain is set, but required to operate" );
410 case -(MBEDTLS_ERR_SSL_UNEXPECTED_MESSAGE):
411 return( "SSL - An unexpected message was received from our peer" );
412 case -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE):
413 return( "SSL - A fatal alert message was received from our peer" );
414 case -(MBEDTLS_ERR_SSL_UNRECOGNIZED_NAME):
415 return( "SSL - No server could be identified matching the client's SNI" );
416 case -(MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY):
417 return( "SSL - The peer notified us that the connection is going to be closed" );
418 case -(MBEDTLS_ERR_SSL_BAD_CERTIFICATE):
419 return( "SSL - Processing of the Certificate handshake message failed" );
420 case -(MBEDTLS_ERR_SSL_RECEIVED_NEW_SESSION_TICKET):
421 return( "SSL - * Received NewSessionTicket Post Handshake Message. This error code is experimental and may be changed or removed without notice" );
422 case -(MBEDTLS_ERR_SSL_CANNOT_READ_EARLY_DATA):
423 return( "SSL - Not possible to read early data" );
424 case -(MBEDTLS_ERR_SSL_CANNOT_WRITE_EARLY_DATA):
425 return( "SSL - Not possible to write early data" );
426 case -(MBEDTLS_ERR_SSL_CACHE_ENTRY_NOT_FOUND):
427 return( "SSL - Cache entry not found" );
428 case -(MBEDTLS_ERR_SSL_ALLOC_FAILED):
429 return( "SSL - Memory allocation failed" );
430 case -(MBEDTLS_ERR_SSL_HW_ACCEL_FAILED):
431 return( "SSL - Hardware acceleration function returned with error" );
432 case -(MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH):
433 return( "SSL - Hardware acceleration function skipped / left alone data" );
434 case -(MBEDTLS_ERR_SSL_BAD_PROTOCOL_VERSION):
435 return( "SSL - Handshake protocol not within min/max boundaries" );
436 case -(MBEDTLS_ERR_SSL_HANDSHAKE_FAILURE):
437 return( "SSL - The handshake negotiation failed" );
438 case -(MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED):
439 return( "SSL - Session ticket has expired" );
440 case -(MBEDTLS_ERR_SSL_PK_TYPE_MISMATCH):
441 return( "SSL - Public key type mismatch (eg, asked for RSA key exchange and presented EC key)" );
442 case -(MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY):
443 return( "SSL - Unknown identity received (eg, PSK identity)" );
444 case -(MBEDTLS_ERR_SSL_INTERNAL_ERROR):
445 return( "SSL - Internal error (eg, unexpected failure in lower-level module)" );
446 case -(MBEDTLS_ERR_SSL_COUNTER_WRAPPING):
447 return( "SSL - A counter would wrap (eg, too many messages exchanged)" );
448 case -(MBEDTLS_ERR_SSL_WAITING_SERVER_HELLO_RENEGO):
449 return( "SSL - Unexpected message at ServerHello in renegotiation" );
450 case -(MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED):
451 return( "SSL - DTLS client must retry for hello verification" );
452 case -(MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL):
453 return( "SSL - A buffer is too small to receive or write a message" );
454 case -(MBEDTLS_ERR_SSL_WANT_READ):
455 return( "SSL - No data of requested type currently available on underlying transport" );
456 case -(MBEDTLS_ERR_SSL_WANT_WRITE):
457 return( "SSL - Connection requires a write call" );
458 case -(MBEDTLS_ERR_SSL_TIMEOUT):
459 return( "SSL - The operation timed out" );
460 case -(MBEDTLS_ERR_SSL_CLIENT_RECONNECT):
461 return( "SSL - The client initiated a reconnect from the same port" );
462 case -(MBEDTLS_ERR_SSL_UNEXPECTED_RECORD):
463 return( "SSL - Record header looks valid but is not expected" );
464 case -(MBEDTLS_ERR_SSL_NON_FATAL):
465 return( "SSL - The alert message received indicates a non-fatal error" );
466 case -(MBEDTLS_ERR_SSL_ILLEGAL_PARAMETER):
467 return( "SSL - A field in a message was incorrect or inconsistent with other fields" );
468 case -(MBEDTLS_ERR_SSL_CONTINUE_PROCESSING):
469 return( "SSL - Internal-only message signaling that further message-processing should be done" );
470 case -(MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS):
471 return( "SSL - The asynchronous operation is not completed yet" );
472 case -(MBEDTLS_ERR_SSL_EARLY_MESSAGE):
473 return( "SSL - Internal-only message signaling that a message arrived early" );
474 case -(MBEDTLS_ERR_SSL_UNEXPECTED_CID):
475 return( "SSL - An encrypted DTLS-frame with an unexpected CID was received" );
476 case -(MBEDTLS_ERR_SSL_VERSION_MISMATCH):
477 return( "SSL - An operation failed due to an unexpected version or configuration" );
478 case -(MBEDTLS_ERR_SSL_BAD_CONFIG):
479 return( "SSL - Invalid value in SSL config" );
480 #endif /* MBEDTLS_SSL_TLS_C */
481
482 #if defined(MBEDTLS_X509_USE_C) || defined(MBEDTLS_X509_CREATE_C)
483 case -(MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE):
484 return( "X509 - Unavailable feature, e.g. RSA hashing/encryption combination" );
485 case -(MBEDTLS_ERR_X509_UNKNOWN_OID):
486 return( "X509 - Requested OID is unknown" );
487 case -(MBEDTLS_ERR_X509_INVALID_FORMAT):
488 return( "X509 - The CRT/CRL/CSR format is invalid, e.g. different type expected" );
489 case -(MBEDTLS_ERR_X509_INVALID_VERSION):
490 return( "X509 - The CRT/CRL/CSR version element is invalid" );
491 case -(MBEDTLS_ERR_X509_INVALID_SERIAL):
492 return( "X509 - The serial tag or value is invalid" );
493 case -(MBEDTLS_ERR_X509_INVALID_ALG):
494 return( "X509 - The algorithm tag or value is invalid" );
495 case -(MBEDTLS_ERR_X509_INVALID_NAME):
496 return( "X509 - The name tag or value is invalid" );
497 case -(MBEDTLS_ERR_X509_INVALID_DATE):
498 return( "X509 - The date tag or value is invalid" );
499 case -(MBEDTLS_ERR_X509_INVALID_SIGNATURE):
500 return( "X509 - The signature tag or value invalid" );
501 case -(MBEDTLS_ERR_X509_INVALID_EXTENSIONS):
502 return( "X509 - The extension tag or value is invalid" );
503 case -(MBEDTLS_ERR_X509_UNKNOWN_VERSION):
504 return( "X509 - CRT/CRL/CSR has an unsupported version number" );
505 case -(MBEDTLS_ERR_X509_UNKNOWN_SIG_ALG):
506 return( "X509 - Signature algorithm (oid) is unsupported" );
507 case -(MBEDTLS_ERR_X509_SIG_MISMATCH):
508 return( "X509 - Signature algorithms do not match. (see \\c ::mbedtls_x509_crt sig_oid)" );
509 case -(MBEDTLS_ERR_X509_CERT_VERIFY_FAILED):
510 return( "X509 - Certificate verification failed, e.g. CRL, CA or signature check failed" );
511 case -(MBEDTLS_ERR_X509_CERT_UNKNOWN_FORMAT):
512 return( "X509 - Format not recognized as DER or PEM" );
513 case -(MBEDTLS_ERR_X509_BAD_INPUT_DATA):
514 return( "X509 - Input invalid" );
515 case -(MBEDTLS_ERR_X509_ALLOC_FAILED):
516 return( "X509 - Allocation of memory failed" );
517 case -(MBEDTLS_ERR_X509_FILE_IO_ERROR):
518 return( "X509 - Read/write of file failed" );
519 case -(MBEDTLS_ERR_X509_BUFFER_TOO_SMALL):
520 return( "X509 - Destination buffer is too small" );
521 case -(MBEDTLS_ERR_X509_FATAL_ERROR):
522 return( "X509 - A fatal error occurred, eg the chain is too long or the vrfy callback failed" );
523 #endif /* MBEDTLS_X509_USE_C || MBEDTLS_X509_CREATE_C */
524 /* End Auto-Generated Code. */
525
526 default:
527 break;
528 }
529
530 return NULL;
531 }
532
mbedtls_low_level_strerr(int error_code)533 const char *mbedtls_low_level_strerr(int error_code)
534 {
535 int low_level_error_code;
536
537 if (error_code < 0) {
538 error_code = -error_code;
539 }
540
541 /* Extract the low-level part from the error code. */
542 low_level_error_code = error_code & ~0xFF80;
543
544 switch (low_level_error_code) {
545 /* Begin Auto-Generated Code. */
546 #if defined(MBEDTLS_AES_C)
547 case -(MBEDTLS_ERR_AES_INVALID_KEY_LENGTH):
548 return( "AES - Invalid key length" );
549 case -(MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH):
550 return( "AES - Invalid data input length" );
551 case -(MBEDTLS_ERR_AES_BAD_INPUT_DATA):
552 return( "AES - Invalid input data" );
553 #endif /* MBEDTLS_AES_C */
554
555 #if defined(MBEDTLS_ARIA_C)
556 case -(MBEDTLS_ERR_ARIA_BAD_INPUT_DATA):
557 return( "ARIA - Bad input data" );
558 case -(MBEDTLS_ERR_ARIA_INVALID_INPUT_LENGTH):
559 return( "ARIA - Invalid data input length" );
560 #endif /* MBEDTLS_ARIA_C */
561
562 #if defined(MBEDTLS_ASN1_PARSE_C)
563 case -(MBEDTLS_ERR_ASN1_OUT_OF_DATA):
564 return( "ASN1 - Out of data when parsing an ASN1 data structure" );
565 case -(MBEDTLS_ERR_ASN1_UNEXPECTED_TAG):
566 return( "ASN1 - ASN1 tag was of an unexpected value" );
567 case -(MBEDTLS_ERR_ASN1_INVALID_LENGTH):
568 return( "ASN1 - Error when trying to determine the length or invalid length" );
569 case -(MBEDTLS_ERR_ASN1_LENGTH_MISMATCH):
570 return( "ASN1 - Actual length differs from expected length" );
571 case -(MBEDTLS_ERR_ASN1_INVALID_DATA):
572 return( "ASN1 - Data is invalid" );
573 case -(MBEDTLS_ERR_ASN1_ALLOC_FAILED):
574 return( "ASN1 - Memory allocation failed" );
575 case -(MBEDTLS_ERR_ASN1_BUF_TOO_SMALL):
576 return( "ASN1 - Buffer too small when writing ASN.1 data structure" );
577 #endif /* MBEDTLS_ASN1_PARSE_C */
578
579 #if defined(MBEDTLS_BASE64_C)
580 case -(MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL):
581 return( "BASE64 - Output buffer too small" );
582 case -(MBEDTLS_ERR_BASE64_INVALID_CHARACTER):
583 return( "BASE64 - Invalid character in input" );
584 #endif /* MBEDTLS_BASE64_C */
585
586 #if defined(MBEDTLS_BIGNUM_C)
587 case -(MBEDTLS_ERR_MPI_FILE_IO_ERROR):
588 return( "BIGNUM - An error occurred while reading from or writing to a file" );
589 case -(MBEDTLS_ERR_MPI_BAD_INPUT_DATA):
590 return( "BIGNUM - Bad input parameters to function" );
591 case -(MBEDTLS_ERR_MPI_INVALID_CHARACTER):
592 return( "BIGNUM - There is an invalid character in the digit string" );
593 case -(MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL):
594 return( "BIGNUM - The buffer is too small to write to" );
595 case -(MBEDTLS_ERR_MPI_NEGATIVE_VALUE):
596 return( "BIGNUM - The input arguments are negative or result in illegal output" );
597 case -(MBEDTLS_ERR_MPI_DIVISION_BY_ZERO):
598 return( "BIGNUM - The input argument for division is zero, which is not allowed" );
599 case -(MBEDTLS_ERR_MPI_NOT_ACCEPTABLE):
600 return( "BIGNUM - The input arguments are not acceptable" );
601 case -(MBEDTLS_ERR_MPI_ALLOC_FAILED):
602 return( "BIGNUM - Memory allocation failed" );
603 #endif /* MBEDTLS_BIGNUM_C */
604
605 #if defined(MBEDTLS_CAMELLIA_C)
606 case -(MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA):
607 return( "CAMELLIA - Bad input data" );
608 case -(MBEDTLS_ERR_CAMELLIA_INVALID_INPUT_LENGTH):
609 return( "CAMELLIA - Invalid data input length" );
610 #endif /* MBEDTLS_CAMELLIA_C */
611
612 #if defined(MBEDTLS_CCM_C)
613 case -(MBEDTLS_ERR_CCM_BAD_INPUT):
614 return( "CCM - Bad input parameters to the function" );
615 case -(MBEDTLS_ERR_CCM_AUTH_FAILED):
616 return( "CCM - Authenticated decryption failed" );
617 #endif /* MBEDTLS_CCM_C */
618
619 #if defined(MBEDTLS_CHACHA20_C)
620 case -(MBEDTLS_ERR_CHACHA20_BAD_INPUT_DATA):
621 return( "CHACHA20 - Invalid input parameter(s)" );
622 #endif /* MBEDTLS_CHACHA20_C */
623
624 #if defined(MBEDTLS_CHACHAPOLY_C)
625 case -(MBEDTLS_ERR_CHACHAPOLY_BAD_STATE):
626 return( "CHACHAPOLY - The requested operation is not permitted in the current state" );
627 case -(MBEDTLS_ERR_CHACHAPOLY_AUTH_FAILED):
628 return( "CHACHAPOLY - Authenticated decryption failed: data was not authentic" );
629 #endif /* MBEDTLS_CHACHAPOLY_C */
630
631 #if defined(MBEDTLS_CTR_DRBG_C)
632 case -(MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED):
633 return( "CTR_DRBG - The entropy source failed" );
634 case -(MBEDTLS_ERR_CTR_DRBG_REQUEST_TOO_BIG):
635 return( "CTR_DRBG - The requested random buffer length is too big" );
636 case -(MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG):
637 return( "CTR_DRBG - The input (entropy + additional data) is too large" );
638 case -(MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR):
639 return( "CTR_DRBG - Read or write error in file" );
640 #endif /* MBEDTLS_CTR_DRBG_C */
641
642 #if defined(MBEDTLS_DES_C)
643 case -(MBEDTLS_ERR_DES_INVALID_INPUT_LENGTH):
644 return( "DES - The data input has an invalid length" );
645 #endif /* MBEDTLS_DES_C */
646
647 #if defined(MBEDTLS_ENTROPY_C)
648 case -(MBEDTLS_ERR_ENTROPY_SOURCE_FAILED):
649 return( "ENTROPY - Critical entropy source failure" );
650 case -(MBEDTLS_ERR_ENTROPY_MAX_SOURCES):
651 return( "ENTROPY - No more sources can be added" );
652 case -(MBEDTLS_ERR_ENTROPY_NO_SOURCES_DEFINED):
653 return( "ENTROPY - No sources have been added to poll" );
654 case -(MBEDTLS_ERR_ENTROPY_NO_STRONG_SOURCE):
655 return( "ENTROPY - No strong sources have been added to poll" );
656 case -(MBEDTLS_ERR_ENTROPY_FILE_IO_ERROR):
657 return( "ENTROPY - Read/write error in file" );
658 #endif /* MBEDTLS_ENTROPY_C */
659
660 #if defined(MBEDTLS_ERROR_C)
661 case -(MBEDTLS_ERR_ERROR_GENERIC_ERROR):
662 return( "ERROR - Generic error" );
663 case -(MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED):
664 return( "ERROR - This is a bug in the library" );
665 #endif /* MBEDTLS_ERROR_C */
666
667 #if defined(MBEDTLS_PLATFORM_C)
668 case -(MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED):
669 return( "PLATFORM - Hardware accelerator failed" );
670 case -(MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED):
671 return( "PLATFORM - The requested feature is not supported by the platform" );
672 #endif /* MBEDTLS_PLATFORM_C */
673
674 #if defined(MBEDTLS_GCM_C)
675 case -(MBEDTLS_ERR_GCM_AUTH_FAILED):
676 return( "GCM - Authenticated decryption failed" );
677 case -(MBEDTLS_ERR_GCM_BAD_INPUT):
678 return( "GCM - Bad input parameters to function" );
679 case -(MBEDTLS_ERR_GCM_BUFFER_TOO_SMALL):
680 return( "GCM - An output buffer is too small" );
681 #endif /* MBEDTLS_GCM_C */
682
683 #if defined(MBEDTLS_HKDF_C)
684 case -(MBEDTLS_ERR_HKDF_BAD_INPUT_DATA):
685 return( "HKDF - Bad input parameters to function" );
686 #endif /* MBEDTLS_HKDF_C */
687
688 #if defined(MBEDTLS_HMAC_DRBG_C)
689 case -(MBEDTLS_ERR_HMAC_DRBG_REQUEST_TOO_BIG):
690 return( "HMAC_DRBG - Too many random requested in single call" );
691 case -(MBEDTLS_ERR_HMAC_DRBG_INPUT_TOO_BIG):
692 return( "HMAC_DRBG - Input too large (Entropy + additional)" );
693 case -(MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR):
694 return( "HMAC_DRBG - Read/write error in file" );
695 case -(MBEDTLS_ERR_HMAC_DRBG_ENTROPY_SOURCE_FAILED):
696 return( "HMAC_DRBG - The entropy source failed" );
697 #endif /* MBEDTLS_HMAC_DRBG_C */
698
699 #if defined(MBEDTLS_LMS_C)
700 case -(MBEDTLS_ERR_LMS_BAD_INPUT_DATA):
701 return( "LMS - Bad data has been input to an LMS function" );
702 case -(MBEDTLS_ERR_LMS_OUT_OF_PRIVATE_KEYS):
703 return( "LMS - Specified LMS key has utilised all of its private keys" );
704 case -(MBEDTLS_ERR_LMS_VERIFY_FAILED):
705 return( "LMS - LMS signature verification failed" );
706 case -(MBEDTLS_ERR_LMS_ALLOC_FAILED):
707 return( "LMS - LMS failed to allocate space for a private key" );
708 case -(MBEDTLS_ERR_LMS_BUFFER_TOO_SMALL):
709 return( "LMS - Input/output buffer is too small to contain requited data" );
710 #endif /* MBEDTLS_LMS_C */
711
712 #if defined(MBEDTLS_NET_C)
713 case -(MBEDTLS_ERR_NET_SOCKET_FAILED):
714 return( "NET - Failed to open a socket" );
715 case -(MBEDTLS_ERR_NET_CONNECT_FAILED):
716 return( "NET - The connection to the given server / port failed" );
717 case -(MBEDTLS_ERR_NET_BIND_FAILED):
718 return( "NET - Binding of the socket failed" );
719 case -(MBEDTLS_ERR_NET_LISTEN_FAILED):
720 return( "NET - Could not listen on the socket" );
721 case -(MBEDTLS_ERR_NET_ACCEPT_FAILED):
722 return( "NET - Could not accept the incoming connection" );
723 case -(MBEDTLS_ERR_NET_RECV_FAILED):
724 return( "NET - Reading information from the socket failed" );
725 case -(MBEDTLS_ERR_NET_SEND_FAILED):
726 return( "NET - Sending information through the socket failed" );
727 case -(MBEDTLS_ERR_NET_CONN_RESET):
728 return( "NET - Connection was reset by peer" );
729 case -(MBEDTLS_ERR_NET_UNKNOWN_HOST):
730 return( "NET - Failed to get an IP address for the given hostname" );
731 case -(MBEDTLS_ERR_NET_BUFFER_TOO_SMALL):
732 return( "NET - Buffer is too small to hold the data" );
733 case -(MBEDTLS_ERR_NET_INVALID_CONTEXT):
734 return( "NET - The context is invalid, eg because it was free()ed" );
735 case -(MBEDTLS_ERR_NET_POLL_FAILED):
736 return( "NET - Polling the net context failed" );
737 case -(MBEDTLS_ERR_NET_BAD_INPUT_DATA):
738 return( "NET - Input invalid" );
739 #endif /* MBEDTLS_NET_C */
740
741 #if defined(MBEDTLS_OID_C)
742 case -(MBEDTLS_ERR_OID_NOT_FOUND):
743 return( "OID - OID is not found" );
744 case -(MBEDTLS_ERR_OID_BUF_TOO_SMALL):
745 return( "OID - output buffer is too small" );
746 #endif /* MBEDTLS_OID_C */
747
748 #if defined(MBEDTLS_POLY1305_C)
749 case -(MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA):
750 return( "POLY1305 - Invalid input parameter(s)" );
751 #endif /* MBEDTLS_POLY1305_C */
752
753 #if defined(MBEDTLS_SHA1_C)
754 case -(MBEDTLS_ERR_SHA1_BAD_INPUT_DATA):
755 return( "SHA1 - SHA-1 input data was malformed" );
756 #endif /* MBEDTLS_SHA1_C */
757
758 #if defined(MBEDTLS_SHA256_C)
759 case -(MBEDTLS_ERR_SHA256_BAD_INPUT_DATA):
760 return( "SHA256 - SHA-256 input data was malformed" );
761 #endif /* MBEDTLS_SHA256_C */
762
763 #if defined(MBEDTLS_SHA3_C)
764 case -(MBEDTLS_ERR_SHA3_BAD_INPUT_DATA):
765 return( "SHA3 - SHA-3 input data was malformed" );
766 #endif /* MBEDTLS_SHA3_C */
767
768 #if defined(MBEDTLS_SHA512_C)
769 case -(MBEDTLS_ERR_SHA512_BAD_INPUT_DATA):
770 return( "SHA512 - SHA-512 input data was malformed" );
771 #endif /* MBEDTLS_SHA512_C */
772
773 #if defined(MBEDTLS_THREADING_C)
774 case -(MBEDTLS_ERR_THREADING_BAD_INPUT_DATA):
775 return( "THREADING - Bad input parameters to function" );
776 case -(MBEDTLS_ERR_THREADING_MUTEX_ERROR):
777 return( "THREADING - Locking / unlocking / free failed with error code" );
778 #endif /* MBEDTLS_THREADING_C */
779 /* End Auto-Generated Code. */
780
781 default:
782 break;
783 }
784
785 return NULL;
786 }
787
mbedtls_strerror(int ret,char * buf,size_t buflen)788 void mbedtls_strerror(int ret, char *buf, size_t buflen)
789 {
790 size_t len;
791 int use_ret;
792 const char *high_level_error_description = NULL;
793 const char *low_level_error_description = NULL;
794
795 if (buflen == 0) {
796 return;
797 }
798
799 memset(buf, 0x00, buflen);
800
801 if (ret < 0) {
802 ret = -ret;
803 }
804
805 if (ret & 0xFF80) {
806 use_ret = ret & 0xFF80;
807
808 // Translate high level error code.
809 high_level_error_description = mbedtls_high_level_strerr(ret);
810
811 if (high_level_error_description == NULL) {
812 mbedtls_snprintf(buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret);
813 } else {
814 mbedtls_snprintf(buf, buflen, "%s", high_level_error_description);
815 }
816
817 #if defined(MBEDTLS_SSL_TLS_C)
818 // Early return in case of a fatal error - do not try to translate low
819 // level code.
820 if (use_ret == -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE)) {
821 return;
822 }
823 #endif /* MBEDTLS_SSL_TLS_C */
824 }
825
826 use_ret = ret & ~0xFF80;
827
828 if (use_ret == 0) {
829 return;
830 }
831
832 // If high level code is present, make a concatenation between both
833 // error strings.
834 //
835 len = strlen(buf);
836
837 if (len > 0) {
838 if (buflen - len < 5) {
839 return;
840 }
841
842 mbedtls_snprintf(buf + len, buflen - len, " : ");
843
844 buf += len + 3;
845 buflen -= len + 3;
846 }
847
848 // Translate low level error code.
849 low_level_error_description = mbedtls_low_level_strerr(ret);
850
851 if (low_level_error_description == NULL) {
852 mbedtls_snprintf(buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret);
853 } else {
854 mbedtls_snprintf(buf, buflen, "%s", low_level_error_description);
855 }
856 }
857
858 #else /* MBEDTLS_ERROR_C */
859
860 /*
861 * Provide a dummy implementation when MBEDTLS_ERROR_C is not defined
862 */
mbedtls_strerror(int ret,char * buf,size_t buflen)863 void mbedtls_strerror(int ret, char *buf, size_t buflen)
864 {
865 ((void) ret);
866
867 if (buflen > 0) {
868 buf[0] = '\0';
869 }
870 }
871
872 #endif /* MBEDTLS_ERROR_C */
873
874 #if defined(MBEDTLS_TEST_HOOKS)
875 void (*mbedtls_test_hook_error_add)(int, int, const char *, int);
876 #endif
877
878 #endif /* MBEDTLS_ERROR_C || MBEDTLS_ERROR_STRERROR_DUMMY */
879