solo1/fido2/log.c

119 wiersze
2.6 KiB
C
Czysty Zwykły widok Historia

2018-09-13 21:58:34 +00:00
/*
2018-12-17 00:05:33 +00:00
* Copyright (C) 2018 SoloKeys, Inc. <https://solokeys.com/>
2019-01-07 23:29:38 +00:00
*
2018-12-17 00:05:33 +00:00
* This file is part of Solo.
2019-01-07 23:29:38 +00:00
*
2018-12-17 00:05:33 +00:00
* Solo is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
2019-01-07 23:29:38 +00:00
*
2018-12-17 00:05:33 +00:00
* Solo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2019-01-07 23:29:38 +00:00
*
2018-12-17 00:05:33 +00:00
* You should have received a copy of the GNU General Public License
* along with Solo. If not, see <https://www.gnu.org/licenses/>
2019-01-07 23:29:38 +00:00
*
2018-12-17 00:05:33 +00:00
* This code is available under licenses for commercial use.
* Please contact SoloKeys for more information.
*/
2018-05-15 02:55:47 +00:00
#include <stdio.h>
2018-05-18 15:47:17 +00:00
#include <stdlib.h>
2018-05-15 02:55:47 +00:00
#include <stdarg.h>
#include "log.h"
2018-05-18 15:40:17 +00:00
#include "util.h"
2018-05-15 02:55:47 +00:00
2018-12-03 05:14:26 +00:00
#if DEBUG_LEVEL > 0
2018-05-18 15:40:17 +00:00
static uint32_t LOGMASK = TAG_FILENO;
2018-12-03 05:14:26 +00:00
2018-05-18 15:40:17 +00:00
void set_logging_mask(uint32_t mask)
{
LOGMASK = mask;
}
2018-12-03 05:14:26 +00:00
2018-05-18 15:40:17 +00:00
struct logtag
{
uint32_t tagn;
const char * tag;
};
struct logtag tagtable[] = {
2018-06-04 23:35:34 +00:00
{TAG_GEN,""},
2018-05-18 15:40:17 +00:00
{TAG_MC,"MC"},
{TAG_GA,"GA"},
{TAG_CP,"CP"},
{TAG_ERR,"ERR"},
{TAG_PARSE,"PARSE"},
{TAG_CTAP,"CTAP"},
2018-05-26 19:29:37 +00:00
{TAG_U2F,"U2F"},
2018-05-18 15:40:17 +00:00
{TAG_DUMP,"DUMP"},
2018-11-12 16:51:43 +00:00
{TAG_DUMP2,"DUMP2"},
2018-06-03 04:50:46 +00:00
{TAG_HID,"HID"},
2018-06-04 23:35:34 +00:00
{TAG_USB,"USB"},
{TAG_GREEN,"DEBUG"},
{TAG_RED,"DEBUG"},
{TAG_TIME,"TIME"},
2018-07-08 02:43:06 +00:00
{TAG_WALLET,"WALLET"},
2018-07-12 01:55:20 +00:00
{TAG_STOR,"STOR"},
2018-12-03 04:31:34 +00:00
{TAG_BOOT,"BOOT"},
2019-01-07 23:29:38 +00:00
{TAG_EXT,"EXT"},
{TAG_NFC,"NFC"},
2018-05-18 15:40:17 +00:00
};
2018-06-02 18:44:12 +00:00
__attribute__((weak)) void set_logging_tag(uint32_t tag)
{
// nothing
}
2018-05-18 15:40:17 +00:00
void LOG(uint32_t tag, const char * filename, int num, const char * fmt, ...)
2018-05-15 02:55:47 +00:00
{
2018-05-18 15:40:17 +00:00
int i;
if (((tag & 0x7fffffff) & LOGMASK) == 0)
{
return;
}
for (i = 0; i < sizeof(tagtable)/sizeof(struct logtag); i++)
{
if (tag & tagtable[i].tagn)
{
2018-06-04 23:35:34 +00:00
if (tagtable[i].tag[0]) printf("[%s] ", tagtable[i].tag);
2018-05-18 15:47:17 +00:00
i = 0;
2018-05-18 15:40:17 +00:00
break;
}
}
2018-05-18 15:47:17 +00:00
if (i != 0)
{
2018-06-04 23:35:34 +00:00
printf2(TAG_ERR,"INVALID LOG TAG\n");
2018-05-18 15:47:17 +00:00
exit(1);
}
2018-06-02 18:44:12 +00:00
set_logging_tag(tag);
2018-05-15 02:55:47 +00:00
#ifdef ENABLE_FILE_LOGGING
2018-05-18 15:40:17 +00:00
if (tag & TAG_FILENO)
{
printf("%s:%d: ", filename, num);
}
2018-05-15 02:55:47 +00:00
#endif
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
}
2018-05-18 15:40:17 +00:00
void LOG_HEX(uint32_t tag, uint8_t * data, int length)
{
if (((tag & 0x7fffffff) & LOGMASK) == 0)
{
return;
}
2018-06-04 23:35:34 +00:00
set_logging_tag(tag);
2018-05-18 15:40:17 +00:00
dump_hex(data,length);
}
2018-12-03 05:14:26 +00:00
#endif