blob: 2cc44e790eff12c2c00a5671e381c12e1fa673e4 [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
Harald Welte3ae27582010-03-26 21:24:24 +0800239void log_add_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800240{
241 llist_add_tail(&target->entry, &target_list);
242}
243
Harald Welte3ae27582010-03-26 21:24:24 +0800244void log_del_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800245{
246 llist_del(&target->entry);
247}
248
Harald Welte3ae27582010-03-26 21:24:24 +0800249void log_reset_context(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800250{
Harald Welte3ae27582010-03-26 21:24:24 +0800251 memset(&log_context, 0, sizeof(log_context));
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800252}
253
Harald Welte3ae27582010-03-26 21:24:24 +0800254int log_set_context(uint8_t ctx_nr, void *value)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800255{
Harald Welte3ae27582010-03-26 21:24:24 +0800256 if (ctx_nr > LOG_MAX_CTX)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800257 return -EINVAL;
258
Harald Welte3ae27582010-03-26 21:24:24 +0800259 log_context.ctx[ctx_nr] = value;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800260
261 return 0;
262}
263
Harald Welte3ae27582010-03-26 21:24:24 +0800264void log_set_all_filter(struct log_target *target, int all)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800265{
266 if (all)
Harald Welte3ae27582010-03-26 21:24:24 +0800267 target->filter_map |= LOG_FILTER_ALL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800268 else
Harald Welte3ae27582010-03-26 21:24:24 +0800269 target->filter_map &= ~LOG_FILTER_ALL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800270}
271
Harald Welte3ae27582010-03-26 21:24:24 +0800272void log_set_use_color(struct log_target *target, int use_color)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800273{
274 target->use_color = use_color;
275}
276
Harald Welte3ae27582010-03-26 21:24:24 +0800277void log_set_print_timestamp(struct log_target *target, int print_timestamp)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800278{
279 target->print_timestamp = print_timestamp;
280}
281
Harald Welte3ae27582010-03-26 21:24:24 +0800282void log_set_log_level(struct log_target *target, int log_level)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800283{
284 target->loglevel = log_level;
285}
286
Harald Welte3ae27582010-03-26 21:24:24 +0800287void log_set_category_filter(struct log_target *target, int category,
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800288 int enable, int level)
289{
Harald Welte4ebdf742010-05-19 19:54:00 +0200290 if (category >= osmo_log_info->num_cat)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800291 return;
292 target->categories[category].enabled = !!enable;
293 target->categories[category].loglevel = level;
294}
295
Harald Weltea3b844c2010-03-27 00:04:40 +0800296/* since C89/C99 says stderr is a macro, we can safely do this! */
297#ifdef stderr
Harald Welte3ae27582010-03-26 21:24:24 +0800298static void _stderr_output(struct log_target *target, const char *log)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800299{
300 fprintf(target->tgt_stdout.out, "%s", log);
301 fflush(target->tgt_stdout.out);
302}
Harald Weltea3b844c2010-03-27 00:04:40 +0800303#endif
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800304
Harald Welte3ae27582010-03-26 21:24:24 +0800305struct log_target *log_target_create(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800306{
Harald Welte3ae27582010-03-26 21:24:24 +0800307 struct log_target *target;
Harald Weltecc6313c2010-03-26 22:04:03 +0800308 unsigned int i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800309
Harald Welte3ae27582010-03-26 21:24:24 +0800310 target = talloc_zero(tall_log_ctx, struct log_target);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800311 if (!target)
312 return NULL;
313
314 INIT_LLIST_HEAD(&target->entry);
Harald Weltecc6313c2010-03-26 22:04:03 +0800315
316 /* initialize the per-category enabled/loglevel from defaults */
Harald Welte4ebdf742010-05-19 19:54:00 +0200317 for (i = 0; i < osmo_log_info->num_cat; i++) {
Harald Weltecc6313c2010-03-26 22:04:03 +0800318 struct log_category *cat = &target->categories[i];
Harald Welte4ebdf742010-05-19 19:54:00 +0200319 cat->enabled = osmo_log_info->cat[i].enabled;
320 cat->loglevel = osmo_log_info->cat[i].loglevel;
Harald Weltecc6313c2010-03-26 22:04:03 +0800321 }
322
323 /* global settings */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800324 target->use_color = 1;
325 target->print_timestamp = 0;
Harald Weltecc6313c2010-03-26 22:04:03 +0800326
327 /* global log level */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800328 target->loglevel = 0;
329 return target;
330}
331
Harald Welte3ae27582010-03-26 21:24:24 +0800332struct log_target *log_target_create_stderr(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800333{
Harald Weltea3b844c2010-03-27 00:04:40 +0800334/* since C89/C99 says stderr is a macro, we can safely do this! */
335#ifdef stderr
Harald Welte3ae27582010-03-26 21:24:24 +0800336 struct log_target *target;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800337
Harald Welte3ae27582010-03-26 21:24:24 +0800338 target = log_target_create();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800339 if (!target)
340 return NULL;
341
342 target->tgt_stdout.out = stderr;
343 target->output = _stderr_output;
344 return target;
Harald Weltea3b844c2010-03-27 00:04:40 +0800345#else
346 return NULL;
347#endif /* stderr */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800348}
349
Harald Welte7638af92010-05-11 16:39:22 +0200350const char *log_vty_level_string(struct log_info *info)
351{
352 const struct value_string *vs;
353 unsigned int len = 3; /* ()\0 */
354 char *str;
355
356 for (vs = loglevel_strs; vs->value || vs->str; vs++)
357 len += strlen(vs->str) + 1;
358
359 str = talloc_zero_size(NULL, len);
360 if (!str)
361 return NULL;
362
363 str[0] = '(';
364 for (vs = loglevel_strs; vs->value || vs->str; vs++) {
365 strcat(str, vs->str);
366 strcat(str, "|");
367 }
368 str[strlen(str)-1] = ')';
369
370 return str;
371}
372
373const char *log_vty_category_string(struct log_info *info)
374{
375 unsigned int len = 3; /* "()\0" */
376 unsigned int i;
377 char *str;
378
379 for (i = 0; i < info->num_cat; i++)
380 len += strlen(info->cat[i].name) + 1;
381
382 str = talloc_zero_size(NULL, len);
383 if (!str)
384 return NULL;
385
386 str[0] = '(';
387 for (i = 0; i < info->num_cat; i++) {
388 strcat(str, info->cat[i].name+1);
389 strcat(str, "|");
390 }
391 str[strlen(str)-1] = ')';
392
393 return str;
394}
395
Harald Welte3ae27582010-03-26 21:24:24 +0800396void log_init(const struct log_info *cat)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800397{
Harald Welte3ae27582010-03-26 21:24:24 +0800398 tall_log_ctx = talloc_named_const(NULL, 1, "logging");
Harald Welte4ebdf742010-05-19 19:54:00 +0200399 osmo_log_info = cat;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800400}