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 | * |
| 6 | * Copyright (C) 2006-2010, Brainspark B.V. |
| 7 | * |
| 8 | * This file is part of PolarSSL (http://www.polarssl.org) |
| 9 | * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org> |
| 10 | * |
| 11 | * All rights reserved. |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU General Public License as published by |
| 15 | * the Free Software Foundation; either version 2 of the License, or |
| 16 | * (at your option) any later version. |
| 17 | * |
| 18 | * This program is distributed in the hope that it will be useful, |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 21 | * GNU General Public License for more details. |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License along |
| 24 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 25 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 26 | */ |
| 27 | #ifndef POLARSSL_ERROR_H |
| 28 | #define POLARSSL_ERROR_H |
| 29 | |
| 30 | /** |
| 31 | * Error code layout. |
| 32 | * |
| 33 | * Currently we try to keep all error codes within the negative space of 16 |
| 34 | * bytes signed integers to support all platforms (-0x0000 - -0x8000). In |
| 35 | * addition we'd like to give two layers of information on the error if |
| 36 | * possible. |
| 37 | * |
| 38 | * For that purpose the error codes are segmented in the following manner: |
| 39 | * |
| 40 | * 16 bit error code bit-segmentation |
| 41 | * |
| 42 | * 1 bit - Intentionally not used |
| 43 | * 3 bits - High level module ID |
| 44 | * 5 bits - Module-dependent error code |
| 45 | * 6 bits - Low level module errors |
| 46 | * 1 bit - Intentionally not used |
| 47 | * |
| 48 | * Low-level module errors (0x007E-0x0002) |
| 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 | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 53 | * AES 2 0x0020-0x0022 |
| 54 | * CAMELLIA 2 0x0024-0x0026 |
| 55 | * XTEA 1 0x0028-0x0028 |
Paul Bakker | 69e095c | 2011-12-10 21:55:01 +0000 | [diff] [blame] | 56 | * BASE64 2 0x002A-0x002C |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 57 | * PADLOCK 1 0x0030-0x0030 |
| 58 | * DES 1 0x0032-0x0032 |
Paul Bakker | 69e095c | 2011-12-10 21:55:01 +0000 | [diff] [blame] | 59 | * CTR_DBRG 3 0x0034-0x003A |
Paul Bakker | 43655f4 | 2011-12-15 20:11:16 +0000 | [diff] [blame] | 60 | * ENTROPY 3 0x003C-0x0040 |
Paul Bakker | bdb912d | 2012-02-13 23:11:30 +0000 | [diff] [blame] | 61 | * NET 11 0x0042-0x0056 |
| 62 | * ASN1 7 0x0060-0x006C |
Paul Bakker | 69e095c | 2011-12-10 21:55:01 +0000 | [diff] [blame] | 63 | * MD2 1 0x0070-0x0070 |
| 64 | * MD4 1 0x0072-0x0072 |
| 65 | * MD5 1 0x0074-0x0074 |
| 66 | * SHA1 1 0x0076-0x0076 |
| 67 | * SHA2 1 0x0078-0x0078 |
| 68 | * SHA4 1 0x007A-0x007A |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 69 | * |
| 70 | * High-level module nr (3 bits - 0x1...-0x8...) |
| 71 | * Name ID Nr of Errors |
| 72 | * PEM 1 8 |
Paul Bakker | 69e095c | 2011-12-10 21:55:01 +0000 | [diff] [blame] | 73 | * X509 2 21 |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 74 | * DHM 3 6 |
| 75 | * RSA 4 9 |
Paul Bakker | 8913f82 | 2012-01-14 18:07:41 +0000 | [diff] [blame] | 76 | * MD 5 4 |
| 77 | * CIPHER 6 5 |
Paul Bakker | 05ef835 | 2012-05-08 09:17:57 +0000 | [diff] [blame] | 78 | * SSL 6 1 (Started from top) |
| 79 | * SSL 7 31 |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 80 | * |
| 81 | * Module dependent error code (5 bits 0x.08.-0x.F8.) |
| 82 | */ |
| 83 | |
Paul Bakker | bcd5db4 | 2011-05-20 12:30:59 +0000 | [diff] [blame] | 84 | #ifdef __cplusplus |
| 85 | extern "C" { |
| 86 | #endif |
| 87 | |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 88 | /** |
| 89 | * \brief Translate a PolarSSL error code into a string representation, |
| 90 | * Result is truncated if necessary and always includes a terminating |
| 91 | * null byte. |
| 92 | * |
| 93 | * \param errnum error code |
| 94 | * \param buffer buffer to place representation in |
| 95 | * \param buflen length of the buffer |
| 96 | */ |
| 97 | void error_strerror( int errnum, char *buffer, size_t buflen ); |
| 98 | |
Paul Bakker | bcd5db4 | 2011-05-20 12:30:59 +0000 | [diff] [blame] | 99 | #ifdef __cplusplus |
| 100 | } |
| 101 | #endif |
| 102 | |
Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 103 | #endif /* error.h */ |