blob: 5f6e8efb94382e6742fc2574bb0aa024698ed10b [file] [log] [blame]
Paul Bakker9d781402011-05-09 16:17:09 +00001/**
2 * \file error.h
3 *
4 * \brief Error to string translation
Darryl Greena40a1012018-01-05 15:33:17 +00005 */
6/*
Thomas Fossati656864b2016-07-17 08:51:22 +01007 * Copyright (C) 2006-2018, ARM Limited, All Rights Reserved
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02008 * SPDX-License-Identifier: Apache-2.0
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
Paul Bakker9d781402011-05-09 16:17:09 +000021 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000022 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker9d781402011-05-09 16:17:09 +000023 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020024#ifndef MBEDTLS_ERROR_H
25#define MBEDTLS_ERROR_H
Paul Bakker9d781402011-05-09 16:17:09 +000026
Rich Evans00ab4702015-02-06 13:43:58 +000027#include <stddef.h>
Paul Bakker3c2122f2013-06-24 19:03:14 +020028
Paul Bakker9d781402011-05-09 16:17:09 +000029/**
30 * Error code layout.
31 *
32 * Currently we try to keep all error codes within the negative space of 16
Manuel Pégourié-Gonnard7c3b4ab2015-07-02 17:59:52 +020033 * bits signed integers to support all platforms (-0x0001 - -0x7FFF). In
Paul Bakker9d781402011-05-09 16:17:09 +000034 * addition we'd like to give two layers of information on the error if
35 * possible.
36 *
37 * For that purpose the error codes are segmented in the following manner:
38 *
39 * 16 bit error code bit-segmentation
40 *
Manuel Pégourié-Gonnard7c3b4ab2015-07-02 17:59:52 +020041 * 1 bit - Unused (sign bit)
Paul Bakker9d781402011-05-09 16:17:09 +000042 * 3 bits - High level module ID
43 * 5 bits - Module-dependent error code
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010044 * 7 bits - Low level module errors
Paul Bakker9d781402011-05-09 16:17:09 +000045 *
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010046 * For historical reasons, low-level error codes are divided in even and odd,
Manuel Pégourié-Gonnard9a6e93e2014-03-11 09:34:02 +010047 * even codes were assigned first, and -1 is reserved for other errors.
Paul Bakker9d781402011-05-09 16:17:09 +000048 *
Manuel Pégourié-Gonnard9a6e93e2014-03-11 09:34:02 +010049 * Low-level module errors (0x0002-0x007E, 0x0003-0x007F)
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010050 *
51 * Module Nr Codes assigned
Paul Bakker69e095c2011-12-10 21:55:01 +000052 * MPI 7 0x0002-0x0010
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010053 * GCM 3 0x0012-0x0014 0x0013-0x0013
54 * BLOWFISH 3 0x0016-0x0018 0x0017-0x0017
Paul Bakker2466d932013-09-28 14:40:38 +020055 * THREADING 3 0x001A-0x001E
Mohammad Azim Khane5b5bd72017-11-24 10:52:51 +000056 * AES 5 0x0020-0x0022 0x0021-0x0025
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010057 * CAMELLIA 3 0x0024-0x0026 0x0027-0x0027
58 * XTEA 2 0x0028-0x0028 0x0029-0x0029
Paul Bakker69e095c2011-12-10 21:55:01 +000059 * BASE64 2 0x002A-0x002C
Manuel Pégourié-Gonnard7afdb882014-03-28 16:06:35 +010060 * OID 1 0x002E-0x002E 0x000B-0x000B
Paul Bakker9d781402011-05-09 16:17:09 +000061 * PADLOCK 1 0x0030-0x0030
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010062 * DES 2 0x0032-0x0032 0x0033-0x0033
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010063 * CTR_DBRG 4 0x0034-0x003A
Manuel Pégourié-Gonnard7580ba42015-06-19 10:26:32 +020064 * ENTROPY 3 0x003C-0x0040 0x003D-0x003F
Manuel Pégourié-Gonnard3798b6b2018-05-24 13:27:45 +020065 * NET 13 0x0042-0x0052 0x0043-0x0049
Manuel Pégourié-Gonnard3c800092018-03-01 09:02:16 +010066 * ARIA 4 0x0058-0x005E
Paul Bakkerbdb912d2012-02-13 23:11:30 +000067 * ASN1 7 0x0060-0x006C
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010068 * CMAC 1 0x007A-0x007A
Paul Bakkerf518b162012-08-23 13:03:18 +000069 * PBKDF2 1 0x007C-0x007C
Gilles Peskinea381fe82018-01-23 18:16:11 +010070 * HMAC_DRBG 4 0x0003-0x0009
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010071 * CCM 3 0x000D-0x0011
72 * ARC4 1 0x0019-0x0019
Gilles Peskinea381fe82018-01-23 18:16:11 +010073 * MD2 1 0x002B-0x002B
74 * MD4 1 0x002D-0x002D
75 * MD5 1 0x002F-0x002F
76 * RIPEMD160 1 0x0031-0x0031
77 * SHA1 1 0x0035-0x0035
Andres Amaya Garcia79e593f2018-12-09 20:41:20 +000078 * SHA256 1 0x0037-0x0037 0x0074-0x0074
Gilles Peskinea381fe82018-01-23 18:16:11 +010079 * SHA512 1 0x0039-0x0039
Manuel Pégourié-Gonnard3798b6b2018-05-24 13:27:45 +020080 * CHACHA20 3 0x0051-0x0055
81 * POLY1305 3 0x0057-0x005B
82 * CHACHAPOLY 2 0x0054-0x0056
Ron Eldorbcca58c2018-10-03 16:33:21 +030083 * PLATFORM 1 0x0070-0x0072
Paul Bakker9d781402011-05-09 16:17:09 +000084 *
Manuel Pégourié-Gonnard9a6e93e2014-03-11 09:34:02 +010085 * High-level module nr (3 bits - 0x0...-0x7...)
Paul Bakker0e06c0f2013-08-25 11:21:30 +020086 * Name ID Nr of Errors
87 * PEM 1 9
88 * PKCS#12 1 4 (Started from top)
Manuel Pégourié-Gonnard31458a12017-06-26 10:11:49 +020089 * X509 2 20
Manuel Pégourié-Gonnardeed55a42015-04-09 17:31:59 +020090 * PKCS5 2 4 (Started from top)
Jaeden Amero2acbf172018-01-26 20:57:38 +000091 * DHM 3 11
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010092 * PK 3 15 (Started from top)
93 * RSA 4 11
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +020094 * ECP 4 10 (Started from top)
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010095 * MD 5 5
Thomas Fossati656864b2016-07-17 08:51:22 +010096 * HKDF 5 1 (Started from top)
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010097 * CIPHER 6 8
Manuel Pégourié-Gonnard79d9b502018-06-20 09:46:17 +020098 * SSL 6 23 (Started from top)
Manuel Pégourié-Gonnard5a481f12018-09-12 12:33:32 +020099 * SSL 7 32
Paul Bakker9d781402011-05-09 16:17:09 +0000100 *
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +0100101 * Module dependent error code (5 bits 0x.00.-0x.F8.)
Paul Bakker9d781402011-05-09 16:17:09 +0000102 */
103
Paul Bakkerbcd5db42011-05-20 12:30:59 +0000104#ifdef __cplusplus
105extern "C" {
106#endif
107
Paul Bakker9d781402011-05-09 16:17:09 +0000108/**
Manuel Pégourié-Gonnardb4fe3cb2015-01-22 16:11:05 +0000109 * \brief Translate a mbed TLS error code into a string representation,
Paul Bakker9d781402011-05-09 16:17:09 +0000110 * Result is truncated if necessary and always includes a terminating
111 * null byte.
112 *
113 * \param errnum error code
114 * \param buffer buffer to place representation in
115 * \param buflen length of the buffer
116 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200117void mbedtls_strerror( int errnum, char *buffer, size_t buflen );
Paul Bakkere2ab84f2013-06-29 18:24:32 +0200118
Paul Bakkerbcd5db42011-05-20 12:30:59 +0000119#ifdef __cplusplus
120}
121#endif
122
Paul Bakker9d781402011-05-09 16:17:09 +0000123#endif /* error.h */