2011-05-09 16:17:09 +00:00
|
|
|
/**
|
|
|
|
* \file error.h
|
|
|
|
*
|
|
|
|
* \brief Error to string translation
|
2018-01-05 15:33:17 +00:00
|
|
|
*/
|
|
|
|
/*
|
2016-07-17 07:51:22 +00:00
|
|
|
* Copyright (C) 2006-2018, ARM Limited, All Rights Reserved
|
Update license headers to Apache-2.0 OR GPL-2.0-or-later
This will allow us to ship the LTS branches in a single archive
This commit was generated using the following script:
# ========================
#!/bin/sh
header1='\ * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later\
*\
* This file is provided under the Apache License 2.0, or the\
* GNU General Public License v2.0 or later.\
*\
* **********\
* Apache License 2.0:\
*\
* Licensed under the Apache License, Version 2.0 (the "License"); you may\
* not use this file except in compliance with the License.\
* You may obtain a copy of the License at\
*\
* http://www.apache.org/licenses/LICENSE-2.0\
*\
* Unless required by applicable law or agreed to in writing, software\
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT\
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\
* See the License for the specific language governing permissions and\
* limitations under the License.\
*\
* **********\
*\
* **********\
* GNU General Public License v2.0 or later:\
*\
* This program is free software; you can redistribute it and/or modify\
* it under the terms of the GNU General Public License as published by\
* the Free Software Foundation; either version 2 of the License, or\
* (at your option) any later version.\
*\
* This program is distributed in the hope that it will be useful,\
* but WITHOUT ANY WARRANTY; without even the implied warranty of\
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\
* GNU General Public License for more details.\
*\
* You should have received a copy of the GNU General Public License along\
* with this program; if not, write to the Free Software Foundation, Inc.,\
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\
*\
* **********'
find -path './.git' -prune -o '(' -name '*.c' -o -name '*.cpp' -o -name '*.fmt' -o -name '*.h' ')' -print | xargs sed -i "
# Normalize the first line of the copyright headers (no text on the first line of a block comment)
/^\/\*.*Copyright.*Arm/I s/\/\*/&\n */
# Insert new copyright header
/SPDX-License-Identifier/ i\
$header1
# Delete old copyright header
/SPDX-License-Identifier/,$ {
# Delete lines until the one preceding the mbedtls declaration
N
1,/This file is part of/ {
/This file is part of/! D
}
}
"
# Format copyright header for inclusion into scripts
header2=$(echo "$header1" | sed 's/^\\\? \* \?/#/')
find -path './.git' -prune -o '(' -name '*.gdb' -o -name '*.pl' -o -name '*.py' -o -name '*.sh' ')' -print | xargs sed -i "
# Insert new copyright header
/SPDX-License-Identifier/ i\
$header2
# Delete old copyright header
/SPDX-License-Identifier/,$ {
# Delete lines until the one preceding the mbedtls declaration
N
1,/This file is part of/ {
/This file is part of/! D
}
}
"
# ========================
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
2020-06-05 11:02:18 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
*
|
|
|
|
* This file is provided under the Apache License 2.0, or the
|
|
|
|
* GNU General Public License v2.0 or later.
|
|
|
|
*
|
|
|
|
* **********
|
|
|
|
* Apache License 2.0:
|
2011-05-09 16:17:09 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-05-09 16:17:09 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-05-09 16:17:09 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2011-05-09 16:17:09 +00:00
|
|
|
*
|
Update license headers to Apache-2.0 OR GPL-2.0-or-later
This will allow us to ship the LTS branches in a single archive
This commit was generated using the following script:
# ========================
#!/bin/sh
header1='\ * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later\
*\
* This file is provided under the Apache License 2.0, or the\
* GNU General Public License v2.0 or later.\
*\
* **********\
* Apache License 2.0:\
*\
* Licensed under the Apache License, Version 2.0 (the "License"); you may\
* not use this file except in compliance with the License.\
* You may obtain a copy of the License at\
*\
* http://www.apache.org/licenses/LICENSE-2.0\
*\
* Unless required by applicable law or agreed to in writing, software\
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT\
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\
* See the License for the specific language governing permissions and\
* limitations under the License.\
*\
* **********\
*\
* **********\
* GNU General Public License v2.0 or later:\
*\
* This program is free software; you can redistribute it and/or modify\
* it under the terms of the GNU General Public License as published by\
* the Free Software Foundation; either version 2 of the License, or\
* (at your option) any later version.\
*\
* This program is distributed in the hope that it will be useful,\
* but WITHOUT ANY WARRANTY; without even the implied warranty of\
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\
* GNU General Public License for more details.\
*\
* You should have received a copy of the GNU General Public License along\
* with this program; if not, write to the Free Software Foundation, Inc.,\
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\
*\
* **********'
find -path './.git' -prune -o '(' -name '*.c' -o -name '*.cpp' -o -name '*.fmt' -o -name '*.h' ')' -print | xargs sed -i "
# Normalize the first line of the copyright headers (no text on the first line of a block comment)
/^\/\*.*Copyright.*Arm/I s/\/\*/&\n */
# Insert new copyright header
/SPDX-License-Identifier/ i\
$header1
# Delete old copyright header
/SPDX-License-Identifier/,$ {
# Delete lines until the one preceding the mbedtls declaration
N
1,/This file is part of/ {
/This file is part of/! D
}
}
"
# Format copyright header for inclusion into scripts
header2=$(echo "$header1" | sed 's/^\\\? \* \?/#/')
find -path './.git' -prune -o '(' -name '*.gdb' -o -name '*.pl' -o -name '*.py' -o -name '*.sh' ')' -print | xargs sed -i "
# Insert new copyright header
/SPDX-License-Identifier/ i\
$header2
# Delete old copyright header
/SPDX-License-Identifier/,$ {
# Delete lines until the one preceding the mbedtls declaration
N
1,/This file is part of/ {
/This file is part of/! D
}
}
"
# ========================
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
2020-06-05 11:02:18 +00:00
|
|
|
* **********
|
|
|
|
*
|
|
|
|
* **********
|
|
|
|
* GNU General Public License v2.0 or later:
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* **********
|
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2011-05-09 16:17:09 +00:00
|
|
|
*/
|
2015-04-08 10:49:31 +00:00
|
|
|
#ifndef MBEDTLS_ERROR_H
|
|
|
|
#define MBEDTLS_ERROR_H
|
2011-05-09 16:17:09 +00:00
|
|
|
|
2018-12-16 10:14:37 +00:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
|
|
|
#include "config.h"
|
|
|
|
#else
|
|
|
|
#include MBEDTLS_CONFIG_FILE
|
|
|
|
#endif
|
|
|
|
|
2015-02-06 13:43:58 +00:00
|
|
|
#include <stddef.h>
|
2013-06-24 17:03:14 +00:00
|
|
|
|
2011-05-09 16:17:09 +00:00
|
|
|
/**
|
|
|
|
* Error code layout.
|
|
|
|
*
|
|
|
|
* Currently we try to keep all error codes within the negative space of 16
|
2015-07-02 15:59:52 +00:00
|
|
|
* bits signed integers to support all platforms (-0x0001 - -0x7FFF). In
|
2011-05-09 16:17:09 +00:00
|
|
|
* addition we'd like to give two layers of information on the error if
|
|
|
|
* possible.
|
|
|
|
*
|
|
|
|
* For that purpose the error codes are segmented in the following manner:
|
|
|
|
*
|
|
|
|
* 16 bit error code bit-segmentation
|
|
|
|
*
|
2015-07-02 15:59:52 +00:00
|
|
|
* 1 bit - Unused (sign bit)
|
2011-05-09 16:17:09 +00:00
|
|
|
* 3 bits - High level module ID
|
|
|
|
* 5 bits - Module-dependent error code
|
2014-02-01 09:22:21 +00:00
|
|
|
* 7 bits - Low level module errors
|
2011-05-09 16:17:09 +00:00
|
|
|
*
|
2014-02-01 09:22:21 +00:00
|
|
|
* For historical reasons, low-level error codes are divided in even and odd,
|
2014-03-11 08:34:02 +00:00
|
|
|
* even codes were assigned first, and -1 is reserved for other errors.
|
2011-05-09 16:17:09 +00:00
|
|
|
*
|
2014-03-11 08:34:02 +00:00
|
|
|
* Low-level module errors (0x0002-0x007E, 0x0003-0x007F)
|
2014-02-01 09:22:21 +00:00
|
|
|
*
|
|
|
|
* Module Nr Codes assigned
|
2011-12-10 21:55:01 +00:00
|
|
|
* MPI 7 0x0002-0x0010
|
2018-01-26 16:56:38 +00:00
|
|
|
* GCM 3 0x0012-0x0014 0x0013-0x0013
|
|
|
|
* BLOWFISH 3 0x0016-0x0018 0x0017-0x0017
|
2013-09-28 12:40:38 +00:00
|
|
|
* THREADING 3 0x001A-0x001E
|
2017-11-24 10:52:51 +00:00
|
|
|
* AES 5 0x0020-0x0022 0x0021-0x0025
|
2018-01-26 16:56:38 +00:00
|
|
|
* CAMELLIA 3 0x0024-0x0026 0x0027-0x0027
|
|
|
|
* XTEA 2 0x0028-0x0028 0x0029-0x0029
|
2011-12-10 21:55:01 +00:00
|
|
|
* BASE64 2 0x002A-0x002C
|
2014-03-28 15:06:35 +00:00
|
|
|
* OID 1 0x002E-0x002E 0x000B-0x000B
|
2011-05-09 16:17:09 +00:00
|
|
|
* PADLOCK 1 0x0030-0x0030
|
2018-01-26 16:56:38 +00:00
|
|
|
* DES 2 0x0032-0x0032 0x0033-0x0033
|
2014-02-01 09:22:21 +00:00
|
|
|
* CTR_DBRG 4 0x0034-0x003A
|
2015-06-19 08:26:32 +00:00
|
|
|
* ENTROPY 3 0x003C-0x0040 0x003D-0x003F
|
2018-05-24 11:27:45 +00:00
|
|
|
* NET 13 0x0042-0x0052 0x0043-0x0049
|
2018-03-01 08:02:16 +00:00
|
|
|
* ARIA 4 0x0058-0x005E
|
2012-02-13 23:11:30 +00:00
|
|
|
* ASN1 7 0x0060-0x006C
|
2018-01-26 16:56:38 +00:00
|
|
|
* CMAC 1 0x007A-0x007A
|
2012-08-23 13:03:18 +00:00
|
|
|
* PBKDF2 1 0x007C-0x007C
|
2018-01-23 17:16:11 +00:00
|
|
|
* HMAC_DRBG 4 0x0003-0x0009
|
2018-01-26 16:56:38 +00:00
|
|
|
* CCM 3 0x000D-0x0011
|
|
|
|
* ARC4 1 0x0019-0x0019
|
2018-01-23 17:16:11 +00:00
|
|
|
* MD2 1 0x002B-0x002B
|
|
|
|
* MD4 1 0x002D-0x002D
|
|
|
|
* MD5 1 0x002F-0x002F
|
|
|
|
* RIPEMD160 1 0x0031-0x0031
|
2018-12-09 19:13:01 +00:00
|
|
|
* SHA1 1 0x0035-0x0035 0x0073-0x0073
|
2018-12-09 20:41:20 +00:00
|
|
|
* SHA256 1 0x0037-0x0037 0x0074-0x0074
|
2018-12-09 20:58:36 +00:00
|
|
|
* SHA512 1 0x0039-0x0039 0x0075-0x0075
|
2018-05-24 11:27:45 +00:00
|
|
|
* CHACHA20 3 0x0051-0x0055
|
|
|
|
* POLY1305 3 0x0057-0x005B
|
|
|
|
* CHACHAPOLY 2 0x0054-0x0056
|
2018-10-03 13:33:21 +00:00
|
|
|
* PLATFORM 1 0x0070-0x0072
|
2011-05-09 16:17:09 +00:00
|
|
|
*
|
2014-03-11 08:34:02 +00:00
|
|
|
* High-level module nr (3 bits - 0x0...-0x7...)
|
2013-08-25 09:21:30 +00:00
|
|
|
* Name ID Nr of Errors
|
|
|
|
* PEM 1 9
|
|
|
|
* PKCS#12 1 4 (Started from top)
|
2017-06-26 08:11:49 +00:00
|
|
|
* X509 2 20
|
2015-04-09 15:31:59 +00:00
|
|
|
* PKCS5 2 4 (Started from top)
|
2018-01-26 20:57:38 +00:00
|
|
|
* DHM 3 11
|
2018-01-26 16:56:38 +00:00
|
|
|
* PK 3 15 (Started from top)
|
|
|
|
* RSA 4 11
|
2018-06-12 10:40:54 +00:00
|
|
|
* ECP 4 10 (Started from top)
|
2018-01-26 16:56:38 +00:00
|
|
|
* MD 5 5
|
2016-07-17 07:51:22 +00:00
|
|
|
* HKDF 5 1 (Started from top)
|
2017-04-12 13:54:42 +00:00
|
|
|
* SSL 5 1 (Started from 0x5E80)
|
2018-01-26 16:56:38 +00:00
|
|
|
* CIPHER 6 8
|
2018-06-20 07:46:17 +00:00
|
|
|
* SSL 6 23 (Started from top)
|
2018-09-12 10:33:32 +00:00
|
|
|
* SSL 7 32
|
2011-05-09 16:17:09 +00:00
|
|
|
*
|
2014-02-01 09:22:21 +00:00
|
|
|
* Module dependent error code (5 bits 0x.00.-0x.F8.)
|
2011-05-09 16:17:09 +00:00
|
|
|
*/
|
|
|
|
|
2011-05-20 12:30:59 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-05-09 16:17:09 +00:00
|
|
|
/**
|
2015-01-22 16:11:05 +00:00
|
|
|
* \brief Translate a mbed TLS error code into a string representation,
|
2011-05-09 16:17:09 +00:00
|
|
|
* Result is truncated if necessary and always includes a terminating
|
|
|
|
* null byte.
|
|
|
|
*
|
|
|
|
* \param errnum error code
|
|
|
|
* \param buffer buffer to place representation in
|
|
|
|
* \param buflen length of the buffer
|
|
|
|
*/
|
2015-04-08 10:49:31 +00:00
|
|
|
void mbedtls_strerror( int errnum, char *buffer, size_t buflen );
|
2013-06-29 16:24:32 +00:00
|
|
|
|
2011-05-20 12:30:59 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-05-09 16:17:09 +00:00
|
|
|
#endif /* error.h */
|