blob: 1dc30db3a68c32c6dccdf6e389cfbbae02fd8955 [file] [log] [blame]
Harald Welte4a2bb9e2010-03-26 09:33:40 +08001/* Debugging/Logging support code */
2
3/* (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2008 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
Harald Welte01fd5cb2010-03-26 23:51:31 +080023#include "../config.h"
24
Harald Welte4a2bb9e2010-03-26 09:33:40 +080025#include <stdarg.h>
26#include <stdlib.h>
27#include <stdio.h>
28#include <string.h>
Harald Welte01fd5cb2010-03-26 23:51:31 +080029
30#ifdef HAVE_STRINGS_H
Harald Welte4a2bb9e2010-03-26 09:33:40 +080031#include <strings.h>
Harald Welte01fd5cb2010-03-26 23:51:31 +080032#endif
Harald Welte4a2bb9e2010-03-26 09:33:40 +080033#include <time.h>
34#include <errno.h>
35
36#include <osmocore/talloc.h>
37#include <osmocore/utils.h>
Harald Welte3ae27582010-03-26 21:24:24 +080038#include <osmocore/logging.h>
Harald Welte4a2bb9e2010-03-26 09:33:40 +080039
Harald Welte4ebdf742010-05-19 19:54:00 +020040const struct log_info *osmo_log_info;
Harald Welte4a2bb9e2010-03-26 09:33:40 +080041
Harald Welte3ae27582010-03-26 21:24:24 +080042static struct log_context log_context;
43static void *tall_log_ctx = NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +080044static LLIST_HEAD(target_list);
45
46static const struct value_string loglevel_strs[] = {
47 { 0, "EVERYTHING" },
48 { LOGL_DEBUG, "DEBUG" },
49 { LOGL_INFO, "INFO" },
50 { LOGL_NOTICE, "NOTICE" },
51 { LOGL_ERROR, "ERROR" },
52 { LOGL_FATAL, "FATAL" },
53 { 0, NULL },
54};
55
Harald Welte3ae27582010-03-26 21:24:24 +080056int log_parse_level(const char *lvl)
Harald Welte4a2bb9e2010-03-26 09:33:40 +080057{
58 return get_string_value(loglevel_strs, lvl);
59}
60
Harald Welte9ac22252010-05-11 11:19:40 +020061const char *log_level_str(unsigned int lvl)
62{
63 return get_value_string(loglevel_strs, lvl);
64}
65
Harald Welte3ae27582010-03-26 21:24:24 +080066int log_parse_category(const char *category)
Harald Welte4a2bb9e2010-03-26 09:33:40 +080067{
68 int i;
69
Harald Welte4ebdf742010-05-19 19:54:00 +020070 for (i = 0; i < osmo_log_info->num_cat; ++i) {
71 if (!strcasecmp(osmo_log_info->cat[i].name+1, category))
Harald Weltefaadfe22010-03-26 21:05:43 +080072 return i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +080073 }
74
75 return -EINVAL;
76}
77
78/*
79 * Parse the category mask.
80 * The format can be this: category1:category2:category3
81 * or category1,2:category2,3:...
82 */
Harald Welte3ae27582010-03-26 21:24:24 +080083void log_parse_category_mask(struct log_target* target, const char *_mask)
Harald Welte4a2bb9e2010-03-26 09:33:40 +080084{
85 int i = 0;
86 char *mask = strdup(_mask);
87 char *category_token = NULL;
88
89 /* Disable everything to enable it afterwards */
90 for (i = 0; i < ARRAY_SIZE(target->categories); ++i)
91 target->categories[i].enabled = 0;
92
93 category_token = strtok(mask, ":");
94 do {
Harald Welte4ebdf742010-05-19 19:54:00 +020095 for (i = 0; i < osmo_log_info->num_cat; ++i) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +080096 char* colon = strstr(category_token, ",");
97 int length = strlen(category_token);
98
99 if (colon)
100 length = colon - category_token;
101
Harald Welte4ebdf742010-05-19 19:54:00 +0200102 if (strncasecmp(osmo_log_info->cat[i].name,
103 category_token, length) == 0) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800104 int level = 0;
105
106 if (colon)
107 level = atoi(colon+1);
108
Harald Weltefaadfe22010-03-26 21:05:43 +0800109 target->categories[i].enabled = 1;
110 target->categories[i].loglevel = level;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800111 }
112 }
113 } while ((category_token = strtok(NULL, ":")));
114
115 free(mask);
116}
117
118static const char* color(int subsys)
119{
Harald Welte4ebdf742010-05-19 19:54:00 +0200120 if (subsys < osmo_log_info->num_cat)
121 return osmo_log_info->cat[subsys].color;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800122
Harald Welted788f662010-03-26 09:45:03 +0800123 return NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800124}
125
Harald Welte3ae27582010-03-26 21:24:24 +0800126static void _output(struct log_target *target, unsigned int subsys,
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800127 char *file, int line, int cont, const char *format,
128 va_list ap)
129{
130 char col[30];
131 char sub[30];
132 char tim[30];
133 char buf[4096];
134 char final[4096];
135
136 /* prepare the data */
137 col[0] = '\0';
138 sub[0] = '\0';
139 tim[0] = '\0';
140 buf[0] = '\0';
141
142 /* are we using color */
143 if (target->use_color) {
Harald Welted788f662010-03-26 09:45:03 +0800144 const char *c = color(subsys);
145 if (c) {
146 snprintf(col, sizeof(col), "%s", color(subsys));
147 col[sizeof(col)-1] = '\0';
148 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800149 }
150 vsnprintf(buf, sizeof(buf), format, ap);
151 buf[sizeof(buf)-1] = '\0';
152
153 if (!cont) {
154 if (target->print_timestamp) {
155 char *timestr;
156 time_t tm;
157 tm = time(NULL);
158 timestr = ctime(&tm);
159 timestr[strlen(timestr)-1] = '\0';
160 snprintf(tim, sizeof(tim), "%s ", timestr);
161 tim[sizeof(tim)-1] = '\0';
162 }
163 snprintf(sub, sizeof(sub), "<%4.4x> %s:%d ", subsys, file, line);
164 sub[sizeof(sub)-1] = '\0';
165 }
166
167 snprintf(final, sizeof(final), "%s%s%s%s\033[0;m", col, tim, sub, buf);
168 final[sizeof(final)-1] = '\0';
169 target->output(target, final);
170}
171
172
Harald Welte3ae27582010-03-26 21:24:24 +0800173static void _logp(unsigned int subsys, int level, char *file, int line,
174 int cont, const char *format, va_list ap)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800175{
Harald Welte3ae27582010-03-26 21:24:24 +0800176 struct log_target *tar;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800177
178 llist_for_each_entry(tar, &target_list, entry) {
Harald Welte3ae27582010-03-26 21:24:24 +0800179 struct log_category *category;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800180 int output = 0;
181
182 category = &tar->categories[subsys];
Harald Welte3ae27582010-03-26 21:24:24 +0800183 /* subsystem is not supposed to be logged */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800184 if (!category->enabled)
185 continue;
186
187 /* Check the global log level */
188 if (tar->loglevel != 0 && level < tar->loglevel)
189 continue;
190
191 /* Check the category log level */
192 if (tar->loglevel == 0 && category->loglevel != 0 &&
193 level < category->loglevel)
194 continue;
195
196 /* Apply filters here... if that becomes messy we will
197 * need to put filters in a list and each filter will
198 * say stop, continue, output */
Harald Welte3ae27582010-03-26 21:24:24 +0800199 if ((tar->filter_map & LOG_FILTER_ALL) != 0)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800200 output = 1;
Harald Welte4ebdf742010-05-19 19:54:00 +0200201 else if (osmo_log_info->filter_fn)
202 output = osmo_log_info->filter_fn(&log_context,
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800203 tar);
204
205 if (output) {
206 /* FIXME: copying the va_list is an ugly
207 * workaround against a bug hidden somewhere in
208 * _output. If we do not copy here, the first
209 * call to _output() will corrupt the va_list
210 * contents, and any further _output() calls
211 * with the same va_list will segfault */
212 va_list bp;
213 va_copy(bp, ap);
214 _output(tar, subsys, file, line, cont, format, bp);
215 va_end(bp);
216 }
217 }
218}
219
Harald Welte3ae27582010-03-26 21:24:24 +0800220void logp(unsigned int subsys, char *file, int line, int cont,
221 const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800222{
223 va_list ap;
224
225 va_start(ap, format);
Harald Welte3ae27582010-03-26 21:24:24 +0800226 _logp(subsys, LOGL_DEBUG, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800227 va_end(ap);
228}
229
Harald Welte3ae27582010-03-26 21:24:24 +0800230void logp2(unsigned int subsys, unsigned int level, char *file, int line, int cont, const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800231{
232 va_list ap;
233
234 va_start(ap, format);
Harald Welte3ae27582010-03-26 21:24:24 +0800235 _logp(subsys, level, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800236 va_end(ap);
237}
238
239static char hexd_buff[4096];
240
241char *hexdump(const unsigned char *buf, int len)
242{
243 int i;
244 char *cur = hexd_buff;
245
246 hexd_buff[0] = 0;
247 for (i = 0; i < len; i++) {
248 int len_remain = sizeof(hexd_buff) - (cur - hexd_buff);
249 int rc = snprintf(cur, len_remain, "%02x ", buf[i]);
250 if (rc <= 0)
251 break;
252 cur += rc;
253 }
254 hexd_buff[sizeof(hexd_buff)-1] = 0;
255 return hexd_buff;
256}
257
Harald Welte3ae27582010-03-26 21:24:24 +0800258void log_add_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800259{
260 llist_add_tail(&target->entry, &target_list);
261}
262
Harald Welte3ae27582010-03-26 21:24:24 +0800263void log_del_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800264{
265 llist_del(&target->entry);
266}
267
Harald Welte3ae27582010-03-26 21:24:24 +0800268void log_reset_context(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800269{
Harald Welte3ae27582010-03-26 21:24:24 +0800270 memset(&log_context, 0, sizeof(log_context));
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800271}
272
Harald Welte3ae27582010-03-26 21:24:24 +0800273int log_set_context(uint8_t ctx_nr, void *value)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800274{
Harald Welte3ae27582010-03-26 21:24:24 +0800275 if (ctx_nr > LOG_MAX_CTX)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800276 return -EINVAL;
277
Harald Welte3ae27582010-03-26 21:24:24 +0800278 log_context.ctx[ctx_nr] = value;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800279
280 return 0;
281}
282
Harald Welte3ae27582010-03-26 21:24:24 +0800283void log_set_all_filter(struct log_target *target, int all)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800284{
285 if (all)
Harald Welte3ae27582010-03-26 21:24:24 +0800286 target->filter_map |= LOG_FILTER_ALL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800287 else
Harald Welte3ae27582010-03-26 21:24:24 +0800288 target->filter_map &= ~LOG_FILTER_ALL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800289}
290
Harald Welte3ae27582010-03-26 21:24:24 +0800291void log_set_use_color(struct log_target *target, int use_color)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800292{
293 target->use_color = use_color;
294}
295
Harald Welte3ae27582010-03-26 21:24:24 +0800296void log_set_print_timestamp(struct log_target *target, int print_timestamp)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800297{
298 target->print_timestamp = print_timestamp;
299}
300
Harald Welte3ae27582010-03-26 21:24:24 +0800301void log_set_log_level(struct log_target *target, int log_level)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800302{
303 target->loglevel = log_level;
304}
305
Harald Welte3ae27582010-03-26 21:24:24 +0800306void log_set_category_filter(struct log_target *target, int category,
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800307 int enable, int level)
308{
Harald Welte4ebdf742010-05-19 19:54:00 +0200309 if (category >= osmo_log_info->num_cat)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800310 return;
311 target->categories[category].enabled = !!enable;
312 target->categories[category].loglevel = level;
313}
314
Harald Weltea3b844c2010-03-27 00:04:40 +0800315/* since C89/C99 says stderr is a macro, we can safely do this! */
316#ifdef stderr
Harald Welte3ae27582010-03-26 21:24:24 +0800317static void _stderr_output(struct log_target *target, const char *log)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800318{
319 fprintf(target->tgt_stdout.out, "%s", log);
320 fflush(target->tgt_stdout.out);
321}
Harald Weltea3b844c2010-03-27 00:04:40 +0800322#endif
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800323
Harald Welte3ae27582010-03-26 21:24:24 +0800324struct log_target *log_target_create(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800325{
Harald Welte3ae27582010-03-26 21:24:24 +0800326 struct log_target *target;
Harald Weltecc6313c2010-03-26 22:04:03 +0800327 unsigned int i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800328
Harald Welte3ae27582010-03-26 21:24:24 +0800329 target = talloc_zero(tall_log_ctx, struct log_target);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800330 if (!target)
331 return NULL;
332
333 INIT_LLIST_HEAD(&target->entry);
Harald Weltecc6313c2010-03-26 22:04:03 +0800334
335 /* initialize the per-category enabled/loglevel from defaults */
Harald Welte4ebdf742010-05-19 19:54:00 +0200336 for (i = 0; i < osmo_log_info->num_cat; i++) {
Harald Weltecc6313c2010-03-26 22:04:03 +0800337 struct log_category *cat = &target->categories[i];
Harald Welte4ebdf742010-05-19 19:54:00 +0200338 cat->enabled = osmo_log_info->cat[i].enabled;
339 cat->loglevel = osmo_log_info->cat[i].loglevel;
Harald Weltecc6313c2010-03-26 22:04:03 +0800340 }
341
342 /* global settings */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800343 target->use_color = 1;
344 target->print_timestamp = 0;
Harald Weltecc6313c2010-03-26 22:04:03 +0800345
346 /* global log level */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800347 target->loglevel = 0;
348 return target;
349}
350
Harald Welte3ae27582010-03-26 21:24:24 +0800351struct log_target *log_target_create_stderr(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800352{
Harald Weltea3b844c2010-03-27 00:04:40 +0800353/* since C89/C99 says stderr is a macro, we can safely do this! */
354#ifdef stderr
Harald Welte3ae27582010-03-26 21:24:24 +0800355 struct log_target *target;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800356
Harald Welte3ae27582010-03-26 21:24:24 +0800357 target = log_target_create();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800358 if (!target)
359 return NULL;
360
361 target->tgt_stdout.out = stderr;
362 target->output = _stderr_output;
363 return target;
Harald Weltea3b844c2010-03-27 00:04:40 +0800364#else
365 return NULL;
366#endif /* stderr */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800367}
368
Harald Welte7638af92010-05-11 16:39:22 +0200369const char *log_vty_level_string(struct log_info *info)
370{
371 const struct value_string *vs;
372 unsigned int len = 3; /* ()\0 */
373 char *str;
374
375 for (vs = loglevel_strs; vs->value || vs->str; vs++)
376 len += strlen(vs->str) + 1;
377
378 str = talloc_zero_size(NULL, len);
379 if (!str)
380 return NULL;
381
382 str[0] = '(';
383 for (vs = loglevel_strs; vs->value || vs->str; vs++) {
384 strcat(str, vs->str);
385 strcat(str, "|");
386 }
387 str[strlen(str)-1] = ')';
388
389 return str;
390}
391
392const char *log_vty_category_string(struct log_info *info)
393{
394 unsigned int len = 3; /* "()\0" */
395 unsigned int i;
396 char *str;
397
398 for (i = 0; i < info->num_cat; i++)
399 len += strlen(info->cat[i].name) + 1;
400
401 str = talloc_zero_size(NULL, len);
402 if (!str)
403 return NULL;
404
405 str[0] = '(';
406 for (i = 0; i < info->num_cat; i++) {
407 strcat(str, info->cat[i].name+1);
408 strcat(str, "|");
409 }
410 str[strlen(str)-1] = ')';
411
412 return str;
413}
414
Harald Welte3ae27582010-03-26 21:24:24 +0800415void log_init(const struct log_info *cat)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800416{
Harald Welte3ae27582010-03-26 21:24:24 +0800417 tall_log_ctx = talloc_named_const(NULL, 1, "logging");
Harald Welte4ebdf742010-05-19 19:54:00 +0200418 osmo_log_info = cat;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800419}