blob: d101dee3aecc31df87cc3d1d98ef58eae29b2903 [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úti1e148272020-08-07 13:07:28 +02007 * Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +00008 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Paul Bakker9d781402011-05-09 16:17:09 +00009 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020010#ifndef MBEDTLS_ERROR_H
11#define MBEDTLS_ERROR_H
Paul Bakker9d781402011-05-09 16:17:09 +000012
Bence Szépkútic662b362021-05-27 11:25:03 +020013#include "mbedtls/build_info.h"
Ron Eldor9cbd1b22018-12-16 12:14:37 +020014
Rich Evans00ab4702015-02-06 13:43:58 +000015#include <stddef.h>
Paul Bakker3c2122f2013-06-24 19:03:14 +020016
Paul Bakker9d781402011-05-09 16:17:09 +000017/**
18 * Error code layout.
19 *
20 * Currently we try to keep all error codes within the negative space of 16
Manuel Pégourié-Gonnard7c3b4ab2015-07-02 17:59:52 +020021 * bits signed integers to support all platforms (-0x0001 - -0x7FFF). In
Paul Bakker9d781402011-05-09 16:17:09 +000022 * addition we'd like to give two layers of information on the error if
23 * possible.
24 *
25 * For that purpose the error codes are segmented in the following manner:
26 *
27 * 16 bit error code bit-segmentation
28 *
Manuel Pégourié-Gonnard7c3b4ab2015-07-02 17:59:52 +020029 * 1 bit - Unused (sign bit)
Paul Bakker9d781402011-05-09 16:17:09 +000030 * 3 bits - High level module ID
31 * 5 bits - Module-dependent error code
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010032 * 7 bits - Low level module errors
Paul Bakker9d781402011-05-09 16:17:09 +000033 *
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010034 * For historical reasons, low-level error codes are divided in even and odd,
Manuel Pégourié-Gonnard9a6e93e2014-03-11 09:34:02 +010035 * even codes were assigned first, and -1 is reserved for other errors.
Paul Bakker9d781402011-05-09 16:17:09 +000036 *
Janos Follath2d205672019-12-03 15:55:56 +000037 * Low-level module errors (0x0002-0x007E, 0x0001-0x007F)
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010038 *
39 * Module Nr Codes assigned
Janos Follath2d205672019-12-03 15:55:56 +000040 * ERROR 2 0x006E 0x0001
Paul Bakker69e095c2011-12-10 21:55:01 +000041 * MPI 7 0x0002-0x0010
Mateusz Starzyk30bd7fa2021-10-22 10:33:25 +020042 * GCM 3 0x0012-0x0016 0x0013-0x0013
Paul Bakker2466d932013-09-28 14:40:38 +020043 * THREADING 3 0x001A-0x001E
Mohammad Azim Khane5b5bd72017-11-24 10:52:51 +000044 * AES 5 0x0020-0x0022 0x0021-0x0025
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010045 * CAMELLIA 3 0x0024-0x0026 0x0027-0x0027
Paul Bakker69e095c2011-12-10 21:55:01 +000046 * BASE64 2 0x002A-0x002C
Manuel Pégourié-Gonnard7afdb882014-03-28 16:06:35 +010047 * OID 1 0x002E-0x002E 0x000B-0x000B
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010048 * DES 2 0x0032-0x0032 0x0033-0x0033
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010049 * CTR_DBRG 4 0x0034-0x003A
Manuel Pégourié-Gonnard7580ba42015-06-19 10:26:32 +020050 * ENTROPY 3 0x003C-0x0040 0x003D-0x003F
Manuel Pégourié-Gonnard3798b6b2018-05-24 13:27:45 +020051 * NET 13 0x0042-0x0052 0x0043-0x0049
Manuel Pégourié-Gonnard3c800092018-03-01 09:02:16 +010052 * ARIA 4 0x0058-0x005E
Paul Bakkerbdb912d2012-02-13 23:11:30 +000053 * ASN1 7 0x0060-0x006C
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010054 * CMAC 1 0x007A-0x007A
Paul Bakkerf518b162012-08-23 13:03:18 +000055 * PBKDF2 1 0x007C-0x007C
Gilles Peskinea381fe82018-01-23 18:16:11 +010056 * HMAC_DRBG 4 0x0003-0x0009
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010057 * CCM 3 0x000D-0x0011
Gilles Peskinea381fe82018-01-23 18:16:11 +010058 * MD5 1 0x002F-0x002F
59 * RIPEMD160 1 0x0031-0x0031
Andres Amaya Garciaa685d4f2018-12-09 19:13:01 +000060 * SHA1 1 0x0035-0x0035 0x0073-0x0073
Andres Amaya Garcia79e593f2018-12-09 20:41:20 +000061 * SHA256 1 0x0037-0x0037 0x0074-0x0074
Andres Amaya Garciaba519b92018-12-09 20:58:36 +000062 * SHA512 1 0x0039-0x0039 0x0075-0x0075
Pol Henarejos90f360e2022-05-17 11:33:43 +020063 * SHA-3 1 0x0076-0x0076
Manuel Pégourié-Gonnard3798b6b2018-05-24 13:27:45 +020064 * CHACHA20 3 0x0051-0x0055
65 * POLY1305 3 0x0057-0x005B
66 * CHACHAPOLY 2 0x0054-0x0056
Janos Follathab534cf2019-12-03 15:52:31 +000067 * PLATFORM 2 0x0070-0x0072
Raef Colesc8f96042022-08-25 13:49:54 +010068 * LMS 5 0x0011-0x0019
Paul Bakker9d781402011-05-09 16:17:09 +000069 *
Manuel Pégourié-Gonnard9a6e93e2014-03-11 09:34:02 +010070 * High-level module nr (3 bits - 0x0...-0x7...)
Paul Bakker0e06c0f2013-08-25 11:21:30 +020071 * Name ID Nr of Errors
72 * PEM 1 9
73 * PKCS#12 1 4 (Started from top)
Manuel Pégourié-Gonnard31458a12017-06-26 10:11:49 +020074 * X509 2 20
Manuel Pégourié-Gonnardeed55a42015-04-09 17:31:59 +020075 * PKCS5 2 4 (Started from top)
Jaeden Amero2acbf172018-01-26 20:57:38 +000076 * DHM 3 11
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010077 * PK 3 15 (Started from top)
78 * RSA 4 11
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +020079 * ECP 4 10 (Started from top)
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010080 * MD 5 5
Thomas Fossati656864b2016-07-17 08:51:22 +010081 * HKDF 5 1 (Started from top)
Nayna Jainc9deb182020-11-16 19:03:12 +000082 * PKCS7 5 12 (Started from 0x5300)
Hanno Beckerb4c0b752017-04-12 14:54:42 +010083 * SSL 5 2 (Started from 0x5F00)
Hanno Beckerc37c96a2019-05-14 11:02:36 +010084 * CIPHER 6 8 (Started from 0x6080)
Dave Rodgmanc628fc92021-06-29 14:32:46 +010085 * SSL 6 22 (Started from top, plus 0x6000)
86 * SSL 7 20 (Started from 0x7000, gaps at
Dave Rodgman03edc862021-06-29 11:06:18 +010087 * 0x7380, 0x7900-0x7980, 0x7A80-0x7E80)
Paul Bakker9d781402011-05-09 16:17:09 +000088 *
Manuel Pégourié-Gonnardcf383672014-02-01 10:22:21 +010089 * Module dependent error code (5 bits 0x.00.-0x.F8.)
Paul Bakker9d781402011-05-09 16:17:09 +000090 */
91
Paul Bakkerbcd5db42011-05-20 12:30:59 +000092#ifdef __cplusplus
93extern "C" {
94#endif
95
Gilles Peskined2971572021-07-26 18:48:10 +020096/** Generic error */
97#define MBEDTLS_ERR_ERROR_GENERIC_ERROR -0x0001
98/** This is a bug in the library */
99#define MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED -0x006E
Janos Follath2d205672019-12-03 15:55:56 +0000100
Gilles Peskined2971572021-07-26 18:48:10 +0200101/** Hardware accelerator failed */
102#define MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED -0x0070
103/** The requested feature is not supported by the platform */
104#define MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED -0x0072
TRodziewicz33946bb2021-04-21 11:58:20 +0200105
Paul Bakker9d781402011-05-09 16:17:09 +0000106/**
Chris Jones74392092021-04-01 16:00:01 +0100107 * \brief Combines a high-level and low-level error code together.
Chris Jonesd86ad602021-01-29 15:47:47 +0000108 *
Chris Jones456d29c2021-04-23 09:24:05 +0100109 * Wrapper macro for mbedtls_error_add(). See that function for
Chris Jones74392092021-04-01 16:00:01 +0100110 * more details.
Chris Jonesd86ad602021-01-29 15:47:47 +0000111 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100112#define MBEDTLS_ERROR_ADD(high, low) \
113 mbedtls_error_add(high, low, __FILE__, __LINE__)
Chris Jones74392092021-04-01 16:00:01 +0100114
Chris Jonesef018522021-04-12 17:27:18 +0100115#if defined(MBEDTLS_TEST_HOOKS)
Chris Jones74392092021-04-01 16:00:01 +0100116/**
117 * \brief Testing hook called before adding/combining two error codes together.
118 * Only used when invasive testing is enabled via MBEDTLS_TEST_HOOKS.
119 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100120extern void (*mbedtls_test_hook_error_add)(int, int, const char *, int);
Chris Jonesef018522021-04-12 17:27:18 +0100121#endif
Chris Jones74392092021-04-01 16:00:01 +0100122
123/**
124 * \brief Combines a high-level and low-level error code together.
125 *
126 * This function can be called directly however it is usually
Chris Jonesabded0e2021-04-12 15:44:47 +0100127 * called via the #MBEDTLS_ERROR_ADD macro.
Chris Jones74392092021-04-01 16:00:01 +0100128 *
Chris Jonesabded0e2021-04-12 15:44:47 +0100129 * While a value of zero is not a negative error code, it is still an
130 * error code (that denotes success) and can be combined with both a
131 * negative error code or another value of zero.
132 *
133 * \note When invasive testing is enabled via #MBEDTLS_TEST_HOOKS, also try to
134 * call \link mbedtls_test_hook_error_add \endlink.
Chris Jones74392092021-04-01 16:00:01 +0100135 *
136 * \param high high-level error code. See error.h for more details.
137 * \param low low-level error code. See error.h for more details.
Tobias Nießen1e8ca122021-05-10 19:53:15 +0200138 * \param file file where this error code addition occurred.
139 * \param line line where this error code addition occurred.
Chris Jones74392092021-04-01 16:00:01 +0100140 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100141static inline int mbedtls_error_add(int high, int low,
142 const char *file, int line)
Chris Jones74392092021-04-01 16:00:01 +0100143{
144#if defined(MBEDTLS_TEST_HOOKS)
Gilles Peskine449bd832023-01-11 14:50:10 +0100145 if (*mbedtls_test_hook_error_add != NULL) {
146 (*mbedtls_test_hook_error_add)(high, low, file, line);
147 }
Chris Jones74392092021-04-01 16:00:01 +0100148#endif
Gilles Peskine449bd832023-01-11 14:50:10 +0100149 (void) file;
150 (void) line;
Chris Jonesb7d02e02021-04-01 17:40:03 +0100151
Gilles Peskine449bd832023-01-11 14:50:10 +0100152 return high + low;
Chris Jones74392092021-04-01 16:00:01 +0100153}
Chris Jonesef180af2021-01-26 17:50:48 +0000154
Paul Bakker9d781402011-05-09 16:17:09 +0000155/**
Gilles Peskine2e38a0d2023-09-12 19:19:31 +0200156 * \brief Translate an Mbed TLS error code into a string representation.
157 * The result is truncated if necessary and always includes a
158 * terminating null byte.
Paul Bakker9d781402011-05-09 16:17:09 +0000159 *
160 * \param errnum error code
161 * \param buffer buffer to place representation in
162 * \param buflen length of the buffer
163 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100164void mbedtls_strerror(int errnum, char *buffer, size_t buflen);
Paul Bakkere2ab84f2013-06-29 18:24:32 +0200165
Gaurav Aggarwala9f64002020-04-09 01:44:52 -0700166/**
Gaurav Aggarwal6ea4fc72020-04-20 16:03:46 -0700167 * \brief Translate the high-level part of an Mbed TLS error code into a string
Gaurav Aggarwala9f64002020-04-09 01:44:52 -0700168 * representation.
169 *
170 * This function returns a const pointer to an un-modifiable string. The caller
Gaurav Aggarwal6ea4fc72020-04-20 16:03:46 -0700171 * must not try to modify the string. It is intended to be used mostly for
172 * logging purposes.
Gaurav Aggarwala9f64002020-04-09 01:44:52 -0700173 *
174 * \param error_code error code
175 *
Gaurav Aggarwal6ea4fc72020-04-20 16:03:46 -0700176 * \return The string representation of the error code, or \c NULL if the error
177 * code is unknown.
Gaurav Aggarwala9f64002020-04-09 01:44:52 -0700178 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100179const char *mbedtls_high_level_strerr(int error_code);
Gaurav Aggarwala9f64002020-04-09 01:44:52 -0700180
181/**
Gaurav Aggarwal6ea4fc72020-04-20 16:03:46 -0700182 * \brief Translate the low-level part of an Mbed TLS error code into a string
Gaurav Aggarwala9f64002020-04-09 01:44:52 -0700183 * representation.
184 *
185 * This function returns a const pointer to an un-modifiable string. The caller
Gaurav Aggarwal6ea4fc72020-04-20 16:03:46 -0700186 * must not try to modify the string. It is intended to be used mostly for
187 * logging purposes.
Gaurav Aggarwala9f64002020-04-09 01:44:52 -0700188 *
189 * \param error_code error code
190 *
Gaurav Aggarwal6ea4fc72020-04-20 16:03:46 -0700191 * \return The string representation of the error code, or \c NULL if the error
192 * code is unknown.
Gaurav Aggarwala9f64002020-04-09 01:44:52 -0700193 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100194const char *mbedtls_low_level_strerr(int error_code);
Gaurav Aggarwala9f64002020-04-09 01:44:52 -0700195
Paul Bakkerbcd5db42011-05-20 12:30:59 +0000196#ifdef __cplusplus
197}
198#endif
199
Paul Bakker9d781402011-05-09 16:17:09 +0000200#endif /* error.h */