Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 1 | /** |
| 2 | * \file error.h |
| 3 | * |
| 4 | * \brief Error to string translation |
| 5 | * |
Manuel Pégourié-Gonnard | 6fb8187 | 2015-07-27 11:11:48 +0200 | [diff] [blame] | 6 | * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved |
Manuel Pégourié-Gonnard | 37ff140 | 2015-09-04 14:21:07 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: Apache-2.0 |
| 8 | * |
| 9 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 10 | * not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
| 12 | * |
| 13 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | * |
| 15 | * Unless required by applicable law or agreed to in writing, software |
| 16 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 17 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | * See the License for the specific language governing permissions and |
| 19 | * limitations under the License. |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 20 | * |
Manuel Pégourié-Gonnard | fe44643 | 2015-03-06 13:17:10 +0000 | [diff] [blame] | 21 | * This file is part of mbed TLS (https://tls.mbed.org) |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 22 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 23 | #ifndef MBEDTLS_ERROR_H |
| 24 | #define MBEDTLS_ERROR_H |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 25 | |
Rich Evans | 00ab470 | 2015-02-06 13:43:58 +0000 | [diff] [blame] | 26 | #include <stddef.h> |
Paul Bakker | 3c2122f | 2013-06-24 19:03:14 +0200 | [diff] [blame] | 27 | |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 28 | /** |
| 29 | * Error code layout. |
| 30 | * |
| 31 | * Currently we try to keep all error codes within the negative space of 16 |
Manuel Pégourié-Gonnard | 7c3b4ab | 2015-07-02 17:59:52 +0200 | [diff] [blame] | 32 | * bits signed integers to support all platforms (-0x0001 - -0x7FFF). In |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 33 | * addition we'd like to give two layers of information on the error if |
| 34 | * possible. |
| 35 | * |
| 36 | * For that purpose the error codes are segmented in the following manner: |
| 37 | * |
| 38 | * 16 bit error code bit-segmentation |
| 39 | * |
Manuel Pégourié-Gonnard | 7c3b4ab | 2015-07-02 17:59:52 +0200 | [diff] [blame] | 40 | * 1 bit - Unused (sign bit) |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 41 | * 3 bits - High level module ID |
| 42 | * 5 bits - Module-dependent error code |
Manuel Pégourié-Gonnard | cf38367 | 2014-02-01 10:22:21 +0100 | [diff] [blame] | 43 | * 7 bits - Low level module errors |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 44 | * |
Manuel Pégourié-Gonnard | cf38367 | 2014-02-01 10:22:21 +0100 | [diff] [blame] | 45 | * For historical reasons, low-level error codes are divided in even and odd, |
Manuel Pégourié-Gonnard | 9a6e93e | 2014-03-11 09:34:02 +0100 | [diff] [blame] | 46 | * even codes were assigned first, and -1 is reserved for other errors. |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 47 | * |
Manuel Pégourié-Gonnard | 9a6e93e | 2014-03-11 09:34:02 +0100 | [diff] [blame] | 48 | * Low-level module errors (0x0002-0x007E, 0x0003-0x007F) |
Manuel Pégourié-Gonnard | cf38367 | 2014-02-01 10:22:21 +0100 | [diff] [blame] | 49 | * |
| 50 | * Module Nr Codes assigned |
Paul Bakker | 69e095c | 2011-12-10 21:55:01 +0000 | [diff] [blame] | 51 | * MPI 7 0x0002-0x0010 |
Paul Bakker | d8ef167 | 2012-04-18 14:17:32 +0000 | [diff] [blame] | 52 | * GCM 2 0x0012-0x0014 |
Paul Bakker | a9379c0 | 2012-07-04 11:02:11 +0000 | [diff] [blame] | 53 | * BLOWFISH 2 0x0016-0x0018 |
Paul Bakker | 2466d93 | 2013-09-28 14:40:38 +0200 | [diff] [blame] | 54 | * THREADING 3 0x001A-0x001E |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 55 | * AES 2 0x0020-0x0022 |
| 56 | * CAMELLIA 2 0x0024-0x0026 |
| 57 | * XTEA 1 0x0028-0x0028 |
Paul Bakker | 69e095c | 2011-12-10 21:55:01 +0000 | [diff] [blame] | 58 | * BASE64 2 0x002A-0x002C |
Manuel Pégourié-Gonnard | 7afdb88 | 2014-03-28 16:06:35 +0100 | [diff] [blame] | 59 | * OID 1 0x002E-0x002E 0x000B-0x000B |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 60 | * PADLOCK 1 0x0030-0x0030 |
| 61 | * DES 1 0x0032-0x0032 |
Manuel Pégourié-Gonnard | cf38367 | 2014-02-01 10:22:21 +0100 | [diff] [blame] | 62 | * CTR_DBRG 4 0x0034-0x003A |
Manuel Pégourié-Gonnard | 7580ba4 | 2015-06-19 10:26:32 +0200 | [diff] [blame] | 63 | * ENTROPY 3 0x003C-0x0040 0x003D-0x003F |
Manuel Pégourié-Gonnard | 9bd0afd | 2015-07-01 19:03:27 +0200 | [diff] [blame] | 64 | * NET 11 0x0042-0x0052 0x0043-0x0045 |
Paul Bakker | bdb912d | 2012-02-13 23:11:30 +0000 | [diff] [blame] | 65 | * ASN1 7 0x0060-0x006C |
Paul Bakker | f518b16 | 2012-08-23 13:03:18 +0000 | [diff] [blame] | 66 | * PBKDF2 1 0x007C-0x007C |
Manuel Pégourié-Gonnard | 9a6e93e | 2014-03-11 09:34:02 +0100 | [diff] [blame] | 67 | * HMAC_DRBG 4 0x0003-0x0009 |
Manuel Pégourié-Gonnard | a6916fa | 2014-05-02 15:17:29 +0200 | [diff] [blame] | 68 | * CCM 2 0x000D-0x000F |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 69 | * |
Manuel Pégourié-Gonnard | 9a6e93e | 2014-03-11 09:34:02 +0100 | [diff] [blame] | 70 | * High-level module nr (3 bits - 0x0...-0x7...) |
Paul Bakker | 0e06c0f | 2013-08-25 11:21:30 +0200 | [diff] [blame] | 71 | * Name ID Nr of Errors |
| 72 | * PEM 1 9 |
| 73 | * PKCS#12 1 4 (Started from top) |
Manuel Pégourié-Gonnard | 31458a1 | 2017-06-26 10:11:49 +0200 | [diff] [blame] | 74 | * X509 2 20 |
Manuel Pégourié-Gonnard | eed55a4 | 2015-04-09 17:31:59 +0200 | [diff] [blame] | 75 | * PKCS5 2 4 (Started from top) |
Paul Bakker | 40ce79f | 2013-09-15 17:43:54 +0200 | [diff] [blame] | 76 | * DHM 3 9 |
Manuel Pégourié-Gonnard | eed55a4 | 2015-04-09 17:31:59 +0200 | [diff] [blame] | 77 | * PK 3 14 (Started from top) |
Gilles Peskine | 86ffd80 | 2017-12-10 20:04:13 +0100 | [diff] [blame^] | 78 | * RSA 4 10 |
Manuel Pégourié-Gonnard | 35e95dd | 2014-04-08 12:17:41 +0200 | [diff] [blame] | 79 | * ECP 4 8 (Started from top) |
Paul Bakker | 0e06c0f | 2013-08-25 11:21:30 +0200 | [diff] [blame] | 80 | * MD 5 4 |
Manuel Pégourié-Gonnard | 4fee79b | 2013-09-19 18:09:14 +0200 | [diff] [blame] | 81 | * CIPHER 6 6 |
Manuel Pégourié-Gonnard | e2e25e7 | 2015-12-03 16:13:17 +0100 | [diff] [blame] | 82 | * SSL 6 17 (Started from top) |
Paul Bakker | 0e06c0f | 2013-08-25 11:21:30 +0200 | [diff] [blame] | 83 | * SSL 7 31 |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 84 | * |
Manuel Pégourié-Gonnard | cf38367 | 2014-02-01 10:22:21 +0100 | [diff] [blame] | 85 | * Module dependent error code (5 bits 0x.00.-0x.F8.) |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 86 | */ |
| 87 | |
Paul Bakker | bcd5db4 | 2011-05-20 12:30:59 +0000 | [diff] [blame] | 88 | #ifdef __cplusplus |
| 89 | extern "C" { |
| 90 | #endif |
| 91 | |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 92 | /** |
Manuel Pégourié-Gonnard | b4fe3cb | 2015-01-22 16:11:05 +0000 | [diff] [blame] | 93 | * \brief Translate a mbed TLS error code into a string representation, |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 94 | * Result is truncated if necessary and always includes a terminating |
| 95 | * null byte. |
| 96 | * |
| 97 | * \param errnum error code |
| 98 | * \param buffer buffer to place representation in |
| 99 | * \param buflen length of the buffer |
| 100 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 101 | void mbedtls_strerror( int errnum, char *buffer, size_t buflen ); |
Paul Bakker | e2ab84f | 2013-06-29 18:24:32 +0200 | [diff] [blame] | 102 | |
Paul Bakker | bcd5db4 | 2011-05-20 12:30:59 +0000 | [diff] [blame] | 103 | #ifdef __cplusplus |
| 104 | } |
| 105 | #endif |
| 106 | |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 107 | #endif /* error.h */ |