#include "common.h"
#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
#include "mps_common.h"
#if defined(MBEDTLS_MPS_ENABLE_TRACE)
#include "mps_trace.h"
#include <stdarg.h>
static int trace_depth = 0;
#define color_default …
#define color_red …
#define color_green …
#define color_yellow …
#define color_blue …
#define color_magenta …
#define color_cyan …
#define color_white …
static char const *colors[] =
{
color_default,
color_green,
color_yellow,
color_magenta,
color_cyan,
color_blue,
color_white
};
#define MPS_TRACE_BUF_SIZE …
void mbedtls_mps_trace_print_msg(int id, int line, const char *format, ...)
{
int ret;
char str[MPS_TRACE_BUF_SIZE];
va_list argp;
va_start(argp, format);
ret = mbedtls_vsnprintf(str, MPS_TRACE_BUF_SIZE, format, argp);
va_end(argp);
if (ret >= 0 && ret < MPS_TRACE_BUF_SIZE) {
str[ret] = '\0';
mbedtls_printf("[%d|L%d]: %s\n", id, line, str);
}
}
int mbedtls_mps_trace_get_depth()
{
return trace_depth;
}
void mbedtls_mps_trace_dec_depth()
{
trace_depth--;
}
void mbedtls_mps_trace_inc_depth()
{
trace_depth++;
}
void mbedtls_mps_trace_color(int id)
{
if (id > (int) (sizeof(colors) / sizeof(*colors))) {
return;
}
printf("%s", colors[id]);
}
void mbedtls_mps_trace_indent(int level, mbedtls_mps_trace_type ty)
{
if (level > 0) {
while (--level) {
printf("| ");
}
printf("| ");
}
switch (ty) {
case MBEDTLS_MPS_TRACE_TYPE_COMMENT:
mbedtls_printf("@ ");
break;
case MBEDTLS_MPS_TRACE_TYPE_CALL:
mbedtls_printf("+--> ");
break;
case MBEDTLS_MPS_TRACE_TYPE_ERROR:
mbedtls_printf("E ");
break;
case MBEDTLS_MPS_TRACE_TYPE_RETURN:
mbedtls_printf("< ");
break;
default:
break;
}
}
#endif
#endif