blob: 60dba64c79ee31352a3e24ccc7eba5d22d0414fd [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file logging.c
2 * Debugging/Logging support code. */
3/*
4 * (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte4a2bb9e2010-03-26 09:33:40 +08005 * (C) 2008 by Holger Hans Peter Freyther <zecke@selfish.org>
6 * All Rights Reserved
7 *
Harald Weltee08da972017-11-13 01:00:26 +09008 * SPDX-License-Identifier: GPL-2.0+
9 *
Harald Welte4a2bb9e2010-03-26 09:33:40 +080010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 *
24 */
25
Harald Weltef01b2382017-10-16 13:55:34 +020026/*! \addtogroup logging
Harald Welte18fc4652011-08-17 14:14:17 +020027 * @{
Neels Hofmeyr87e45502017-06-20 00:17:59 +020028 * libosmocore Logging sub-system
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020029 *
30 * \file logging.c */
Harald Welte18fc4652011-08-17 14:14:17 +020031
Harald Welte01fd5cb2010-03-26 23:51:31 +080032#include "../config.h"
33
Harald Welte4a2bb9e2010-03-26 09:33:40 +080034#include <stdarg.h>
35#include <stdlib.h>
36#include <stdio.h>
37#include <string.h>
Harald Welte01fd5cb2010-03-26 23:51:31 +080038
39#ifdef HAVE_STRINGS_H
Harald Welte4a2bb9e2010-03-26 09:33:40 +080040#include <strings.h>
Harald Welte01fd5cb2010-03-26 23:51:31 +080041#endif
Vadim Yanitskiy04f42712020-09-09 04:47:25 +070042
43#ifdef HAVE_SYSLOG_H
44#include <syslog.h>
45#endif
46
Harald Welte4a2bb9e2010-03-26 09:33:40 +080047#include <time.h>
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +010048#include <sys/time.h>
Harald Welte4a2bb9e2010-03-26 09:33:40 +080049#include <errno.h>
Pau Espin Pedrold12f6982019-09-17 18:38:58 +020050#include <pthread.h>
Harald Welte4a2bb9e2010-03-26 09:33:40 +080051
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010052#include <osmocom/core/talloc.h>
53#include <osmocom/core/utils.h>
54#include <osmocom/core/logging.h>
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +020055#include <osmocom/core/timer.h>
Harald Welte4a2bb9e2010-03-26 09:33:40 +080056
Pablo Neira Ayuso04139f12011-03-09 13:05:08 +010057#include <osmocom/vty/logging.h> /* for LOGGING_STR. */
58
Harald Weltea8b1b212020-09-27 17:21:07 +020059/* maximum length of the log string of a single log event (typically line) */
60#define MAX_LOG_SIZE 4096
61
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010062osmo_static_assert(_LOG_CTX_COUNT <= ARRAY_SIZE(((struct log_context*)NULL)->ctx),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010063 enum_logging_ctx_items_fit_in_struct_log_context);
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010064osmo_static_assert(_LOG_FLT_COUNT <= ARRAY_SIZE(((struct log_target*)NULL)->filter_data),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010065 enum_logging_filters_fit_in_log_target_filter_data);
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010066osmo_static_assert(_LOG_FLT_COUNT <= 8*sizeof(((struct log_target*)NULL)->filter_map),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010067 enum_logging_filters_fit_in_log_target_filter_map);
68
Harald Welteb43bc042011-06-27 10:29:17 +020069struct log_info *osmo_log_info;
Harald Welte4a2bb9e2010-03-26 09:33:40 +080070
Harald Welte3ae27582010-03-26 21:24:24 +080071static struct log_context log_context;
Neels Hofmeyrba0762d2018-09-10 13:56:03 +020072void *tall_log_ctx = NULL;
Harald Welte28222962011-02-18 20:37:04 +010073LLIST_HEAD(osmo_log_target_list);
Harald Welte4a2bb9e2010-03-26 09:33:40 +080074
Pau Espin Pedrold12f6982019-09-17 18:38:58 +020075#if (!EMBEDDED)
76/*! This mutex must be held while using osmo_log_target_list or any of its
77 log_targets in a multithread program. Prevents race conditions between threads
78 like producing unordered timestamps or VTY deleting a target while another
79 thread is writing to it */
80static pthread_mutex_t osmo_log_tgt_mutex;
81static bool osmo_log_tgt_mutex_on = false;
82
83/*! Enable multithread support (mutex) in libosmocore logging system.
84 * Must be called by processes willing to use logging subsystem from several
85 * threads. Once enabled, it's not possible to disable it again.
86 */
87void log_enable_multithread(void) {
88 if (osmo_log_tgt_mutex_on)
89 return;
90 pthread_mutex_init(&osmo_log_tgt_mutex, NULL);
91 osmo_log_tgt_mutex_on = true;
92}
93
94/*! Acquire the osmo_log_tgt_mutex. Don't use this function directly, always use
95 * macro log_tgt_mutex_lock() instead.
96 */
97void log_tgt_mutex_lock_impl(void) {
98 /* These lines are useful to debug scenarios where there's only 1 thread
99 and a double lock appears, for instance during startup and some
100 unlock() missing somewhere:
101 if (osmo_log_tgt_mutex_on && pthread_mutex_trylock(&osmo_log_tgt_mutex) != 0)
102 osmo_panic("acquiring already locked mutex!\n");
103 return;
104 */
105
106 if (osmo_log_tgt_mutex_on)
107 pthread_mutex_lock(&osmo_log_tgt_mutex);
108}
109
110/*! Release the osmo_log_tgt_mutex. Don't use this function directly, always use
111 * macro log_tgt_mutex_unlock() instead.
112 */
113void log_tgt_mutex_unlock_impl(void) {
114 if (osmo_log_tgt_mutex_on)
115 pthread_mutex_unlock(&osmo_log_tgt_mutex);
116}
117
118#else /* if (!EMBEDDED) */
119#pragma message ("logging multithread support disabled in embedded build")
120void log_enable_multithread(void) {}
121void log_tgt_mutex_lock_impl(void) {}
122void log_tgt_mutex_unlock_impl(void) {}
123#endif /* if (!EMBEDDED) */
124
Neels Hofmeyr098038a2018-09-11 23:49:13 +0200125const struct value_string loglevel_strs[] = {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800126 { LOGL_DEBUG, "DEBUG" },
127 { LOGL_INFO, "INFO" },
128 { LOGL_NOTICE, "NOTICE" },
129 { LOGL_ERROR, "ERROR" },
130 { LOGL_FATAL, "FATAL" },
131 { 0, NULL },
132};
133
Harald Welte4c0e1a12020-12-07 22:03:09 +0100134/* 256 color palette see https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit */
Harald Welteb43bc042011-06-27 10:29:17 +0200135#define INT2IDX(x) (-1*(x)-1)
136static const struct log_info_cat internal_cat[OSMO_NUM_DLIB] = {
137 [INT2IDX(DLGLOBAL)] = { /* -1 becomes 0 */
138 .name = "DLGLOBAL",
139 .description = "Library-internal global log family",
140 .loglevel = LOGL_NOTICE,
141 .enabled = 1,
142 },
root8a996b42011-09-26 11:22:21 +0200143 [INT2IDX(DLLAPD)] = { /* -2 becomes 1 */
144 .name = "DLLAPD",
145 .description = "LAPD in libosmogsm",
Harald Welte1f0b8c22011-06-27 10:51:37 +0200146 .loglevel = LOGL_NOTICE,
147 .enabled = 1,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100148 .color = "\033[38;5;21m",
Harald Welte1f0b8c22011-06-27 10:51:37 +0200149 },
Harald Welte892e6212011-07-19 14:31:44 +0200150 [INT2IDX(DLINP)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200151 .name = "DLINP",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200152 .description = "A-bis Intput Subsystem",
153 .loglevel = LOGL_NOTICE,
154 .enabled = 1,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100155 .color = "\033[38;5;23m",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200156 },
Harald Welte892e6212011-07-19 14:31:44 +0200157 [INT2IDX(DLMUX)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200158 .name = "DLMUX",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200159 .description = "A-bis B-Subchannel TRAU Frame Multiplex",
160 .loglevel = LOGL_NOTICE,
161 .enabled = 1,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100162 .color = "\033[38;5;25m",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200163 },
Harald Welte892e6212011-07-19 14:31:44 +0200164 [INT2IDX(DLMI)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200165 .name = "DLMI",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200166 .description = "A-bis Input Driver for Signalling",
167 .enabled = 0, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100168 .color = "\033[38;5;27m",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200169 },
Harald Welte892e6212011-07-19 14:31:44 +0200170 [INT2IDX(DLMIB)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200171 .name = "DLMIB",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200172 .description = "A-bis Input Driver for B-Channels (voice)",
173 .enabled = 0, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100174 .color = "\033[38;5;29m",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200175 },
Andreas Eversbergc626da92011-10-28 03:53:50 +0200176 [INT2IDX(DLSMS)] = {
177 .name = "DLSMS",
178 .description = "Layer3 Short Message Service (SMS)",
179 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100180 .color = "\033[38;5;31m",
Andreas Eversbergc626da92011-10-28 03:53:50 +0200181 },
Harald Welte7fd0c832014-08-20 19:58:13 +0200182 [INT2IDX(DLCTRL)] = {
183 .name = "DLCTRL",
184 .description = "Control Interface",
185 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100186 .color = "\033[38;5;33m",
Harald Welte7fd0c832014-08-20 19:58:13 +0200187 },
Holger Hans Peter Freythera5dc19d2014-12-04 14:35:21 +0100188 [INT2IDX(DLGTP)] = {
189 .name = "DLGTP",
190 .description = "GPRS GTP library",
191 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100192 .color = "\033[38;5;35m",
Holger Hans Peter Freythera5dc19d2014-12-04 14:35:21 +0100193 },
Jacob Erlbeck79125ec2015-11-02 15:17:50 +0100194 [INT2IDX(DLSTATS)] = {
195 .name = "DLSTATS",
196 .description = "Statistics messages and logging",
197 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100198 .color = "\033[38;5;37m",
Jacob Erlbeck79125ec2015-11-02 15:17:50 +0100199 },
Neels Hofmeyr9795cf12016-12-10 17:01:06 +0100200 [INT2IDX(DLGSUP)] = {
201 .name = "DLGSUP",
202 .description = "Generic Subscriber Update Protocol",
203 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100204 .color = "\033[38;5;39m",
Neels Hofmeyr9795cf12016-12-10 17:01:06 +0100205 },
Harald Weltec0f00072016-04-27 18:32:35 +0200206 [INT2IDX(DLOAP)] = {
207 .name = "DLOAP",
208 .description = "Osmocom Authentication Protocol",
209 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100210 .color = "\033[38;5;41m",
Harald Weltec0f00072016-04-27 18:32:35 +0200211 },
Harald Welte059c4042017-04-03 22:20:49 +0200212 [INT2IDX(DLSS7)] = {
213 .name = "DLSS7",
214 .description = "libosmo-sigtran Signalling System 7",
215 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100216 .color = "\033[38;5;43m",
Harald Welte059c4042017-04-03 22:20:49 +0200217 },
218 [INT2IDX(DLSCCP)] = {
219 .name = "DLSCCP",
220 .description = "libosmo-sigtran SCCP Implementation",
221 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100222 .color = "\033[38;5;45m",
Harald Welte059c4042017-04-03 22:20:49 +0200223 },
224 [INT2IDX(DLSUA)] = {
225 .name = "DLSUA",
226 .description = "libosmo-sigtran SCCP User Adaptation",
227 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100228 .color = "\033[38;5;47m",
Harald Welte059c4042017-04-03 22:20:49 +0200229 },
230 [INT2IDX(DLM3UA)] = {
231 .name = "DLM3UA",
232 .description = "libosmo-sigtran MTP3 User Adaptation",
233 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100234 .color = "\033[38;5;49m",
Harald Welte059c4042017-04-03 22:20:49 +0200235 },
Neels Hofmeyra7ccf612017-07-11 18:43:09 +0200236 [INT2IDX(DLMGCP)] = {
237 .name = "DLMGCP",
238 .description = "libosmo-mgcp Media Gateway Control Protocol",
239 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100240 .color = "\033[38;5;51m",
Neels Hofmeyra7ccf612017-07-11 18:43:09 +0200241 },
Pau Espin Pedrol8fd85572018-02-27 19:43:10 +0100242 [INT2IDX(DLJIBUF)] = {
243 .name = "DLJIBUF",
244 .description = "libosmo-netif Jitter Buffer",
245 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100246 .color = "\033[38;5;53m",
Pau Espin Pedrol8fd85572018-02-27 19:43:10 +0100247 },
Max450f5ac2019-02-14 19:12:03 +0100248 [INT2IDX(DLRSPRO)] = {
249 .name = "DLRSPRO",
250 .description = "Remote SIM protocol",
251 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100252 .color = "\033[38;5;55m",
Max450f5ac2019-02-14 19:12:03 +0100253 },
Alexander Couzens6a161492020-07-12 13:45:50 +0200254 [INT2IDX(DLNS)] = {
255 .name = "DLNS",
256 .description = "GPRS NS layer",
257 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100258 .color = "\033[38;5;57m",
Alexander Couzens6a161492020-07-12 13:45:50 +0200259 },
Harald Weltefde19ed2020-12-07 21:43:51 +0100260 [INT2IDX(DLBSSGP)] = {
261 .name = "DLBSSGP",
262 .description = "GPRS BSSGP layer",
263 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100264 .color = "\033[38;5;59m",
Harald Weltefde19ed2020-12-07 21:43:51 +0100265 },
Harald Welteb43bc042011-06-27 10:29:17 +0200266};
267
Neels Hofmeyrba0762d2018-09-10 13:56:03 +0200268void assert_loginfo(const char *src)
Harald Welte18a7d812017-03-16 23:54:55 +0100269{
270 if (!osmo_log_info) {
271 fprintf(stderr, "ERROR: osmo_log_info == NULL! "
Max68bf16a2018-01-10 17:00:43 +0100272 "You must call log_init() before using logging in %s()!\n", src);
Harald Welte18a7d812017-03-16 23:54:55 +0100273 OSMO_ASSERT(osmo_log_info);
274 }
275}
276
Harald Welteb43bc042011-06-27 10:29:17 +0200277/* special magic for negative (library-internal) log subsystem numbers */
278static int subsys_lib2index(int subsys)
279{
280 return (subsys * -1) + (osmo_log_info->num_cat_user-1);
281}
282
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200283/*! Parse a human-readable log level into a numeric value
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700284 * \param[in] lvl zero-terminated string containing log level name
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200285 * \returns numeric log level
286 */
Harald Welte3ae27582010-03-26 21:24:24 +0800287int log_parse_level(const char *lvl)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800288{
289 return get_string_value(loglevel_strs, lvl);
290}
291
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200292/*! convert a numeric log level into human-readable string
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700293 * \param[in] lvl numeric log level
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200294 * \returns zero-terminated string (log level name)
295 */
Harald Welte9ac22252010-05-11 11:19:40 +0200296const char *log_level_str(unsigned int lvl)
297{
298 return get_value_string(loglevel_strs, lvl);
299}
300
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200301/*! parse a human-readable log category into numeric form
Harald Welte18fc4652011-08-17 14:14:17 +0200302 * \param[in] category human-readable log category name
303 * \returns numeric category value, or -EINVAL otherwise
304 */
Harald Welte3ae27582010-03-26 21:24:24 +0800305int log_parse_category(const char *category)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800306{
307 int i;
308
Max68bf16a2018-01-10 17:00:43 +0100309 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100310
Harald Welte4ebdf742010-05-19 19:54:00 +0200311 for (i = 0; i < osmo_log_info->num_cat; ++i) {
Harald Welteb43bc042011-06-27 10:29:17 +0200312 if (osmo_log_info->cat[i].name == NULL)
313 continue;
Harald Welte4ebdf742010-05-19 19:54:00 +0200314 if (!strcasecmp(osmo_log_info->cat[i].name+1, category))
Harald Weltefaadfe22010-03-26 21:05:43 +0800315 return i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800316 }
317
318 return -EINVAL;
319}
320
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200321/*! parse the log category mask
Harald Welte18fc4652011-08-17 14:14:17 +0200322 * \param[in] target log target to be configured
323 * \param[in] _mask log category mask string
324 *
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800325 * The format can be this: category1:category2:category3
326 * or category1,2:category2,3:...
327 */
Harald Welte3ae27582010-03-26 21:24:24 +0800328void log_parse_category_mask(struct log_target* target, const char *_mask)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800329{
330 int i = 0;
331 char *mask = strdup(_mask);
332 char *category_token = NULL;
333
Max68bf16a2018-01-10 17:00:43 +0100334 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100335
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800336 /* Disable everything to enable it afterwards */
Harald Welteb43bc042011-06-27 10:29:17 +0200337 for (i = 0; i < osmo_log_info->num_cat; ++i)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800338 target->categories[i].enabled = 0;
339
340 category_token = strtok(mask, ":");
Neels Hofmeyrda1b20c2016-04-14 15:12:16 +0200341 OSMO_ASSERT(category_token);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800342 do {
Harald Welte4ebdf742010-05-19 19:54:00 +0200343 for (i = 0; i < osmo_log_info->num_cat; ++i) {
Nico Golde0262d3f2012-09-21 17:44:58 +0200344 size_t length, cat_length;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800345 char* colon = strstr(category_token, ",");
Nico Golde0262d3f2012-09-21 17:44:58 +0200346
347 if (!osmo_log_info->cat[i].name)
348 continue;
349
350 length = strlen(category_token);
351 cat_length = strlen(osmo_log_info->cat[i].name);
Pablo Neira Ayuso300e78d2011-08-11 13:24:18 +0200352
353 /* Use longest length not to match subocurrences. */
354 if (cat_length > length)
355 length = cat_length;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800356
357 if (colon)
358 length = colon - category_token;
359
Harald Welte4ebdf742010-05-19 19:54:00 +0200360 if (strncasecmp(osmo_log_info->cat[i].name,
361 category_token, length) == 0) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800362 int level = 0;
363
364 if (colon)
365 level = atoi(colon+1);
366
Harald Weltefaadfe22010-03-26 21:05:43 +0800367 target->categories[i].enabled = 1;
368 target->categories[i].loglevel = level;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800369 }
370 }
371 } while ((category_token = strtok(NULL, ":")));
372
373 free(mask);
374}
375
376static const char* color(int subsys)
377{
Harald Welte4ebdf742010-05-19 19:54:00 +0200378 if (subsys < osmo_log_info->num_cat)
379 return osmo_log_info->cat[subsys].color;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800380
Harald Welted788f662010-03-26 09:45:03 +0800381 return NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800382}
383
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100384static const struct value_string level_colors[] = {
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100385 { LOGL_DEBUG, OSMO_LOGCOLOR_BLUE },
386 { LOGL_INFO, OSMO_LOGCOLOR_GREEN },
387 { LOGL_NOTICE, OSMO_LOGCOLOR_YELLOW },
388 { LOGL_ERROR, OSMO_LOGCOLOR_RED },
389 { LOGL_FATAL, OSMO_LOGCOLOR_RED },
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100390 { 0, NULL }
391};
392
393static const char *level_color(int level)
394{
395 const char *c = get_value_string_or_null(level_colors, level);
396 if (!c)
397 return get_value_string(level_colors, LOGL_FATAL);
398 return c;
399}
400
Harald Welteaa00f992016-12-02 15:30:02 +0100401const char* log_category_name(int subsys)
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100402{
403 if (subsys < osmo_log_info->num_cat)
404 return osmo_log_info->cat[subsys].name;
405
406 return NULL;
407}
408
Neels Hofmeyr0e2a9432018-01-16 02:49:48 +0100409static const char *const_basename(const char *path)
410{
411 const char *bn = strrchr(path, '/');
412 if (!bn || !bn[1])
413 return path;
414 return bn + 1;
415}
416
Harald Welte3ae27582010-03-26 21:24:24 +0800417static void _output(struct log_target *target, unsigned int subsys,
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200418 unsigned int level, const char *file, int line, int cont,
Harald Welte76e72ab2011-02-17 15:52:39 +0100419 const char *format, va_list ap)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800420{
Harald Weltea8b1b212020-09-27 17:21:07 +0200421 char buf[MAX_LOG_SIZE];
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200422 int ret, len = 0, offset = 0, rem = sizeof(buf);
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100423 const char *c_subsys = NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800424
425 /* are we using color */
426 if (target->use_color) {
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100427 c_subsys = color(subsys);
428 if (c_subsys) {
Neels Hofmeyr5e518b52018-01-17 13:20:02 +0100429 ret = snprintf(buf + offset, rem, "%s", c_subsys);
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200430 if (ret < 0)
431 goto err;
432 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welted788f662010-03-26 09:45:03 +0800433 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800434 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800435 if (!cont) {
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100436 if (target->print_ext_timestamp) {
Harald Welte14c4c492018-06-28 08:28:52 +0200437#ifdef HAVE_LOCALTIME_R
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100438 struct tm tm;
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100439 struct timeval tv;
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200440 osmo_gettimeofday(&tv, NULL);
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100441 localtime_r(&tv.tv_sec, &tm);
442 ret = snprintf(buf + offset, rem, "%04d%02d%02d%02d%02d%02d%03d ",
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100443 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100444 tm.tm_hour, tm.tm_min, tm.tm_sec,
445 (int)(tv.tv_usec / 1000));
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100446 if (ret < 0)
447 goto err;
448 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte14c4c492018-06-28 08:28:52 +0200449#endif
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100450 } else if (target->print_timestamp) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800451 time_t tm;
Pau Espin Pedrol3aef2382019-06-12 18:50:29 +0200452 if ((tm = time(NULL)) == (time_t) -1)
453 goto err;
Pau Espin Pedrolcc794e92019-06-12 16:22:53 +0200454 /* Get human-readable representation of time.
455 man ctime: we need at least 26 bytes in buf */
456 if (rem < 26 || !ctime_r(&tm, buf + offset))
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200457 goto err;
Pau Espin Pedrolcc794e92019-06-12 16:22:53 +0200458 ret = strlen(buf + offset);
459 if (ret <= 0)
460 goto err;
461 /* Get rid of useless final '\n' added by ctime_r. We want a space instead. */
462 buf[offset + ret - 1] = ' ';
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200463 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800464 }
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100465 if (target->print_category) {
Neels Hofmeyre6534722018-01-16 03:02:06 +0100466 ret = snprintf(buf + offset, rem, "%s%s%s%s ",
467 target->use_color ? level_color(level) : "",
468 log_category_name(subsys),
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100469 target->use_color ? OSMO_LOGCOLOR_END : "",
Neels Hofmeyre6534722018-01-16 03:02:06 +0100470 c_subsys ? c_subsys : "");
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100471 if (ret < 0)
472 goto err;
473 OSMO_SNPRINTF_RET(ret, rem, offset, len);
474 }
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100475 if (target->print_level) {
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100476 ret = snprintf(buf + offset, rem, "%s%s%s%s ",
477 target->use_color ? level_color(level) : "",
478 log_level_str(level),
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100479 target->use_color ? OSMO_LOGCOLOR_END : "",
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100480 c_subsys ? c_subsys : "");
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100481 if (ret < 0)
482 goto err;
483 OSMO_SNPRINTF_RET(ret, rem, offset, len);
484 }
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100485 if (target->print_category_hex) {
486 ret = snprintf(buf + offset, rem, "<%4.4x> ", subsys);
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200487 if (ret < 0)
488 goto err;
489 OSMO_SNPRINTF_RET(ret, rem, offset, len);
490 }
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200491
492 if (target->print_filename_pos == LOG_FILENAME_POS_HEADER_END) {
493 switch (target->print_filename2) {
494 case LOG_FILENAME_NONE:
495 break;
496 case LOG_FILENAME_PATH:
497 ret = snprintf(buf + offset, rem, "%s:%d ", file, line);
498 if (ret < 0)
499 goto err;
500 OSMO_SNPRINTF_RET(ret, rem, offset, len);
501 break;
502 case LOG_FILENAME_BASENAME:
503 ret = snprintf(buf + offset, rem, "%s:%d ", const_basename(file), line);
504 if (ret < 0)
505 goto err;
506 OSMO_SNPRINTF_RET(ret, rem, offset, len);
507 break;
508 }
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100509 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800510 }
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200511 ret = vsnprintf(buf + offset, rem, format, ap);
512 if (ret < 0)
513 goto err;
514 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800515
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200516 /* For LOG_FILENAME_POS_LAST, print the source file info only when the caller ended the log
517 * message in '\n'. If so, nip the last '\n' away, insert the source file info and re-append an
518 * '\n'. All this to allow LOGP("start..."); LOGPC("...end\n") constructs. */
519 if (target->print_filename_pos == LOG_FILENAME_POS_LINE_END
520 && offset > 0 && buf[offset-1] == '\n') {
521 switch (target->print_filename2) {
522 case LOG_FILENAME_NONE:
523 break;
524 case LOG_FILENAME_PATH:
525 offset --;
526 ret = snprintf(buf + offset, rem, " (%s:%d)\n", file, line);
527 if (ret < 0)
528 goto err;
529 OSMO_SNPRINTF_RET(ret, rem, offset, len);
530 break;
531 case LOG_FILENAME_BASENAME:
532 offset --;
533 ret = snprintf(buf + offset, rem, " (%s:%d)\n", const_basename(file), line);
534 if (ret < 0)
535 goto err;
536 OSMO_SNPRINTF_RET(ret, rem, offset, len);
537 break;
538 }
539 }
540
Pau Espin Pedrol6407c822020-07-20 16:41:44 +0200541 if (target->use_color && c_subsys) {
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100542 ret = snprintf(buf + offset, rem, OSMO_LOGCOLOR_END);
Neels Hofmeyrc4759882018-01-16 02:10:48 +0100543 if (ret < 0)
544 goto err;
545 OSMO_SNPRINTF_RET(ret, rem, offset, len);
546 }
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200547err:
548 buf[sizeof(buf)-1] = '\0';
549 target->output(target, level, buf);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800550}
551
Neels Hofmeyr42240de2016-12-12 15:13:56 +0100552/* Catch internal logging category indexes as well as out-of-bounds indexes.
553 * For internal categories, the ID is negative starting with -1; and internal
554 * logging categories are added behind the user categories. For out-of-bounds
555 * indexes, return the index of DLGLOBAL. The returned category index is
556 * guaranteed to exist in osmo_log_info, otherwise the program would abort,
557 * which should never happen unless even the DLGLOBAL category is missing. */
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100558static inline int map_subsys(int subsys)
559{
Neels Hofmeyr74802262016-12-12 16:00:24 +0100560 /* Note: comparing signed and unsigned integers */
561
562 if (subsys > 0 && ((unsigned int)subsys) >= osmo_log_info->num_cat_user)
563 subsys = DLGLOBAL;
564
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100565 if (subsys < 0)
566 subsys = subsys_lib2index(subsys);
567
Neels Hofmeyrca135742016-12-12 14:18:54 +0100568 if (subsys < 0 || subsys >= osmo_log_info->num_cat)
Neels Hofmeyr42240de2016-12-12 15:13:56 +0100569 subsys = subsys_lib2index(DLGLOBAL);
570
Neels Hofmeyrca135742016-12-12 14:18:54 +0100571 OSMO_ASSERT(!(subsys < 0 || subsys >= osmo_log_info->num_cat));
572
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100573 return subsys;
574}
575
Maxc65c5b42017-03-15 13:20:23 +0100576static inline bool should_log_to_target(struct log_target *tar, int subsys,
577 int level)
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100578{
579 struct log_category *category;
580
581 category = &tar->categories[subsys];
582
583 /* subsystem is not supposed to be logged */
584 if (!category->enabled)
Maxc65c5b42017-03-15 13:20:23 +0100585 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100586
587 /* Check the global log level */
588 if (tar->loglevel != 0 && level < tar->loglevel)
Maxc65c5b42017-03-15 13:20:23 +0100589 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100590
591 /* Check the category log level */
592 if (tar->loglevel == 0 && category->loglevel != 0 &&
593 level < category->loglevel)
Maxc65c5b42017-03-15 13:20:23 +0100594 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100595
Holger Hans Peter Freyther79599ac2016-01-15 16:49:06 +0100596 /* Apply filters here... if that becomes messy we will
597 * need to put filters in a list and each filter will
598 * say stop, continue, output */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100599 if ((tar->filter_map & (1 << LOG_FLT_ALL)) != 0)
Maxc65c5b42017-03-15 13:20:23 +0100600 return true;
Holger Hans Peter Freyther79599ac2016-01-15 16:49:06 +0100601
602 if (osmo_log_info->filter_fn)
603 return osmo_log_info->filter_fn(&log_context, tar);
604
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100605 /* TODO: Check the filter/selector too? */
Maxc65c5b42017-03-15 13:20:23 +0100606 return true;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100607}
608
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200609/*! vararg version of logging function
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200610 * \param[in] subsys Logging sub-system
611 * \param[in] level Log level
612 * \param[in] file name of source code file
613 * \param[in] cont continuation (1) or new line (0)
614 * \param[in] format format string
615 * \param[in] ap vararg-list containing format string arguments
616 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200617void osmo_vlogp(int subsys, int level, const char *file, int line,
Harald Welte36c5a3e2011-08-27 14:33:19 +0200618 int cont, const char *format, va_list ap)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800619{
Harald Welte3ae27582010-03-26 21:24:24 +0800620 struct log_target *tar;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800621
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100622 subsys = map_subsys(subsys);
Harald Welteb43bc042011-06-27 10:29:17 +0200623
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200624 log_tgt_mutex_lock();
625
Harald Welte28222962011-02-18 20:37:04 +0100626 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200627 va_list bp;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800628
Maxc65c5b42017-03-15 13:20:23 +0100629 if (!should_log_to_target(tar, subsys, level))
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800630 continue;
631
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200632 /* According to the manpage, vsnprintf leaves the value of ap
633 * in undefined state. Since _output uses vsnprintf and it may
634 * be called several times, we have to pass a copy of ap. */
635 va_copy(bp, ap);
Harald Welted7c0a372016-12-02 13:52:59 +0100636 if (tar->raw_output)
637 tar->raw_output(tar, subsys, level, file, line, cont, format, bp);
638 else
639 _output(tar, subsys, level, file, line, cont, format, bp);
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200640 va_end(bp);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800641 }
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200642
643 log_tgt_mutex_unlock();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800644}
645
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200646/*! logging function used by DEBUGP() macro
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200647 * \param[in] subsys Logging sub-system
648 * \param[in] file name of source code file
649 * \param[in] cont continuation (1) or new line (0)
650 * \param[in] format format string
651 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200652void logp(int subsys, const char *file, int line, int cont,
Harald Welte3ae27582010-03-26 21:24:24 +0800653 const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800654{
655 va_list ap;
656
657 va_start(ap, format);
Harald Welte36c5a3e2011-08-27 14:33:19 +0200658 osmo_vlogp(subsys, LOGL_DEBUG, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800659 va_end(ap);
660}
661
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200662/*! logging function used by LOGP() macro
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200663 * \param[in] subsys Logging sub-system
664 * \param[in] level Log level
665 * \param[in] file name of source code file
666 * \param[in] cont continuation (1) or new line (0)
667 * \param[in] format format string
668 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200669void logp2(int subsys, unsigned int level, const char *file, int line, int cont, const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800670{
671 va_list ap;
672
673 va_start(ap, format);
Harald Welte36c5a3e2011-08-27 14:33:19 +0200674 osmo_vlogp(subsys, level, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800675 va_end(ap);
676}
677
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200678/*! Register a new log target with the logging core
Harald Welte18fc4652011-08-17 14:14:17 +0200679 * \param[in] target Log target to be registered
680 */
Harald Welte3ae27582010-03-26 21:24:24 +0800681void log_add_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800682{
Harald Welte28222962011-02-18 20:37:04 +0100683 llist_add_tail(&target->entry, &osmo_log_target_list);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800684}
685
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200686/*! Unregister a log target from the logging core
Harald Welte18fc4652011-08-17 14:14:17 +0200687 * \param[in] target Log target to be unregistered
688 */
Harald Welte3ae27582010-03-26 21:24:24 +0800689void log_del_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800690{
691 llist_del(&target->entry);
692}
693
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200694/*! Reset (clear) the logging context */
Harald Welte3ae27582010-03-26 21:24:24 +0800695void log_reset_context(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800696{
Harald Welte3ae27582010-03-26 21:24:24 +0800697 memset(&log_context, 0, sizeof(log_context));
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800698}
699
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200700/*! Set the logging context
Harald Welte18fc4652011-08-17 14:14:17 +0200701 * \param[in] ctx_nr logging context number
702 * \param[in] value value to which the context is to be set
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200703 * \returns 0 in case of success; negative otherwise
Harald Welte18fc4652011-08-17 14:14:17 +0200704 *
705 * A logging context is something like the subscriber identity to which
706 * the currently processed message relates, or the BTS through which it
707 * was received. As soon as this data is known, it can be set using
708 * this function. The main use of context information is for logging
709 * filters.
710 */
Harald Welte3ae27582010-03-26 21:24:24 +0800711int log_set_context(uint8_t ctx_nr, void *value)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800712{
Harald Welte3ae27582010-03-26 21:24:24 +0800713 if (ctx_nr > LOG_MAX_CTX)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800714 return -EINVAL;
715
Harald Welte3ae27582010-03-26 21:24:24 +0800716 log_context.ctx[ctx_nr] = value;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800717
718 return 0;
719}
720
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200721/*! Enable the \ref LOG_FLT_ALL log filter
Harald Welte18fc4652011-08-17 14:14:17 +0200722 * \param[in] target Log target to be affected
723 * \param[in] all enable (1) or disable (0) the ALL filter
724 *
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100725 * When the \ref LOG_FLT_ALL filter is enabled, all log messages will be
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +0100726 * printed. It acts as a wildcard. Setting it to \a 1 means there is no
727 * filtering.
Harald Welte18fc4652011-08-17 14:14:17 +0200728 */
Harald Welte3ae27582010-03-26 21:24:24 +0800729void log_set_all_filter(struct log_target *target, int all)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800730{
731 if (all)
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100732 target->filter_map |= (1 << LOG_FLT_ALL);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800733 else
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100734 target->filter_map &= ~(1 << LOG_FLT_ALL);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800735}
736
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200737/*! Enable or disable the use of colored output
Harald Welte18fc4652011-08-17 14:14:17 +0200738 * \param[in] target Log target to be affected
739 * \param[in] use_color Use color (1) or don't use color (0)
740 */
Harald Welte3ae27582010-03-26 21:24:24 +0800741void log_set_use_color(struct log_target *target, int use_color)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800742{
743 target->use_color = use_color;
744}
745
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200746/*! Enable or disable printing of timestamps while logging
Harald Welte18fc4652011-08-17 14:14:17 +0200747 * \param[in] target Log target to be affected
748 * \param[in] print_timestamp Enable (1) or disable (0) timestamps
749 */
Harald Welte3ae27582010-03-26 21:24:24 +0800750void log_set_print_timestamp(struct log_target *target, int print_timestamp)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800751{
752 target->print_timestamp = print_timestamp;
753}
754
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200755/*! Enable or disable printing of extended timestamps while logging
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100756 * \param[in] target Log target to be affected
757 * \param[in] print_timestamp Enable (1) or disable (0) timestamps
758 *
759 * When both timestamp and extended timestamp is enabled then only
760 * the extended timestamp will be used. The format of the timestamp
761 * is YYYYMMDDhhmmssnnn.
762 */
763void log_set_print_extended_timestamp(struct log_target *target, int print_timestamp)
764{
765 target->print_ext_timestamp = print_timestamp;
766}
767
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100768/*! Use log_set_print_filename2() instead.
769 * Call log_set_print_filename2() with LOG_FILENAME_PATH or LOG_FILENAME_NONE, *as well as* call
770 * log_set_print_category_hex() with the argument passed to this function. This is to mirror legacy
771 * behavior, which combined the category in hex with the filename. For example, if the category-hex
772 * output were no longer affected by log_set_print_filename(), many unit tests (in libosmocore as well as
773 * dependent projects) would fail since they expect the category to disappear along with the filename.
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200774 * \param[in] target Log target to be affected
775 * \param[in] print_filename Enable (1) or disable (0) filenames
776 */
777void log_set_print_filename(struct log_target *target, int print_filename)
778{
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100779 log_set_print_filename2(target, print_filename ? LOG_FILENAME_PATH : LOG_FILENAME_NONE);
780 log_set_print_category_hex(target, print_filename);
781}
782
783/*! Enable or disable printing of the filename while logging.
784 * \param[in] target Log target to be affected.
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700785 * \param[in] lft An LOG_FILENAME_* enum value.
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100786 * LOG_FILENAME_NONE omits the source file and line information from logs.
787 * LOG_FILENAME_PATH prints the entire source file path as passed to LOGP macros.
788 */
789void log_set_print_filename2(struct log_target *target, enum log_filename_type lft)
790{
791 target->print_filename2 = lft;
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200792}
793
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200794/*! Set the position where on a log line the source file info should be logged.
795 * \param[in] target Log target to be affected.
796 * \param[in] pos A LOG_FILENAME_POS_* enum value.
797 * LOG_FILENAME_POS_DEFAULT logs just before the caller supplied log message.
798 * LOG_FILENAME_POS_LAST logs only at the end of a log line, where the caller issued an '\n' to end the
799 */
800void log_set_print_filename_pos(struct log_target *target, enum log_filename_pos pos)
801{
802 target->print_filename_pos = pos;
803}
804
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200805/*! Enable or disable printing of the category name
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100806 * \param[in] target Log target to be affected
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700807 * \param[in] print_category Enable (1) or disable (0) filenames
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100808 *
809 * Print the category/subsys name in front of every log message.
810 */
811void log_set_print_category(struct log_target *target, int print_category)
812{
813 target->print_category = print_category;
814}
815
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100816/*! Enable or disable printing of the category number in hex ('<000b>').
817 * \param[in] target Log target to be affected.
818 * \param[in] print_category_hex Enable (1) or disable (0) hex category.
819 */
820void log_set_print_category_hex(struct log_target *target, int print_category_hex)
821{
822 target->print_category_hex = print_category_hex;
823}
824
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100825/*! Enable or disable printing of the log level name.
826 * \param[in] target Log target to be affected
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700827 * \param[in] print_level Enable (1) or disable (0) log level name
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100828 *
829 * Print the log level name in front of every log message.
830 */
831void log_set_print_level(struct log_target *target, int print_level)
832{
833 target->print_level = (bool)print_level;
834}
835
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200836/*! Set the global log level for a given log target
Harald Welte18fc4652011-08-17 14:14:17 +0200837 * \param[in] target Log target to be affected
838 * \param[in] log_level New global log level
839 */
Harald Welte3ae27582010-03-26 21:24:24 +0800840void log_set_log_level(struct log_target *target, int log_level)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800841{
842 target->loglevel = log_level;
843}
844
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200845/*! Set a category filter on a given log target
Harald Weltede6e4982012-12-06 21:25:27 +0100846 * \param[in] target Log target to be affected
847 * \param[in] category Log category to be affected
848 * \param[in] enable whether to enable or disable the filter
849 * \param[in] level Log level of the filter
850 */
Harald Welte3ae27582010-03-26 21:24:24 +0800851void log_set_category_filter(struct log_target *target, int category,
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800852 int enable, int level)
853{
Neels Hofmeyr886d6fd2016-12-12 13:49:03 +0100854 if (!target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800855 return;
Neels Hofmeyr886d6fd2016-12-12 13:49:03 +0100856 category = map_subsys(category);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800857 target->categories[category].enabled = !!enable;
858 target->categories[category].loglevel = level;
859}
860
Harald Welte44c0f632017-01-15 17:58:29 +0100861#if (!EMBEDDED)
Harald Welte76e72ab2011-02-17 15:52:39 +0100862static void _file_output(struct log_target *target, unsigned int level,
863 const char *log)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800864{
Harald Welte0083cd32010-08-25 14:55:44 +0200865 fprintf(target->tgt_file.out, "%s", log);
866 fflush(target->tgt_file.out);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800867}
Harald Welte44c0f632017-01-15 17:58:29 +0100868#endif
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800869
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200870/*! Create a new log target skeleton
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200871 * \returns dynamically-allocated log target
872 * This funcition allocates a \ref log_target and initializes it
873 * with some default values. The newly created target is not
874 * registered yet.
875 */
Harald Welte3ae27582010-03-26 21:24:24 +0800876struct log_target *log_target_create(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800877{
Harald Welte3ae27582010-03-26 21:24:24 +0800878 struct log_target *target;
Harald Weltecc6313c2010-03-26 22:04:03 +0800879 unsigned int i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800880
Max68bf16a2018-01-10 17:00:43 +0100881 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100882
Harald Welte3ae27582010-03-26 21:24:24 +0800883 target = talloc_zero(tall_log_ctx, struct log_target);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800884 if (!target)
885 return NULL;
886
Pau Espin Pedrol9d4a36e2018-07-26 11:55:33 +0200887 target->categories = talloc_zero_array(target,
Harald Welteb43bc042011-06-27 10:29:17 +0200888 struct log_category,
889 osmo_log_info->num_cat);
890 if (!target->categories) {
891 talloc_free(target);
892 return NULL;
893 }
894
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800895 INIT_LLIST_HEAD(&target->entry);
Harald Weltecc6313c2010-03-26 22:04:03 +0800896
897 /* initialize the per-category enabled/loglevel from defaults */
Harald Welte4ebdf742010-05-19 19:54:00 +0200898 for (i = 0; i < osmo_log_info->num_cat; i++) {
Harald Weltecc6313c2010-03-26 22:04:03 +0800899 struct log_category *cat = &target->categories[i];
Harald Welte4ebdf742010-05-19 19:54:00 +0200900 cat->enabled = osmo_log_info->cat[i].enabled;
901 cat->loglevel = osmo_log_info->cat[i].loglevel;
Harald Weltecc6313c2010-03-26 22:04:03 +0800902 }
903
904 /* global settings */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800905 target->use_color = 1;
906 target->print_timestamp = 0;
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100907 target->print_filename2 = LOG_FILENAME_PATH;
908 target->print_category_hex = true;
Harald Weltecc6313c2010-03-26 22:04:03 +0800909
910 /* global log level */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800911 target->loglevel = 0;
912 return target;
913}
914
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200915/*! Create the STDERR log target
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200916 * \returns dynamically-allocated \ref log_target for STDERR */
Harald Welte3ae27582010-03-26 21:24:24 +0800917struct log_target *log_target_create_stderr(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800918{
Harald Weltea3b844c2010-03-27 00:04:40 +0800919/* since C89/C99 says stderr is a macro, we can safely do this! */
Harald Welteb93ce5a2017-05-15 10:58:15 +0200920#if !EMBEDDED && defined(stderr)
Harald Welte3ae27582010-03-26 21:24:24 +0800921 struct log_target *target;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800922
Harald Welte3ae27582010-03-26 21:24:24 +0800923 target = log_target_create();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800924 if (!target)
925 return NULL;
926
Harald Welte28222962011-02-18 20:37:04 +0100927 target->type = LOG_TGT_TYPE_STDERR;
Harald Welte0083cd32010-08-25 14:55:44 +0200928 target->tgt_file.out = stderr;
929 target->output = _file_output;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800930 return target;
Harald Weltea3b844c2010-03-27 00:04:40 +0800931#else
932 return NULL;
933#endif /* stderr */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800934}
935
Harald Welte44c0f632017-01-15 17:58:29 +0100936#if (!EMBEDDED)
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200937/*! Create a new file-based log target
Harald Welte18fc4652011-08-17 14:14:17 +0200938 * \param[in] fname File name of the new log file
939 * \returns Log target in case of success, NULL otherwise
940 */
Harald Welte3086c392010-08-25 19:10:50 +0200941struct log_target *log_target_create_file(const char *fname)
942{
943 struct log_target *target;
944
945 target = log_target_create();
946 if (!target)
947 return NULL;
948
Harald Welte28222962011-02-18 20:37:04 +0100949 target->type = LOG_TGT_TYPE_FILE;
Harald Welte3086c392010-08-25 19:10:50 +0200950 target->tgt_file.out = fopen(fname, "a");
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +0700951 if (!target->tgt_file.out) {
952 log_target_destroy(target);
Harald Welte3086c392010-08-25 19:10:50 +0200953 return NULL;
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +0700954 }
Harald Welte3086c392010-08-25 19:10:50 +0200955
956 target->output = _file_output;
957
958 target->tgt_file.fname = talloc_strdup(target, fname);
959
960 return target;
961}
Harald Welte44c0f632017-01-15 17:58:29 +0100962#endif
Harald Welte3086c392010-08-25 19:10:50 +0200963
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200964/*! Find a registered log target
Harald Welte18fc4652011-08-17 14:14:17 +0200965 * \param[in] type Log target type
966 * \param[in] fname File name
967 * \returns Log target (if found), NULL otherwise
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200968 * Must be called with mutex osmo_log_tgt_mutex held, see log_tgt_mutex_lock.
Harald Welte18fc4652011-08-17 14:14:17 +0200969 */
Harald Welte28222962011-02-18 20:37:04 +0100970struct log_target *log_target_find(int type, const char *fname)
971{
972 struct log_target *tgt;
973
974 llist_for_each_entry(tgt, &osmo_log_target_list, entry) {
975 if (tgt->type != type)
976 continue;
Maxc90f40a2018-01-11 10:52:28 +0100977 switch (tgt->type) {
978 case LOG_TGT_TYPE_FILE:
Harald Welte28222962011-02-18 20:37:04 +0100979 if (!strcmp(fname, tgt->tgt_file.fname))
980 return tgt;
Maxc90f40a2018-01-11 10:52:28 +0100981 break;
982 case LOG_TGT_TYPE_GSMTAP:
983 if (!strcmp(fname, tgt->tgt_gsmtap.hostname))
984 return tgt;
985 break;
986 default:
Harald Welte28222962011-02-18 20:37:04 +0100987 return tgt;
Maxc90f40a2018-01-11 10:52:28 +0100988 }
Harald Welte28222962011-02-18 20:37:04 +0100989 }
990 return NULL;
991}
992
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200993/*! Unregister, close and delete a log target
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700994 * \param[in] target log target to unregister, close and delete */
Harald Welte3086c392010-08-25 19:10:50 +0200995void log_target_destroy(struct log_target *target)
996{
997
998 /* just in case, to make sure we don't have any references */
999 log_del_target(target);
1000
Harald Welte44c0f632017-01-15 17:58:29 +01001001#if (!EMBEDDED)
Vadim Yanitskiy744236b2020-09-09 04:42:22 +07001002 switch (target->type) {
1003 case LOG_TGT_TYPE_FILE:
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +07001004 if (target->tgt_file.out == NULL)
1005 break;
Vadim Yanitskiy744236b2020-09-09 04:42:22 +07001006 fclose(target->tgt_file.out);
1007 target->tgt_file.out = NULL;
1008 break;
Vadim Yanitskiy04f42712020-09-09 04:47:25 +07001009#ifdef HAVE_SYSLOG_H
1010 case LOG_TGT_TYPE_SYSLOG:
1011 closelog();
1012 break;
1013#endif /* HAVE_SYSLOG_H */
Vadim Yanitskiy744236b2020-09-09 04:42:22 +07001014 default:
1015 /* make GCC happy */
1016 break;
Harald Welte3086c392010-08-25 19:10:50 +02001017 }
Harald Welte44c0f632017-01-15 17:58:29 +01001018#endif
Harald Welte3086c392010-08-25 19:10:50 +02001019
1020 talloc_free(target);
1021}
1022
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001023/*! close and re-open a log file (for log file rotation)
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001024 * \param[in] target log target to re-open
1025 * \returns 0 in case of success; negative otherwise */
Harald Welte3086c392010-08-25 19:10:50 +02001026int log_target_file_reopen(struct log_target *target)
1027{
1028 fclose(target->tgt_file.out);
1029
1030 target->tgt_file.out = fopen(target->tgt_file.fname, "a");
1031 if (!target->tgt_file.out)
1032 return -errno;
1033
1034 /* we assume target->output already to be set */
1035
1036 return 0;
1037}
1038
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001039/*! close and re-open all log files (for log file rotation)
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001040 * \returns 0 in case of success; negative otherwise */
Harald Welte4de854d2013-03-18 19:01:40 +01001041int log_targets_reopen(void)
1042{
1043 struct log_target *tar;
1044 int rc = 0;
1045
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001046 log_tgt_mutex_lock();
1047
Harald Welte4de854d2013-03-18 19:01:40 +01001048 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
1049 switch (tar->type) {
1050 case LOG_TGT_TYPE_FILE:
1051 if (log_target_file_reopen(tar) < 0)
1052 rc = -1;
1053 break;
1054 default:
1055 break;
1056 }
1057 }
1058
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001059 log_tgt_mutex_unlock();
1060
Harald Welte4de854d2013-03-18 19:01:40 +01001061 return rc;
1062}
1063
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001064/*! Initialize the Osmocom logging core
Max72dfd432018-12-04 11:24:18 +01001065 * \param[in] inf Information regarding logging categories, could be NULL
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +07001066 * \param[in] ctx talloc context for logging allocations
Harald Welte18fc4652011-08-17 14:14:17 +02001067 * \returns 0 in case of success, negative in case of error
Max72dfd432018-12-04 11:24:18 +01001068 *
1069 * If inf is NULL then only library-internal categories are initialized.
Harald Welte18fc4652011-08-17 14:14:17 +02001070 */
Harald Welteb43bc042011-06-27 10:29:17 +02001071int log_init(const struct log_info *inf, void *ctx)
Harald Welte4a2bb9e2010-03-26 09:33:40 +08001072{
Harald Welteb43bc042011-06-27 10:29:17 +02001073 int i;
Philipp Maierdcad1c52020-03-25 11:25:59 +01001074 struct log_info_cat *cat_ptr;
Harald Welteb43bc042011-06-27 10:29:17 +02001075
Philipp Maierdc02c062020-05-12 17:51:25 +02001076 /* Ensure that log_init is not called multiple times */
1077 OSMO_ASSERT(tall_log_ctx == NULL)
1078
Harald Welteb43bc042011-06-27 10:29:17 +02001079 tall_log_ctx = talloc_named_const(ctx, 1, "logging");
1080 if (!tall_log_ctx)
1081 return -ENOMEM;
1082
1083 osmo_log_info = talloc_zero(tall_log_ctx, struct log_info);
1084 if (!osmo_log_info)
1085 return -ENOMEM;
1086
Max72dfd432018-12-04 11:24:18 +01001087 osmo_log_info->num_cat = ARRAY_SIZE(internal_cat);
1088
1089 if (inf) {
1090 osmo_log_info->filter_fn = inf->filter_fn;
1091 osmo_log_info->num_cat_user = inf->num_cat;
1092 osmo_log_info->num_cat += inf->num_cat;
1093 }
Harald Welteb43bc042011-06-27 10:29:17 +02001094
Philipp Maierdcad1c52020-03-25 11:25:59 +01001095 cat_ptr = talloc_zero_array(osmo_log_info, struct log_info_cat,
1096 osmo_log_info->num_cat);
1097 if (!cat_ptr) {
Harald Welteb43bc042011-06-27 10:29:17 +02001098 talloc_free(osmo_log_info);
1099 osmo_log_info = NULL;
1100 return -ENOMEM;
1101 }
1102
Philipp Maierdcad1c52020-03-25 11:25:59 +01001103 /* copy over the user part and sanitize loglevel */
1104 if (inf) {
Max72dfd432018-12-04 11:24:18 +01001105 for (i = 0; i < inf->num_cat; i++) {
Philipp Maierdcad1c52020-03-25 11:25:59 +01001106 memcpy(&cat_ptr[i], &inf->cat[i],
1107 sizeof(struct log_info_cat));
1108
1109 /* Make sure that the loglevel is set to NOTICE in case
1110 * no loglevel has been preset. */
1111 if (!cat_ptr[i].loglevel) {
1112 cat_ptr[i].loglevel = LOGL_NOTICE;
1113 }
Max72dfd432018-12-04 11:24:18 +01001114 }
Harald Welteb43bc042011-06-27 10:29:17 +02001115 }
1116
1117 /* copy over the library part */
Harald Welte9fe16522011-06-27 14:00:03 +02001118 for (i = 0; i < ARRAY_SIZE(internal_cat); i++) {
Harald Weltece9fec32011-06-27 14:19:16 +02001119 unsigned int cn = osmo_log_info->num_cat_user + i;
Philipp Maierdcad1c52020-03-25 11:25:59 +01001120 memcpy(&cat_ptr[cn], &internal_cat[i], sizeof(struct log_info_cat));
Harald Welte9fe16522011-06-27 14:00:03 +02001121 }
1122
Philipp Maierdcad1c52020-03-25 11:25:59 +01001123 osmo_log_info->cat = cat_ptr;
1124
Harald Welte9fe16522011-06-27 14:00:03 +02001125 return 0;
Harald Welte4a2bb9e2010-03-26 09:33:40 +08001126}
Harald Welte18fc4652011-08-17 14:14:17 +02001127
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001128/* De-initialize the Osmocom logging core
Harald Welte69e6c3c2016-04-20 10:41:27 +02001129 * This function destroys all targets and releases associated memory */
1130void log_fini(void)
1131{
1132 struct log_target *tar, *tar2;
1133
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001134 log_tgt_mutex_lock();
1135
Harald Welte69e6c3c2016-04-20 10:41:27 +02001136 llist_for_each_entry_safe(tar, tar2, &osmo_log_target_list, entry)
1137 log_target_destroy(tar);
1138
1139 talloc_free(osmo_log_info);
1140 osmo_log_info = NULL;
1141 talloc_free(tall_log_ctx);
1142 tall_log_ctx = NULL;
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001143
1144 log_tgt_mutex_unlock();
Harald Welte69e6c3c2016-04-20 10:41:27 +02001145}
1146
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001147/*! Check whether a log entry will be generated.
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001148 * \returns != 0 if a log entry might get generated by at least one target */
1149int log_check_level(int subsys, unsigned int level)
1150{
1151 struct log_target *tar;
1152
Max68bf16a2018-01-10 17:00:43 +01001153 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +01001154
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +01001155 subsys = map_subsys(subsys);
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001156
1157 /* TODO: The following could/should be cached (update on config) */
1158
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001159 log_tgt_mutex_lock();
1160
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001161 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
Maxc65c5b42017-03-15 13:20:23 +01001162 if (!should_log_to_target(tar, subsys, level))
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001163 continue;
1164
1165 /* This might get logged (ignoring filters) */
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001166 log_tgt_mutex_unlock();
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001167 return 1;
1168 }
1169
1170 /* We are sure, that this will not be logged. */
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001171 log_tgt_mutex_unlock();
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001172 return 0;
1173}
1174
Sylvain Munautdca7d2c2012-04-18 21:53:23 +02001175/*! @} */