blob: 01a00da35cb52462909472dc7ca5b1bf50eb8e9c [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,
Neels Hofmeyrc5b71752019-11-20 04:50:52 +0100180 .color = OSMO_LOGCOLOR_BRIGHTWHITE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100181 .color = "\033[38;5;31m",
Andreas Eversbergc626da92011-10-28 03:53:50 +0200182 },
Harald Welte7fd0c832014-08-20 19:58:13 +0200183 [INT2IDX(DLCTRL)] = {
184 .name = "DLCTRL",
185 .description = "Control Interface",
186 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100187 .color = "\033[38;5;33m",
Harald Welte7fd0c832014-08-20 19:58:13 +0200188 },
Holger Hans Peter Freythera5dc19d2014-12-04 14:35:21 +0100189 [INT2IDX(DLGTP)] = {
190 .name = "DLGTP",
191 .description = "GPRS GTP library",
192 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100193 .color = "\033[38;5;35m",
Holger Hans Peter Freythera5dc19d2014-12-04 14:35:21 +0100194 },
Jacob Erlbeck79125ec2015-11-02 15:17:50 +0100195 [INT2IDX(DLSTATS)] = {
196 .name = "DLSTATS",
197 .description = "Statistics messages and logging",
198 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100199 .color = "\033[38;5;37m",
Jacob Erlbeck79125ec2015-11-02 15:17:50 +0100200 },
Neels Hofmeyr9795cf12016-12-10 17:01:06 +0100201 [INT2IDX(DLGSUP)] = {
202 .name = "DLGSUP",
203 .description = "Generic Subscriber Update Protocol",
204 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100205 .color = "\033[38;5;39m",
Neels Hofmeyr9795cf12016-12-10 17:01:06 +0100206 },
Harald Weltec0f00072016-04-27 18:32:35 +0200207 [INT2IDX(DLOAP)] = {
208 .name = "DLOAP",
209 .description = "Osmocom Authentication Protocol",
210 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100211 .color = "\033[38;5;41m",
Harald Weltec0f00072016-04-27 18:32:35 +0200212 },
Harald Welte059c4042017-04-03 22:20:49 +0200213 [INT2IDX(DLSS7)] = {
214 .name = "DLSS7",
215 .description = "libosmo-sigtran Signalling System 7",
216 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100217 .color = "\033[38;5;43m",
Harald Welte059c4042017-04-03 22:20:49 +0200218 },
219 [INT2IDX(DLSCCP)] = {
220 .name = "DLSCCP",
221 .description = "libosmo-sigtran SCCP Implementation",
222 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100223 .color = "\033[38;5;45m",
Harald Welte059c4042017-04-03 22:20:49 +0200224 },
225 [INT2IDX(DLSUA)] = {
226 .name = "DLSUA",
227 .description = "libosmo-sigtran SCCP User Adaptation",
228 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100229 .color = "\033[38;5;47m",
Harald Welte059c4042017-04-03 22:20:49 +0200230 },
231 [INT2IDX(DLM3UA)] = {
232 .name = "DLM3UA",
233 .description = "libosmo-sigtran MTP3 User Adaptation",
234 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100235 .color = "\033[38;5;49m",
Harald Welte059c4042017-04-03 22:20:49 +0200236 },
Neels Hofmeyra7ccf612017-07-11 18:43:09 +0200237 [INT2IDX(DLMGCP)] = {
238 .name = "DLMGCP",
239 .description = "libosmo-mgcp Media Gateway Control Protocol",
240 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100241 .color = "\033[38;5;51m",
Neels Hofmeyra7ccf612017-07-11 18:43:09 +0200242 },
Pau Espin Pedrol8fd85572018-02-27 19:43:10 +0100243 [INT2IDX(DLJIBUF)] = {
244 .name = "DLJIBUF",
245 .description = "libosmo-netif Jitter Buffer",
246 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100247 .color = "\033[38;5;53m",
Pau Espin Pedrol8fd85572018-02-27 19:43:10 +0100248 },
Max450f5ac2019-02-14 19:12:03 +0100249 [INT2IDX(DLRSPRO)] = {
250 .name = "DLRSPRO",
251 .description = "Remote SIM protocol",
252 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100253 .color = "\033[38;5;55m",
Max450f5ac2019-02-14 19:12:03 +0100254 },
Alexander Couzens6a161492020-07-12 13:45:50 +0200255 [INT2IDX(DLNS)] = {
256 .name = "DLNS",
257 .description = "GPRS NS layer",
258 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100259 .color = "\033[38;5;57m",
Alexander Couzens6a161492020-07-12 13:45:50 +0200260 },
Harald Weltefde19ed2020-12-07 21:43:51 +0100261 [INT2IDX(DLBSSGP)] = {
262 .name = "DLBSSGP",
263 .description = "GPRS BSSGP layer",
264 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100265 .color = "\033[38;5;59m",
Harald Weltefde19ed2020-12-07 21:43:51 +0100266 },
Harald Welteb43bc042011-06-27 10:29:17 +0200267};
268
Neels Hofmeyrba0762d2018-09-10 13:56:03 +0200269void assert_loginfo(const char *src)
Harald Welte18a7d812017-03-16 23:54:55 +0100270{
271 if (!osmo_log_info) {
272 fprintf(stderr, "ERROR: osmo_log_info == NULL! "
Max68bf16a2018-01-10 17:00:43 +0100273 "You must call log_init() before using logging in %s()!\n", src);
Harald Welte18a7d812017-03-16 23:54:55 +0100274 OSMO_ASSERT(osmo_log_info);
275 }
276}
277
Harald Welteb43bc042011-06-27 10:29:17 +0200278/* special magic for negative (library-internal) log subsystem numbers */
279static int subsys_lib2index(int subsys)
280{
281 return (subsys * -1) + (osmo_log_info->num_cat_user-1);
282}
283
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200284/*! Parse a human-readable log level into a numeric value
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700285 * \param[in] lvl zero-terminated string containing log level name
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200286 * \returns numeric log level
287 */
Harald Welte3ae27582010-03-26 21:24:24 +0800288int log_parse_level(const char *lvl)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800289{
290 return get_string_value(loglevel_strs, lvl);
291}
292
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200293/*! convert a numeric log level into human-readable string
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700294 * \param[in] lvl numeric log level
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200295 * \returns zero-terminated string (log level name)
296 */
Harald Welte9ac22252010-05-11 11:19:40 +0200297const char *log_level_str(unsigned int lvl)
298{
299 return get_value_string(loglevel_strs, lvl);
300}
301
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200302/*! parse a human-readable log category into numeric form
Harald Welte18fc4652011-08-17 14:14:17 +0200303 * \param[in] category human-readable log category name
304 * \returns numeric category value, or -EINVAL otherwise
305 */
Harald Welte3ae27582010-03-26 21:24:24 +0800306int log_parse_category(const char *category)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800307{
308 int i;
309
Max68bf16a2018-01-10 17:00:43 +0100310 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100311
Harald Welte4ebdf742010-05-19 19:54:00 +0200312 for (i = 0; i < osmo_log_info->num_cat; ++i) {
Harald Welteb43bc042011-06-27 10:29:17 +0200313 if (osmo_log_info->cat[i].name == NULL)
314 continue;
Harald Welte4ebdf742010-05-19 19:54:00 +0200315 if (!strcasecmp(osmo_log_info->cat[i].name+1, category))
Harald Weltefaadfe22010-03-26 21:05:43 +0800316 return i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800317 }
318
319 return -EINVAL;
320}
321
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200322/*! parse the log category mask
Harald Welte18fc4652011-08-17 14:14:17 +0200323 * \param[in] target log target to be configured
324 * \param[in] _mask log category mask string
325 *
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800326 * The format can be this: category1:category2:category3
327 * or category1,2:category2,3:...
328 */
Harald Welte3ae27582010-03-26 21:24:24 +0800329void log_parse_category_mask(struct log_target* target, const char *_mask)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800330{
331 int i = 0;
332 char *mask = strdup(_mask);
333 char *category_token = NULL;
334
Max68bf16a2018-01-10 17:00:43 +0100335 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100336
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800337 /* Disable everything to enable it afterwards */
Harald Welteb43bc042011-06-27 10:29:17 +0200338 for (i = 0; i < osmo_log_info->num_cat; ++i)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800339 target->categories[i].enabled = 0;
340
341 category_token = strtok(mask, ":");
Neels Hofmeyrda1b20c2016-04-14 15:12:16 +0200342 OSMO_ASSERT(category_token);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800343 do {
Harald Welte4ebdf742010-05-19 19:54:00 +0200344 for (i = 0; i < osmo_log_info->num_cat; ++i) {
Nico Golde0262d3f2012-09-21 17:44:58 +0200345 size_t length, cat_length;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800346 char* colon = strstr(category_token, ",");
Nico Golde0262d3f2012-09-21 17:44:58 +0200347
348 if (!osmo_log_info->cat[i].name)
349 continue;
350
351 length = strlen(category_token);
352 cat_length = strlen(osmo_log_info->cat[i].name);
Pablo Neira Ayuso300e78d2011-08-11 13:24:18 +0200353
354 /* Use longest length not to match subocurrences. */
355 if (cat_length > length)
356 length = cat_length;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800357
358 if (colon)
359 length = colon - category_token;
360
Harald Welte4ebdf742010-05-19 19:54:00 +0200361 if (strncasecmp(osmo_log_info->cat[i].name,
362 category_token, length) == 0) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800363 int level = 0;
364
365 if (colon)
366 level = atoi(colon+1);
367
Harald Weltefaadfe22010-03-26 21:05:43 +0800368 target->categories[i].enabled = 1;
369 target->categories[i].loglevel = level;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800370 }
371 }
372 } while ((category_token = strtok(NULL, ":")));
373
374 free(mask);
375}
376
377static const char* color(int subsys)
378{
Harald Welte4ebdf742010-05-19 19:54:00 +0200379 if (subsys < osmo_log_info->num_cat)
380 return osmo_log_info->cat[subsys].color;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800381
Harald Welted788f662010-03-26 09:45:03 +0800382 return NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800383}
384
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100385static const struct value_string level_colors[] = {
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100386 { LOGL_DEBUG, OSMO_LOGCOLOR_BLUE },
387 { LOGL_INFO, OSMO_LOGCOLOR_GREEN },
388 { LOGL_NOTICE, OSMO_LOGCOLOR_YELLOW },
389 { LOGL_ERROR, OSMO_LOGCOLOR_RED },
390 { LOGL_FATAL, OSMO_LOGCOLOR_RED },
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100391 { 0, NULL }
392};
393
394static const char *level_color(int level)
395{
396 const char *c = get_value_string_or_null(level_colors, level);
397 if (!c)
398 return get_value_string(level_colors, LOGL_FATAL);
399 return c;
400}
401
Harald Welteaa00f992016-12-02 15:30:02 +0100402const char* log_category_name(int subsys)
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100403{
404 if (subsys < osmo_log_info->num_cat)
405 return osmo_log_info->cat[subsys].name;
406
407 return NULL;
408}
409
Neels Hofmeyr0e2a9432018-01-16 02:49:48 +0100410static const char *const_basename(const char *path)
411{
412 const char *bn = strrchr(path, '/');
413 if (!bn || !bn[1])
414 return path;
415 return bn + 1;
416}
417
Harald Welte3ae27582010-03-26 21:24:24 +0800418static void _output(struct log_target *target, unsigned int subsys,
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200419 unsigned int level, const char *file, int line, int cont,
Harald Welte76e72ab2011-02-17 15:52:39 +0100420 const char *format, va_list ap)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800421{
Harald Weltea8b1b212020-09-27 17:21:07 +0200422 char buf[MAX_LOG_SIZE];
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200423 int ret, len = 0, offset = 0, rem = sizeof(buf);
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100424 const char *c_subsys = NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800425
426 /* are we using color */
427 if (target->use_color) {
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100428 c_subsys = color(subsys);
429 if (c_subsys) {
Neels Hofmeyr5e518b52018-01-17 13:20:02 +0100430 ret = snprintf(buf + offset, rem, "%s", c_subsys);
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200431 if (ret < 0)
432 goto err;
433 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welted788f662010-03-26 09:45:03 +0800434 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800435 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800436 if (!cont) {
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100437 if (target->print_ext_timestamp) {
Harald Welte14c4c492018-06-28 08:28:52 +0200438#ifdef HAVE_LOCALTIME_R
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100439 struct tm tm;
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100440 struct timeval tv;
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200441 osmo_gettimeofday(&tv, NULL);
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100442 localtime_r(&tv.tv_sec, &tm);
443 ret = snprintf(buf + offset, rem, "%04d%02d%02d%02d%02d%02d%03d ",
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100444 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100445 tm.tm_hour, tm.tm_min, tm.tm_sec,
446 (int)(tv.tv_usec / 1000));
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100447 if (ret < 0)
448 goto err;
449 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte14c4c492018-06-28 08:28:52 +0200450#endif
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100451 } else if (target->print_timestamp) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800452 time_t tm;
Pau Espin Pedrol3aef2382019-06-12 18:50:29 +0200453 if ((tm = time(NULL)) == (time_t) -1)
454 goto err;
Pau Espin Pedrolcc794e92019-06-12 16:22:53 +0200455 /* Get human-readable representation of time.
456 man ctime: we need at least 26 bytes in buf */
457 if (rem < 26 || !ctime_r(&tm, buf + offset))
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200458 goto err;
Pau Espin Pedrolcc794e92019-06-12 16:22:53 +0200459 ret = strlen(buf + offset);
460 if (ret <= 0)
461 goto err;
462 /* Get rid of useless final '\n' added by ctime_r. We want a space instead. */
463 buf[offset + ret - 1] = ' ';
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200464 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800465 }
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100466 if (target->print_category) {
Neels Hofmeyre6534722018-01-16 03:02:06 +0100467 ret = snprintf(buf + offset, rem, "%s%s%s%s ",
468 target->use_color ? level_color(level) : "",
469 log_category_name(subsys),
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100470 target->use_color ? OSMO_LOGCOLOR_END : "",
Neels Hofmeyre6534722018-01-16 03:02:06 +0100471 c_subsys ? c_subsys : "");
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100472 if (ret < 0)
473 goto err;
474 OSMO_SNPRINTF_RET(ret, rem, offset, len);
475 }
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100476 if (target->print_level) {
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100477 ret = snprintf(buf + offset, rem, "%s%s%s%s ",
478 target->use_color ? level_color(level) : "",
479 log_level_str(level),
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100480 target->use_color ? OSMO_LOGCOLOR_END : "",
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100481 c_subsys ? c_subsys : "");
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100482 if (ret < 0)
483 goto err;
484 OSMO_SNPRINTF_RET(ret, rem, offset, len);
485 }
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100486 if (target->print_category_hex) {
487 ret = snprintf(buf + offset, rem, "<%4.4x> ", subsys);
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200488 if (ret < 0)
489 goto err;
490 OSMO_SNPRINTF_RET(ret, rem, offset, len);
491 }
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200492
493 if (target->print_filename_pos == LOG_FILENAME_POS_HEADER_END) {
494 switch (target->print_filename2) {
495 case LOG_FILENAME_NONE:
496 break;
497 case LOG_FILENAME_PATH:
498 ret = snprintf(buf + offset, rem, "%s:%d ", file, line);
499 if (ret < 0)
500 goto err;
501 OSMO_SNPRINTF_RET(ret, rem, offset, len);
502 break;
503 case LOG_FILENAME_BASENAME:
504 ret = snprintf(buf + offset, rem, "%s:%d ", const_basename(file), line);
505 if (ret < 0)
506 goto err;
507 OSMO_SNPRINTF_RET(ret, rem, offset, len);
508 break;
509 }
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100510 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800511 }
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200512 ret = vsnprintf(buf + offset, rem, format, ap);
513 if (ret < 0)
514 goto err;
515 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800516
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200517 /* For LOG_FILENAME_POS_LAST, print the source file info only when the caller ended the log
518 * message in '\n'. If so, nip the last '\n' away, insert the source file info and re-append an
519 * '\n'. All this to allow LOGP("start..."); LOGPC("...end\n") constructs. */
520 if (target->print_filename_pos == LOG_FILENAME_POS_LINE_END
521 && offset > 0 && buf[offset-1] == '\n') {
522 switch (target->print_filename2) {
523 case LOG_FILENAME_NONE:
524 break;
525 case LOG_FILENAME_PATH:
526 offset --;
527 ret = snprintf(buf + offset, rem, " (%s:%d)\n", file, line);
528 if (ret < 0)
529 goto err;
530 OSMO_SNPRINTF_RET(ret, rem, offset, len);
531 break;
532 case LOG_FILENAME_BASENAME:
533 offset --;
534 ret = snprintf(buf + offset, rem, " (%s:%d)\n", const_basename(file), line);
535 if (ret < 0)
536 goto err;
537 OSMO_SNPRINTF_RET(ret, rem, offset, len);
538 break;
539 }
540 }
541
Pau Espin Pedrol6407c822020-07-20 16:41:44 +0200542 if (target->use_color && c_subsys) {
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100543 ret = snprintf(buf + offset, rem, OSMO_LOGCOLOR_END);
Neels Hofmeyrc4759882018-01-16 02:10:48 +0100544 if (ret < 0)
545 goto err;
546 OSMO_SNPRINTF_RET(ret, rem, offset, len);
547 }
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200548err:
549 buf[sizeof(buf)-1] = '\0';
550 target->output(target, level, buf);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800551}
552
Neels Hofmeyr42240de2016-12-12 15:13:56 +0100553/* Catch internal logging category indexes as well as out-of-bounds indexes.
554 * For internal categories, the ID is negative starting with -1; and internal
555 * logging categories are added behind the user categories. For out-of-bounds
556 * indexes, return the index of DLGLOBAL. The returned category index is
557 * guaranteed to exist in osmo_log_info, otherwise the program would abort,
558 * which should never happen unless even the DLGLOBAL category is missing. */
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100559static inline int map_subsys(int subsys)
560{
Neels Hofmeyr74802262016-12-12 16:00:24 +0100561 /* Note: comparing signed and unsigned integers */
562
563 if (subsys > 0 && ((unsigned int)subsys) >= osmo_log_info->num_cat_user)
564 subsys = DLGLOBAL;
565
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100566 if (subsys < 0)
567 subsys = subsys_lib2index(subsys);
568
Neels Hofmeyrca135742016-12-12 14:18:54 +0100569 if (subsys < 0 || subsys >= osmo_log_info->num_cat)
Neels Hofmeyr42240de2016-12-12 15:13:56 +0100570 subsys = subsys_lib2index(DLGLOBAL);
571
Neels Hofmeyrca135742016-12-12 14:18:54 +0100572 OSMO_ASSERT(!(subsys < 0 || subsys >= osmo_log_info->num_cat));
573
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100574 return subsys;
575}
576
Maxc65c5b42017-03-15 13:20:23 +0100577static inline bool should_log_to_target(struct log_target *tar, int subsys,
578 int level)
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100579{
580 struct log_category *category;
581
582 category = &tar->categories[subsys];
583
584 /* subsystem is not supposed to be logged */
585 if (!category->enabled)
Maxc65c5b42017-03-15 13:20:23 +0100586 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100587
588 /* Check the global log level */
589 if (tar->loglevel != 0 && level < tar->loglevel)
Maxc65c5b42017-03-15 13:20:23 +0100590 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100591
592 /* Check the category log level */
593 if (tar->loglevel == 0 && category->loglevel != 0 &&
594 level < category->loglevel)
Maxc65c5b42017-03-15 13:20:23 +0100595 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100596
Holger Hans Peter Freyther79599ac2016-01-15 16:49:06 +0100597 /* Apply filters here... if that becomes messy we will
598 * need to put filters in a list and each filter will
599 * say stop, continue, output */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100600 if ((tar->filter_map & (1 << LOG_FLT_ALL)) != 0)
Maxc65c5b42017-03-15 13:20:23 +0100601 return true;
Holger Hans Peter Freyther79599ac2016-01-15 16:49:06 +0100602
603 if (osmo_log_info->filter_fn)
604 return osmo_log_info->filter_fn(&log_context, tar);
605
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100606 /* TODO: Check the filter/selector too? */
Maxc65c5b42017-03-15 13:20:23 +0100607 return true;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100608}
609
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200610/*! vararg version of logging function
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200611 * \param[in] subsys Logging sub-system
612 * \param[in] level Log level
613 * \param[in] file name of source code file
614 * \param[in] cont continuation (1) or new line (0)
615 * \param[in] format format string
616 * \param[in] ap vararg-list containing format string arguments
617 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200618void osmo_vlogp(int subsys, int level, const char *file, int line,
Harald Welte36c5a3e2011-08-27 14:33:19 +0200619 int cont, const char *format, va_list ap)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800620{
Harald Welte3ae27582010-03-26 21:24:24 +0800621 struct log_target *tar;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800622
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100623 subsys = map_subsys(subsys);
Harald Welteb43bc042011-06-27 10:29:17 +0200624
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200625 log_tgt_mutex_lock();
626
Harald Welte28222962011-02-18 20:37:04 +0100627 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200628 va_list bp;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800629
Maxc65c5b42017-03-15 13:20:23 +0100630 if (!should_log_to_target(tar, subsys, level))
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800631 continue;
632
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200633 /* According to the manpage, vsnprintf leaves the value of ap
634 * in undefined state. Since _output uses vsnprintf and it may
635 * be called several times, we have to pass a copy of ap. */
636 va_copy(bp, ap);
Harald Welted7c0a372016-12-02 13:52:59 +0100637 if (tar->raw_output)
638 tar->raw_output(tar, subsys, level, file, line, cont, format, bp);
639 else
640 _output(tar, subsys, level, file, line, cont, format, bp);
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200641 va_end(bp);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800642 }
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200643
644 log_tgt_mutex_unlock();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800645}
646
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200647/*! logging function used by DEBUGP() macro
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200648 * \param[in] subsys Logging sub-system
649 * \param[in] file name of source code file
650 * \param[in] cont continuation (1) or new line (0)
651 * \param[in] format format string
652 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200653void logp(int subsys, const char *file, int line, int cont,
Harald Welte3ae27582010-03-26 21:24:24 +0800654 const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800655{
656 va_list ap;
657
658 va_start(ap, format);
Harald Welte36c5a3e2011-08-27 14:33:19 +0200659 osmo_vlogp(subsys, LOGL_DEBUG, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800660 va_end(ap);
661}
662
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200663/*! logging function used by LOGP() macro
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200664 * \param[in] subsys Logging sub-system
665 * \param[in] level Log level
666 * \param[in] file name of source code file
667 * \param[in] cont continuation (1) or new line (0)
668 * \param[in] format format string
669 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200670void logp2(int subsys, unsigned int level, const char *file, int line, int cont, const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800671{
672 va_list ap;
673
674 va_start(ap, format);
Harald Welte36c5a3e2011-08-27 14:33:19 +0200675 osmo_vlogp(subsys, level, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800676 va_end(ap);
677}
678
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200679/*! Register a new log target with the logging core
Harald Welte18fc4652011-08-17 14:14:17 +0200680 * \param[in] target Log target to be registered
681 */
Harald Welte3ae27582010-03-26 21:24:24 +0800682void log_add_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800683{
Harald Welte28222962011-02-18 20:37:04 +0100684 llist_add_tail(&target->entry, &osmo_log_target_list);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800685}
686
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200687/*! Unregister a log target from the logging core
Harald Welte18fc4652011-08-17 14:14:17 +0200688 * \param[in] target Log target to be unregistered
689 */
Harald Welte3ae27582010-03-26 21:24:24 +0800690void log_del_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800691{
692 llist_del(&target->entry);
693}
694
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200695/*! Reset (clear) the logging context */
Harald Welte3ae27582010-03-26 21:24:24 +0800696void log_reset_context(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800697{
Harald Welte3ae27582010-03-26 21:24:24 +0800698 memset(&log_context, 0, sizeof(log_context));
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800699}
700
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200701/*! Set the logging context
Harald Welte18fc4652011-08-17 14:14:17 +0200702 * \param[in] ctx_nr logging context number
703 * \param[in] value value to which the context is to be set
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200704 * \returns 0 in case of success; negative otherwise
Harald Welte18fc4652011-08-17 14:14:17 +0200705 *
706 * A logging context is something like the subscriber identity to which
707 * the currently processed message relates, or the BTS through which it
708 * was received. As soon as this data is known, it can be set using
709 * this function. The main use of context information is for logging
710 * filters.
711 */
Harald Welte3ae27582010-03-26 21:24:24 +0800712int log_set_context(uint8_t ctx_nr, void *value)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800713{
Harald Welte3ae27582010-03-26 21:24:24 +0800714 if (ctx_nr > LOG_MAX_CTX)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800715 return -EINVAL;
716
Harald Welte3ae27582010-03-26 21:24:24 +0800717 log_context.ctx[ctx_nr] = value;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800718
719 return 0;
720}
721
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200722/*! Enable the \ref LOG_FLT_ALL log filter
Harald Welte18fc4652011-08-17 14:14:17 +0200723 * \param[in] target Log target to be affected
724 * \param[in] all enable (1) or disable (0) the ALL filter
725 *
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100726 * When the \ref LOG_FLT_ALL filter is enabled, all log messages will be
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +0100727 * printed. It acts as a wildcard. Setting it to \a 1 means there is no
728 * filtering.
Harald Welte18fc4652011-08-17 14:14:17 +0200729 */
Harald Welte3ae27582010-03-26 21:24:24 +0800730void log_set_all_filter(struct log_target *target, int all)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800731{
732 if (all)
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100733 target->filter_map |= (1 << LOG_FLT_ALL);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800734 else
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100735 target->filter_map &= ~(1 << LOG_FLT_ALL);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800736}
737
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200738/*! Enable or disable the use of colored output
Harald Welte18fc4652011-08-17 14:14:17 +0200739 * \param[in] target Log target to be affected
740 * \param[in] use_color Use color (1) or don't use color (0)
741 */
Harald Welte3ae27582010-03-26 21:24:24 +0800742void log_set_use_color(struct log_target *target, int use_color)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800743{
744 target->use_color = use_color;
745}
746
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200747/*! Enable or disable printing of timestamps while logging
Harald Welte18fc4652011-08-17 14:14:17 +0200748 * \param[in] target Log target to be affected
749 * \param[in] print_timestamp Enable (1) or disable (0) timestamps
750 */
Harald Welte3ae27582010-03-26 21:24:24 +0800751void log_set_print_timestamp(struct log_target *target, int print_timestamp)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800752{
753 target->print_timestamp = print_timestamp;
754}
755
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200756/*! Enable or disable printing of extended timestamps while logging
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100757 * \param[in] target Log target to be affected
758 * \param[in] print_timestamp Enable (1) or disable (0) timestamps
759 *
760 * When both timestamp and extended timestamp is enabled then only
761 * the extended timestamp will be used. The format of the timestamp
762 * is YYYYMMDDhhmmssnnn.
763 */
764void log_set_print_extended_timestamp(struct log_target *target, int print_timestamp)
765{
766 target->print_ext_timestamp = print_timestamp;
767}
768
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100769/*! Use log_set_print_filename2() instead.
770 * Call log_set_print_filename2() with LOG_FILENAME_PATH or LOG_FILENAME_NONE, *as well as* call
771 * log_set_print_category_hex() with the argument passed to this function. This is to mirror legacy
772 * behavior, which combined the category in hex with the filename. For example, if the category-hex
773 * output were no longer affected by log_set_print_filename(), many unit tests (in libosmocore as well as
774 * dependent projects) would fail since they expect the category to disappear along with the filename.
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200775 * \param[in] target Log target to be affected
776 * \param[in] print_filename Enable (1) or disable (0) filenames
777 */
778void log_set_print_filename(struct log_target *target, int print_filename)
779{
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100780 log_set_print_filename2(target, print_filename ? LOG_FILENAME_PATH : LOG_FILENAME_NONE);
781 log_set_print_category_hex(target, print_filename);
782}
783
784/*! Enable or disable printing of the filename while logging.
785 * \param[in] target Log target to be affected.
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700786 * \param[in] lft An LOG_FILENAME_* enum value.
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100787 * LOG_FILENAME_NONE omits the source file and line information from logs.
788 * LOG_FILENAME_PATH prints the entire source file path as passed to LOGP macros.
789 */
790void log_set_print_filename2(struct log_target *target, enum log_filename_type lft)
791{
792 target->print_filename2 = lft;
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200793}
794
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200795/*! Set the position where on a log line the source file info should be logged.
796 * \param[in] target Log target to be affected.
797 * \param[in] pos A LOG_FILENAME_POS_* enum value.
798 * LOG_FILENAME_POS_DEFAULT logs just before the caller supplied log message.
799 * LOG_FILENAME_POS_LAST logs only at the end of a log line, where the caller issued an '\n' to end the
800 */
801void log_set_print_filename_pos(struct log_target *target, enum log_filename_pos pos)
802{
803 target->print_filename_pos = pos;
804}
805
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200806/*! Enable or disable printing of the category name
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100807 * \param[in] target Log target to be affected
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700808 * \param[in] print_category Enable (1) or disable (0) filenames
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100809 *
810 * Print the category/subsys name in front of every log message.
811 */
812void log_set_print_category(struct log_target *target, int print_category)
813{
814 target->print_category = print_category;
815}
816
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100817/*! Enable or disable printing of the category number in hex ('<000b>').
818 * \param[in] target Log target to be affected.
819 * \param[in] print_category_hex Enable (1) or disable (0) hex category.
820 */
821void log_set_print_category_hex(struct log_target *target, int print_category_hex)
822{
823 target->print_category_hex = print_category_hex;
824}
825
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100826/*! Enable or disable printing of the log level name.
827 * \param[in] target Log target to be affected
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700828 * \param[in] print_level Enable (1) or disable (0) log level name
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100829 *
830 * Print the log level name in front of every log message.
831 */
832void log_set_print_level(struct log_target *target, int print_level)
833{
834 target->print_level = (bool)print_level;
835}
836
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200837/*! Set the global log level for a given log target
Harald Welte18fc4652011-08-17 14:14:17 +0200838 * \param[in] target Log target to be affected
839 * \param[in] log_level New global log level
840 */
Harald Welte3ae27582010-03-26 21:24:24 +0800841void log_set_log_level(struct log_target *target, int log_level)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800842{
843 target->loglevel = log_level;
844}
845
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200846/*! Set a category filter on a given log target
Harald Weltede6e4982012-12-06 21:25:27 +0100847 * \param[in] target Log target to be affected
848 * \param[in] category Log category to be affected
849 * \param[in] enable whether to enable or disable the filter
850 * \param[in] level Log level of the filter
851 */
Harald Welte3ae27582010-03-26 21:24:24 +0800852void log_set_category_filter(struct log_target *target, int category,
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800853 int enable, int level)
854{
Neels Hofmeyr886d6fd2016-12-12 13:49:03 +0100855 if (!target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800856 return;
Neels Hofmeyr886d6fd2016-12-12 13:49:03 +0100857 category = map_subsys(category);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800858 target->categories[category].enabled = !!enable;
859 target->categories[category].loglevel = level;
860}
861
Harald Welte44c0f632017-01-15 17:58:29 +0100862#if (!EMBEDDED)
Harald Welte76e72ab2011-02-17 15:52:39 +0100863static void _file_output(struct log_target *target, unsigned int level,
864 const char *log)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800865{
Harald Welte0083cd32010-08-25 14:55:44 +0200866 fprintf(target->tgt_file.out, "%s", log);
867 fflush(target->tgt_file.out);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800868}
Harald Welte44c0f632017-01-15 17:58:29 +0100869#endif
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800870
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200871/*! Create a new log target skeleton
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200872 * \returns dynamically-allocated log target
873 * This funcition allocates a \ref log_target and initializes it
874 * with some default values. The newly created target is not
875 * registered yet.
876 */
Harald Welte3ae27582010-03-26 21:24:24 +0800877struct log_target *log_target_create(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800878{
Harald Welte3ae27582010-03-26 21:24:24 +0800879 struct log_target *target;
Harald Weltecc6313c2010-03-26 22:04:03 +0800880 unsigned int i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800881
Max68bf16a2018-01-10 17:00:43 +0100882 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100883
Harald Welte3ae27582010-03-26 21:24:24 +0800884 target = talloc_zero(tall_log_ctx, struct log_target);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800885 if (!target)
886 return NULL;
887
Pau Espin Pedrol9d4a36e2018-07-26 11:55:33 +0200888 target->categories = talloc_zero_array(target,
Harald Welteb43bc042011-06-27 10:29:17 +0200889 struct log_category,
890 osmo_log_info->num_cat);
891 if (!target->categories) {
892 talloc_free(target);
893 return NULL;
894 }
895
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800896 INIT_LLIST_HEAD(&target->entry);
Harald Weltecc6313c2010-03-26 22:04:03 +0800897
898 /* initialize the per-category enabled/loglevel from defaults */
Harald Welte4ebdf742010-05-19 19:54:00 +0200899 for (i = 0; i < osmo_log_info->num_cat; i++) {
Harald Weltecc6313c2010-03-26 22:04:03 +0800900 struct log_category *cat = &target->categories[i];
Harald Welte4ebdf742010-05-19 19:54:00 +0200901 cat->enabled = osmo_log_info->cat[i].enabled;
902 cat->loglevel = osmo_log_info->cat[i].loglevel;
Harald Weltecc6313c2010-03-26 22:04:03 +0800903 }
904
905 /* global settings */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800906 target->use_color = 1;
907 target->print_timestamp = 0;
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100908 target->print_filename2 = LOG_FILENAME_PATH;
909 target->print_category_hex = true;
Harald Weltecc6313c2010-03-26 22:04:03 +0800910
911 /* global log level */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800912 target->loglevel = 0;
913 return target;
914}
915
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200916/*! Create the STDERR log target
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200917 * \returns dynamically-allocated \ref log_target for STDERR */
Harald Welte3ae27582010-03-26 21:24:24 +0800918struct log_target *log_target_create_stderr(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800919{
Harald Weltea3b844c2010-03-27 00:04:40 +0800920/* since C89/C99 says stderr is a macro, we can safely do this! */
Harald Welteb93ce5a2017-05-15 10:58:15 +0200921#if !EMBEDDED && defined(stderr)
Harald Welte3ae27582010-03-26 21:24:24 +0800922 struct log_target *target;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800923
Harald Welte3ae27582010-03-26 21:24:24 +0800924 target = log_target_create();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800925 if (!target)
926 return NULL;
927
Harald Welte28222962011-02-18 20:37:04 +0100928 target->type = LOG_TGT_TYPE_STDERR;
Harald Welte0083cd32010-08-25 14:55:44 +0200929 target->tgt_file.out = stderr;
930 target->output = _file_output;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800931 return target;
Harald Weltea3b844c2010-03-27 00:04:40 +0800932#else
933 return NULL;
934#endif /* stderr */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800935}
936
Harald Welte44c0f632017-01-15 17:58:29 +0100937#if (!EMBEDDED)
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200938/*! Create a new file-based log target
Harald Welte18fc4652011-08-17 14:14:17 +0200939 * \param[in] fname File name of the new log file
940 * \returns Log target in case of success, NULL otherwise
941 */
Harald Welte3086c392010-08-25 19:10:50 +0200942struct log_target *log_target_create_file(const char *fname)
943{
944 struct log_target *target;
945
946 target = log_target_create();
947 if (!target)
948 return NULL;
949
Harald Welte28222962011-02-18 20:37:04 +0100950 target->type = LOG_TGT_TYPE_FILE;
Harald Welte3086c392010-08-25 19:10:50 +0200951 target->tgt_file.out = fopen(fname, "a");
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +0700952 if (!target->tgt_file.out) {
953 log_target_destroy(target);
Harald Welte3086c392010-08-25 19:10:50 +0200954 return NULL;
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +0700955 }
Harald Welte3086c392010-08-25 19:10:50 +0200956
957 target->output = _file_output;
958
959 target->tgt_file.fname = talloc_strdup(target, fname);
960
961 return target;
962}
Harald Welte44c0f632017-01-15 17:58:29 +0100963#endif
Harald Welte3086c392010-08-25 19:10:50 +0200964
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200965/*! Find a registered log target
Harald Welte18fc4652011-08-17 14:14:17 +0200966 * \param[in] type Log target type
967 * \param[in] fname File name
968 * \returns Log target (if found), NULL otherwise
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200969 * Must be called with mutex osmo_log_tgt_mutex held, see log_tgt_mutex_lock.
Harald Welte18fc4652011-08-17 14:14:17 +0200970 */
Harald Welte28222962011-02-18 20:37:04 +0100971struct log_target *log_target_find(int type, const char *fname)
972{
973 struct log_target *tgt;
974
975 llist_for_each_entry(tgt, &osmo_log_target_list, entry) {
976 if (tgt->type != type)
977 continue;
Maxc90f40a2018-01-11 10:52:28 +0100978 switch (tgt->type) {
979 case LOG_TGT_TYPE_FILE:
Harald Welte28222962011-02-18 20:37:04 +0100980 if (!strcmp(fname, tgt->tgt_file.fname))
981 return tgt;
Maxc90f40a2018-01-11 10:52:28 +0100982 break;
983 case LOG_TGT_TYPE_GSMTAP:
984 if (!strcmp(fname, tgt->tgt_gsmtap.hostname))
985 return tgt;
986 break;
987 default:
Harald Welte28222962011-02-18 20:37:04 +0100988 return tgt;
Maxc90f40a2018-01-11 10:52:28 +0100989 }
Harald Welte28222962011-02-18 20:37:04 +0100990 }
991 return NULL;
992}
993
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200994/*! Unregister, close and delete a log target
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700995 * \param[in] target log target to unregister, close and delete */
Harald Welte3086c392010-08-25 19:10:50 +0200996void log_target_destroy(struct log_target *target)
997{
998
999 /* just in case, to make sure we don't have any references */
1000 log_del_target(target);
1001
Harald Welte44c0f632017-01-15 17:58:29 +01001002#if (!EMBEDDED)
Vadim Yanitskiy744236b2020-09-09 04:42:22 +07001003 switch (target->type) {
1004 case LOG_TGT_TYPE_FILE:
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +07001005 if (target->tgt_file.out == NULL)
1006 break;
Vadim Yanitskiy744236b2020-09-09 04:42:22 +07001007 fclose(target->tgt_file.out);
1008 target->tgt_file.out = NULL;
1009 break;
Vadim Yanitskiy04f42712020-09-09 04:47:25 +07001010#ifdef HAVE_SYSLOG_H
1011 case LOG_TGT_TYPE_SYSLOG:
1012 closelog();
1013 break;
1014#endif /* HAVE_SYSLOG_H */
Vadim Yanitskiy744236b2020-09-09 04:42:22 +07001015 default:
1016 /* make GCC happy */
1017 break;
Harald Welte3086c392010-08-25 19:10:50 +02001018 }
Harald Welte44c0f632017-01-15 17:58:29 +01001019#endif
Harald Welte3086c392010-08-25 19:10:50 +02001020
1021 talloc_free(target);
1022}
1023
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001024/*! close and re-open a log file (for log file rotation)
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001025 * \param[in] target log target to re-open
1026 * \returns 0 in case of success; negative otherwise */
Harald Welte3086c392010-08-25 19:10:50 +02001027int log_target_file_reopen(struct log_target *target)
1028{
1029 fclose(target->tgt_file.out);
1030
1031 target->tgt_file.out = fopen(target->tgt_file.fname, "a");
1032 if (!target->tgt_file.out)
1033 return -errno;
1034
1035 /* we assume target->output already to be set */
1036
1037 return 0;
1038}
1039
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001040/*! close and re-open all log files (for log file rotation)
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001041 * \returns 0 in case of success; negative otherwise */
Harald Welte4de854d2013-03-18 19:01:40 +01001042int log_targets_reopen(void)
1043{
1044 struct log_target *tar;
1045 int rc = 0;
1046
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001047 log_tgt_mutex_lock();
1048
Harald Welte4de854d2013-03-18 19:01:40 +01001049 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
1050 switch (tar->type) {
1051 case LOG_TGT_TYPE_FILE:
1052 if (log_target_file_reopen(tar) < 0)
1053 rc = -1;
1054 break;
1055 default:
1056 break;
1057 }
1058 }
1059
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001060 log_tgt_mutex_unlock();
1061
Harald Welte4de854d2013-03-18 19:01:40 +01001062 return rc;
1063}
1064
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001065/*! Initialize the Osmocom logging core
Max72dfd432018-12-04 11:24:18 +01001066 * \param[in] inf Information regarding logging categories, could be NULL
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +07001067 * \param[in] ctx talloc context for logging allocations
Harald Welte18fc4652011-08-17 14:14:17 +02001068 * \returns 0 in case of success, negative in case of error
Max72dfd432018-12-04 11:24:18 +01001069 *
1070 * If inf is NULL then only library-internal categories are initialized.
Harald Welte18fc4652011-08-17 14:14:17 +02001071 */
Harald Welteb43bc042011-06-27 10:29:17 +02001072int log_init(const struct log_info *inf, void *ctx)
Harald Welte4a2bb9e2010-03-26 09:33:40 +08001073{
Harald Welteb43bc042011-06-27 10:29:17 +02001074 int i;
Philipp Maierdcad1c52020-03-25 11:25:59 +01001075 struct log_info_cat *cat_ptr;
Harald Welteb43bc042011-06-27 10:29:17 +02001076
Philipp Maierdc02c062020-05-12 17:51:25 +02001077 /* Ensure that log_init is not called multiple times */
1078 OSMO_ASSERT(tall_log_ctx == NULL)
1079
Harald Welteb43bc042011-06-27 10:29:17 +02001080 tall_log_ctx = talloc_named_const(ctx, 1, "logging");
1081 if (!tall_log_ctx)
1082 return -ENOMEM;
1083
1084 osmo_log_info = talloc_zero(tall_log_ctx, struct log_info);
1085 if (!osmo_log_info)
1086 return -ENOMEM;
1087
Max72dfd432018-12-04 11:24:18 +01001088 osmo_log_info->num_cat = ARRAY_SIZE(internal_cat);
1089
1090 if (inf) {
1091 osmo_log_info->filter_fn = inf->filter_fn;
1092 osmo_log_info->num_cat_user = inf->num_cat;
1093 osmo_log_info->num_cat += inf->num_cat;
1094 }
Harald Welteb43bc042011-06-27 10:29:17 +02001095
Philipp Maierdcad1c52020-03-25 11:25:59 +01001096 cat_ptr = talloc_zero_array(osmo_log_info, struct log_info_cat,
1097 osmo_log_info->num_cat);
1098 if (!cat_ptr) {
Harald Welteb43bc042011-06-27 10:29:17 +02001099 talloc_free(osmo_log_info);
1100 osmo_log_info = NULL;
1101 return -ENOMEM;
1102 }
1103
Philipp Maierdcad1c52020-03-25 11:25:59 +01001104 /* copy over the user part and sanitize loglevel */
1105 if (inf) {
Max72dfd432018-12-04 11:24:18 +01001106 for (i = 0; i < inf->num_cat; i++) {
Philipp Maierdcad1c52020-03-25 11:25:59 +01001107 memcpy(&cat_ptr[i], &inf->cat[i],
1108 sizeof(struct log_info_cat));
1109
1110 /* Make sure that the loglevel is set to NOTICE in case
1111 * no loglevel has been preset. */
1112 if (!cat_ptr[i].loglevel) {
1113 cat_ptr[i].loglevel = LOGL_NOTICE;
1114 }
Max72dfd432018-12-04 11:24:18 +01001115 }
Harald Welteb43bc042011-06-27 10:29:17 +02001116 }
1117
1118 /* copy over the library part */
Harald Welte9fe16522011-06-27 14:00:03 +02001119 for (i = 0; i < ARRAY_SIZE(internal_cat); i++) {
Harald Weltece9fec32011-06-27 14:19:16 +02001120 unsigned int cn = osmo_log_info->num_cat_user + i;
Philipp Maierdcad1c52020-03-25 11:25:59 +01001121 memcpy(&cat_ptr[cn], &internal_cat[i], sizeof(struct log_info_cat));
Harald Welte9fe16522011-06-27 14:00:03 +02001122 }
1123
Philipp Maierdcad1c52020-03-25 11:25:59 +01001124 osmo_log_info->cat = cat_ptr;
1125
Harald Welte9fe16522011-06-27 14:00:03 +02001126 return 0;
Harald Welte4a2bb9e2010-03-26 09:33:40 +08001127}
Harald Welte18fc4652011-08-17 14:14:17 +02001128
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001129/* De-initialize the Osmocom logging core
Harald Welte69e6c3c2016-04-20 10:41:27 +02001130 * This function destroys all targets and releases associated memory */
1131void log_fini(void)
1132{
1133 struct log_target *tar, *tar2;
1134
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001135 log_tgt_mutex_lock();
1136
Harald Welte69e6c3c2016-04-20 10:41:27 +02001137 llist_for_each_entry_safe(tar, tar2, &osmo_log_target_list, entry)
1138 log_target_destroy(tar);
1139
1140 talloc_free(osmo_log_info);
1141 osmo_log_info = NULL;
1142 talloc_free(tall_log_ctx);
1143 tall_log_ctx = NULL;
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001144
1145 log_tgt_mutex_unlock();
Harald Welte69e6c3c2016-04-20 10:41:27 +02001146}
1147
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001148/*! Check whether a log entry will be generated.
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001149 * \returns != 0 if a log entry might get generated by at least one target */
1150int log_check_level(int subsys, unsigned int level)
1151{
1152 struct log_target *tar;
1153
Max68bf16a2018-01-10 17:00:43 +01001154 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +01001155
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +01001156 subsys = map_subsys(subsys);
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001157
1158 /* TODO: The following could/should be cached (update on config) */
1159
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001160 log_tgt_mutex_lock();
1161
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001162 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
Maxc65c5b42017-03-15 13:20:23 +01001163 if (!should_log_to_target(tar, subsys, level))
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001164 continue;
1165
1166 /* This might get logged (ignoring filters) */
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001167 log_tgt_mutex_unlock();
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001168 return 1;
1169 }
1170
1171 /* We are sure, that this will not be logged. */
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001172 log_tgt_mutex_unlock();
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001173 return 0;
1174}
1175
Sylvain Munautdca7d2c2012-04-18 21:53:23 +02001176/*! @} */