blob: 27305b56fcbb806595eb6afe265ee3abbed479f6 [file] [log] [blame]
Paul Bakker9d781402011-05-09 16:17:09 +00001/*
2 * Error message information
3 *
Manuel Pégourié-Gonnard6fb81872015-07-27 11:11:48 +02004 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Paul Bakker9d781402011-05-09 16:17:09 +000018 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000019 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker9d781402011-05-09 16:17:09 +000020 */
21
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000023#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020024#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020025#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020026#endif
Paul Bakker9d781402011-05-09 16:17:09 +000027
Janos Follathdf587ee2019-12-18 13:16:46 +000028#if defined(MBEDTLS_ERROR_STRERROR_DUMMY)
Rich Evans00ab4702015-02-06 13:43:58 +000029#include <string.h>
Manuel Pégourié-Gonnardbee8ded2014-06-25 12:22:59 +020030#endif
31
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020032#if defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000033#include "mbedtls/platform.h"
Manuel Pégourié-Gonnard09286402015-02-13 15:18:33 +000034#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020035#define mbedtls_snprintf snprintf
-~- redtangent ~-~9fa2e862016-05-26 10:07:49 +010036#define mbedtls_time_t time_t
Manuel Pégourié-Gonnardbee8ded2014-06-25 12:22:59 +020037#endif
38
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020039#if defined(MBEDTLS_ERROR_C)
Paul Bakker3c2122f2013-06-24 19:03:14 +020040
Rich Evans00ab4702015-02-06 13:43:58 +000041#include <stdio.h>
42
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020043#if defined(MBEDTLS_AES_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000044#include "mbedtls/aes.h"
Paul Bakker9d781402011-05-09 16:17:09 +000045#endif
46
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010047#if defined(MBEDTLS_ARC4_C)
48#include "mbedtls/arc4.h"
49#endif
50
Markku-Juhani O. Saarinen07478d62017-12-01 16:20:15 +000051#if defined(MBEDTLS_ARIA_C)
52#include "mbedtls/aria.h"
53#endif
54
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020055#if defined(MBEDTLS_BASE64_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000056#include "mbedtls/base64.h"
Paul Bakker9d781402011-05-09 16:17:09 +000057#endif
58
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020059#if defined(MBEDTLS_BIGNUM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000060#include "mbedtls/bignum.h"
Paul Bakker9d781402011-05-09 16:17:09 +000061#endif
62
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020063#if defined(MBEDTLS_BLOWFISH_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000064#include "mbedtls/blowfish.h"
Paul Bakker83f00bb2012-07-04 11:08:50 +000065#endif
66
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020067#if defined(MBEDTLS_CAMELLIA_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000068#include "mbedtls/camellia.h"
Paul Bakker9d781402011-05-09 16:17:09 +000069#endif
70
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020071#if defined(MBEDTLS_CCM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000072#include "mbedtls/ccm.h"
Manuel Pégourié-Gonnarda6916fa2014-05-02 15:17:29 +020073#endif
74
Daniel King34b822c2016-05-15 17:28:08 -030075#if defined(MBEDTLS_CHACHA20_C)
76#include "mbedtls/chacha20.h"
77#endif
78
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +020079#if defined(MBEDTLS_CHACHAPOLY_C)
80#include "mbedtls/chachapoly.h"
81#endif
82
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020083#if defined(MBEDTLS_CIPHER_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000084#include "mbedtls/cipher.h"
Paul Bakkerff61a782011-06-09 15:42:02 +000085#endif
86
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010087#if defined(MBEDTLS_CMAC_C)
88#include "mbedtls/cmac.h"
89#endif
90
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020091#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000092#include "mbedtls/ctr_drbg.h"
Paul Bakker880ac7e2011-11-27 14:50:49 +000093#endif
94
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020095#if defined(MBEDTLS_DES_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000096#include "mbedtls/des.h"
Paul Bakker9d781402011-05-09 16:17:09 +000097#endif
98
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020099#if defined(MBEDTLS_DHM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000100#include "mbedtls/dhm.h"
Paul Bakker9d781402011-05-09 16:17:09 +0000101#endif
102
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200103#if defined(MBEDTLS_ECP_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000104#include "mbedtls/ecp.h"
Paul Bakkercf4365f2013-01-16 17:00:43 +0100105#endif
106
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200107#if defined(MBEDTLS_ENTROPY_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000108#include "mbedtls/entropy.h"
Paul Bakker6083fd22011-12-03 21:45:14 +0000109#endif
110
Janos Follath60f6b642019-12-03 15:55:56 +0000111#if defined(MBEDTLS_ERROR_C)
112#include "mbedtls/error.h"
113#endif
114
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200115#if defined(MBEDTLS_GCM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000116#include "mbedtls/gcm.h"
Paul Bakker030277a2012-04-17 12:24:26 +0000117#endif
118
Thomas Fossati656864b2016-07-17 08:51:22 +0100119#if defined(MBEDTLS_HKDF_C)
120#include "mbedtls/hkdf.h"
121#endif
122
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200123#if defined(MBEDTLS_HMAC_DRBG_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000124#include "mbedtls/hmac_drbg.h"
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +0100125#endif
126
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200127#if defined(MBEDTLS_MD_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000128#include "mbedtls/md.h"
Paul Bakker9d781402011-05-09 16:17:09 +0000129#endif
130
Gilles Peskinea381fe82018-01-23 18:16:11 +0100131#if defined(MBEDTLS_MD2_C)
132#include "mbedtls/md2.h"
133#endif
134
135#if defined(MBEDTLS_MD4_C)
136#include "mbedtls/md4.h"
137#endif
138
139#if defined(MBEDTLS_MD5_C)
140#include "mbedtls/md5.h"
141#endif
142
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200143#if defined(MBEDTLS_OID_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000144#include "mbedtls/oid.h"
Paul Bakkerc70b9822013-04-07 22:00:46 +0200145#endif
146
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200147#if defined(MBEDTLS_PADLOCK_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000148#include "mbedtls/padlock.h"
Paul Bakker9d781402011-05-09 16:17:09 +0000149#endif
150
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200151#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000152#include "mbedtls/pem.h"
Paul Bakker9d781402011-05-09 16:17:09 +0000153#endif
154
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200155#if defined(MBEDTLS_PK_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000156#include "mbedtls/pk.h"
Manuel Pégourié-Gonnard7a6c9462013-07-09 10:04:07 +0200157#endif
158
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200159#if defined(MBEDTLS_PKCS12_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000160#include "mbedtls/pkcs12.h"
Paul Bakkerf1f21fe2013-06-24 19:17:19 +0200161#endif
162
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200163#if defined(MBEDTLS_PKCS5_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000164#include "mbedtls/pkcs5.h"
Paul Bakkerb0c19a42013-06-24 19:26:38 +0200165#endif
166
Ron Eldor0ff4e0b2018-08-29 18:53:20 +0300167#if defined(MBEDTLS_PLATFORM_C)
168#include "mbedtls/platform.h"
169#endif
170
Daniel Kingadc32c02016-05-16 18:25:45 -0300171#if defined(MBEDTLS_POLY1305_C)
172#include "mbedtls/poly1305.h"
173#endif
174
Gilles Peskinea381fe82018-01-23 18:16:11 +0100175#if defined(MBEDTLS_RIPEMD160_C)
176#include "mbedtls/ripemd160.h"
177#endif
178
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200179#if defined(MBEDTLS_RSA_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000180#include "mbedtls/rsa.h"
Paul Bakker9d781402011-05-09 16:17:09 +0000181#endif
182
Gilles Peskinea381fe82018-01-23 18:16:11 +0100183#if defined(MBEDTLS_SHA1_C)
184#include "mbedtls/sha1.h"
185#endif
186
187#if defined(MBEDTLS_SHA256_C)
188#include "mbedtls/sha256.h"
189#endif
190
191#if defined(MBEDTLS_SHA512_C)
192#include "mbedtls/sha512.h"
193#endif
194
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200195#if defined(MBEDTLS_THREADING_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000196#include "mbedtls/threading.h"
Paul Bakker2466d932013-09-28 14:40:38 +0200197#endif
198
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200199#if defined(MBEDTLS_XTEA_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000200#include "mbedtls/xtea.h"
Paul Bakker9d781402011-05-09 16:17:09 +0000201#endif
202
Paul Bakkerdceecd82011-11-15 16:38:34 +0000203
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200204void mbedtls_strerror( int ret, char *buf, size_t buflen )
Paul Bakker9d781402011-05-09 16:17:09 +0000205{
206 size_t len;
207 int use_ret;
208
Paul Bakkerb9cfaa02013-10-11 18:58:55 +0200209 if( buflen == 0 )
210 return;
211
Paul Bakker9d781402011-05-09 16:17:09 +0000212 memset( buf, 0x00, buflen );
Paul Bakkerb9cfaa02013-10-11 18:58:55 +0200213
Paul Bakker9d781402011-05-09 16:17:09 +0000214 if( ret < 0 )
215 ret = -ret;
216
217 if( ret & 0xFF80 )
218 {
219 use_ret = ret & 0xFF80;
220
221 // High level error codes
222 //
Manuel Pégourié-Gonnardfe671f42014-04-11 18:06:44 +0200223 // BEGIN generated code
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200224#if defined(MBEDTLS_CIPHER_C)
225 if( use_ret == -(MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE) )
226 mbedtls_snprintf( buf, buflen, "CIPHER - The selected feature is not available" );
227 if( use_ret == -(MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA) )
Rose Zadik9ba6b622018-01-24 12:59:19 +0000228 mbedtls_snprintf( buf, buflen, "CIPHER - Bad input parameters" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200229 if( use_ret == -(MBEDTLS_ERR_CIPHER_ALLOC_FAILED) )
230 mbedtls_snprintf( buf, buflen, "CIPHER - Failed to allocate memory" );
231 if( use_ret == -(MBEDTLS_ERR_CIPHER_INVALID_PADDING) )
232 mbedtls_snprintf( buf, buflen, "CIPHER - Input data contains invalid padding and is rejected" );
233 if( use_ret == -(MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED) )
234 mbedtls_snprintf( buf, buflen, "CIPHER - Decryption of block requires a full block" );
235 if( use_ret == -(MBEDTLS_ERR_CIPHER_AUTH_FAILED) )
236 mbedtls_snprintf( buf, buflen, "CIPHER - Authentication failed (for AEAD modes)" );
Janos Follath98e28a72016-05-31 14:03:54 +0100237 if( use_ret == -(MBEDTLS_ERR_CIPHER_INVALID_CONTEXT) )
Rose Zadik9ba6b622018-01-24 12:59:19 +0000238 mbedtls_snprintf( buf, buflen, "CIPHER - The context is invalid. For example, because it was freed" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100239 if( use_ret == -(MBEDTLS_ERR_CIPHER_HW_ACCEL_FAILED) )
240 mbedtls_snprintf( buf, buflen, "CIPHER - Cipher hardware accelerator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200241#endif /* MBEDTLS_CIPHER_C */
Paul Bakkerff61a782011-06-09 15:42:02 +0000242
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200243#if defined(MBEDTLS_DHM_C)
244 if( use_ret == -(MBEDTLS_ERR_DHM_BAD_INPUT_DATA) )
Rose Zadik41ad0822018-01-26 10:54:57 +0000245 mbedtls_snprintf( buf, buflen, "DHM - Bad input parameters" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200246 if( use_ret == -(MBEDTLS_ERR_DHM_READ_PARAMS_FAILED) )
247 mbedtls_snprintf( buf, buflen, "DHM - Reading of the DHM parameters failed" );
248 if( use_ret == -(MBEDTLS_ERR_DHM_MAKE_PARAMS_FAILED) )
249 mbedtls_snprintf( buf, buflen, "DHM - Making of the DHM parameters failed" );
250 if( use_ret == -(MBEDTLS_ERR_DHM_READ_PUBLIC_FAILED) )
251 mbedtls_snprintf( buf, buflen, "DHM - Reading of the public values failed" );
252 if( use_ret == -(MBEDTLS_ERR_DHM_MAKE_PUBLIC_FAILED) )
253 mbedtls_snprintf( buf, buflen, "DHM - Making of the public value failed" );
254 if( use_ret == -(MBEDTLS_ERR_DHM_CALC_SECRET_FAILED) )
255 mbedtls_snprintf( buf, buflen, "DHM - Calculation of the DHM secret failed" );
256 if( use_ret == -(MBEDTLS_ERR_DHM_INVALID_FORMAT) )
257 mbedtls_snprintf( buf, buflen, "DHM - The ASN.1 data is not formatted correctly" );
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200258 if( use_ret == -(MBEDTLS_ERR_DHM_ALLOC_FAILED) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200259 mbedtls_snprintf( buf, buflen, "DHM - Allocation of memory failed" );
260 if( use_ret == -(MBEDTLS_ERR_DHM_FILE_IO_ERROR) )
Rose Zadik41ad0822018-01-26 10:54:57 +0000261 mbedtls_snprintf( buf, buflen, "DHM - Read or write of file failed" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100262 if( use_ret == -(MBEDTLS_ERR_DHM_HW_ACCEL_FAILED) )
263 mbedtls_snprintf( buf, buflen, "DHM - DHM hardware accelerator failed" );
Hanno Beckera6dd90d2017-10-04 13:15:54 +0100264 if( use_ret == -(MBEDTLS_ERR_DHM_SET_GROUP_FAILED) )
Jaeden Amero784de592018-01-26 17:52:01 +0000265 mbedtls_snprintf( buf, buflen, "DHM - Setting the modulus and generator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200266#endif /* MBEDTLS_DHM_C */
Paul Bakker9d781402011-05-09 16:17:09 +0000267
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200268#if defined(MBEDTLS_ECP_C)
269 if( use_ret == -(MBEDTLS_ERR_ECP_BAD_INPUT_DATA) )
270 mbedtls_snprintf( buf, buflen, "ECP - Bad input parameters to function" );
271 if( use_ret == -(MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL) )
272 mbedtls_snprintf( buf, buflen, "ECP - The buffer is too small to write to" );
273 if( use_ret == -(MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE) )
Jaeden Amero3dd8abd2018-04-24 10:56:55 +0100274 mbedtls_snprintf( buf, buflen, "ECP - The requested feature is not available, for example, the requested curve is not supported" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200275 if( use_ret == -(MBEDTLS_ERR_ECP_VERIFY_FAILED) )
276 mbedtls_snprintf( buf, buflen, "ECP - The signature is not valid" );
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200277 if( use_ret == -(MBEDTLS_ERR_ECP_ALLOC_FAILED) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200278 mbedtls_snprintf( buf, buflen, "ECP - Memory allocation failed" );
279 if( use_ret == -(MBEDTLS_ERR_ECP_RANDOM_FAILED) )
Jaeden Amero3dd8abd2018-04-24 10:56:55 +0100280 mbedtls_snprintf( buf, buflen, "ECP - Generation of random value, such as ephemeral key, failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200281 if( use_ret == -(MBEDTLS_ERR_ECP_INVALID_KEY) )
282 mbedtls_snprintf( buf, buflen, "ECP - Invalid private or public key" );
283 if( use_ret == -(MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH) )
Gilles Peskinecc78ac42018-03-30 18:52:10 +0200284 mbedtls_snprintf( buf, buflen, "ECP - The buffer contains a valid signature followed by more data" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100285 if( use_ret == -(MBEDTLS_ERR_ECP_HW_ACCEL_FAILED) )
Jaeden Amero3dd8abd2018-04-24 10:56:55 +0100286 mbedtls_snprintf( buf, buflen, "ECP - The ECP hardware accelerator failed" );
Manuel Pégourié-Gonnard5e3c62f2017-03-08 10:14:11 +0100287 if( use_ret == -(MBEDTLS_ERR_ECP_IN_PROGRESS) )
Manuel Pégourié-Gonnardf0bbd7e2018-10-15 13:22:41 +0200288 mbedtls_snprintf( buf, buflen, "ECP - Operation in progress, call again with the same parameters to continue" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200289#endif /* MBEDTLS_ECP_C */
Paul Bakkercf4365f2013-01-16 17:00:43 +0100290
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200291#if defined(MBEDTLS_MD_C)
292 if( use_ret == -(MBEDTLS_ERR_MD_FEATURE_UNAVAILABLE) )
293 mbedtls_snprintf( buf, buflen, "MD - The selected feature is not available" );
294 if( use_ret == -(MBEDTLS_ERR_MD_BAD_INPUT_DATA) )
295 mbedtls_snprintf( buf, buflen, "MD - Bad input parameters to function" );
296 if( use_ret == -(MBEDTLS_ERR_MD_ALLOC_FAILED) )
297 mbedtls_snprintf( buf, buflen, "MD - Failed to allocate memory" );
298 if( use_ret == -(MBEDTLS_ERR_MD_FILE_IO_ERROR) )
299 mbedtls_snprintf( buf, buflen, "MD - Opening or reading of file failed" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100300 if( use_ret == -(MBEDTLS_ERR_MD_HW_ACCEL_FAILED) )
301 mbedtls_snprintf( buf, buflen, "MD - MD hardware accelerator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200302#endif /* MBEDTLS_MD_C */
Paul Bakker9d781402011-05-09 16:17:09 +0000303
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200304#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C)
305 if( use_ret == -(MBEDTLS_ERR_PEM_NO_HEADER_FOOTER_PRESENT) )
306 mbedtls_snprintf( buf, buflen, "PEM - No PEM header or footer found" );
307 if( use_ret == -(MBEDTLS_ERR_PEM_INVALID_DATA) )
308 mbedtls_snprintf( buf, buflen, "PEM - PEM string is not as expected" );
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200309 if( use_ret == -(MBEDTLS_ERR_PEM_ALLOC_FAILED) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200310 mbedtls_snprintf( buf, buflen, "PEM - Failed to allocate memory" );
311 if( use_ret == -(MBEDTLS_ERR_PEM_INVALID_ENC_IV) )
312 mbedtls_snprintf( buf, buflen, "PEM - RSA IV is not in hex-format" );
313 if( use_ret == -(MBEDTLS_ERR_PEM_UNKNOWN_ENC_ALG) )
314 mbedtls_snprintf( buf, buflen, "PEM - Unsupported key encryption algorithm" );
315 if( use_ret == -(MBEDTLS_ERR_PEM_PASSWORD_REQUIRED) )
316 mbedtls_snprintf( buf, buflen, "PEM - Private key password can't be empty" );
317 if( use_ret == -(MBEDTLS_ERR_PEM_PASSWORD_MISMATCH) )
318 mbedtls_snprintf( buf, buflen, "PEM - Given private key password does not allow for correct decryption" );
319 if( use_ret == -(MBEDTLS_ERR_PEM_FEATURE_UNAVAILABLE) )
320 mbedtls_snprintf( buf, buflen, "PEM - Unavailable feature, e.g. hashing/encryption combination" );
321 if( use_ret == -(MBEDTLS_ERR_PEM_BAD_INPUT_DATA) )
322 mbedtls_snprintf( buf, buflen, "PEM - Bad input parameters to function" );
323#endif /* MBEDTLS_PEM_PARSE_C || MBEDTLS_PEM_WRITE_C */
Paul Bakker9d781402011-05-09 16:17:09 +0000324
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200325#if defined(MBEDTLS_PK_C)
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200326 if( use_ret == -(MBEDTLS_ERR_PK_ALLOC_FAILED) )
Manuel Pégourié-Gonnard41b9c2b2015-05-28 14:56:20 +0200327 mbedtls_snprintf( buf, buflen, "PK - Memory allocation failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200328 if( use_ret == -(MBEDTLS_ERR_PK_TYPE_MISMATCH) )
329 mbedtls_snprintf( buf, buflen, "PK - Type mismatch, eg attempt to encrypt with an ECDSA key" );
330 if( use_ret == -(MBEDTLS_ERR_PK_BAD_INPUT_DATA) )
331 mbedtls_snprintf( buf, buflen, "PK - Bad input parameters to function" );
332 if( use_ret == -(MBEDTLS_ERR_PK_FILE_IO_ERROR) )
333 mbedtls_snprintf( buf, buflen, "PK - Read/write of file failed" );
334 if( use_ret == -(MBEDTLS_ERR_PK_KEY_INVALID_VERSION) )
335 mbedtls_snprintf( buf, buflen, "PK - Unsupported key version" );
336 if( use_ret == -(MBEDTLS_ERR_PK_KEY_INVALID_FORMAT) )
337 mbedtls_snprintf( buf, buflen, "PK - Invalid key tag or value" );
338 if( use_ret == -(MBEDTLS_ERR_PK_UNKNOWN_PK_ALG) )
339 mbedtls_snprintf( buf, buflen, "PK - Key algorithm is unsupported (only RSA and EC are supported)" );
340 if( use_ret == -(MBEDTLS_ERR_PK_PASSWORD_REQUIRED) )
341 mbedtls_snprintf( buf, buflen, "PK - Private key password can't be empty" );
342 if( use_ret == -(MBEDTLS_ERR_PK_PASSWORD_MISMATCH) )
343 mbedtls_snprintf( buf, buflen, "PK - Given private key password does not allow for correct decryption" );
344 if( use_ret == -(MBEDTLS_ERR_PK_INVALID_PUBKEY) )
345 mbedtls_snprintf( buf, buflen, "PK - The pubkey tag or value is invalid (only RSA and EC are supported)" );
346 if( use_ret == -(MBEDTLS_ERR_PK_INVALID_ALG) )
347 mbedtls_snprintf( buf, buflen, "PK - The algorithm tag or value is invalid" );
348 if( use_ret == -(MBEDTLS_ERR_PK_UNKNOWN_NAMED_CURVE) )
349 mbedtls_snprintf( buf, buflen, "PK - Elliptic curve is unsupported (only NIST curves are supported)" );
350 if( use_ret == -(MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE) )
351 mbedtls_snprintf( buf, buflen, "PK - Unavailable feature, e.g. RSA disabled for RSA key" );
352 if( use_ret == -(MBEDTLS_ERR_PK_SIG_LEN_MISMATCH) )
Gilles Peskinecc78ac42018-03-30 18:52:10 +0200353 mbedtls_snprintf( buf, buflen, "PK - The buffer contains a valid signature followed by more data" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100354 if( use_ret == -(MBEDTLS_ERR_PK_HW_ACCEL_FAILED) )
355 mbedtls_snprintf( buf, buflen, "PK - PK hardware accelerator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200356#endif /* MBEDTLS_PK_C */
Manuel Pégourié-Gonnard7a6c9462013-07-09 10:04:07 +0200357
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200358#if defined(MBEDTLS_PKCS12_C)
359 if( use_ret == -(MBEDTLS_ERR_PKCS12_BAD_INPUT_DATA) )
360 mbedtls_snprintf( buf, buflen, "PKCS12 - Bad input parameters to function" );
361 if( use_ret == -(MBEDTLS_ERR_PKCS12_FEATURE_UNAVAILABLE) )
362 mbedtls_snprintf( buf, buflen, "PKCS12 - Feature not available, e.g. unsupported encryption scheme" );
363 if( use_ret == -(MBEDTLS_ERR_PKCS12_PBE_INVALID_FORMAT) )
364 mbedtls_snprintf( buf, buflen, "PKCS12 - PBE ASN.1 data not as expected" );
365 if( use_ret == -(MBEDTLS_ERR_PKCS12_PASSWORD_MISMATCH) )
366 mbedtls_snprintf( buf, buflen, "PKCS12 - Given private key password does not allow for correct decryption" );
367#endif /* MBEDTLS_PKCS12_C */
Paul Bakkerf1f21fe2013-06-24 19:17:19 +0200368
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200369#if defined(MBEDTLS_PKCS5_C)
370 if( use_ret == -(MBEDTLS_ERR_PKCS5_BAD_INPUT_DATA) )
371 mbedtls_snprintf( buf, buflen, "PKCS5 - Bad input parameters to function" );
372 if( use_ret == -(MBEDTLS_ERR_PKCS5_INVALID_FORMAT) )
373 mbedtls_snprintf( buf, buflen, "PKCS5 - Unexpected ASN.1 data" );
374 if( use_ret == -(MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE) )
375 mbedtls_snprintf( buf, buflen, "PKCS5 - Requested encryption or digest alg not available" );
376 if( use_ret == -(MBEDTLS_ERR_PKCS5_PASSWORD_MISMATCH) )
377 mbedtls_snprintf( buf, buflen, "PKCS5 - Given private key password does not allow for correct decryption" );
378#endif /* MBEDTLS_PKCS5_C */
Paul Bakker28144de2013-06-24 19:28:55 +0200379
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200380#if defined(MBEDTLS_RSA_C)
381 if( use_ret == -(MBEDTLS_ERR_RSA_BAD_INPUT_DATA) )
382 mbedtls_snprintf( buf, buflen, "RSA - Bad input parameters to function" );
383 if( use_ret == -(MBEDTLS_ERR_RSA_INVALID_PADDING) )
384 mbedtls_snprintf( buf, buflen, "RSA - Input data contains invalid padding and is rejected" );
385 if( use_ret == -(MBEDTLS_ERR_RSA_KEY_GEN_FAILED) )
386 mbedtls_snprintf( buf, buflen, "RSA - Something failed during generation of a key" );
387 if( use_ret == -(MBEDTLS_ERR_RSA_KEY_CHECK_FAILED) )
Rose Zadik042e97f2018-01-26 16:35:10 +0000388 mbedtls_snprintf( buf, buflen, "RSA - Key failed to pass the validity check of the library" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200389 if( use_ret == -(MBEDTLS_ERR_RSA_PUBLIC_FAILED) )
390 mbedtls_snprintf( buf, buflen, "RSA - The public key operation failed" );
391 if( use_ret == -(MBEDTLS_ERR_RSA_PRIVATE_FAILED) )
392 mbedtls_snprintf( buf, buflen, "RSA - The private key operation failed" );
393 if( use_ret == -(MBEDTLS_ERR_RSA_VERIFY_FAILED) )
394 mbedtls_snprintf( buf, buflen, "RSA - The PKCS#1 verification failed" );
395 if( use_ret == -(MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE) )
396 mbedtls_snprintf( buf, buflen, "RSA - The output buffer for decryption is not large enough" );
397 if( use_ret == -(MBEDTLS_ERR_RSA_RNG_FAILED) )
398 mbedtls_snprintf( buf, buflen, "RSA - The random generator failed to generate non-zeros" );
Hanno Becker3cdc7112017-10-05 10:09:31 +0100399 if( use_ret == -(MBEDTLS_ERR_RSA_UNSUPPORTED_OPERATION) )
Rose Zadik042e97f2018-01-26 16:35:10 +0000400 mbedtls_snprintf( buf, buflen, "RSA - The implementation does not offer the requested operation, for example, because of security violations or lack of functionality" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100401 if( use_ret == -(MBEDTLS_ERR_RSA_HW_ACCEL_FAILED) )
402 mbedtls_snprintf( buf, buflen, "RSA - RSA hardware accelerator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200403#endif /* MBEDTLS_RSA_C */
Manuel Pégourié-Gonnardfe671f42014-04-11 18:06:44 +0200404 // END generated code
Paul Bakker0e06c0f2013-08-25 11:21:30 +0200405
Paul Bakker9d781402011-05-09 16:17:09 +0000406 if( strlen( buf ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200407 mbedtls_snprintf( buf, buflen, "UNKNOWN ERROR CODE (%04X)", use_ret );
Paul Bakker9d781402011-05-09 16:17:09 +0000408 }
409
410 use_ret = ret & ~0xFF80;
411
412 if( use_ret == 0 )
413 return;
414
415 // If high level code is present, make a concatenation between both
416 // error strings.
417 //
418 len = strlen( buf );
419
420 if( len > 0 )
421 {
422 if( buflen - len < 5 )
423 return;
424
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200425 mbedtls_snprintf( buf + len, buflen - len, " : " );
Paul Bakker9d781402011-05-09 16:17:09 +0000426
427 buf += len + 3;
428 buflen -= len + 3;
429 }
430
431 // Low level error codes
432 //
Manuel Pégourié-Gonnardfe671f42014-04-11 18:06:44 +0200433 // BEGIN generated code
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200434#if defined(MBEDTLS_AES_C)
435 if( use_ret == -(MBEDTLS_ERR_AES_INVALID_KEY_LENGTH) )
436 mbedtls_snprintf( buf, buflen, "AES - Invalid key length" );
437 if( use_ret == -(MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH) )
438 mbedtls_snprintf( buf, buflen, "AES - Invalid data input length" );
Mohammad Azim Khane5b5bd72017-11-24 10:52:51 +0000439 if( use_ret == -(MBEDTLS_ERR_AES_BAD_INPUT_DATA) )
440 mbedtls_snprintf( buf, buflen, "AES - Invalid input data" );
Andres Amaya Garciafd487392017-06-14 16:19:12 +0100441 if( use_ret == -(MBEDTLS_ERR_AES_FEATURE_UNAVAILABLE) )
Rose Zadik7f441272018-01-22 11:48:23 +0000442 mbedtls_snprintf( buf, buflen, "AES - Feature not available. For example, an unsupported AES key size" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100443 if( use_ret == -(MBEDTLS_ERR_AES_HW_ACCEL_FAILED) )
444 mbedtls_snprintf( buf, buflen, "AES - AES hardware accelerator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200445#endif /* MBEDTLS_AES_C */
Paul Bakker9d781402011-05-09 16:17:09 +0000446
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100447#if defined(MBEDTLS_ARC4_C)
448 if( use_ret == -(MBEDTLS_ERR_ARC4_HW_ACCEL_FAILED) )
449 mbedtls_snprintf( buf, buflen, "ARC4 - ARC4 hardware accelerator failed" );
450#endif /* MBEDTLS_ARC4_C */
451
Markku-Juhani O. Saarinen07478d62017-12-01 16:20:15 +0000452#if defined(MBEDTLS_ARIA_C)
Hanno Becker32142152018-12-17 13:25:58 +0000453 if( use_ret == -(MBEDTLS_ERR_ARIA_BAD_INPUT_DATA) )
454 mbedtls_snprintf( buf, buflen, "ARIA - Bad input data" );
Hanno Beckera0343692018-12-18 09:42:58 +0000455 if( use_ret == -(MBEDTLS_ERR_ARIA_INVALID_INPUT_LENGTH) )
456 mbedtls_snprintf( buf, buflen, "ARIA - Invalid data input length" );
Manuel Pégourié-Gonnard3c800092018-03-01 09:02:16 +0100457 if( use_ret == -(MBEDTLS_ERR_ARIA_FEATURE_UNAVAILABLE) )
458 mbedtls_snprintf( buf, buflen, "ARIA - Feature not available. For example, an unsupported ARIA key size" );
459 if( use_ret == -(MBEDTLS_ERR_ARIA_HW_ACCEL_FAILED) )
460 mbedtls_snprintf( buf, buflen, "ARIA - ARIA hardware accelerator failed" );
Markku-Juhani O. Saarinen07478d62017-12-01 16:20:15 +0000461#endif /* MBEDTLS_ARIA_C */
462
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200463#if defined(MBEDTLS_ASN1_PARSE_C)
464 if( use_ret == -(MBEDTLS_ERR_ASN1_OUT_OF_DATA) )
465 mbedtls_snprintf( buf, buflen, "ASN1 - Out of data when parsing an ASN1 data structure" );
466 if( use_ret == -(MBEDTLS_ERR_ASN1_UNEXPECTED_TAG) )
467 mbedtls_snprintf( buf, buflen, "ASN1 - ASN1 tag was of an unexpected value" );
468 if( use_ret == -(MBEDTLS_ERR_ASN1_INVALID_LENGTH) )
469 mbedtls_snprintf( buf, buflen, "ASN1 - Error when trying to determine the length or invalid length" );
470 if( use_ret == -(MBEDTLS_ERR_ASN1_LENGTH_MISMATCH) )
471 mbedtls_snprintf( buf, buflen, "ASN1 - Actual length differs from expected length" );
472 if( use_ret == -(MBEDTLS_ERR_ASN1_INVALID_DATA) )
Gilles Peskineaac38532019-09-11 16:52:01 +0200473 mbedtls_snprintf( buf, buflen, "ASN1 - Data is invalid" );
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200474 if( use_ret == -(MBEDTLS_ERR_ASN1_ALLOC_FAILED) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200475 mbedtls_snprintf( buf, buflen, "ASN1 - Memory allocation failed" );
476 if( use_ret == -(MBEDTLS_ERR_ASN1_BUF_TOO_SMALL) )
477 mbedtls_snprintf( buf, buflen, "ASN1 - Buffer too small when writing ASN.1 data structure" );
478#endif /* MBEDTLS_ASN1_PARSE_C */
Paul Bakkerdceecd82011-11-15 16:38:34 +0000479
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200480#if defined(MBEDTLS_BASE64_C)
481 if( use_ret == -(MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL) )
482 mbedtls_snprintf( buf, buflen, "BASE64 - Output buffer too small" );
483 if( use_ret == -(MBEDTLS_ERR_BASE64_INVALID_CHARACTER) )
484 mbedtls_snprintf( buf, buflen, "BASE64 - Invalid character in input" );
485#endif /* MBEDTLS_BASE64_C */
Paul Bakker9d781402011-05-09 16:17:09 +0000486
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200487#if defined(MBEDTLS_BIGNUM_C)
488 if( use_ret == -(MBEDTLS_ERR_MPI_FILE_IO_ERROR) )
489 mbedtls_snprintf( buf, buflen, "BIGNUM - An error occurred while reading from or writing to a file" );
490 if( use_ret == -(MBEDTLS_ERR_MPI_BAD_INPUT_DATA) )
491 mbedtls_snprintf( buf, buflen, "BIGNUM - Bad input parameters to function" );
492 if( use_ret == -(MBEDTLS_ERR_MPI_INVALID_CHARACTER) )
493 mbedtls_snprintf( buf, buflen, "BIGNUM - There is an invalid character in the digit string" );
494 if( use_ret == -(MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL) )
495 mbedtls_snprintf( buf, buflen, "BIGNUM - The buffer is too small to write to" );
496 if( use_ret == -(MBEDTLS_ERR_MPI_NEGATIVE_VALUE) )
497 mbedtls_snprintf( buf, buflen, "BIGNUM - The input arguments are negative or result in illegal output" );
498 if( use_ret == -(MBEDTLS_ERR_MPI_DIVISION_BY_ZERO) )
499 mbedtls_snprintf( buf, buflen, "BIGNUM - The input argument for division is zero, which is not allowed" );
500 if( use_ret == -(MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) )
501 mbedtls_snprintf( buf, buflen, "BIGNUM - The input arguments are not acceptable" );
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200502 if( use_ret == -(MBEDTLS_ERR_MPI_ALLOC_FAILED) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200503 mbedtls_snprintf( buf, buflen, "BIGNUM - Memory allocation failed" );
504#endif /* MBEDTLS_BIGNUM_C */
Paul Bakker9d781402011-05-09 16:17:09 +0000505
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200506#if defined(MBEDTLS_BLOWFISH_C)
Hanno Becker32142152018-12-17 13:25:58 +0000507 if( use_ret == -(MBEDTLS_ERR_BLOWFISH_BAD_INPUT_DATA) )
508 mbedtls_snprintf( buf, buflen, "BLOWFISH - Bad input data" );
Hanno Becker6640b0d2018-12-18 09:45:17 +0000509 if( use_ret == -(MBEDTLS_ERR_BLOWFISH_INVALID_INPUT_LENGTH) )
510 mbedtls_snprintf( buf, buflen, "BLOWFISH - Invalid data input length" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100511 if( use_ret == -(MBEDTLS_ERR_BLOWFISH_HW_ACCEL_FAILED) )
512 mbedtls_snprintf( buf, buflen, "BLOWFISH - Blowfish hardware accelerator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200513#endif /* MBEDTLS_BLOWFISH_C */
Paul Bakker83f00bb2012-07-04 11:08:50 +0000514
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200515#if defined(MBEDTLS_CAMELLIA_C)
Hanno Becker32142152018-12-17 13:25:58 +0000516 if( use_ret == -(MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA) )
517 mbedtls_snprintf( buf, buflen, "CAMELLIA - Bad input data" );
Hanno Becker938f9e92018-12-18 09:40:25 +0000518 if( use_ret == -(MBEDTLS_ERR_CAMELLIA_INVALID_INPUT_LENGTH) )
519 mbedtls_snprintf( buf, buflen, "CAMELLIA - Invalid data input length" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100520 if( use_ret == -(MBEDTLS_ERR_CAMELLIA_HW_ACCEL_FAILED) )
521 mbedtls_snprintf( buf, buflen, "CAMELLIA - Camellia hardware accelerator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200522#endif /* MBEDTLS_CAMELLIA_C */
Paul Bakker9d781402011-05-09 16:17:09 +0000523
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200524#if defined(MBEDTLS_CCM_C)
525 if( use_ret == -(MBEDTLS_ERR_CCM_BAD_INPUT) )
Rose Zadikeecdbea2018-01-24 12:56:53 +0000526 mbedtls_snprintf( buf, buflen, "CCM - Bad input parameters to the function" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200527 if( use_ret == -(MBEDTLS_ERR_CCM_AUTH_FAILED) )
528 mbedtls_snprintf( buf, buflen, "CCM - Authenticated decryption failed" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100529 if( use_ret == -(MBEDTLS_ERR_CCM_HW_ACCEL_FAILED) )
530 mbedtls_snprintf( buf, buflen, "CCM - CCM hardware accelerator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200531#endif /* MBEDTLS_CCM_C */
Manuel Pégourié-Gonnarda6916fa2014-05-02 15:17:29 +0200532
Daniel King34b822c2016-05-15 17:28:08 -0300533#if defined(MBEDTLS_CHACHA20_C)
534 if( use_ret == -(MBEDTLS_ERR_CHACHA20_BAD_INPUT_DATA) )
535 mbedtls_snprintf( buf, buflen, "CHACHA20 - Invalid input parameter(s)" );
Manuel Pégourié-Gonnardb8bd80a2018-05-09 09:54:51 +0200536 if( use_ret == -(MBEDTLS_ERR_CHACHA20_FEATURE_UNAVAILABLE) )
537 mbedtls_snprintf( buf, buflen, "CHACHA20 - Feature not available. For example, s part of the API is not implemented" );
Manuel Pégourié-Gonnard3798b6b2018-05-24 13:27:45 +0200538 if( use_ret == -(MBEDTLS_ERR_CHACHA20_HW_ACCEL_FAILED) )
539 mbedtls_snprintf( buf, buflen, "CHACHA20 - Chacha20 hardware accelerator failed" );
Daniel King34b822c2016-05-15 17:28:08 -0300540#endif /* MBEDTLS_CHACHA20_C */
541
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200542#if defined(MBEDTLS_CHACHAPOLY_C)
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200543 if( use_ret == -(MBEDTLS_ERR_CHACHAPOLY_BAD_STATE) )
544 mbedtls_snprintf( buf, buflen, "CHACHAPOLY - The requested operation is not permitted in the current state" );
Manuel Pégourié-Gonnardb8bd80a2018-05-09 09:54:51 +0200545 if( use_ret == -(MBEDTLS_ERR_CHACHAPOLY_AUTH_FAILED) )
546 mbedtls_snprintf( buf, buflen, "CHACHAPOLY - Authenticated decryption failed: data was not authentic" );
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200547#endif /* MBEDTLS_CHACHAPOLY_C */
548
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100549#if defined(MBEDTLS_CMAC_C)
550 if( use_ret == -(MBEDTLS_ERR_CMAC_HW_ACCEL_FAILED) )
551 mbedtls_snprintf( buf, buflen, "CMAC - CMAC hardware accelerator failed" );
552#endif /* MBEDTLS_CMAC_C */
553
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200554#if defined(MBEDTLS_CTR_DRBG_C)
555 if( use_ret == -(MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED) )
556 mbedtls_snprintf( buf, buflen, "CTR_DRBG - The entropy source failed" );
557 if( use_ret == -(MBEDTLS_ERR_CTR_DRBG_REQUEST_TOO_BIG) )
Rose Zadik2f8163d2018-01-25 21:55:14 +0000558 mbedtls_snprintf( buf, buflen, "CTR_DRBG - The requested random buffer length is too big" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200559 if( use_ret == -(MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG) )
Rose Zadik2f8163d2018-01-25 21:55:14 +0000560 mbedtls_snprintf( buf, buflen, "CTR_DRBG - The input (entropy + additional data) is too large" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200561 if( use_ret == -(MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR) )
Rose Zadik2f8163d2018-01-25 21:55:14 +0000562 mbedtls_snprintf( buf, buflen, "CTR_DRBG - Read or write error in file" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200563#endif /* MBEDTLS_CTR_DRBG_C */
Paul Bakker880ac7e2011-11-27 14:50:49 +0000564
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200565#if defined(MBEDTLS_DES_C)
566 if( use_ret == -(MBEDTLS_ERR_DES_INVALID_INPUT_LENGTH) )
567 mbedtls_snprintf( buf, buflen, "DES - The data input has an invalid length" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100568 if( use_ret == -(MBEDTLS_ERR_DES_HW_ACCEL_FAILED) )
569 mbedtls_snprintf( buf, buflen, "DES - DES hardware accelerator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200570#endif /* MBEDTLS_DES_C */
Paul Bakker9d781402011-05-09 16:17:09 +0000571
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200572#if defined(MBEDTLS_ENTROPY_C)
573 if( use_ret == -(MBEDTLS_ERR_ENTROPY_SOURCE_FAILED) )
574 mbedtls_snprintf( buf, buflen, "ENTROPY - Critical entropy source failure" );
575 if( use_ret == -(MBEDTLS_ERR_ENTROPY_MAX_SOURCES) )
576 mbedtls_snprintf( buf, buflen, "ENTROPY - No more sources can be added" );
577 if( use_ret == -(MBEDTLS_ERR_ENTROPY_NO_SOURCES_DEFINED) )
578 mbedtls_snprintf( buf, buflen, "ENTROPY - No sources have been added to poll" );
Manuel Pégourié-Gonnardf9cbd732015-06-22 12:06:50 +0200579 if( use_ret == -(MBEDTLS_ERR_ENTROPY_NO_STRONG_SOURCE) )
580 mbedtls_snprintf( buf, buflen, "ENTROPY - No strong sources have been added to poll" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200581 if( use_ret == -(MBEDTLS_ERR_ENTROPY_FILE_IO_ERROR) )
582 mbedtls_snprintf( buf, buflen, "ENTROPY - Read/write error in file" );
583#endif /* MBEDTLS_ENTROPY_C */
Paul Bakker6083fd22011-12-03 21:45:14 +0000584
Janos Follath60f6b642019-12-03 15:55:56 +0000585#if defined(MBEDTLS_ERROR_C)
586 if( use_ret == -(MBEDTLS_ERR_ERROR_GENERIC_ERROR) )
587 mbedtls_snprintf( buf, buflen, "ERROR - Generic error" );
588 if( use_ret == -(MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED) )
589 mbedtls_snprintf( buf, buflen, "ERROR - This is a bug in the library" );
590#endif /* MBEDTLS_ERROR_C */
591
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200592#if defined(MBEDTLS_GCM_C)
593 if( use_ret == -(MBEDTLS_ERR_GCM_AUTH_FAILED) )
594 mbedtls_snprintf( buf, buflen, "GCM - Authenticated decryption failed" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100595 if( use_ret == -(MBEDTLS_ERR_GCM_HW_ACCEL_FAILED) )
596 mbedtls_snprintf( buf, buflen, "GCM - GCM hardware accelerator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200597 if( use_ret == -(MBEDTLS_ERR_GCM_BAD_INPUT) )
598 mbedtls_snprintf( buf, buflen, "GCM - Bad input parameters to function" );
599#endif /* MBEDTLS_GCM_C */
Paul Bakker030277a2012-04-17 12:24:26 +0000600
Thomas Fossati656864b2016-07-17 08:51:22 +0100601#if defined(MBEDTLS_HKDF_C)
602 if( use_ret == -(MBEDTLS_ERR_HKDF_BAD_INPUT_DATA) )
603 mbedtls_snprintf( buf, buflen, "HKDF - Bad input parameters to function" );
604#endif /* MBEDTLS_HKDF_C */
605
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200606#if defined(MBEDTLS_HMAC_DRBG_C)
607 if( use_ret == -(MBEDTLS_ERR_HMAC_DRBG_REQUEST_TOO_BIG) )
608 mbedtls_snprintf( buf, buflen, "HMAC_DRBG - Too many random requested in single call" );
609 if( use_ret == -(MBEDTLS_ERR_HMAC_DRBG_INPUT_TOO_BIG) )
610 mbedtls_snprintf( buf, buflen, "HMAC_DRBG - Input too large (Entropy + additional)" );
611 if( use_ret == -(MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR) )
612 mbedtls_snprintf( buf, buflen, "HMAC_DRBG - Read/write error in file" );
613 if( use_ret == -(MBEDTLS_ERR_HMAC_DRBG_ENTROPY_SOURCE_FAILED) )
614 mbedtls_snprintf( buf, buflen, "HMAC_DRBG - The entropy source failed" );
615#endif /* MBEDTLS_HMAC_DRBG_C */
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +0100616
Gilles Peskinea381fe82018-01-23 18:16:11 +0100617#if defined(MBEDTLS_MD2_C)
618 if( use_ret == -(MBEDTLS_ERR_MD2_HW_ACCEL_FAILED) )
619 mbedtls_snprintf( buf, buflen, "MD2 - MD2 hardware accelerator failed" );
620#endif /* MBEDTLS_MD2_C */
621
622#if defined(MBEDTLS_MD4_C)
623 if( use_ret == -(MBEDTLS_ERR_MD4_HW_ACCEL_FAILED) )
624 mbedtls_snprintf( buf, buflen, "MD4 - MD4 hardware accelerator failed" );
625#endif /* MBEDTLS_MD4_C */
626
627#if defined(MBEDTLS_MD5_C)
628 if( use_ret == -(MBEDTLS_ERR_MD5_HW_ACCEL_FAILED) )
629 mbedtls_snprintf( buf, buflen, "MD5 - MD5 hardware accelerator failed" );
630#endif /* MBEDTLS_MD5_C */
631
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200632#if defined(MBEDTLS_OID_C)
633 if( use_ret == -(MBEDTLS_ERR_OID_NOT_FOUND) )
634 mbedtls_snprintf( buf, buflen, "OID - OID is not found" );
635 if( use_ret == -(MBEDTLS_ERR_OID_BUF_TOO_SMALL) )
636 mbedtls_snprintf( buf, buflen, "OID - output buffer is too small" );
637#endif /* MBEDTLS_OID_C */
Paul Bakkerc70b9822013-04-07 22:00:46 +0200638
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200639#if defined(MBEDTLS_PADLOCK_C)
640 if( use_ret == -(MBEDTLS_ERR_PADLOCK_DATA_MISALIGNED) )
641 mbedtls_snprintf( buf, buflen, "PADLOCK - Input data should be aligned" );
642#endif /* MBEDTLS_PADLOCK_C */
Paul Bakker9d781402011-05-09 16:17:09 +0000643
Ron Eldor0ff4e0b2018-08-29 18:53:20 +0300644#if defined(MBEDTLS_PLATFORM_C)
Ron Eldora27190b2018-10-15 16:33:43 +0300645 if( use_ret == -(MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED) )
Ron Eldor5267b622018-10-15 18:44:42 +0300646 mbedtls_snprintf( buf, buflen, "PLATFORM - Hardware accelerator failed" );
Ron Eldorbcca58c2018-10-03 16:33:21 +0300647 if( use_ret == -(MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED) )
648 mbedtls_snprintf( buf, buflen, "PLATFORM - The requested feature is not supported by the platform" );
Ron Eldor0ff4e0b2018-08-29 18:53:20 +0300649#endif /* MBEDTLS_PLATFORM_C */
650
Daniel Kingadc32c02016-05-16 18:25:45 -0300651#if defined(MBEDTLS_POLY1305_C)
652 if( use_ret == -(MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA) )
653 mbedtls_snprintf( buf, buflen, "POLY1305 - Invalid input parameter(s)" );
Manuel Pégourié-Gonnardb8bd80a2018-05-09 09:54:51 +0200654 if( use_ret == -(MBEDTLS_ERR_POLY1305_FEATURE_UNAVAILABLE) )
655 mbedtls_snprintf( buf, buflen, "POLY1305 - Feature not available. For example, s part of the API is not implemented" );
Manuel Pégourié-Gonnard3798b6b2018-05-24 13:27:45 +0200656 if( use_ret == -(MBEDTLS_ERR_POLY1305_HW_ACCEL_FAILED) )
657 mbedtls_snprintf( buf, buflen, "POLY1305 - Poly1305 hardware accelerator failed" );
Daniel Kingadc32c02016-05-16 18:25:45 -0300658#endif /* MBEDTLS_POLY1305_C */
659
Gilles Peskinea381fe82018-01-23 18:16:11 +0100660#if defined(MBEDTLS_RIPEMD160_C)
661 if( use_ret == -(MBEDTLS_ERR_RIPEMD160_HW_ACCEL_FAILED) )
662 mbedtls_snprintf( buf, buflen, "RIPEMD160 - RIPEMD160 hardware accelerator failed" );
663#endif /* MBEDTLS_RIPEMD160_C */
664
665#if defined(MBEDTLS_SHA1_C)
666 if( use_ret == -(MBEDTLS_ERR_SHA1_HW_ACCEL_FAILED) )
667 mbedtls_snprintf( buf, buflen, "SHA1 - SHA-1 hardware accelerator failed" );
Andres Amaya Garciaa685d4f2018-12-09 19:13:01 +0000668 if( use_ret == -(MBEDTLS_ERR_SHA1_BAD_INPUT_DATA) )
Hanno Becker859522a2018-12-19 09:54:14 +0000669 mbedtls_snprintf( buf, buflen, "SHA1 - SHA-1 input data was malformed" );
Gilles Peskinea381fe82018-01-23 18:16:11 +0100670#endif /* MBEDTLS_SHA1_C */
671
672#if defined(MBEDTLS_SHA256_C)
673 if( use_ret == -(MBEDTLS_ERR_SHA256_HW_ACCEL_FAILED) )
674 mbedtls_snprintf( buf, buflen, "SHA256 - SHA-256 hardware accelerator failed" );
Andres Amaya Garcia9e76c0e2018-12-09 20:42:05 +0000675 if( use_ret == -(MBEDTLS_ERR_SHA256_BAD_INPUT_DATA) )
Hanno Beckerd8e4f4a2018-12-19 09:54:55 +0000676 mbedtls_snprintf( buf, buflen, "SHA256 - SHA-256 input data was malformed" );
Gilles Peskinea381fe82018-01-23 18:16:11 +0100677#endif /* MBEDTLS_SHA256_C */
678
679#if defined(MBEDTLS_SHA512_C)
680 if( use_ret == -(MBEDTLS_ERR_SHA512_HW_ACCEL_FAILED) )
681 mbedtls_snprintf( buf, buflen, "SHA512 - SHA-512 hardware accelerator failed" );
Andres Amaya Garcia863d4832018-12-09 20:58:52 +0000682 if( use_ret == -(MBEDTLS_ERR_SHA512_BAD_INPUT_DATA) )
Hanno Becker9994e0d2018-12-19 09:55:40 +0000683 mbedtls_snprintf( buf, buflen, "SHA512 - SHA-512 input data was malformed" );
Gilles Peskinea381fe82018-01-23 18:16:11 +0100684#endif /* MBEDTLS_SHA512_C */
685
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200686#if defined(MBEDTLS_THREADING_C)
687 if( use_ret == -(MBEDTLS_ERR_THREADING_FEATURE_UNAVAILABLE) )
688 mbedtls_snprintf( buf, buflen, "THREADING - The selected feature is not available" );
689 if( use_ret == -(MBEDTLS_ERR_THREADING_BAD_INPUT_DATA) )
690 mbedtls_snprintf( buf, buflen, "THREADING - Bad input parameters to function" );
691 if( use_ret == -(MBEDTLS_ERR_THREADING_MUTEX_ERROR) )
692 mbedtls_snprintf( buf, buflen, "THREADING - Locking / unlocking / free failed with error code" );
693#endif /* MBEDTLS_THREADING_C */
Paul Bakker2466d932013-09-28 14:40:38 +0200694
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200695#if defined(MBEDTLS_XTEA_C)
696 if( use_ret == -(MBEDTLS_ERR_XTEA_INVALID_INPUT_LENGTH) )
697 mbedtls_snprintf( buf, buflen, "XTEA - The data input has an invalid length" );
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100698 if( use_ret == -(MBEDTLS_ERR_XTEA_HW_ACCEL_FAILED) )
699 mbedtls_snprintf( buf, buflen, "XTEA - XTEA hardware accelerator failed" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200700#endif /* MBEDTLS_XTEA_C */
Manuel Pégourié-Gonnardfe671f42014-04-11 18:06:44 +0200701 // END generated code
Paul Bakker9d781402011-05-09 16:17:09 +0000702
703 if( strlen( buf ) != 0 )
704 return;
705
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200706 mbedtls_snprintf( buf, buflen, "UNKNOWN ERROR CODE (%04X)", use_ret );
Paul Bakker9d781402011-05-09 16:17:09 +0000707}
708
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200709#else /* MBEDTLS_ERROR_C */
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100710
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200711#if defined(MBEDTLS_ERROR_STRERROR_DUMMY)
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100712
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100713/*
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200714 * Provide an non-function in case MBEDTLS_ERROR_C is not defined
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100715 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200716void mbedtls_strerror( int ret, char *buf, size_t buflen )
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100717{
718 ((void) ret);
719
720 if( buflen > 0 )
721 buf[0] = '\0';
722}
723
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200724#endif /* MBEDTLS_ERROR_STRERROR_DUMMY */
Paul Bakkere2ab84f2013-06-29 18:24:32 +0200725
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200726#endif /* MBEDTLS_ERROR_C */