blob: c3384be359327cf560c53e2d2077b7a84e05b65d [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * Debugging routines
3 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Paul Bakker5121ce52009-01-03 21:22:43 +000018 */
19
Gilles Peskinedb09ef62020-06-03 01:43:33 +020020#include "common.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000021
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#if defined(MBEDTLS_DEBUG_C)
Paul Bakker5121ce52009-01-03 21:22:43 +000023
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020024#if defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000025#include "mbedtls/platform.h"
Rich Evans2387c7d2015-01-30 11:10:20 +000026#else
Manuel Pégourié-Gonnardd23f5932015-06-23 12:04:52 +020027#include <stdlib.h>
28#define mbedtls_calloc calloc
29#define mbedtls_free free
SimonBd5800b72016-04-26 07:43:27 +010030#define mbedtls_time_t time_t
Manuel Pégourié-Gonnardd23f5932015-06-23 12:04:52 +020031#define mbedtls_snprintf snprintf
k-stachowiak723f8672018-07-16 14:27:07 +020032#define mbedtls_vsnprintf vsnprintf
Rich Evans2387c7d2015-01-30 11:10:20 +000033#endif
34
SimonBd5800b72016-04-26 07:43:27 +010035#include "mbedtls/debug.h"
Janos Follath73c616b2019-12-18 15:07:04 +000036#include "mbedtls/error.h"
SimonBd5800b72016-04-26 07:43:27 +010037
38#include <stdarg.h>
39#include <stdio.h>
40#include <string.h>
41
Manuel Pégourié-Gonnard0223ab92015-10-05 11:40:01 +010042#if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \
43 !defined(inline) && !defined(__cplusplus)
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +020044#define inline __inline
45#endif
46
Manuel Pégourié-Gonnardd23f5932015-06-23 12:04:52 +020047#define DEBUG_BUF_SIZE 512
48
Paul Bakkerc73079a2014-04-25 16:34:30 +020049static int debug_threshold = 0;
Paul Bakkereaebbd52014-04-25 15:04:14 +020050
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020051void mbedtls_debug_set_threshold( int threshold )
Paul Bakkerc73079a2014-04-25 16:34:30 +020052{
53 debug_threshold = threshold;
54}
55
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +020056/*
57 * All calls to f_dbg must be made via this function
58 */
59static inline void debug_send_line( const mbedtls_ssl_context *ssl, int level,
60 const char *file, int line,
61 const char *str )
62{
63 /*
64 * If in a threaded environment, we need a thread identifier.
65 * Since there is no portable way to get one, use the address of the ssl
66 * context instead, as it shouldn't be shared between threads.
67 */
68#if defined(MBEDTLS_THREADING_C)
69 char idstr[20 + DEBUG_BUF_SIZE]; /* 0x + 16 nibbles + ': ' */
Simon Butcher097618b2016-11-10 17:28:55 +000070 mbedtls_snprintf( idstr, sizeof( idstr ), "%p: %s", (void*)ssl, str );
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +020071 ssl->conf->f_dbg( ssl->conf->p_dbg, level, file, line, idstr );
72#else
73 ssl->conf->f_dbg( ssl->conf->p_dbg, level, file, line, str );
74#endif
75}
76
Manuel Pégourié-Gonnarda16e7c42015-06-29 20:14:19 +020077void mbedtls_debug_print_msg( const mbedtls_ssl_context *ssl, int level,
Manuel Pégourié-Gonnardb74c2452015-06-29 20:08:23 +020078 const char *file, int line,
79 const char *format, ... )
Paul Bakker5121ce52009-01-03 21:22:43 +000080{
81 va_list argp;
Manuel Pégourié-Gonnardb74c2452015-06-29 20:08:23 +020082 char str[DEBUG_BUF_SIZE];
Janos Follath865b3eb2019-12-16 11:46:15 +000083 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnardd23f5932015-06-23 12:04:52 +020084
Hanno Becker687c5002018-06-29 09:04:46 +010085 if( NULL == ssl ||
86 NULL == ssl->conf ||
87 NULL == ssl->conf->f_dbg ||
88 level > debug_threshold )
89 {
Manuel Pégourié-Gonnardb74c2452015-06-29 20:08:23 +020090 return;
Hanno Becker687c5002018-06-29 09:04:46 +010091 }
Paul Bakker5121ce52009-01-03 21:22:43 +000092
93 va_start( argp, format );
k-stachowiak723f8672018-07-16 14:27:07 +020094 ret = mbedtls_vsnprintf( str, DEBUG_BUF_SIZE, format, argp );
Paul Bakker5121ce52009-01-03 21:22:43 +000095 va_end( argp );
96
Manuel Pégourié-Gonnardb74c2452015-06-29 20:08:23 +020097 if( ret >= 0 && ret < DEBUG_BUF_SIZE - 1 )
98 {
99 str[ret] = '\n';
100 str[ret + 1] = '\0';
101 }
102
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200103 debug_send_line( ssl, level, file, line, str );
Paul Bakker5121ce52009-01-03 21:22:43 +0000104}
105
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200106void mbedtls_debug_print_ret( const mbedtls_ssl_context *ssl, int level,
Paul Bakkerff60ee62010-03-16 21:09:09 +0000107 const char *file, int line,
108 const char *text, int ret )
Paul Bakker5121ce52009-01-03 21:22:43 +0000109{
Manuel Pégourié-Gonnardd23f5932015-06-23 12:04:52 +0200110 char str[DEBUG_BUF_SIZE];
Paul Bakker5121ce52009-01-03 21:22:43 +0000111
Hanno Becker687c5002018-06-29 09:04:46 +0100112 if( NULL == ssl ||
113 NULL == ssl->conf ||
114 NULL == ssl->conf->f_dbg ||
115 level > debug_threshold )
116 {
Paul Bakker5121ce52009-01-03 21:22:43 +0000117 return;
Hanno Becker687c5002018-06-29 09:04:46 +0100118 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000119
Manuel Pégourié-Gonnard4cba1a72015-05-11 18:52:25 +0200120 /*
121 * With non-blocking I/O and examples that just retry immediately,
122 * the logs would be quickly flooded with WANT_READ, so ignore that.
123 * Don't ignore WANT_WRITE however, since is is usually rare.
124 */
125 if( ret == MBEDTLS_ERR_SSL_WANT_READ )
126 return;
127
Manuel Pégourié-Gonnardfd474232015-06-23 16:34:24 +0200128 mbedtls_snprintf( str, sizeof( str ), "%s() returned %d (-0x%04x)\n",
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200129 text, ret, (unsigned int) -ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000130
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200131 debug_send_line( ssl, level, file, line, str );
Paul Bakker5121ce52009-01-03 21:22:43 +0000132}
133
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200134void mbedtls_debug_print_buf( const mbedtls_ssl_context *ssl, int level,
Paul Bakkerff60ee62010-03-16 21:09:09 +0000135 const char *file, int line, const char *text,
Manuel Pégourié-Gonnarda78b2182015-03-19 17:16:11 +0000136 const unsigned char *buf, size_t len )
Paul Bakker5121ce52009-01-03 21:22:43 +0000137{
Manuel Pégourié-Gonnardd23f5932015-06-23 12:04:52 +0200138 char str[DEBUG_BUF_SIZE];
Manuel Pégourié-Gonnard8c9223d2014-11-19 10:17:21 +0100139 char txt[17];
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200140 size_t i, idx = 0;
Paul Bakker5121ce52009-01-03 21:22:43 +0000141
Hanno Becker687c5002018-06-29 09:04:46 +0100142 if( NULL == ssl ||
143 NULL == ssl->conf ||
144 NULL == ssl->conf->f_dbg ||
145 level > debug_threshold )
146 {
Paul Bakker5121ce52009-01-03 21:22:43 +0000147 return;
Hanno Becker687c5002018-06-29 09:04:46 +0100148 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000149
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200150 mbedtls_snprintf( str + idx, sizeof( str ) - idx, "dumping '%s' (%u bytes)\n",
Paul Bakkereaebbd52014-04-25 15:04:14 +0200151 text, (unsigned int) len );
Paul Bakker5121ce52009-01-03 21:22:43 +0000152
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200153 debug_send_line( ssl, level, file, line, str );
Paul Bakker5121ce52009-01-03 21:22:43 +0000154
Paul Bakker92478c32014-04-25 15:18:34 +0200155 idx = 0;
Manuel Pégourié-Gonnard8c9223d2014-11-19 10:17:21 +0100156 memset( txt, 0, sizeof( txt ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000157 for( i = 0; i < len; i++ )
158 {
159 if( i >= 4096 )
160 break;
161
162 if( i % 16 == 0 )
163 {
164 if( i > 0 )
Paul Bakker92478c32014-04-25 15:18:34 +0200165 {
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200166 mbedtls_snprintf( str + idx, sizeof( str ) - idx, " %s\n", txt );
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200167 debug_send_line( ssl, level, file, line, str );
Manuel Pégourié-Gonnard8c9223d2014-11-19 10:17:21 +0100168
Paul Bakker92478c32014-04-25 15:18:34 +0200169 idx = 0;
Manuel Pégourié-Gonnard8c9223d2014-11-19 10:17:21 +0100170 memset( txt, 0, sizeof( txt ) );
Paul Bakker92478c32014-04-25 15:18:34 +0200171 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000172
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200173 idx += mbedtls_snprintf( str + idx, sizeof( str ) - idx, "%04x: ",
Paul Bakker92478c32014-04-25 15:18:34 +0200174 (unsigned int) i );
Paul Bakker5121ce52009-01-03 21:22:43 +0000175
Paul Bakker5121ce52009-01-03 21:22:43 +0000176 }
177
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200178 idx += mbedtls_snprintf( str + idx, sizeof( str ) - idx, " %02x",
Paul Bakker92478c32014-04-25 15:18:34 +0200179 (unsigned int) buf[i] );
Manuel Pégourié-Gonnard8c9223d2014-11-19 10:17:21 +0100180 txt[i % 16] = ( buf[i] > 31 && buf[i] < 127 ) ? buf[i] : '.' ;
Paul Bakker5121ce52009-01-03 21:22:43 +0000181 }
182
183 if( len > 0 )
Paul Bakker92478c32014-04-25 15:18:34 +0200184 {
Manuel Pégourié-Gonnard8c9223d2014-11-19 10:17:21 +0100185 for( /* i = i */; i % 16 != 0; i++ )
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200186 idx += mbedtls_snprintf( str + idx, sizeof( str ) - idx, " " );
Manuel Pégourié-Gonnard8c9223d2014-11-19 10:17:21 +0100187
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200188 mbedtls_snprintf( str + idx, sizeof( str ) - idx, " %s\n", txt );
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200189 debug_send_line( ssl, level, file, line, str );
Paul Bakker92478c32014-04-25 15:18:34 +0200190 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000191}
192
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200193#if defined(MBEDTLS_ECP_C)
194void mbedtls_debug_print_ecp( const mbedtls_ssl_context *ssl, int level,
Paul Bakker41c83d32013-03-20 14:39:14 +0100195 const char *file, int line,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200196 const char *text, const mbedtls_ecp_point *X )
Paul Bakker41c83d32013-03-20 14:39:14 +0100197{
Manuel Pégourié-Gonnardd23f5932015-06-23 12:04:52 +0200198 char str[DEBUG_BUF_SIZE];
Paul Bakker41c83d32013-03-20 14:39:14 +0100199
Hanno Becker687c5002018-06-29 09:04:46 +0100200 if( NULL == ssl ||
201 NULL == ssl->conf ||
202 NULL == ssl->conf->f_dbg ||
203 level > debug_threshold )
204 {
Paul Bakkerc73079a2014-04-25 16:34:30 +0200205 return;
Hanno Becker687c5002018-06-29 09:04:46 +0100206 }
Paul Bakkerc73079a2014-04-25 16:34:30 +0200207
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200208 mbedtls_snprintf( str, sizeof( str ), "%s(X)", text );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200209 mbedtls_debug_print_mpi( ssl, level, file, line, str, &X->X );
Paul Bakker41c83d32013-03-20 14:39:14 +0100210
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200211 mbedtls_snprintf( str, sizeof( str ), "%s(Y)", text );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200212 mbedtls_debug_print_mpi( ssl, level, file, line, str, &X->Y );
Paul Bakker41c83d32013-03-20 14:39:14 +0100213}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200214#endif /* MBEDTLS_ECP_C */
Paul Bakker41c83d32013-03-20 14:39:14 +0100215
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200216#if defined(MBEDTLS_BIGNUM_C)
217void mbedtls_debug_print_mpi( const mbedtls_ssl_context *ssl, int level,
Paul Bakkerff60ee62010-03-16 21:09:09 +0000218 const char *file, int line,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200219 const char *text, const mbedtls_mpi *X )
Paul Bakker5121ce52009-01-03 21:22:43 +0000220{
Manuel Pégourié-Gonnardd23f5932015-06-23 12:04:52 +0200221 char str[DEBUG_BUF_SIZE];
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200222 int j, k, zeros = 1;
Paul Bakkereaebbd52014-04-25 15:04:14 +0200223 size_t i, n, idx = 0;
Paul Bakker5121ce52009-01-03 21:22:43 +0000224
Hanno Becker687c5002018-06-29 09:04:46 +0100225 if( NULL == ssl ||
226 NULL == ssl->conf ||
227 NULL == ssl->conf->f_dbg ||
228 NULL == X ||
229 level > debug_threshold )
230 {
Paul Bakker5121ce52009-01-03 21:22:43 +0000231 return;
Hanno Becker687c5002018-06-29 09:04:46 +0100232 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000233
Paul Bakkerbe4e7dc2011-03-14 20:41:31 +0000234 for( n = X->n - 1; n > 0; n-- )
Paul Bakker5121ce52009-01-03 21:22:43 +0000235 if( X->p[n] != 0 )
236 break;
237
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200238 for( j = ( sizeof(mbedtls_mpi_uint) << 3 ) - 1; j >= 0; j-- )
Paul Bakkerbe4e7dc2011-03-14 20:41:31 +0000239 if( ( ( X->p[n] >> j ) & 1 ) != 0 )
240 break;
241
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200242 mbedtls_snprintf( str + idx, sizeof( str ) - idx, "value of '%s' (%d bits) is:\n",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200243 text, (int) ( ( n * ( sizeof(mbedtls_mpi_uint) << 3 ) ) + j + 1 ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000244
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200245 debug_send_line( ssl, level, file, line, str );
Paul Bakker5121ce52009-01-03 21:22:43 +0000246
Paul Bakker92478c32014-04-25 15:18:34 +0200247 idx = 0;
Paul Bakker23986e52011-04-24 08:57:21 +0000248 for( i = n + 1, j = 0; i > 0; i-- )
Paul Bakker5121ce52009-01-03 21:22:43 +0000249 {
Paul Bakker23986e52011-04-24 08:57:21 +0000250 if( zeros && X->p[i - 1] == 0 )
Paul Bakkerbe4e7dc2011-03-14 20:41:31 +0000251 continue;
Paul Bakker5121ce52009-01-03 21:22:43 +0000252
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200253 for( k = sizeof( mbedtls_mpi_uint ) - 1; k >= 0; k-- )
Paul Bakker5121ce52009-01-03 21:22:43 +0000254 {
Paul Bakker66d5d072014-06-17 16:39:18 +0200255 if( zeros && ( ( X->p[i - 1] >> ( k << 3 ) ) & 0xFF ) == 0 )
Paul Bakkerbe4e7dc2011-03-14 20:41:31 +0000256 continue;
257 else
258 zeros = 0;
259
260 if( j % 16 == 0 )
261 {
262 if( j > 0 )
Paul Bakker92478c32014-04-25 15:18:34 +0200263 {
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200264 mbedtls_snprintf( str + idx, sizeof( str ) - idx, "\n" );
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200265 debug_send_line( ssl, level, file, line, str );
Paul Bakker92478c32014-04-25 15:18:34 +0200266 idx = 0;
267 }
Paul Bakkerbe4e7dc2011-03-14 20:41:31 +0000268 }
269
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200270 idx += mbedtls_snprintf( str + idx, sizeof( str ) - idx, " %02x", (unsigned int)
Paul Bakker66d5d072014-06-17 16:39:18 +0200271 ( X->p[i - 1] >> ( k << 3 ) ) & 0xFF );
Paul Bakkerbe4e7dc2011-03-14 20:41:31 +0000272
273 j++;
Paul Bakker5121ce52009-01-03 21:22:43 +0000274 }
Paul Bakkerbe4e7dc2011-03-14 20:41:31 +0000275
276 }
277
278 if( zeros == 1 )
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200279 idx += mbedtls_snprintf( str + idx, sizeof( str ) - idx, " 00" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000280
Manuel Pégourié-Gonnard9dbaf402015-06-22 11:50:58 +0200281 mbedtls_snprintf( str + idx, sizeof( str ) - idx, "\n" );
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200282 debug_send_line( ssl, level, file, line, str );
Paul Bakker5121ce52009-01-03 21:22:43 +0000283}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200284#endif /* MBEDTLS_BIGNUM_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000285
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200286#if defined(MBEDTLS_X509_CRT_PARSE_C)
287static void debug_print_pk( const mbedtls_ssl_context *ssl, int level,
Manuel Pégourié-Gonnardc6ac8872013-08-14 18:04:18 +0200288 const char *file, int line,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200289 const char *text, const mbedtls_pk_context *pk )
Manuel Pégourié-Gonnardc6ac8872013-08-14 18:04:18 +0200290{
291 size_t i;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200292 mbedtls_pk_debug_item items[MBEDTLS_PK_DEBUG_MAX_ITEMS];
Manuel Pégourié-Gonnardc6ac8872013-08-14 18:04:18 +0200293 char name[16];
294
295 memset( items, 0, sizeof( items ) );
296
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200297 if( mbedtls_pk_debug( pk, items ) != 0 )
Manuel Pégourié-Gonnardc6ac8872013-08-14 18:04:18 +0200298 {
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200299 debug_send_line( ssl, level, file, line,
Manuel Pégourié-Gonnard80d627a2015-06-29 20:12:51 +0200300 "invalid PK context\n" );
Manuel Pégourié-Gonnardc6ac8872013-08-14 18:04:18 +0200301 return;
302 }
303
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200304 for( i = 0; i < MBEDTLS_PK_DEBUG_MAX_ITEMS; i++ )
Manuel Pégourié-Gonnardc6ac8872013-08-14 18:04:18 +0200305 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200306 if( items[i].type == MBEDTLS_PK_DEBUG_NONE )
Manuel Pégourié-Gonnardc6ac8872013-08-14 18:04:18 +0200307 return;
308
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200309 mbedtls_snprintf( name, sizeof( name ), "%s%s", text, items[i].name );
Manuel Pégourié-Gonnardc6ac8872013-08-14 18:04:18 +0200310 name[sizeof( name ) - 1] = '\0';
311
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200312 if( items[i].type == MBEDTLS_PK_DEBUG_MPI )
313 mbedtls_debug_print_mpi( ssl, level, file, line, name, items[i].value );
Manuel Pégourié-Gonnardbac0e3b2013-10-15 11:54:47 +0200314 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200315#if defined(MBEDTLS_ECP_C)
316 if( items[i].type == MBEDTLS_PK_DEBUG_ECP )
317 mbedtls_debug_print_ecp( ssl, level, file, line, name, items[i].value );
Manuel Pégourié-Gonnardc6ac8872013-08-14 18:04:18 +0200318 else
Manuel Pégourié-Gonnardbac0e3b2013-10-15 11:54:47 +0200319#endif
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200320 debug_send_line( ssl, level, file, line,
Manuel Pégourié-Gonnard80d627a2015-06-29 20:12:51 +0200321 "should not happen\n" );
Manuel Pégourié-Gonnardc6ac8872013-08-14 18:04:18 +0200322 }
323}
324
Manuel Pégourié-Gonnardfd474232015-06-23 16:34:24 +0200325static void debug_print_line_by_line( const mbedtls_ssl_context *ssl, int level,
326 const char *file, int line, const char *text )
327{
328 char str[DEBUG_BUF_SIZE];
329 const char *start, *cur;
330
331 start = text;
332 for( cur = text; *cur != '\0'; cur++ )
333 {
334 if( *cur == '\n' )
335 {
336 size_t len = cur - start + 1;
337 if( len > DEBUG_BUF_SIZE - 1 )
338 len = DEBUG_BUF_SIZE - 1;
339
340 memcpy( str, start, len );
341 str[len] = '\0';
342
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200343 debug_send_line( ssl, level, file, line, str );
Manuel Pégourié-Gonnardfd474232015-06-23 16:34:24 +0200344
345 start = cur + 1;
346 }
347 }
348}
349
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200350void mbedtls_debug_print_crt( const mbedtls_ssl_context *ssl, int level,
Paul Bakkerff60ee62010-03-16 21:09:09 +0000351 const char *file, int line,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200352 const char *text, const mbedtls_x509_crt *crt )
Paul Bakker5121ce52009-01-03 21:22:43 +0000353{
Manuel Pégourié-Gonnardfd474232015-06-23 16:34:24 +0200354 char str[DEBUG_BUF_SIZE];
355 int i = 0;
Paul Bakker5121ce52009-01-03 21:22:43 +0000356
Hanno Becker687c5002018-06-29 09:04:46 +0100357 if( NULL == ssl ||
358 NULL == ssl->conf ||
359 NULL == ssl->conf->f_dbg ||
360 NULL == crt ||
361 level > debug_threshold )
362 {
Paul Bakker5121ce52009-01-03 21:22:43 +0000363 return;
Hanno Becker687c5002018-06-29 09:04:46 +0100364 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000365
Paul Bakker29087132010-03-21 21:03:34 +0000366 while( crt != NULL )
Paul Bakker5121ce52009-01-03 21:22:43 +0000367 {
Paul Bakkerd98030e2009-05-02 15:13:40 +0000368 char buf[1024];
Paul Bakker5121ce52009-01-03 21:22:43 +0000369
Manuel Pégourié-Gonnardfd474232015-06-23 16:34:24 +0200370 mbedtls_snprintf( str, sizeof( str ), "%s #%d:\n", text, ++i );
Manuel Pégourié-Gonnard7b23c512015-08-31 16:11:00 +0200371 debug_send_line( ssl, level, file, line, str );
Paul Bakkereaebbd52014-04-25 15:04:14 +0200372
Manuel Pégourié-Gonnardfd474232015-06-23 16:34:24 +0200373 mbedtls_x509_crt_info( buf, sizeof( buf ) - 1, "", crt );
374 debug_print_line_by_line( ssl, level, file, line, buf );
Paul Bakker5121ce52009-01-03 21:22:43 +0000375
Manuel Pégourié-Gonnardc6ac8872013-08-14 18:04:18 +0200376 debug_print_pk( ssl, level, file, line, "crt->", &crt->pk );
Paul Bakker5121ce52009-01-03 21:22:43 +0000377
378 crt = crt->next;
379 }
380}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200381#endif /* MBEDTLS_X509_CRT_PARSE_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000382
Janos Follath948f4be2018-08-22 01:37:55 +0100383#if defined(MBEDTLS_ECDH_C)
384static void mbedtls_debug_printf_ecdh_internal( const mbedtls_ssl_context *ssl,
385 int level, const char *file,
386 int line,
387 const mbedtls_ecdh_context *ecdh,
388 mbedtls_debug_ecdh_attr attr )
389{
390#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
391 const mbedtls_ecdh_context* ctx = ecdh;
392#else
393 const mbedtls_ecdh_context_mbed* ctx = &ecdh->ctx.mbed_ecdh;
394#endif
395
396 switch( attr )
397 {
398 case MBEDTLS_DEBUG_ECDH_Q:
399 mbedtls_debug_print_ecp( ssl, level, file, line, "ECDH: Q",
400 &ctx->Q );
401 break;
402 case MBEDTLS_DEBUG_ECDH_QP:
403 mbedtls_debug_print_ecp( ssl, level, file, line, "ECDH: Qp",
404 &ctx->Qp );
405 break;
406 case MBEDTLS_DEBUG_ECDH_Z:
407 mbedtls_debug_print_mpi( ssl, level, file, line, "ECDH: z",
408 &ctx->z );
409 break;
410 default:
411 break;
412 }
413}
414
415void mbedtls_debug_printf_ecdh( const mbedtls_ssl_context *ssl, int level,
416 const char *file, int line,
417 const mbedtls_ecdh_context *ecdh,
418 mbedtls_debug_ecdh_attr attr )
419{
420#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
421 mbedtls_debug_printf_ecdh_internal( ssl, level, file, line, ecdh, attr );
422#else
423 switch( ecdh->var )
424 {
425 default:
426 mbedtls_debug_printf_ecdh_internal( ssl, level, file, line, ecdh,
427 attr );
428 }
429#endif
430}
431#endif /* MBEDTLS_ECDH_C */
432
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200433#endif /* MBEDTLS_DEBUG_C */