blob: 1035454328f20b99dcbaf34de3a7267a214a436e [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/*
Bence Szépkúti44bfbe32020-08-19 16:54:51 +02007 * Copyright The Mbed TLS Contributors
Bence Szépkúti4e9f7122020-06-05 13:02:18 +02008 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
9 *
10 * This file is provided under the Apache License 2.0, or the
11 * GNU General Public License v2.0 or later.
12 *
13 * **********
14 * Apache License 2.0:
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +020015 *
16 * Licensed under the Apache License, Version 2.0 (the "License"); you may
17 * not use this file except in compliance with the License.
18 * You may obtain a copy of the License at
19 *
20 * http://www.apache.org/licenses/LICENSE-2.0
21 *
22 * Unless required by applicable law or agreed to in writing, software
23 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
24 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25 * See the License for the specific language governing permissions and
26 * limitations under the License.
Paul Bakker9d781402011-05-09 16:17:09 +000027 *
Bence Szépkúti4e9f7122020-06-05 13:02:18 +020028 * **********
29 *
30 * **********
31 * GNU General Public License v2.0 or later:
32 *
33 * This program is free software; you can redistribute it and/or modify
34 * it under the terms of the GNU General Public License as published by
35 * the Free Software Foundation; either version 2 of the License, or
36 * (at your option) any later version.
37 *
38 * This program is distributed in the hope that it will be useful,
39 * but WITHOUT ANY WARRANTY; without even the implied warranty of
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 * GNU General Public License for more details.
42 *
43 * You should have received a copy of the GNU General Public License along
44 * with this program; if not, write to the Free Software Foundation, Inc.,
45 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
46 *
47 * **********
Paul Bakker9d781402011-05-09 16:17:09 +000048 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020049#ifndef MBEDTLS_ERROR_H
50#define MBEDTLS_ERROR_H
Paul Bakker9d781402011-05-09 16:17:09 +000051
Ron Eldor3625e562018-12-16 12:14:37 +020052#if !defined(MBEDTLS_CONFIG_FILE)
53#include "config.h"
54#else
55#include MBEDTLS_CONFIG_FILE
56#endif
57
Rich Evans00ab4702015-02-06 13:43:58 +000058#include <stddef.h>
Paul Bakker3c2122f2013-06-24 19:03:14 +020059
Paul Bakker9d781402011-05-09 16:17:09 +000060/**
61 * Error code layout.
62 *
63 * Currently we try to keep all error codes within the negative space of 16
Manuel Pégourié-Gonnard7c3b4ab2015-07-02 17:59:52 +020064 * bits signed integers to support all platforms (-0x0001 - -0x7FFF). In
Paul Bakker9d781402011-05-09 16:17:09 +000065 * addition we'd like to give two layers of information on the error if
66 * possible.
67 *
68 * For that purpose the error codes are segmented in the following manner:
69 *
70 * 16 bit error code bit-segmentation
71 *
Manuel Pégourié-Gonnard7c3b4ab2015-07-02 17:59:52 +020072 * 1 bit - Unused (sign bit)
Paul Bakker9d781402011-05-09 16:17:09 +000073 * 3 bits - High level module ID
74 * 5 bits - Module-dependent error code
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010075 * 7 bits - Low level module errors
Paul Bakker9d781402011-05-09 16:17:09 +000076 *
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010077 * For historical reasons, low-level error codes are divided in even and odd,
Manuel Pégourié-Gonnard9a6e93e2014-03-11 09:34:02 +010078 * even codes were assigned first, and -1 is reserved for other errors.
Paul Bakker9d781402011-05-09 16:17:09 +000079 *
Manuel Pégourié-Gonnard9a6e93e2014-03-11 09:34:02 +010080 * Low-level module errors (0x0002-0x007E, 0x0003-0x007F)
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010081 *
82 * Module Nr Codes assigned
Paul Bakker69e095c2011-12-10 21:55:01 +000083 * MPI 7 0x0002-0x0010
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010084 * GCM 3 0x0012-0x0014 0x0013-0x0013
85 * BLOWFISH 3 0x0016-0x0018 0x0017-0x0017
Paul Bakker2466d932013-09-28 14:40:38 +020086 * THREADING 3 0x001A-0x001E
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010087 * AES 4 0x0020-0x0022 0x0023-0x0025
88 * CAMELLIA 3 0x0024-0x0026 0x0027-0x0027
89 * XTEA 2 0x0028-0x0028 0x0029-0x0029
Paul Bakker69e095c2011-12-10 21:55:01 +000090 * BASE64 2 0x002A-0x002C
Manuel Pégourié-Gonnard7afdb882014-03-28 16:06:35 +010091 * OID 1 0x002E-0x002E 0x000B-0x000B
Paul Bakker9d781402011-05-09 16:17:09 +000092 * PADLOCK 1 0x0030-0x0030
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010093 * DES 2 0x0032-0x0032 0x0033-0x0033
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010094 * CTR_DBRG 4 0x0034-0x003A
Manuel Pégourié-Gonnard7580ba42015-06-19 10:26:32 +020095 * ENTROPY 3 0x003C-0x0040 0x003D-0x003F
Manuel Pégourié-Gonnard9bd0afd2015-07-01 19:03:27 +020096 * NET 11 0x0042-0x0052 0x0043-0x0045
Paul Bakkerbdb912d2012-02-13 23:11:30 +000097 * ASN1 7 0x0060-0x006C
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010098 * CMAC 1 0x007A-0x007A
Paul Bakkerf518b162012-08-23 13:03:18 +000099 * PBKDF2 1 0x007C-0x007C
Gilles Peskinea381fe82018-01-23 18:16:11 +0100100 * HMAC_DRBG 4 0x0003-0x0009
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100101 * CCM 3 0x000D-0x0011
102 * ARC4 1 0x0019-0x0019
Gilles Peskinea381fe82018-01-23 18:16:11 +0100103 * MD2 1 0x002B-0x002B
104 * MD4 1 0x002D-0x002D
105 * MD5 1 0x002F-0x002F
106 * RIPEMD160 1 0x0031-0x0031
107 * SHA1 1 0x0035-0x0035
108 * SHA256 1 0x0037-0x0037
109 * SHA512 1 0x0039-0x0039
Paul Bakker9d781402011-05-09 16:17:09 +0000110 *
Manuel Pégourié-Gonnard9a6e93e2014-03-11 09:34:02 +0100111 * High-level module nr (3 bits - 0x0...-0x7...)
Paul Bakker0e06c0f2013-08-25 11:21:30 +0200112 * Name ID Nr of Errors
113 * PEM 1 9
114 * PKCS#12 1 4 (Started from top)
Manuel Pégourié-Gonnard31458a12017-06-26 10:11:49 +0200115 * X509 2 20
Manuel Pégourié-Gonnardeed55a42015-04-09 17:31:59 +0200116 * PKCS5 2 4 (Started from top)
Jaeden Amero2acbf172018-01-26 20:57:38 +0000117 * DHM 3 11
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100118 * PK 3 15 (Started from top)
119 * RSA 4 11
120 * ECP 4 9 (Started from top)
121 * MD 5 5
Hanno Beckerd8562b52017-04-12 14:54:42 +0100122 * SSL 5 1 (Started from 0x5E80)
Gilles Peskine7ecab3d2018-01-26 17:56:38 +0100123 * CIPHER 6 8
Manuel Pégourié-Gonnarde2e25e72015-12-03 16:13:17 +0100124 * SSL 6 17 (Started from top)
Paul Bakker0e06c0f2013-08-25 11:21:30 +0200125 * SSL 7 31
Paul Bakker9d781402011-05-09 16:17:09 +0000126 *
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +0100127 * Module dependent error code (5 bits 0x.00.-0x.F8.)
Paul Bakker9d781402011-05-09 16:17:09 +0000128 */
129
Paul Bakkerbcd5db42011-05-20 12:30:59 +0000130#ifdef __cplusplus
131extern "C" {
132#endif
133
Paul Bakker9d781402011-05-09 16:17:09 +0000134/**
Manuel Pégourié-Gonnardb4fe3cb2015-01-22 16:11:05 +0000135 * \brief Translate a mbed TLS error code into a string representation,
Paul Bakker9d781402011-05-09 16:17:09 +0000136 * Result is truncated if necessary and always includes a terminating
137 * null byte.
138 *
139 * \param errnum error code
140 * \param buffer buffer to place representation in
141 * \param buflen length of the buffer
142 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200143void mbedtls_strerror( int errnum, char *buffer, size_t buflen );
Paul Bakkere2ab84f2013-06-29 18:24:32 +0200144
Paul Bakkerbcd5db42011-05-20 12:30:59 +0000145#ifdef __cplusplus
146}
147#endif
148
Paul Bakker9d781402011-05-09 16:17:09 +0000149#endif /* error.h */