blob: 349e755edd96904280d83759f85951be1a0a01fa [file] [log] [blame]
Piotr Nowicki9370f902020-03-13 14:43:22 +01001/*
2 * MbedTLS SSL context deserializer from base64 code
3 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Piotr Nowicki9370f902020-03-13 14:43:22 +01005 * 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.
Piotr Nowicki9370f902020-03-13 14:43:22 +010018 */
19
Piotr Nowicki97dcb1c2020-04-09 17:00:57 +020020#if !defined(MBEDTLS_CONFIG_FILE)
21#include "mbedtls/config.h"
22#else
23#include MBEDTLS_CONFIG_FILE
Piotr Nowickif86192f2020-03-26 11:45:42 +010024#endif
Paul Elliott8f20bab2021-12-09 14:48:47 +000025#include "mbedtls/debug.h"
Piotr Nowickif86192f2020-03-26 11:45:42 +010026
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +010027#include <stdio.h>
28#include <stdlib.h>
Piotr Nowicki97dcb1c2020-04-09 17:00:57 +020029
Gilles Peskinef4a6a052020-11-09 14:55:35 +010030#if !defined(MBEDTLS_X509_CRT_PARSE_C) || !defined(MBEDTLS_ERROR_C) || \
31 !defined(MBEDTLS_SSL_TLS_C)
Piotr Nowicki97dcb1c2020-04-09 17:00:57 +020032int main( void )
33{
Gilles Peskinef4a6a052020-11-09 14:55:35 +010034 printf("MBEDTLS_X509_CRT_PARSE_C and/or MBEDTLS_ERROR_C and/or "
35 "MBEDTLS_SSL_TLS_C not defined.\n");
Piotr Nowicki97dcb1c2020-04-09 17:00:57 +020036 return( 0 );
37}
38#else
39
40#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
41#define _CRT_SECURE_NO_DEPRECATE 1
42#endif
43
Piotr Nowicki14d31052020-03-16 14:05:22 +010044#include <stdint.h>
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +010045#include <stdarg.h>
46#include <string.h>
Raoul Strackx2db000f2020-06-22 14:08:57 +020047#if defined(MBEDTLS_HAVE_TIME)
Piotr Nowickie5fa8b72020-03-20 12:16:33 +010048#include <time.h>
Raoul Strackx2db000f2020-06-22 14:08:57 +020049#endif
Piotr Nowickie5fa8b72020-03-20 12:16:33 +010050#include "mbedtls/ssl.h"
Piotr Nowickic7d681c2020-03-17 09:51:31 +010051#include "mbedtls/error.h"
52#include "mbedtls/base64.h"
Piotr Nowicki4e192002020-03-18 17:27:29 +010053#include "mbedtls/md.h"
Piotr Nowickie5fa8b72020-03-20 12:16:33 +010054#include "mbedtls/md_internal.h"
55#include "mbedtls/x509_crt.h"
56#include "mbedtls/ssl_ciphersuites.h"
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +010057
58/*
59 * This program version
60 */
Piotr Nowickibc876d42020-03-26 12:49:15 +010061#define PROG_NAME "ssl_context_info"
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +010062#define VER_MAJOR 0
63#define VER_MINOR 1
64
65/*
Piotr Nowicki97dcb1c2020-04-09 17:00:57 +020066 * Flags copied from the Mbed TLS library.
Piotr Nowicki6b2baf92020-03-17 15:36:52 +010067 */
68#define SESSION_CONFIG_TIME_BIT ( 1 << 0 )
69#define SESSION_CONFIG_CRT_BIT ( 1 << 1 )
70#define SESSION_CONFIG_CLIENT_TICKET_BIT ( 1 << 2 )
71#define SESSION_CONFIG_MFL_BIT ( 1 << 3 )
72#define SESSION_CONFIG_TRUNC_HMAC_BIT ( 1 << 4 )
73#define SESSION_CONFIG_ETM_BIT ( 1 << 5 )
74#define SESSION_CONFIG_TICKET_BIT ( 1 << 6 )
75
76#define CONTEXT_CONFIG_DTLS_CONNECTION_ID_BIT ( 1 << 0 )
77#define CONTEXT_CONFIG_DTLS_BADMAC_LIMIT_BIT ( 1 << 1 )
78#define CONTEXT_CONFIG_DTLS_ANTI_REPLAY_BIT ( 1 << 2 )
79#define CONTEXT_CONFIG_ALPN_BIT ( 1 << 3 )
80
Piotr Nowickiab3ecd82020-03-18 15:12:41 +010081#define TRANSFORM_RANDBYTE_LEN 64
82
Piotr Nowicki6b2baf92020-03-17 15:36:52 +010083/*
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +020084 * Minimum and maximum number of bytes for specific data: context, sessions,
85 * certificates, tickets and buffers in the program. The context and session
86 * size values have been calculated based on the 'print_deserialized_ssl_context()'
87 * and 'print_deserialized_ssl_session()' content.
88 */
89#define MIN_CONTEXT_LEN 84
90#define MIN_SESSION_LEN 88
91
92#define MAX_CONTEXT_LEN 875 /* without session data */
93#define MAX_SESSION_LEN 109 /* without certificate and ticket data */
94#define MAX_CERTIFICATE_LEN ( ( 1 << 24 ) - 1 )
95#define MAX_TICKET_LEN ( ( 1 << 24 ) - 1 )
96
97#define MIN_SERIALIZED_DATA ( MIN_CONTEXT_LEN + MIN_SESSION_LEN )
98#define MAX_SERIALIZED_DATA ( MAX_CONTEXT_LEN + MAX_SESSION_LEN + \
99 MAX_CERTIFICATE_LEN + MAX_TICKET_LEN )
100
101#define MIN_BASE64_LEN ( MIN_SERIALIZED_DATA * 4 / 3 )
102#define MAX_BASE64_LEN ( MAX_SERIALIZED_DATA * 4 / 3 + 3 )
103
104/*
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100105 * A macro that prevents from reading out of the ssl buffer range.
106 */
107#define CHECK_SSL_END( LEN ) \
108do \
109{ \
110 if( end - ssl < (int)( LEN ) ) \
111 { \
112 printf_err( "%s", buf_ln_err ); \
113 return; \
114 } \
115} while( 0 )
116
117/*
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +0100118 * Global values
119 */
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100120FILE *b64_file = NULL; /* file with base64 codes to deserialize */
121char conf_keep_peer_certificate = 1; /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE from mbedTLS configuration */
122char conf_dtls_proto = 1; /* MBEDTLS_SSL_PROTO_DTLS from mbedTLS configuration */
123char debug = 0; /* flag for debug messages */
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200124const char alloc_err[] = "Cannot allocate memory\n";
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100125const char buf_ln_err[] = "Buffer does not have enough data to complete the parsing\n";
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +0100126
127/*
128 * Basic printing functions
129 */
130void print_version( )
131{
132 printf( "%s v%d.%d\n", PROG_NAME, VER_MAJOR, VER_MINOR );
133}
134
135void print_usage( )
136{
137 print_version();
Piotr Nowicki97dcb1c2020-04-09 17:00:57 +0200138 printf( "\nThis program is used to deserialize an Mbed TLS SSL session from the base64 code provided\n"
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100139 "in the text file. The program can deserialize many codes from one file, but they must be\n"
140 "separated, e.g. by a newline.\n\n" );
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +0100141 printf(
142 "Usage:\n"
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100143 "\t-f path - Path to the file with base64 code\n"
144 "\t-v - Show version\n"
145 "\t-h - Show this usage\n"
146 "\t-d - Print more information\n"
Piotr Nowicki97dcb1c2020-04-09 17:00:57 +0200147 "\t--keep-peer-cert=0 - Use this option if you know that the Mbed TLS library\n"
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100148 "\t has been compiled with the MBEDTLS_SSL_KEEP_PEER_CERTIFICATE\n"
149 "\t flag. You can also use it if there are some problems with reading\n"
150 "\t the information about certificate\n"
Piotr Nowicki97dcb1c2020-04-09 17:00:57 +0200151 "\t--dtls-protocol=0 - Use this option if you know that the Mbed TLS library\n"
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100152 "\t has been compiled without the MBEDTLS_SSL_PROTO_DTLS flag\n"
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +0100153 "\n"
154 );
155}
156
157void printf_dbg( const char *str, ... )
158{
159 if( debug )
160 {
161 va_list args;
162 va_start( args, str );
163 printf( "debug: " );
164 vprintf( str, args );
165 fflush( stdout );
166 va_end( args );
167 }
168}
169
Paul Elliott8f20bab2021-12-09 14:48:47 +0000170MBEDTLS_PRINTF_ATTRIBUTE( 1, 2 )
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +0100171void printf_err( const char *str, ... )
172{
173 va_list args;
174 va_start( args, str );
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100175 fflush( stdout );
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +0100176 fprintf( stderr, "ERROR: " );
177 vfprintf( stderr, str, args );
178 fflush( stderr );
179 va_end( args );
180}
181
182/*
183 * Exit from the program in case of error
184 */
185void error_exit()
186{
187 if( NULL != b64_file )
188 {
189 fclose( b64_file );
190 }
191 exit( -1 );
192}
193
194/*
195 * This function takes the input arguments of this program
196 */
197void parse_arguments( int argc, char *argv[] )
198{
199 int i = 1;
200
201 if( argc < 2 )
202 {
203 print_usage();
204 error_exit();
205 }
206
207 while( i < argc )
208 {
209 if( strcmp( argv[i], "-d" ) == 0 )
210 {
211 debug = 1;
212 }
213 else if( strcmp( argv[i], "-h" ) == 0 )
214 {
215 print_usage();
216 }
217 else if( strcmp( argv[i], "-v" ) == 0 )
218 {
219 print_version();
220 }
221 else if( strcmp( argv[i], "-f" ) == 0 )
222 {
223 if( ++i >= argc )
224 {
225 printf_err( "File path is empty\n" );
226 error_exit();
227 }
228
Paul Elliott110afd02021-12-09 12:48:51 +0000229 if( NULL != b64_file )
230 {
231 printf_err( "Cannot specify more than one file with -f\n" );
232 error_exit( );
233 }
234
235 if( ( b64_file = fopen( argv[i], "r" )) == NULL )
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +0100236 {
237 printf_err( "Cannot find file \"%s\"\n", argv[i] );
238 error_exit();
239 }
240 }
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100241 else if( strcmp( argv[i], "--keep-peer-cert=0" ) == 0 )
242 {
243 conf_keep_peer_certificate = 0;
244 }
245 else if( strcmp( argv[i], "--dtls-protocol=0" ) == 0 )
246 {
247 conf_dtls_proto = 0;
248 }
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +0100249 else
250 {
251 print_usage();
252 error_exit();
253 }
254
255 i++;
256 }
257}
258
Piotr Nowicki14d31052020-03-16 14:05:22 +0100259/*
Piotr Nowicki6842c9b2020-03-16 17:52:56 +0100260 * This function prints base64 code to the stdout
261 */
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100262void print_b64( const uint8_t *b, size_t len )
Piotr Nowicki6842c9b2020-03-16 17:52:56 +0100263{
264 size_t i = 0;
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100265 const uint8_t *end = b + len;
Piotr Nowickic7d681c2020-03-17 09:51:31 +0100266 printf("\t");
Piotr Nowicki6842c9b2020-03-16 17:52:56 +0100267 while( b < end )
268 {
Piotr Nowickic7d681c2020-03-17 09:51:31 +0100269 if( ++i > 75 )
Piotr Nowicki6842c9b2020-03-16 17:52:56 +0100270 {
Piotr Nowickic7d681c2020-03-17 09:51:31 +0100271 printf( "\n\t" );
Piotr Nowicki6842c9b2020-03-16 17:52:56 +0100272 i = 0;
273 }
274 printf( "%c", *b++ );
275 }
276 printf( "\n" );
277 fflush( stdout );
278}
279
280/*
Piotr Nowickic7d681c2020-03-17 09:51:31 +0100281 * This function prints hex code from the buffer to the stdout.
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100282 *
283 * /p b buffer with data to print
284 * /p len number of bytes to print
285 * /p in_line number of bytes in one line
286 * /p prefix prefix for the new lines
Piotr Nowickic7d681c2020-03-17 09:51:31 +0100287 */
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100288void print_hex( const uint8_t *b, size_t len,
289 const size_t in_line, const char *prefix )
Piotr Nowickic7d681c2020-03-17 09:51:31 +0100290{
291 size_t i = 0;
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100292 const uint8_t *end = b + len;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100293
294 if( prefix == NULL )
295 {
296 prefix = "";
297 }
298
Piotr Nowickic7d681c2020-03-17 09:51:31 +0100299 while( b < end )
300 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100301 if( ++i > in_line )
Piotr Nowickic7d681c2020-03-17 09:51:31 +0100302 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100303 printf( "\n%s", prefix );
304 i = 1;
Piotr Nowickic7d681c2020-03-17 09:51:31 +0100305 }
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100306 printf( "%02X ", (uint8_t) *b++ );
Piotr Nowickic7d681c2020-03-17 09:51:31 +0100307 }
308 printf("\n");
309 fflush(stdout);
310}
311
312/*
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100313 * Print the value of time_t in format e.g. 2020-01-23 13:05:59
314 */
Raoul Strackx2db000f2020-06-22 14:08:57 +0200315#if defined(MBEDTLS_HAVE_TIME)
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100316void print_time( const time_t *time )
317{
318 char buf[20];
319 struct tm *t = gmtime( time );
320 static const char format[] = "%Y-%m-%d %H:%M:%S";
321 if( NULL != t )
322 {
323 strftime( buf, sizeof( buf ), format, t );
324 printf( "%s\n", buf );
325 }
326 else
327 {
328 printf( "unknown\n" );
329 }
330}
Raoul Strackx2db000f2020-06-22 14:08:57 +0200331#endif
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100332
333/*
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100334 * Print the input string if the bit is set in the value
335 */
336void print_if_bit( const char *str, int bit, int val )
337{
338 if( bit & val )
339 {
340 printf( "\t%s\n", str );
341 }
342}
343
344/*
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100345 * Return pointer to hardcoded "enabled" or "disabled" depending on the input value
346 */
347const char * get_enabled_str( int is_en )
348{
349 return ( is_en ) ? "enabled" : "disabled";
350}
351
352/*
353 * Return pointer to hardcoded MFL string value depending on the MFL code at the input
354 */
355const char * get_mfl_str( int mfl_code )
356{
357 switch( mfl_code )
358 {
359 case MBEDTLS_SSL_MAX_FRAG_LEN_NONE:
360 return "none";
361 case MBEDTLS_SSL_MAX_FRAG_LEN_512:
362 return "512";
363 case MBEDTLS_SSL_MAX_FRAG_LEN_1024:
364 return "1024";
365 case MBEDTLS_SSL_MAX_FRAG_LEN_2048:
366 return "2048";
367 case MBEDTLS_SSL_MAX_FRAG_LEN_4096:
368 return "4096";
369 default:
370 return "error";
371 }
372}
373
374/*
Piotr Nowicki14d31052020-03-16 14:05:22 +0100375 * Read next base64 code from the 'b64_file'. The 'b64_file' must be opened
376 * previously. After each call to this function, the internal file position
377 * indicator of the global b64_file is advanced.
378 *
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200379 * Note - This function checks the size of the input buffer and if necessary,
380 * increases it to the maximum MAX_BASE64_LEN
381 *
382 * /p b64 pointer to the pointer of the buffer for input data
383 * /p max_len pointer to the current buffer capacity. It can be changed if
384 * the buffer needs to be increased
Piotr Nowicki14d31052020-03-16 14:05:22 +0100385 *
386 * \retval number of bytes written in to the b64 buffer or 0 in case no more
387 * data was found
388 */
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200389size_t read_next_b64_code( uint8_t **b64, size_t *max_len )
Piotr Nowicki14d31052020-03-16 14:05:22 +0100390{
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200391 int valid_balance = 0; /* balance between valid and invalid characters */
Piotr Nowicki14d31052020-03-16 14:05:22 +0100392 size_t len = 0;
Piotr Nowicki14d31052020-03-16 14:05:22 +0100393 char pad = 0;
Nayna Jaind696e7d2020-08-13 19:17:53 +0000394 int c = 0;
Piotr Nowicki14d31052020-03-16 14:05:22 +0100395
396 while( EOF != c )
397 {
398 char c_valid = 0;
399
Nayna Jaind696e7d2020-08-13 19:17:53 +0000400 c = fgetc( b64_file );
Piotr Nowicki14d31052020-03-16 14:05:22 +0100401
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200402 if( pad > 0 )
Piotr Nowicki14d31052020-03-16 14:05:22 +0100403 {
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200404 if( c == '=' && pad == 1 )
Piotr Nowicki14d31052020-03-16 14:05:22 +0100405 {
406 c_valid = 1;
407 pad = 2;
408 }
409 }
410 else if( ( c >= 'A' && c <= 'Z' ) ||
411 ( c >= 'a' && c <= 'z' ) ||
412 ( c >= '0' && c <= '9' ) ||
413 c == '+' || c == '/' )
414 {
415 c_valid = 1;
416 }
417 else if( c == '=' )
418 {
419 c_valid = 1;
420 pad = 1;
421 }
422 else if( c == '-' )
423 {
424 c = '+';
425 c_valid = 1;
426 }
427 else if( c == '_' )
428 {
429 c = '/';
430 c_valid = 1;
431 }
432
433 if( c_valid )
434 {
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200435 /* A string of characters that could be a base64 code. */
436 valid_balance++;
437
438 if( len < *max_len )
Piotr Nowicki14d31052020-03-16 14:05:22 +0100439 {
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200440 ( *b64 )[ len++ ] = c;
441 }
442 else if( *max_len < MAX_BASE64_LEN )
443 {
444 /* Current buffer is too small, but can be resized. */
445 void *ptr;
446 size_t new_size = ( MAX_BASE64_LEN - 4096 > *max_len ) ?
447 *max_len + 4096 : MAX_BASE64_LEN;
448
449 ptr = realloc( *b64, new_size );
450 if( NULL == ptr )
451 {
452 printf_err( alloc_err );
453 return 0;
454 }
455 *b64 = ptr;
456 *max_len = new_size;
457 ( *b64 )[ len++ ] = c;
Piotr Nowicki14d31052020-03-16 14:05:22 +0100458 }
459 else
460 {
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200461 /* Too much data so it will be treated as invalid */
462 len++;
Piotr Nowicki14d31052020-03-16 14:05:22 +0100463 }
464 }
465 else if( len > 0 )
466 {
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200467 /* End of a string that could be a base64 code, but need to check
468 * that the length of the characters is correct. */
469
470 valid_balance--;
471
472 if( len < MIN_CONTEXT_LEN )
Piotr Nowicki14d31052020-03-16 14:05:22 +0100473 {
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200474 printf_dbg( "The code found is too small to be a SSL context.\n" );
475 len = pad = 0;
Piotr Nowicki14d31052020-03-16 14:05:22 +0100476 }
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200477 else if( len > *max_len )
478 {
Paul Elliott8f20bab2021-12-09 14:48:47 +0000479 printf_err( "The code found is too large by %" MBEDTLS_PRINTF_SIZET " bytes.\n",
480 len - *max_len );
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200481 len = pad = 0;
482 }
483 else if( len % 4 != 0 )
484 {
485 printf_err( "The length of the base64 code found should be a multiple of 4.\n" );
486 len = pad = 0;
487 }
488 else
489 {
490 /* Base64 code with valid character length. */
491 return len;
492 }
493 }
494 else
495 {
496 valid_balance--;
497 }
498
499 /* Detection of potentially wrong file format like: binary, zip, ISO, etc. */
500 if( valid_balance < -100 )
501 {
502 printf_err( "Too many bad symbols detected. File check aborted.\n" );
503 return 0;
Piotr Nowicki14d31052020-03-16 14:05:22 +0100504 }
505 }
506
507 printf_dbg( "End of file\n" );
508 return 0;
509}
510
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100511/*
512 * This function deserializes and prints to the stdout all obtained information
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100513 * about the certificates from provided data.
514 *
515 * /p ssl pointer to serialized certificate
516 * /p len number of bytes in the buffer
517*/
518void print_deserialized_ssl_cert( const uint8_t *ssl, uint32_t len )
519{
520 enum { STRLEN = 4096 };
521 mbedtls_x509_crt crt;
522 int ret;
523 char str[STRLEN];
524
525 printf( "\nCertificate:\n" );
526
527 mbedtls_x509_crt_init( &crt );
528 ret = mbedtls_x509_crt_parse_der( &crt, ssl, len );
529 if( 0 != ret )
530 {
531 mbedtls_strerror( ret, str, STRLEN );
532 printf_err( "Invalid format of X.509 - %s\n", str );
533 printf( "Cannot deserialize:\n\t" );
534 print_hex( ssl, len, 25, "\t" );
535 }
536 else
537 {
538 mbedtls_x509_crt *current = &crt;
539
540 while( current != NULL )
541 {
542 ret = mbedtls_x509_crt_info( str, STRLEN, "\t", current );
543 if( 0 > ret )
544 {
545 mbedtls_strerror( ret, str, STRLEN );
546 printf_err( "Cannot write to the output - %s\n", str );
547 }
548 else
549 {
550 printf( "%s", str );
551 }
552
553 current = current->next;
554
555 if( current )
556 {
557 printf( "\n" );
558 }
559
560 }
561 }
562
563 mbedtls_x509_crt_free( &crt );
564}
565
566/*
567 * This function deserializes and prints to the stdout all obtained information
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100568 * about the session from provided data. This function was built based on
569 * mbedtls_ssl_session_load(). mbedtls_ssl_session_load() could not be used
570 * due to dependencies on the mbedTLS configuration.
571 *
572 * The data structure in the buffer:
573 * uint64 start_time;
574 * uint8 ciphersuite[2]; // defined by the standard
575 * uint8 compression; // 0 or 1
576 * uint8 session_id_len; // at most 32
577 * opaque session_id[32];
578 * opaque master[48]; // fixed length in the standard
579 * uint32 verify_result;
580 * opaque peer_cert<0..2^24-1>; // length 0 means no peer cert
581 * opaque ticket<0..2^24-1>; // length 0 means no ticket
582 * uint32 ticket_lifetime;
583 * uint8 mfl_code; // up to 255 according to standard
584 * uint8 trunc_hmac; // 0 or 1
585 * uint8 encrypt_then_mac; // 0 or 1
586 *
587 * /p ssl pointer to serialized session
588 * /p len number of bytes in the buffer
589 * /p session_cfg_flag session configuration flags
590 */
591void print_deserialized_ssl_session( const uint8_t *ssl, uint32_t len,
592 int session_cfg_flag )
593{
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100594 const struct mbedtls_ssl_ciphersuite_t * ciphersuite_info;
595 int ciphersuite_id;
596 uint32_t cert_len, ticket_len;
Piotr Nowicki4e192002020-03-18 17:27:29 +0100597 uint32_t verify_result, ticket_lifetime;
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100598 const uint8_t *end = ssl + len;
Piotr Nowicki4e192002020-03-18 17:27:29 +0100599
600 printf( "\nSession info:\n" );
601
602 if( session_cfg_flag & SESSION_CONFIG_TIME_BIT )
603 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100604 uint64_t start;
605 CHECK_SSL_END( 8 );
606 start = ( (uint64_t) ssl[0] << 56 ) |
607 ( (uint64_t) ssl[1] << 48 ) |
608 ( (uint64_t) ssl[2] << 40 ) |
609 ( (uint64_t) ssl[3] << 32 ) |
610 ( (uint64_t) ssl[4] << 24 ) |
611 ( (uint64_t) ssl[5] << 16 ) |
612 ( (uint64_t) ssl[6] << 8 ) |
613 ( (uint64_t) ssl[7] );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100614 ssl += 8;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100615 printf( "\tstart time : " );
Raoul Strackx2db000f2020-06-22 14:08:57 +0200616#if defined(MBEDTLS_HAVE_TIME)
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100617 print_time( (time_t*) &start );
Raoul Strackx2db000f2020-06-22 14:08:57 +0200618#else
619 (void) start;
620 printf( "not supported\n" );
621#endif
Piotr Nowicki4e192002020-03-18 17:27:29 +0100622 }
623
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100624 CHECK_SSL_END( 2 );
625 ciphersuite_id = ( (int) ssl[0] << 8 ) | (int) ssl[1];
626 printf_dbg( "Ciphersuite ID: %d\n", ciphersuite_id );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100627 ssl += 2;
628
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100629 ciphersuite_info = mbedtls_ssl_ciphersuite_from_id( ciphersuite_id );
630 if( ciphersuite_info == NULL )
631 {
632 printf_err( "Cannot find ciphersuite info\n" );
633 }
634 else
635 {
636 const mbedtls_cipher_info_t *cipher_info;
637 const mbedtls_md_info_t *md_info;
Piotr Nowicki4e192002020-03-18 17:27:29 +0100638
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100639 printf( "\tciphersuite : %s\n", ciphersuite_info->name );
640 printf( "\tcipher flags : 0x%02X\n", ciphersuite_info->flags );
641
642 cipher_info = mbedtls_cipher_info_from_type( ciphersuite_info->cipher );
643 if( cipher_info == NULL )
644 {
645 printf_err( "Cannot find cipher info\n" );
646 }
647 else
648 {
649 printf( "\tcipher : %s\n", cipher_info->name );
650 }
651
652 md_info = mbedtls_md_info_from_type( ciphersuite_info->mac );
653 if( md_info == NULL )
654 {
655 printf_err( "Cannot find Message-Digest info\n" );
656 }
657 else
658 {
659 printf( "\tMessage-Digest : %s\n", md_info->name );
660 }
661 }
662
663 CHECK_SSL_END( 1 );
664 printf( "\tcompression : %s\n", get_enabled_str( *ssl++ ) );
665
666 /* Note - Here we can get session ID length from serialized data, but we
667 * use hardcoded 32-bytes length. This approach was taken from
668 * 'mbedtls_ssl_session_load()'. */
669 CHECK_SSL_END( 1 + 32 );
670 printf_dbg( "Session id length: %u\n", (uint32_t) *ssl++ );
671 printf( "\tsession ID : ");
672 print_hex( ssl, 32, 16, "\t " );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100673 ssl += 32;
674
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100675 printf( "\tmaster secret : ");
676 CHECK_SSL_END( 48 );
677 print_hex( ssl, 48, 16, "\t " );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100678 ssl += 48;
679
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100680 CHECK_SSL_END( 4 );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100681 verify_result = ( (uint32_t) ssl[0] << 24 ) |
682 ( (uint32_t) ssl[1] << 16 ) |
683 ( (uint32_t) ssl[2] << 8 ) |
684 ( (uint32_t) ssl[3] );
685 ssl += 4;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100686 printf( "\tverify result : 0x%08X\n", verify_result );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100687
688 if( SESSION_CONFIG_CRT_BIT & session_cfg_flag )
689 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100690 if( conf_keep_peer_certificate )
Piotr Nowicki4e192002020-03-18 17:27:29 +0100691 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100692 CHECK_SSL_END( 3 );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100693 cert_len = ( (uint32_t) ssl[0] << 16 ) |
694 ( (uint32_t) ssl[1] << 8 ) |
695 ( (uint32_t) ssl[2] );
696 ssl += 3;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100697 printf_dbg( "Certificate length: %u\n", cert_len );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100698
699 if( cert_len > 0 )
700 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100701 CHECK_SSL_END( cert_len );
702 print_deserialized_ssl_cert( ssl, cert_len );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100703 ssl += cert_len;
704 }
705 }
706 else
707 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100708 printf( "\tPeer digest : " );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100709
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100710 CHECK_SSL_END( 1 );
711 switch( (mbedtls_md_type_t) *ssl++ )
Piotr Nowicki4e192002020-03-18 17:27:29 +0100712 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100713 case MBEDTLS_MD_NONE:
714 printf( "none\n" );
715 break;
716 case MBEDTLS_MD_MD2:
717 printf( "MD2\n" );
718 break;
719 case MBEDTLS_MD_MD4:
720 printf( "MD4\n" );
721 break;
722 case MBEDTLS_MD_MD5:
723 printf( "MD5\n" );
724 break;
725 case MBEDTLS_MD_SHA1:
726 printf( "SHA1\n" );
727 break;
728 case MBEDTLS_MD_SHA224:
729 printf( "SHA224\n" );
730 break;
731 case MBEDTLS_MD_SHA256:
732 printf( "SHA256\n" );
733 break;
734 case MBEDTLS_MD_SHA384:
735 printf( "SHA384\n" );
736 break;
737 case MBEDTLS_MD_SHA512:
738 printf( "SHA512\n" );
739 break;
740 case MBEDTLS_MD_RIPEMD160:
741 printf( "RIPEMD160\n" );
742 break;
743 default:
744 printf( "undefined or erroneous\n" );
745 break;
746 }
747
748 CHECK_SSL_END( 1 );
749 cert_len = (uint32_t) *ssl++;
750 printf_dbg( "Message-Digest length: %u\n", cert_len );
751
752 if( cert_len > 0 )
753 {
754 printf( "\tPeer digest cert : " );
755 CHECK_SSL_END( cert_len );
756 print_hex( ssl, cert_len, 16, "\t " );
757 ssl += cert_len;
Piotr Nowicki4e192002020-03-18 17:27:29 +0100758 }
759 }
760 }
761
762 if( SESSION_CONFIG_CLIENT_TICKET_BIT & session_cfg_flag )
763 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100764 printf( "\nTicket:\n" );
765
766 CHECK_SSL_END( 3 );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100767 ticket_len = ( (uint32_t) ssl[0] << 16 ) |
768 ( (uint32_t) ssl[1] << 8 ) |
769 ( (uint32_t) ssl[2] );
770 ssl += 3;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100771 printf_dbg( "Ticket length: %u\n", ticket_len );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100772
773 if( ticket_len > 0 )
774 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100775 printf( "\t" );
776 CHECK_SSL_END( ticket_len );
777 print_hex( ssl, ticket_len, 22, "\t" );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100778 ssl += ticket_len;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100779 printf( "\n" );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100780 }
781
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100782 CHECK_SSL_END( 4 );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100783 ticket_lifetime = ( (uint32_t) ssl[0] << 24 ) |
784 ( (uint32_t) ssl[1] << 16 ) |
785 ( (uint32_t) ssl[2] << 8 ) |
786 ( (uint32_t) ssl[3] );
787 ssl += 4;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100788 printf( "\tlifetime : %u sec.\n", ticket_lifetime );
789 }
790
791 if( ssl < end )
792 {
793 printf( "\nSession others:\n" );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100794 }
795
796 if( SESSION_CONFIG_MFL_BIT & session_cfg_flag )
797 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100798 CHECK_SSL_END( 1 );
799 printf( "\tMFL : %s\n", get_mfl_str( *ssl++ ) );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100800 }
801
802 if( SESSION_CONFIG_TRUNC_HMAC_BIT & session_cfg_flag )
803 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100804 CHECK_SSL_END( 1 );
805 printf( "\tnegotiate truncated HMAC : %s\n", get_enabled_str( *ssl++ ) );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100806 }
807
808 if( SESSION_CONFIG_ETM_BIT & session_cfg_flag )
809 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100810 CHECK_SSL_END( 1 );
811 printf( "\tEncrypt-then-MAC : %s\n", get_enabled_str( *ssl++ ) );
Piotr Nowicki4e192002020-03-18 17:27:29 +0100812 }
813
814 if( 0 != ( end - ssl ) )
815 {
816 printf_err( "%i bytes left to analyze from session\n", (int32_t)( end - ssl ) );
817 }
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100818}
819
820/*
821 * This function deserializes and prints to the stdout all obtained information
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100822 * about the context from provided data. This function was built based on
823 * mbedtls_ssl_context_load(). mbedtls_ssl_context_load() could not be used
824 * due to dependencies on the mbedTLS configuration and the configuration of
825 * the context when serialization was created.
826 *
827 * The data structure in the buffer:
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200828 * // header
829 * uint8 version[3];
830 * uint8 configuration[5];
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100831 * // session sub-structure
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200832 * uint32_t session_len;
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100833 * opaque session<1..2^32-1>; // see mbedtls_ssl_session_save()
834 * // transform sub-structure
835 * uint8 random[64]; // ServerHello.random+ClientHello.random
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200836 * uint8 in_cid_len;
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100837 * uint8 in_cid<0..2^8-1> // Connection ID: expected incoming value
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200838 * uint8 out_cid_len;
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100839 * uint8 out_cid<0..2^8-1> // Connection ID: outgoing value to use
840 * // fields from ssl_context
841 * uint32 badmac_seen; // DTLS: number of records with failing MAC
842 * uint64 in_window_top; // DTLS: last validated record seq_num
843 * uint64 in_window; // DTLS: bitmask for replay protection
844 * uint8 disable_datagram_packing; // DTLS: only one record per datagram
845 * uint64 cur_out_ctr; // Record layer: outgoing sequence number
846 * uint16 mtu; // DTLS: path mtu (max outgoing fragment size)
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +0200847 * uint8 alpn_chosen_len;
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100848 * uint8 alpn_chosen<0..2^8-1> // ALPN: negotiated application protocol
849 *
850 * /p ssl pointer to serialized session
851 * /p len number of bytes in the buffer
852 */
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100853void print_deserialized_ssl_context( const uint8_t *ssl, size_t len )
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100854{
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100855 const uint8_t *end = ssl + len;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100856 uint32_t session_len;
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100857 int session_cfg_flag;
858 int context_cfg_flag;
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100859
860 printf( "\nMbed TLS version:\n" );
861
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100862 CHECK_SSL_END( 3 + 2 + 3 );
863
864 printf( "\tmajor %u\n", (uint32_t) *ssl++ );
865 printf( "\tminor %u\n", (uint32_t) *ssl++ );
866 printf( "\tpath %u\n", (uint32_t) *ssl++ );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100867
868 printf( "\nEnabled session and context configuration:\n" );
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100869
870 session_cfg_flag = ( (int) ssl[0] << 8 ) | ( (int) ssl[1] );
871 ssl += 2;
872
873 context_cfg_flag = ( (int) ssl[0] << 16 ) |
874 ( (int) ssl[1] << 8 ) |
875 ( (int) ssl[2] ) ;
876 ssl += 3;
877
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100878 printf_dbg( "Session config flags 0x%04X\n", session_cfg_flag );
879 printf_dbg( "Context config flags 0x%06X\n", context_cfg_flag );
880
881 print_if_bit( "MBEDTLS_HAVE_TIME", SESSION_CONFIG_TIME_BIT, session_cfg_flag );
882 print_if_bit( "MBEDTLS_X509_CRT_PARSE_C", SESSION_CONFIG_CRT_BIT, session_cfg_flag );
883 print_if_bit( "MBEDTLS_SSL_MAX_FRAGMENT_LENGTH", SESSION_CONFIG_MFL_BIT, session_cfg_flag );
884 print_if_bit( "MBEDTLS_SSL_TRUNCATED_HMAC", SESSION_CONFIG_TRUNC_HMAC_BIT, session_cfg_flag );
885 print_if_bit( "MBEDTLS_SSL_ENCRYPT_THEN_MAC", SESSION_CONFIG_ETM_BIT, session_cfg_flag );
886 print_if_bit( "MBEDTLS_SSL_SESSION_TICKETS", SESSION_CONFIG_TICKET_BIT, session_cfg_flag );
887 print_if_bit( "MBEDTLS_SSL_SESSION_TICKETS and client", SESSION_CONFIG_CLIENT_TICKET_BIT, session_cfg_flag );
888
889 print_if_bit( "MBEDTLS_SSL_DTLS_CONNECTION_ID", CONTEXT_CONFIG_DTLS_CONNECTION_ID_BIT, context_cfg_flag );
890 print_if_bit( "MBEDTLS_SSL_DTLS_BADMAC_LIMIT", CONTEXT_CONFIG_DTLS_BADMAC_LIMIT_BIT, context_cfg_flag );
891 print_if_bit( "MBEDTLS_SSL_DTLS_ANTI_REPLAY", CONTEXT_CONFIG_DTLS_ANTI_REPLAY_BIT, context_cfg_flag );
892 print_if_bit( "MBEDTLS_SSL_ALPN", CONTEXT_CONFIG_ALPN_BIT, context_cfg_flag );
893
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100894 CHECK_SSL_END( 4 );
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100895 session_len = ( (uint32_t) ssl[0] << 24 ) |
896 ( (uint32_t) ssl[1] << 16 ) |
897 ( (uint32_t) ssl[2] << 8 ) |
898 ( (uint32_t) ssl[3] );
899 ssl += 4;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100900 printf_dbg( "Session length %u\n", session_len );
Piotr Nowicki6b2baf92020-03-17 15:36:52 +0100901
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100902 CHECK_SSL_END( session_len );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100903 print_deserialized_ssl_session( ssl, session_len, session_cfg_flag );
904 ssl += session_len;
905
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100906 printf( "\nRandom bytes:\n\t");
907
908 CHECK_SSL_END( TRANSFORM_RANDBYTE_LEN );
909 print_hex( ssl, TRANSFORM_RANDBYTE_LEN, 22, "\t" );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100910 ssl += TRANSFORM_RANDBYTE_LEN;
911
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100912 printf( "\nContext others:\n" );
913
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100914 if( CONTEXT_CONFIG_DTLS_CONNECTION_ID_BIT & context_cfg_flag )
915 {
916 uint8_t cid_len;
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100917
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100918 CHECK_SSL_END( 1 );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100919 cid_len = *ssl++;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100920 printf_dbg( "In CID length %u\n", (uint32_t) cid_len );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100921
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100922 printf( "\tin CID : " );
923 if( cid_len > 0 )
924 {
925 CHECK_SSL_END( cid_len );
926 print_hex( ssl, cid_len, 20, "\t" );
927 ssl += cid_len;
928 }
929 else
930 {
931 printf( "none\n" );
932 }
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100933
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100934 CHECK_SSL_END( 1 );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100935 cid_len = *ssl++;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100936 printf_dbg( "Out CID length %u\n", (uint32_t) cid_len );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100937
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100938 printf( "\tout CID : " );
939 if( cid_len > 0 )
940 {
941 CHECK_SSL_END( cid_len );
942 print_hex( ssl, cid_len, 20, "\t" );
943 ssl += cid_len;
944 }
945 else
946 {
947 printf( "none\n" );
948 }
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100949 }
950
951 if( CONTEXT_CONFIG_DTLS_BADMAC_LIMIT_BIT & context_cfg_flag )
952 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100953 uint32_t badmac_seen;
954
955 CHECK_SSL_END( 4 );
956 badmac_seen = ( (uint32_t) ssl[0] << 24 ) |
957 ( (uint32_t) ssl[1] << 16 ) |
958 ( (uint32_t) ssl[2] << 8 ) |
959 ( (uint32_t) ssl[3] );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100960 ssl += 4;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100961 printf( "\tbad MAC seen number : %u\n", badmac_seen );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100962
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100963 /* value 'in_window_top' from mbedtls_ssl_context */
964 printf( "\tlast validated record sequence no. : " );
965 CHECK_SSL_END( 8 );
966 print_hex( ssl, 8, 20, "" );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100967 ssl += 8;
968
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100969 /* value 'in_window' from mbedtls_ssl_context */
970 printf( "\tbitmask for replay detection : " );
971 CHECK_SSL_END( 8 );
972 print_hex( ssl, 8, 20, "" );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100973 ssl += 8;
974 }
975
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100976 if( conf_dtls_proto )
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100977 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100978 CHECK_SSL_END( 1 );
979 printf( "\tDTLS datagram packing : %s\n",
980 get_enabled_str( ! ( *ssl++ ) ) );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100981 }
982
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100983 /* value 'cur_out_ctr' from mbedtls_ssl_context */
984 printf( "\toutgoing record sequence no. : ");
985 CHECK_SSL_END( 8 );
986 print_hex( ssl, 8, 20, "" );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100987 ssl += 8;
988
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100989 if( conf_dtls_proto )
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100990 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100991 uint16_t mtu;
992 CHECK_SSL_END( 2 );
993 mtu = ( ssl[0] << 8 ) | ssl[1];
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100994 ssl += 2;
Piotr Nowickie5fa8b72020-03-20 12:16:33 +0100995 printf( "\tMTU : %u\n", mtu );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +0100996 }
997
998
999 if( CONTEXT_CONFIG_ALPN_BIT & context_cfg_flag )
1000 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +01001001 uint8_t alpn_len;
1002
1003 CHECK_SSL_END( 1 );
1004 alpn_len = *ssl++;
1005 printf_dbg( "ALPN length %u\n", (uint32_t) alpn_len );
1006
1007 printf( "\tALPN negotiation : " );
1008 CHECK_SSL_END( alpn_len );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +01001009 if( alpn_len > 0 )
1010 {
1011 if( strlen( (const char*) ssl ) == alpn_len )
1012 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +01001013 printf( "%s\n", ssl );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +01001014 }
1015 else
1016 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +01001017 printf( "\n" );
1018 printf_err( "\tALPN negotiation is incorrect\n" );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +01001019 }
1020 ssl += alpn_len;
1021 }
1022 else
1023 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +01001024 printf( "not selected\n" );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +01001025 }
1026 }
1027
Piotr Nowicki4e192002020-03-18 17:27:29 +01001028 if( 0 != ( end - ssl ) )
Piotr Nowickiab3ecd82020-03-18 15:12:41 +01001029 {
Piotr Nowicki4e192002020-03-18 17:27:29 +01001030 printf_err( "%i bytes left to analyze from context\n", (int32_t)( end - ssl ) );
Piotr Nowickiab3ecd82020-03-18 15:12:41 +01001031 }
Piotr Nowicki6b2baf92020-03-17 15:36:52 +01001032 printf( "\n" );
1033}
1034
Piotr Nowicki9370f902020-03-13 14:43:22 +01001035int main( int argc, char *argv[] )
1036{
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001037 enum { SSL_INIT_LEN = 4096 };
Piotr Nowickic7d681c2020-03-17 09:51:31 +01001038
Piotr Nowicki6842c9b2020-03-16 17:52:56 +01001039 uint32_t b64_counter = 0;
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001040 uint8_t *b64_buf = NULL;
1041 uint8_t *ssl_buf = NULL;
1042 size_t b64_max_len = SSL_INIT_LEN;
1043 size_t ssl_max_len = SSL_INIT_LEN;
1044 size_t ssl_len = 0;
Piotr Nowicki6842c9b2020-03-16 17:52:56 +01001045
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001046 /* The 'b64_file' is opened when parsing arguments to check that the
1047 * file name is correct */
Piotr Nowicki88ebbbf2020-03-13 16:26:08 +01001048 parse_arguments( argc, argv );
Piotr Nowicki9370f902020-03-13 14:43:22 +01001049
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001050 if( NULL != b64_file )
1051 {
1052 b64_buf = malloc( SSL_INIT_LEN );
1053 ssl_buf = malloc( SSL_INIT_LEN );
1054
1055 if( NULL == b64_buf || NULL == ssl_buf )
1056 {
1057 printf_err( alloc_err );
1058 fclose( b64_file );
1059 b64_file = NULL;
1060 }
1061 }
1062
Piotr Nowicki14d31052020-03-16 14:05:22 +01001063 while( NULL != b64_file )
1064 {
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001065 size_t b64_len = read_next_b64_code( &b64_buf, &b64_max_len );
Piotr Nowickic7d681c2020-03-17 09:51:31 +01001066 if( b64_len > 0)
Piotr Nowicki14d31052020-03-16 14:05:22 +01001067 {
Piotr Nowickic7d681c2020-03-17 09:51:31 +01001068 int ret;
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001069 size_t ssl_required_len = b64_len * 3 / 4 + 1;
1070
1071 /* Allocate more memory if necessary. */
1072 if( ssl_required_len > ssl_max_len )
1073 {
1074 void *ptr = realloc( ssl_buf, ssl_required_len );
1075 if( NULL == ptr )
1076 {
1077 printf_err( alloc_err );
1078 fclose( b64_file );
1079 b64_file = NULL;
1080 break;
1081 }
1082 ssl_buf = ptr;
1083 ssl_max_len = ssl_required_len;
1084 }
Piotr Nowickic7d681c2020-03-17 09:51:31 +01001085
Piotr Nowickie5fa8b72020-03-20 12:16:33 +01001086 printf( "\nDeserializing number %u:\n", ++b64_counter );
Piotr Nowicki6842c9b2020-03-16 17:52:56 +01001087
Piotr Nowickie5fa8b72020-03-20 12:16:33 +01001088 printf( "\nBase64 code:\n" );
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001089 print_b64( b64_buf, b64_len );
Piotr Nowickic7d681c2020-03-17 09:51:31 +01001090
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001091 ret = mbedtls_base64_decode( ssl_buf, ssl_max_len, &ssl_len, b64_buf, b64_len );
Piotr Nowickic7d681c2020-03-17 09:51:31 +01001092 if( ret != 0)
1093 {
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001094 mbedtls_strerror( ret, (char*) b64_buf, b64_max_len );
1095 printf_err( "base64 code cannot be decoded - %s\n", b64_buf );
Piotr Nowickic7d681c2020-03-17 09:51:31 +01001096 continue;
1097 }
1098
1099 if( debug )
1100 {
Piotr Nowickie5fa8b72020-03-20 12:16:33 +01001101 printf( "\nDecoded data in hex:\n\t");
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001102 print_hex( ssl_buf, ssl_len, 25, "\t" );
Piotr Nowicki6842c9b2020-03-16 17:52:56 +01001103 }
Piotr Nowicki14d31052020-03-16 14:05:22 +01001104
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001105 print_deserialized_ssl_context( ssl_buf, ssl_len );
Piotr Nowicki6842c9b2020-03-16 17:52:56 +01001106
Piotr Nowicki14d31052020-03-16 14:05:22 +01001107 }
1108 else
1109 {
1110 fclose( b64_file );
1111 b64_file = NULL;
1112 }
1113 }
1114
Piotr Nowicki02cc3fb2020-03-30 17:09:33 +02001115 free( b64_buf );
1116 free( ssl_buf );
1117
1118 if( b64_counter > 0 )
1119 {
1120 printf_dbg( "Finished. Found %u base64 codes\n", b64_counter );
1121 }
1122 else
1123 {
1124 printf( "Finished. No valid base64 code found\n" );
1125 }
Piotr Nowicki6842c9b2020-03-16 17:52:56 +01001126
Piotr Nowicki9370f902020-03-13 14:43:22 +01001127 return 0;
1128}
Piotr Nowicki97dcb1c2020-04-09 17:00:57 +02001129
1130#endif /* MBEDTLS_X509_CRT_PARSE_C */