blob: 14d6b603ed731031bbd4d6aacd8e528375c6df0b [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* Debugging/Logging support code */
2/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
3 * (C) 2008 by Holger Hans Peter Freyther <zecke@selfish.org>
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 */
21
22#include <stdarg.h>
23#include <stdlib.h>
24#include <stdio.h>
25#include <string.h>
26#include <strings.h>
27#include <time.h>
28
29#include <openbsc/debug.h>
30
Harald Welte02993682009-06-27 02:53:10 +020031unsigned int debug_mask = 0xffffffff & ~(DMI|DMIB|DMEAS);
Harald Welte59b04682009-06-10 05:40:52 +080032
33struct debug_info {
34 const char *name;
35 const char *color;
36 const char *description;
37 int number;
38};
39
40#define DEBUG_CATEGORY(NUMBER, NAME, COLOR, DESCRIPTION) \
41 { .name = NAME, .color = COLOR, .description = DESCRIPTION, .number = NUMBER },
42
43#define ARRAY_SIZE(array) (sizeof(array)/sizeof(array[0]))
44
45static const struct debug_info debug_info[] = {
46 DEBUG_CATEGORY(DRLL, "DRLL", "\033[1;31m", "")
47 DEBUG_CATEGORY(DCC, "DCC", "\033[1;32m", "")
48 DEBUG_CATEGORY(DMM, "DMM", "\033[1;33m", "")
49 DEBUG_CATEGORY(DRR, "DRR", "\033[1;34m", "")
50 DEBUG_CATEGORY(DRSL, "DRSL", "\033[1;35m", "")
51 DEBUG_CATEGORY(DNM, "DNM", "\033[1;36m", "")
52 DEBUG_CATEGORY(DSMS, "DSMS", "\033[1;37m", "")
53 DEBUG_CATEGORY(DPAG, "DPAG", "\033[1;38m", "")
54 DEBUG_CATEGORY(DMNCC, "DMNCC","\033[1;39m", "")
55 DEBUG_CATEGORY(DINP, "DINP", "", "")
56 DEBUG_CATEGORY(DMI, "DMI", "", "")
57 DEBUG_CATEGORY(DMIB, "DMIB", "", "")
58 DEBUG_CATEGORY(DMUX, "DMUX", "", "")
Harald Welte02993682009-06-27 02:53:10 +020059 DEBUG_CATEGORY(DMEAS, "DMEAS", "", "")
Holger Hans Peter Freytherb9cf7812009-08-01 16:54:45 +020060 DEBUG_CATEGORY(DSCCP, "DSCCP", "", "")
Harald Welte59b04682009-06-10 05:40:52 +080061};
62
63static int use_color = 1;
64
65void debug_use_color(int color)
66{
67 use_color = color;
68}
69
70static int print_timestamp = 0;
71
72void debug_timestamp(int enable)
73{
74 print_timestamp = enable;
75}
76
77
78/*
79 * Parse the category mask.
80 * category1:category2:category3
81 */
82void debug_parse_category_mask(const char *_mask)
83{
84 unsigned int new_mask = 0;
85 int i = 0;
86 char *mask = strdup(_mask);
87 char *category_token = NULL;
88
89 category_token = strtok(mask, ":");
90 do {
91 for (i = 0; i < ARRAY_SIZE(debug_info); ++i) {
92 if (strcasecmp(debug_info[i].name, category_token) == 0)
93 new_mask |= debug_info[i].number;
94 }
95 } while ((category_token = strtok(NULL, ":")));
96
97
98 free(mask);
99 debug_mask = new_mask;
100}
101
102const char* color(int subsys)
103{
104 int i = 0;
105
106 for (i = 0; use_color && i < ARRAY_SIZE(debug_info); ++i) {
107 if (debug_info[i].number == subsys)
108 return debug_info[i].color;
109 }
110
111 return "";
112}
113
114void debugp(unsigned int subsys, char *file, int line, int cont, const char *format, ...)
115{
116 va_list ap;
117 FILE *outfd = stderr;
118
119 if (!(debug_mask & subsys))
120 return;
121
122 va_start(ap, format);
123
124 fprintf(outfd, "%s", color(subsys));
125
126 if (!cont) {
127 if (print_timestamp) {
128 char *timestr;
129 time_t tm;
130 tm = time(NULL);
131 timestr = ctime(&tm);
132 timestr[strlen(timestr)-1] = '\0';
133 fprintf(outfd, "%s ", timestr);
134 }
135 fprintf(outfd, "<%4.4x> %s:%d ", subsys, file, line);
136 }
137 vfprintf(outfd, format, ap);
138 fprintf(outfd, "\033[0;m");
139
140 va_end(ap);
141
142 fflush(outfd);
143}
144
145static char hexd_buff[4096];
146
Holger Hans Peter Freyther26d15d12009-08-20 13:16:26 +0200147char *hexdump(const unsigned char *buf, int len)
Harald Welte59b04682009-06-10 05:40:52 +0800148{
149 int i;
150 char *cur = hexd_buff;
151
152 hexd_buff[0] = 0;
153 for (i = 0; i < len; i++) {
154 int len_remain = sizeof(hexd_buff) - (cur - hexd_buff);
155 int rc = snprintf(cur, len_remain, "%02x ", buf[i]);
156 if (rc <= 0)
157 break;
158 cur += rc;
159 }
160 hexd_buff[sizeof(hexd_buff)-1] = 0;
161 return hexd_buff;
162}
163