| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1 | /** | 
|  | 2 | * \file debug.h | 
| Paul Bakker | e0ccd0a | 2009-01-04 16:27:10 +0000 | [diff] [blame] | 3 | * | 
| Paul Bakker | 37ca75d | 2011-01-06 12:28:03 +0000 | [diff] [blame] | 4 | * \brief Debug functions | 
|  | 5 | * | 
| Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 6 | *  Copyright (C) 2006-2011, Brainspark B.V. | 
| Paul Bakker | b96f154 | 2010-07-18 20:36:00 +0000 | [diff] [blame] | 7 | * | 
|  | 8 | *  This file is part of PolarSSL (http://www.polarssl.org) | 
| Paul Bakker | 84f12b7 | 2010-07-18 10:13:04 +0000 | [diff] [blame] | 9 | *  Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org> | 
| Paul Bakker | b96f154 | 2010-07-18 20:36:00 +0000 | [diff] [blame] | 10 | * | 
| Paul Bakker | 77b385e | 2009-07-28 17:23:11 +0000 | [diff] [blame] | 11 | *  All rights reserved. | 
| Paul Bakker | e0ccd0a | 2009-01-04 16:27:10 +0000 | [diff] [blame] | 12 | * | 
| Paul Bakker | e0ccd0a | 2009-01-04 16:27:10 +0000 | [diff] [blame] | 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. | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 26 | */ | 
| Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 27 | #ifndef POLARSSL_DEBUG_H | 
|  | 28 | #define POLARSSL_DEBUG_H | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 29 |  | 
| Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 30 | #if !defined(POLARSSL_CONFIG_FILE) | 
| Paul Bakker | 314052f | 2011-08-15 09:07:52 +0000 | [diff] [blame] | 31 | #include "config.h" | 
| Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 32 | #else | 
|  | 33 | #include POLARSSL_CONFIG_FILE | 
|  | 34 | #endif | 
| Paul Bakker | 314052f | 2011-08-15 09:07:52 +0000 | [diff] [blame] | 35 | #include "ssl.h" | 
| Paul Bakker | 41c83d3 | 2013-03-20 14:39:14 +0100 | [diff] [blame] | 36 | #if defined(POLARSSL_ECP_C) | 
|  | 37 | #include "ecp.h" | 
|  | 38 | #endif | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 39 |  | 
| Paul Bakker | 1504af5 | 2012-02-11 16:17:43 +0000 | [diff] [blame] | 40 | #if defined(POLARSSL_DEBUG_C) | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 41 |  | 
| Paul Bakker | eaebbd5 | 2014-04-25 15:04:14 +0200 | [diff] [blame] | 42 | #define POLARSSL_DEBUG_LOG_FULL         0 /**< Include file:line in log lines */ | 
|  | 43 | #define POLARSSL_DEBUG_LOG_RAW          1 /**< Only log raw debug lines */ | 
|  | 44 |  | 
|  | 45 | /** | 
|  | 46 | * \name SECTION: Module settings | 
|  | 47 | * | 
|  | 48 | * The configuration options you can set for this module are in this section. | 
|  | 49 | * Either change them in config.h or define them on the compiler command line. | 
|  | 50 | * \{ | 
|  | 51 | */ | 
|  | 52 |  | 
|  | 53 | #if !defined(POLARSSL_DEBUG_DFL_MODE) | 
|  | 54 | #define POLARSSL_DEBUG_DFL_MODE POLARSSL_DEBUG_LOG_FULL /**< Default log: Full or Raw */ | 
|  | 55 | #endif | 
|  | 56 |  | 
|  | 57 | /* \} name SECTION: Module settings */ | 
|  | 58 |  | 
| Paul Bakker | eaebbd5 | 2014-04-25 15:04:14 +0200 | [diff] [blame] | 59 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 60 | #define SSL_DEBUG_MSG( level, args )                    \ | 
|  | 61 | debug_print_msg( ssl, level, __FILE__, __LINE__, debug_fmt args ); | 
|  | 62 |  | 
|  | 63 | #define SSL_DEBUG_RET( level, text, ret )                \ | 
|  | 64 | debug_print_ret( ssl, level, __FILE__, __LINE__, text, ret ); | 
|  | 65 |  | 
|  | 66 | #define SSL_DEBUG_BUF( level, text, buf, len )           \ | 
|  | 67 | debug_print_buf( ssl, level, __FILE__, __LINE__, text, buf, len ); | 
|  | 68 |  | 
| Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 69 | #if defined(POLARSSL_BIGNUM_C) | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 70 | #define SSL_DEBUG_MPI( level, text, X )                  \ | 
|  | 71 | debug_print_mpi( ssl, level, __FILE__, __LINE__, text, X ); | 
| Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 72 | #endif | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 73 |  | 
| Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 74 | #if defined(POLARSSL_ECP_C) | 
| Paul Bakker | 41c83d3 | 2013-03-20 14:39:14 +0100 | [diff] [blame] | 75 | #define SSL_DEBUG_ECP( level, text, X )                  \ | 
|  | 76 | debug_print_ecp( ssl, level, __FILE__, __LINE__, text, X ); | 
| Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 77 | #endif | 
| Paul Bakker | 41c83d3 | 2013-03-20 14:39:14 +0100 | [diff] [blame] | 78 |  | 
| Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 79 | #if defined(POLARSSL_X509_CRT_PARSE_C) | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 80 | #define SSL_DEBUG_CRT( level, text, crt )                \ | 
|  | 81 | debug_print_crt( ssl, level, __FILE__, __LINE__, text, crt ); | 
| Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 82 | #endif | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 83 |  | 
| Paul Bakker | 9af723c | 2014-05-01 13:03:14 +0200 | [diff] [blame] | 84 | #else /* POLARSSL_DEBUG_C */ | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 85 |  | 
|  | 86 | #define SSL_DEBUG_MSG( level, args )            do { } while( 0 ) | 
|  | 87 | #define SSL_DEBUG_RET( level, text, ret )       do { } while( 0 ) | 
|  | 88 | #define SSL_DEBUG_BUF( level, text, buf, len )  do { } while( 0 ) | 
|  | 89 | #define SSL_DEBUG_MPI( level, text, X )         do { } while( 0 ) | 
| Paul Bakker | 41c83d3 | 2013-03-20 14:39:14 +0100 | [diff] [blame] | 90 | #define SSL_DEBUG_ECP( level, text, X )         do { } while( 0 ) | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 91 | #define SSL_DEBUG_CRT( level, text, crt )       do { } while( 0 ) | 
|  | 92 |  | 
| Paul Bakker | 9af723c | 2014-05-01 13:03:14 +0200 | [diff] [blame] | 93 | #endif /* POLARSSL_DEBUG_C */ | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 94 |  | 
|  | 95 | #ifdef __cplusplus | 
|  | 96 | extern "C" { | 
|  | 97 | #endif | 
|  | 98 |  | 
| Paul Bakker | c73079a | 2014-04-25 16:34:30 +0200 | [diff] [blame] | 99 | /** | 
|  | 100 | * \brief   Set the log mode for the debug functions globally | 
|  | 101 | *          (Default value: POLARSSL_DEBUG_DFL_MODE) | 
|  | 102 | * | 
|  | 103 | * \param log_mode      The log mode to use (POLARSSL_DEBUG_LOG_FULL or | 
|  | 104 | *                                           POLARSSL_DEBUG_LOG_RAW) | 
|  | 105 | */ | 
|  | 106 | void debug_set_log_mode( int log_mode ); | 
|  | 107 |  | 
|  | 108 | /** | 
|  | 109 | * \brief   Set the level threshold to handle globally. Messages that have a | 
|  | 110 | *          level over the threshold value are ignored. | 
|  | 111 | *          (Default value: 0 (No debug)) | 
|  | 112 | * | 
|  | 113 | * \param threshold     maximum level of messages to pass on | 
|  | 114 | */ | 
|  | 115 | void debug_set_threshold( int threshold ); | 
|  | 116 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 117 | char *debug_fmt( const char *format, ... ); | 
|  | 118 |  | 
| Paul Bakker | ff60ee6 | 2010-03-16 21:09:09 +0000 | [diff] [blame] | 119 | void debug_print_msg( const ssl_context *ssl, int level, | 
|  | 120 | const char *file, int line, const char *text ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 121 |  | 
| Paul Bakker | ff60ee6 | 2010-03-16 21:09:09 +0000 | [diff] [blame] | 122 | void debug_print_ret( const ssl_context *ssl, int level, | 
|  | 123 | const char *file, int line, | 
|  | 124 | const char *text, int ret ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 125 |  | 
| Paul Bakker | ff60ee6 | 2010-03-16 21:09:09 +0000 | [diff] [blame] | 126 | void debug_print_buf( const ssl_context *ssl, int level, | 
|  | 127 | const char *file, int line, const char *text, | 
| Paul Bakker | 23986e5 | 2011-04-24 08:57:21 +0000 | [diff] [blame] | 128 | unsigned char *buf, size_t len ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 129 |  | 
| Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 130 | #if defined(POLARSSL_BIGNUM_C) | 
| Paul Bakker | ff60ee6 | 2010-03-16 21:09:09 +0000 | [diff] [blame] | 131 | void debug_print_mpi( const ssl_context *ssl, int level, | 
|  | 132 | const char *file, int line, | 
|  | 133 | const char *text, const mpi *X ); | 
| Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 134 | #endif | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 135 |  | 
| Paul Bakker | 41c83d3 | 2013-03-20 14:39:14 +0100 | [diff] [blame] | 136 | #if defined(POLARSSL_ECP_C) | 
|  | 137 | void debug_print_ecp( const ssl_context *ssl, int level, | 
|  | 138 | const char *file, int line, | 
|  | 139 | const char *text, const ecp_point *X ); | 
|  | 140 | #endif | 
|  | 141 |  | 
| Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 142 | #if defined(POLARSSL_X509_CRT_PARSE_C) | 
| Paul Bakker | ff60ee6 | 2010-03-16 21:09:09 +0000 | [diff] [blame] | 143 | void debug_print_crt( const ssl_context *ssl, int level, | 
|  | 144 | const char *file, int line, | 
| Paul Bakker | c559c7a | 2013-09-18 14:13:26 +0200 | [diff] [blame] | 145 | const char *text, const x509_crt *crt ); | 
| Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 146 | #endif | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 147 |  | 
|  | 148 | #ifdef __cplusplus | 
|  | 149 | } | 
|  | 150 | #endif | 
|  | 151 |  | 
|  | 152 | #endif /* debug.h */ |