blob: 4517afcd453bbb267e5cc288e6737046ce509cb9 [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 Welte433005c2020-09-26 11:51:32 +020047#ifdef HAVE_SYSTEMTAP
48/* include the generated probes header and put markers in code */
49#include "probes.h"
50#define TRACE(probe) probe
51#define TRACE_ENABLED(probe) probe ## _ENABLED()
52#else
53/* Wrap the probe to allow it to be removed when no systemtap available */
54#define TRACE(probe)
55#define TRACE_ENABLED(probe) (0)
56#endif /* HAVE_SYSTEMTAP */
57
Harald Welte4a2bb9e2010-03-26 09:33:40 +080058#include <time.h>
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +010059#include <sys/time.h>
Harald Welte4a2bb9e2010-03-26 09:33:40 +080060#include <errno.h>
Pau Espin Pedrold12f6982019-09-17 18:38:58 +020061#include <pthread.h>
Harald Welte4a2bb9e2010-03-26 09:33:40 +080062
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010063#include <osmocom/core/talloc.h>
64#include <osmocom/core/utils.h>
65#include <osmocom/core/logging.h>
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +020066#include <osmocom/core/timer.h>
Pau Espin Pedrol662d10d2021-02-18 18:19:23 +010067#include <osmocom/core/thread.h>
Harald Welte4a2bb9e2010-03-26 09:33:40 +080068
Pablo Neira Ayuso04139f12011-03-09 13:05:08 +010069#include <osmocom/vty/logging.h> /* for LOGGING_STR. */
70
Harald Weltea8b1b212020-09-27 17:21:07 +020071/* maximum length of the log string of a single log event (typically line) */
72#define MAX_LOG_SIZE 4096
73
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010074osmo_static_assert(_LOG_CTX_COUNT <= ARRAY_SIZE(((struct log_context*)NULL)->ctx),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010075 enum_logging_ctx_items_fit_in_struct_log_context);
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010076osmo_static_assert(_LOG_FLT_COUNT <= ARRAY_SIZE(((struct log_target*)NULL)->filter_data),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010077 enum_logging_filters_fit_in_log_target_filter_data);
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010078osmo_static_assert(_LOG_FLT_COUNT <= 8*sizeof(((struct log_target*)NULL)->filter_map),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010079 enum_logging_filters_fit_in_log_target_filter_map);
80
Harald Welteb43bc042011-06-27 10:29:17 +020081struct log_info *osmo_log_info;
Harald Welte4a2bb9e2010-03-26 09:33:40 +080082
Harald Welte3ae27582010-03-26 21:24:24 +080083static struct log_context log_context;
Neels Hofmeyrba0762d2018-09-10 13:56:03 +020084void *tall_log_ctx = NULL;
Harald Welte28222962011-02-18 20:37:04 +010085LLIST_HEAD(osmo_log_target_list);
Harald Welte4a2bb9e2010-03-26 09:33:40 +080086
Pau Espin Pedrol662d10d2021-02-18 18:19:23 +010087static __thread long int logging_tid;
88
Pau Espin Pedrold12f6982019-09-17 18:38:58 +020089#if (!EMBEDDED)
90/*! This mutex must be held while using osmo_log_target_list or any of its
91 log_targets in a multithread program. Prevents race conditions between threads
92 like producing unordered timestamps or VTY deleting a target while another
93 thread is writing to it */
94static pthread_mutex_t osmo_log_tgt_mutex;
95static bool osmo_log_tgt_mutex_on = false;
96
97/*! Enable multithread support (mutex) in libosmocore logging system.
98 * Must be called by processes willing to use logging subsystem from several
99 * threads. Once enabled, it's not possible to disable it again.
100 */
101void log_enable_multithread(void) {
102 if (osmo_log_tgt_mutex_on)
103 return;
104 pthread_mutex_init(&osmo_log_tgt_mutex, NULL);
105 osmo_log_tgt_mutex_on = true;
106}
107
108/*! Acquire the osmo_log_tgt_mutex. Don't use this function directly, always use
109 * macro log_tgt_mutex_lock() instead.
110 */
111void log_tgt_mutex_lock_impl(void) {
112 /* These lines are useful to debug scenarios where there's only 1 thread
113 and a double lock appears, for instance during startup and some
114 unlock() missing somewhere:
115 if (osmo_log_tgt_mutex_on && pthread_mutex_trylock(&osmo_log_tgt_mutex) != 0)
116 osmo_panic("acquiring already locked mutex!\n");
117 return;
118 */
119
120 if (osmo_log_tgt_mutex_on)
121 pthread_mutex_lock(&osmo_log_tgt_mutex);
122}
123
124/*! Release the osmo_log_tgt_mutex. Don't use this function directly, always use
125 * macro log_tgt_mutex_unlock() instead.
126 */
127void log_tgt_mutex_unlock_impl(void) {
128 if (osmo_log_tgt_mutex_on)
129 pthread_mutex_unlock(&osmo_log_tgt_mutex);
130}
131
132#else /* if (!EMBEDDED) */
133#pragma message ("logging multithread support disabled in embedded build")
134void log_enable_multithread(void) {}
135void log_tgt_mutex_lock_impl(void) {}
136void log_tgt_mutex_unlock_impl(void) {}
137#endif /* if (!EMBEDDED) */
138
Neels Hofmeyr098038a2018-09-11 23:49:13 +0200139const struct value_string loglevel_strs[] = {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800140 { LOGL_DEBUG, "DEBUG" },
141 { LOGL_INFO, "INFO" },
142 { LOGL_NOTICE, "NOTICE" },
143 { LOGL_ERROR, "ERROR" },
144 { LOGL_FATAL, "FATAL" },
145 { 0, NULL },
146};
147
Harald Welte4c0e1a12020-12-07 22:03:09 +0100148/* 256 color palette see https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit */
Harald Welteb43bc042011-06-27 10:29:17 +0200149#define INT2IDX(x) (-1*(x)-1)
150static const struct log_info_cat internal_cat[OSMO_NUM_DLIB] = {
151 [INT2IDX(DLGLOBAL)] = { /* -1 becomes 0 */
152 .name = "DLGLOBAL",
153 .description = "Library-internal global log family",
154 .loglevel = LOGL_NOTICE,
155 .enabled = 1,
156 },
root8a996b42011-09-26 11:22:21 +0200157 [INT2IDX(DLLAPD)] = { /* -2 becomes 1 */
158 .name = "DLLAPD",
159 .description = "LAPD in libosmogsm",
Harald Welte1f0b8c22011-06-27 10:51:37 +0200160 .loglevel = LOGL_NOTICE,
161 .enabled = 1,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100162 .color = "\033[38;5;21m",
Harald Welte1f0b8c22011-06-27 10:51:37 +0200163 },
Harald Welte892e6212011-07-19 14:31:44 +0200164 [INT2IDX(DLINP)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200165 .name = "DLINP",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200166 .description = "A-bis Intput Subsystem",
167 .loglevel = LOGL_NOTICE,
168 .enabled = 1,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100169 .color = "\033[38;5;23m",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200170 },
Harald Welte892e6212011-07-19 14:31:44 +0200171 [INT2IDX(DLMUX)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200172 .name = "DLMUX",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200173 .description = "A-bis B-Subchannel TRAU Frame Multiplex",
174 .loglevel = LOGL_NOTICE,
175 .enabled = 1,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100176 .color = "\033[38;5;25m",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200177 },
Harald Welte892e6212011-07-19 14:31:44 +0200178 [INT2IDX(DLMI)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200179 .name = "DLMI",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200180 .description = "A-bis Input Driver for Signalling",
181 .enabled = 0, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100182 .color = "\033[38;5;27m",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200183 },
Harald Welte892e6212011-07-19 14:31:44 +0200184 [INT2IDX(DLMIB)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200185 .name = "DLMIB",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200186 .description = "A-bis Input Driver for B-Channels (voice)",
187 .enabled = 0, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100188 .color = "\033[38;5;29m",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200189 },
Andreas Eversbergc626da92011-10-28 03:53:50 +0200190 [INT2IDX(DLSMS)] = {
191 .name = "DLSMS",
192 .description = "Layer3 Short Message Service (SMS)",
193 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100194 .color = "\033[38;5;31m",
Andreas Eversbergc626da92011-10-28 03:53:50 +0200195 },
Harald Welte7fd0c832014-08-20 19:58:13 +0200196 [INT2IDX(DLCTRL)] = {
197 .name = "DLCTRL",
198 .description = "Control Interface",
199 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100200 .color = "\033[38;5;33m",
Harald Welte7fd0c832014-08-20 19:58:13 +0200201 },
Holger Hans Peter Freythera5dc19d2014-12-04 14:35:21 +0100202 [INT2IDX(DLGTP)] = {
203 .name = "DLGTP",
204 .description = "GPRS GTP library",
205 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100206 .color = "\033[38;5;35m",
Holger Hans Peter Freythera5dc19d2014-12-04 14:35:21 +0100207 },
Jacob Erlbeck79125ec2015-11-02 15:17:50 +0100208 [INT2IDX(DLSTATS)] = {
209 .name = "DLSTATS",
210 .description = "Statistics messages and logging",
211 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100212 .color = "\033[38;5;37m",
Jacob Erlbeck79125ec2015-11-02 15:17:50 +0100213 },
Neels Hofmeyr9795cf12016-12-10 17:01:06 +0100214 [INT2IDX(DLGSUP)] = {
215 .name = "DLGSUP",
216 .description = "Generic Subscriber Update Protocol",
217 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100218 .color = "\033[38;5;39m",
Neels Hofmeyr9795cf12016-12-10 17:01:06 +0100219 },
Harald Weltec0f00072016-04-27 18:32:35 +0200220 [INT2IDX(DLOAP)] = {
221 .name = "DLOAP",
222 .description = "Osmocom Authentication Protocol",
223 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100224 .color = "\033[38;5;41m",
Harald Weltec0f00072016-04-27 18:32:35 +0200225 },
Harald Welte059c4042017-04-03 22:20:49 +0200226 [INT2IDX(DLSS7)] = {
227 .name = "DLSS7",
228 .description = "libosmo-sigtran Signalling System 7",
229 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100230 .color = "\033[38;5;43m",
Harald Welte059c4042017-04-03 22:20:49 +0200231 },
232 [INT2IDX(DLSCCP)] = {
233 .name = "DLSCCP",
234 .description = "libosmo-sigtran SCCP Implementation",
235 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100236 .color = "\033[38;5;45m",
Harald Welte059c4042017-04-03 22:20:49 +0200237 },
238 [INT2IDX(DLSUA)] = {
239 .name = "DLSUA",
240 .description = "libosmo-sigtran SCCP User Adaptation",
241 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100242 .color = "\033[38;5;47m",
Harald Welte059c4042017-04-03 22:20:49 +0200243 },
244 [INT2IDX(DLM3UA)] = {
245 .name = "DLM3UA",
246 .description = "libosmo-sigtran MTP3 User Adaptation",
247 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100248 .color = "\033[38;5;49m",
Harald Welte059c4042017-04-03 22:20:49 +0200249 },
Neels Hofmeyra7ccf612017-07-11 18:43:09 +0200250 [INT2IDX(DLMGCP)] = {
251 .name = "DLMGCP",
252 .description = "libosmo-mgcp Media Gateway Control Protocol",
253 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100254 .color = "\033[38;5;51m",
Neels Hofmeyra7ccf612017-07-11 18:43:09 +0200255 },
Pau Espin Pedrol8fd85572018-02-27 19:43:10 +0100256 [INT2IDX(DLJIBUF)] = {
257 .name = "DLJIBUF",
258 .description = "libosmo-netif Jitter Buffer",
259 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100260 .color = "\033[38;5;53m",
Pau Espin Pedrol8fd85572018-02-27 19:43:10 +0100261 },
Max450f5ac2019-02-14 19:12:03 +0100262 [INT2IDX(DLRSPRO)] = {
263 .name = "DLRSPRO",
264 .description = "Remote SIM protocol",
265 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100266 .color = "\033[38;5;55m",
Max450f5ac2019-02-14 19:12:03 +0100267 },
Alexander Couzens6a161492020-07-12 13:45:50 +0200268 [INT2IDX(DLNS)] = {
269 .name = "DLNS",
270 .description = "GPRS NS layer",
271 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100272 .color = "\033[38;5;57m",
Alexander Couzens6a161492020-07-12 13:45:50 +0200273 },
Harald Weltefde19ed2020-12-07 21:43:51 +0100274 [INT2IDX(DLBSSGP)] = {
275 .name = "DLBSSGP",
276 .description = "GPRS BSSGP layer",
277 .enabled = 1, .loglevel = LOGL_NOTICE,
Harald Welte4c0e1a12020-12-07 22:03:09 +0100278 .color = "\033[38;5;59m",
Harald Weltefde19ed2020-12-07 21:43:51 +0100279 },
Alexander Couzens6cf65d92021-01-18 17:55:35 +0100280 [INT2IDX(DLNSDATA)] = {
281 .name = "DLNSDATA",
282 .description = "GPRS NS layer data PDU",
283 .enabled = 1, .loglevel = LOGL_NOTICE,
284 .color = "\033[38;5;61m",
285 },
286 [INT2IDX(DLNSSIGNAL)] = {
287 .name = "DLNSSIGNAL",
288 .description = "GPRS NS layer signal PDU",
289 .enabled = 1, .loglevel = LOGL_NOTICE,
290 .color = "\033[38;5;63m",
291 },
Harald Welteb43bc042011-06-27 10:29:17 +0200292};
293
Neels Hofmeyrba0762d2018-09-10 13:56:03 +0200294void assert_loginfo(const char *src)
Harald Welte18a7d812017-03-16 23:54:55 +0100295{
296 if (!osmo_log_info) {
297 fprintf(stderr, "ERROR: osmo_log_info == NULL! "
Max68bf16a2018-01-10 17:00:43 +0100298 "You must call log_init() before using logging in %s()!\n", src);
Harald Welte18a7d812017-03-16 23:54:55 +0100299 OSMO_ASSERT(osmo_log_info);
300 }
301}
302
Harald Welteb43bc042011-06-27 10:29:17 +0200303/* special magic for negative (library-internal) log subsystem numbers */
304static int subsys_lib2index(int subsys)
305{
306 return (subsys * -1) + (osmo_log_info->num_cat_user-1);
307}
308
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200309/*! Parse a human-readable log level into a numeric value
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700310 * \param[in] lvl zero-terminated string containing log level name
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200311 * \returns numeric log level
312 */
Harald Welte3ae27582010-03-26 21:24:24 +0800313int log_parse_level(const char *lvl)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800314{
315 return get_string_value(loglevel_strs, lvl);
316}
317
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200318/*! convert a numeric log level into human-readable string
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700319 * \param[in] lvl numeric log level
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200320 * \returns zero-terminated string (log level name)
321 */
Harald Welte9ac22252010-05-11 11:19:40 +0200322const char *log_level_str(unsigned int lvl)
323{
324 return get_value_string(loglevel_strs, lvl);
325}
326
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200327/*! parse a human-readable log category into numeric form
Harald Welte18fc4652011-08-17 14:14:17 +0200328 * \param[in] category human-readable log category name
329 * \returns numeric category value, or -EINVAL otherwise
330 */
Harald Welte3ae27582010-03-26 21:24:24 +0800331int log_parse_category(const char *category)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800332{
333 int i;
334
Max68bf16a2018-01-10 17:00:43 +0100335 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100336
Harald Welte4ebdf742010-05-19 19:54:00 +0200337 for (i = 0; i < osmo_log_info->num_cat; ++i) {
Harald Welteb43bc042011-06-27 10:29:17 +0200338 if (osmo_log_info->cat[i].name == NULL)
339 continue;
Harald Welte4ebdf742010-05-19 19:54:00 +0200340 if (!strcasecmp(osmo_log_info->cat[i].name+1, category))
Harald Weltefaadfe22010-03-26 21:05:43 +0800341 return i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800342 }
343
344 return -EINVAL;
345}
346
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200347/*! parse the log category mask
Harald Welte18fc4652011-08-17 14:14:17 +0200348 * \param[in] target log target to be configured
349 * \param[in] _mask log category mask string
350 *
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800351 * The format can be this: category1:category2:category3
352 * or category1,2:category2,3:...
353 */
Harald Welte3ae27582010-03-26 21:24:24 +0800354void log_parse_category_mask(struct log_target* target, const char *_mask)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800355{
356 int i = 0;
357 char *mask = strdup(_mask);
358 char *category_token = NULL;
359
Max68bf16a2018-01-10 17:00:43 +0100360 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100361
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800362 /* Disable everything to enable it afterwards */
Harald Welteb43bc042011-06-27 10:29:17 +0200363 for (i = 0; i < osmo_log_info->num_cat; ++i)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800364 target->categories[i].enabled = 0;
365
366 category_token = strtok(mask, ":");
Neels Hofmeyrda1b20c2016-04-14 15:12:16 +0200367 OSMO_ASSERT(category_token);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800368 do {
Harald Welte4ebdf742010-05-19 19:54:00 +0200369 for (i = 0; i < osmo_log_info->num_cat; ++i) {
Nico Golde0262d3f2012-09-21 17:44:58 +0200370 size_t length, cat_length;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800371 char* colon = strstr(category_token, ",");
Nico Golde0262d3f2012-09-21 17:44:58 +0200372
373 if (!osmo_log_info->cat[i].name)
374 continue;
375
376 length = strlen(category_token);
377 cat_length = strlen(osmo_log_info->cat[i].name);
Pablo Neira Ayuso300e78d2011-08-11 13:24:18 +0200378
379 /* Use longest length not to match subocurrences. */
380 if (cat_length > length)
381 length = cat_length;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800382
383 if (colon)
384 length = colon - category_token;
385
Harald Welte4ebdf742010-05-19 19:54:00 +0200386 if (strncasecmp(osmo_log_info->cat[i].name,
387 category_token, length) == 0) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800388 int level = 0;
389
390 if (colon)
391 level = atoi(colon+1);
392
Harald Weltefaadfe22010-03-26 21:05:43 +0800393 target->categories[i].enabled = 1;
394 target->categories[i].loglevel = level;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800395 }
396 }
397 } while ((category_token = strtok(NULL, ":")));
398
399 free(mask);
400}
401
402static const char* color(int subsys)
403{
Harald Welte4ebdf742010-05-19 19:54:00 +0200404 if (subsys < osmo_log_info->num_cat)
405 return osmo_log_info->cat[subsys].color;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800406
Harald Welted788f662010-03-26 09:45:03 +0800407 return NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800408}
409
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100410static const struct value_string level_colors[] = {
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100411 { LOGL_DEBUG, OSMO_LOGCOLOR_BLUE },
412 { LOGL_INFO, OSMO_LOGCOLOR_GREEN },
413 { LOGL_NOTICE, OSMO_LOGCOLOR_YELLOW },
414 { LOGL_ERROR, OSMO_LOGCOLOR_RED },
415 { LOGL_FATAL, OSMO_LOGCOLOR_RED },
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100416 { 0, NULL }
417};
418
419static const char *level_color(int level)
420{
421 const char *c = get_value_string_or_null(level_colors, level);
422 if (!c)
423 return get_value_string(level_colors, LOGL_FATAL);
424 return c;
425}
426
Harald Welteaa00f992016-12-02 15:30:02 +0100427const char* log_category_name(int subsys)
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100428{
429 if (subsys < osmo_log_info->num_cat)
430 return osmo_log_info->cat[subsys].name;
431
432 return NULL;
433}
434
Neels Hofmeyr0e2a9432018-01-16 02:49:48 +0100435static const char *const_basename(const char *path)
436{
437 const char *bn = strrchr(path, '/');
438 if (!bn || !bn[1])
439 return path;
440 return bn + 1;
441}
442
Harald Welte3ae27582010-03-26 21:24:24 +0800443static void _output(struct log_target *target, unsigned int subsys,
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200444 unsigned int level, const char *file, int line, int cont,
Harald Welte76e72ab2011-02-17 15:52:39 +0100445 const char *format, va_list ap)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800446{
Harald Weltea8b1b212020-09-27 17:21:07 +0200447 char buf[MAX_LOG_SIZE];
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200448 int ret, len = 0, offset = 0, rem = sizeof(buf);
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100449 const char *c_subsys = NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800450
451 /* are we using color */
452 if (target->use_color) {
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100453 c_subsys = color(subsys);
454 if (c_subsys) {
Neels Hofmeyr5e518b52018-01-17 13:20:02 +0100455 ret = snprintf(buf + offset, rem, "%s", c_subsys);
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200456 if (ret < 0)
457 goto err;
458 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welted788f662010-03-26 09:45:03 +0800459 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800460 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800461 if (!cont) {
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100462 if (target->print_ext_timestamp) {
Harald Welte14c4c492018-06-28 08:28:52 +0200463#ifdef HAVE_LOCALTIME_R
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100464 struct tm tm;
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100465 struct timeval tv;
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200466 osmo_gettimeofday(&tv, NULL);
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100467 localtime_r(&tv.tv_sec, &tm);
468 ret = snprintf(buf + offset, rem, "%04d%02d%02d%02d%02d%02d%03d ",
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100469 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100470 tm.tm_hour, tm.tm_min, tm.tm_sec,
471 (int)(tv.tv_usec / 1000));
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100472 if (ret < 0)
473 goto err;
474 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte14c4c492018-06-28 08:28:52 +0200475#endif
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100476 } else if (target->print_timestamp) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800477 time_t tm;
Pau Espin Pedrol3aef2382019-06-12 18:50:29 +0200478 if ((tm = time(NULL)) == (time_t) -1)
479 goto err;
Pau Espin Pedrolcc794e92019-06-12 16:22:53 +0200480 /* Get human-readable representation of time.
481 man ctime: we need at least 26 bytes in buf */
482 if (rem < 26 || !ctime_r(&tm, buf + offset))
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200483 goto err;
Pau Espin Pedrolcc794e92019-06-12 16:22:53 +0200484 ret = strlen(buf + offset);
485 if (ret <= 0)
486 goto err;
487 /* Get rid of useless final '\n' added by ctime_r. We want a space instead. */
488 buf[offset + ret - 1] = ' ';
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200489 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800490 }
Pau Espin Pedrol662d10d2021-02-18 18:19:23 +0100491 if (target->print_tid) {
492 if (logging_tid == 0)
493 logging_tid = (long int)osmo_gettid();
494 ret = snprintf(buf + offset, rem, "%ld ", logging_tid);
495 if (ret < 0)
496 goto err;
497 OSMO_SNPRINTF_RET(ret, rem, offset, len);
498 }
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100499 if (target->print_category) {
Neels Hofmeyre6534722018-01-16 03:02:06 +0100500 ret = snprintf(buf + offset, rem, "%s%s%s%s ",
501 target->use_color ? level_color(level) : "",
502 log_category_name(subsys),
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100503 target->use_color ? OSMO_LOGCOLOR_END : "",
Neels Hofmeyre6534722018-01-16 03:02:06 +0100504 c_subsys ? c_subsys : "");
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100505 if (ret < 0)
506 goto err;
507 OSMO_SNPRINTF_RET(ret, rem, offset, len);
508 }
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100509 if (target->print_level) {
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100510 ret = snprintf(buf + offset, rem, "%s%s%s%s ",
511 target->use_color ? level_color(level) : "",
512 log_level_str(level),
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100513 target->use_color ? OSMO_LOGCOLOR_END : "",
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100514 c_subsys ? c_subsys : "");
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100515 if (ret < 0)
516 goto err;
517 OSMO_SNPRINTF_RET(ret, rem, offset, len);
518 }
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100519 if (target->print_category_hex) {
520 ret = snprintf(buf + offset, rem, "<%4.4x> ", subsys);
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200521 if (ret < 0)
522 goto err;
523 OSMO_SNPRINTF_RET(ret, rem, offset, len);
524 }
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200525
526 if (target->print_filename_pos == LOG_FILENAME_POS_HEADER_END) {
527 switch (target->print_filename2) {
528 case LOG_FILENAME_NONE:
529 break;
530 case LOG_FILENAME_PATH:
531 ret = snprintf(buf + offset, rem, "%s:%d ", file, line);
532 if (ret < 0)
533 goto err;
534 OSMO_SNPRINTF_RET(ret, rem, offset, len);
535 break;
536 case LOG_FILENAME_BASENAME:
537 ret = snprintf(buf + offset, rem, "%s:%d ", const_basename(file), line);
538 if (ret < 0)
539 goto err;
540 OSMO_SNPRINTF_RET(ret, rem, offset, len);
541 break;
542 }
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100543 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800544 }
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200545 ret = vsnprintf(buf + offset, rem, format, ap);
546 if (ret < 0)
547 goto err;
548 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800549
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200550 /* For LOG_FILENAME_POS_LAST, print the source file info only when the caller ended the log
551 * message in '\n'. If so, nip the last '\n' away, insert the source file info and re-append an
552 * '\n'. All this to allow LOGP("start..."); LOGPC("...end\n") constructs. */
553 if (target->print_filename_pos == LOG_FILENAME_POS_LINE_END
554 && offset > 0 && buf[offset-1] == '\n') {
555 switch (target->print_filename2) {
556 case LOG_FILENAME_NONE:
557 break;
558 case LOG_FILENAME_PATH:
559 offset --;
560 ret = snprintf(buf + offset, rem, " (%s:%d)\n", file, line);
561 if (ret < 0)
562 goto err;
563 OSMO_SNPRINTF_RET(ret, rem, offset, len);
564 break;
565 case LOG_FILENAME_BASENAME:
566 offset --;
567 ret = snprintf(buf + offset, rem, " (%s:%d)\n", const_basename(file), line);
568 if (ret < 0)
569 goto err;
570 OSMO_SNPRINTF_RET(ret, rem, offset, len);
571 break;
572 }
573 }
574
Pau Espin Pedrol6407c822020-07-20 16:41:44 +0200575 if (target->use_color && c_subsys) {
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100576 ret = snprintf(buf + offset, rem, OSMO_LOGCOLOR_END);
Neels Hofmeyrc4759882018-01-16 02:10:48 +0100577 if (ret < 0)
578 goto err;
579 OSMO_SNPRINTF_RET(ret, rem, offset, len);
580 }
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200581err:
582 buf[sizeof(buf)-1] = '\0';
583 target->output(target, level, buf);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800584}
585
Neels Hofmeyr42240de2016-12-12 15:13:56 +0100586/* Catch internal logging category indexes as well as out-of-bounds indexes.
587 * For internal categories, the ID is negative starting with -1; and internal
588 * logging categories are added behind the user categories. For out-of-bounds
589 * indexes, return the index of DLGLOBAL. The returned category index is
590 * guaranteed to exist in osmo_log_info, otherwise the program would abort,
591 * which should never happen unless even the DLGLOBAL category is missing. */
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100592static inline int map_subsys(int subsys)
593{
Neels Hofmeyr74802262016-12-12 16:00:24 +0100594 /* Note: comparing signed and unsigned integers */
595
596 if (subsys > 0 && ((unsigned int)subsys) >= osmo_log_info->num_cat_user)
597 subsys = DLGLOBAL;
598
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100599 if (subsys < 0)
600 subsys = subsys_lib2index(subsys);
601
Neels Hofmeyrca135742016-12-12 14:18:54 +0100602 if (subsys < 0 || subsys >= osmo_log_info->num_cat)
Neels Hofmeyr42240de2016-12-12 15:13:56 +0100603 subsys = subsys_lib2index(DLGLOBAL);
604
Neels Hofmeyrca135742016-12-12 14:18:54 +0100605 OSMO_ASSERT(!(subsys < 0 || subsys >= osmo_log_info->num_cat));
606
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100607 return subsys;
608}
609
Maxc65c5b42017-03-15 13:20:23 +0100610static inline bool should_log_to_target(struct log_target *tar, int subsys,
611 int level)
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100612{
613 struct log_category *category;
614
615 category = &tar->categories[subsys];
616
617 /* subsystem is not supposed to be logged */
618 if (!category->enabled)
Maxc65c5b42017-03-15 13:20:23 +0100619 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100620
621 /* Check the global log level */
622 if (tar->loglevel != 0 && level < tar->loglevel)
Maxc65c5b42017-03-15 13:20:23 +0100623 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100624
625 /* Check the category log level */
626 if (tar->loglevel == 0 && category->loglevel != 0 &&
627 level < category->loglevel)
Maxc65c5b42017-03-15 13:20:23 +0100628 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100629
Holger Hans Peter Freyther79599ac2016-01-15 16:49:06 +0100630 /* Apply filters here... if that becomes messy we will
631 * need to put filters in a list and each filter will
632 * say stop, continue, output */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100633 if ((tar->filter_map & (1 << LOG_FLT_ALL)) != 0)
Maxc65c5b42017-03-15 13:20:23 +0100634 return true;
Holger Hans Peter Freyther79599ac2016-01-15 16:49:06 +0100635
636 if (osmo_log_info->filter_fn)
637 return osmo_log_info->filter_fn(&log_context, tar);
638
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100639 /* TODO: Check the filter/selector too? */
Maxc65c5b42017-03-15 13:20:23 +0100640 return true;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100641}
642
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200643/*! vararg version of logging function
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200644 * \param[in] subsys Logging sub-system
645 * \param[in] level Log level
646 * \param[in] file name of source code file
647 * \param[in] cont continuation (1) or new line (0)
648 * \param[in] format format string
649 * \param[in] ap vararg-list containing format string arguments
650 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200651void osmo_vlogp(int subsys, int level, const char *file, int line,
Harald Welte36c5a3e2011-08-27 14:33:19 +0200652 int cont, const char *format, va_list ap)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800653{
Harald Welte3ae27582010-03-26 21:24:24 +0800654 struct log_target *tar;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800655
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100656 subsys = map_subsys(subsys);
Harald Welteb43bc042011-06-27 10:29:17 +0200657
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200658 log_tgt_mutex_lock();
659
Harald Welte28222962011-02-18 20:37:04 +0100660 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200661 va_list bp;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800662
Maxc65c5b42017-03-15 13:20:23 +0100663 if (!should_log_to_target(tar, subsys, level))
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800664 continue;
665
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200666 /* According to the manpage, vsnprintf leaves the value of ap
667 * in undefined state. Since _output uses vsnprintf and it may
668 * be called several times, we have to pass a copy of ap. */
669 va_copy(bp, ap);
Harald Welted7c0a372016-12-02 13:52:59 +0100670 if (tar->raw_output)
671 tar->raw_output(tar, subsys, level, file, line, cont, format, bp);
672 else
673 _output(tar, subsys, level, file, line, cont, format, bp);
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200674 va_end(bp);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800675 }
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200676
677 log_tgt_mutex_unlock();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800678}
679
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200680/*! logging function used by DEBUGP() macro
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200681 * \param[in] subsys Logging sub-system
682 * \param[in] file name of source code file
683 * \param[in] cont continuation (1) or new line (0)
684 * \param[in] format format string
685 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200686void logp(int subsys, const char *file, int line, int cont,
Harald Welte3ae27582010-03-26 21:24:24 +0800687 const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800688{
689 va_list ap;
690
691 va_start(ap, format);
Harald Welte36c5a3e2011-08-27 14:33:19 +0200692 osmo_vlogp(subsys, LOGL_DEBUG, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800693 va_end(ap);
694}
695
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200696/*! logging function used by LOGP() macro
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200697 * \param[in] subsys Logging sub-system
698 * \param[in] level Log level
699 * \param[in] file name of source code file
700 * \param[in] cont continuation (1) or new line (0)
701 * \param[in] format format string
702 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200703void logp2(int subsys, unsigned int level, const char *file, int line, int cont, const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800704{
705 va_list ap;
706
Harald Welte433005c2020-09-26 11:51:32 +0200707 TRACE(LIBOSMOCORE_LOG_START());
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800708 va_start(ap, format);
Harald Welte36c5a3e2011-08-27 14:33:19 +0200709 osmo_vlogp(subsys, level, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800710 va_end(ap);
Harald Welte433005c2020-09-26 11:51:32 +0200711 TRACE(LIBOSMOCORE_LOG_DONE());
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800712}
713
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200714/*! Register a new log target with the logging core
Harald Welte18fc4652011-08-17 14:14:17 +0200715 * \param[in] target Log target to be registered
716 */
Harald Welte3ae27582010-03-26 21:24:24 +0800717void log_add_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800718{
Harald Welte28222962011-02-18 20:37:04 +0100719 llist_add_tail(&target->entry, &osmo_log_target_list);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800720}
721
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200722/*! Unregister a log target from the logging core
Harald Welte18fc4652011-08-17 14:14:17 +0200723 * \param[in] target Log target to be unregistered
724 */
Harald Welte3ae27582010-03-26 21:24:24 +0800725void log_del_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800726{
727 llist_del(&target->entry);
728}
729
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200730/*! Reset (clear) the logging context */
Harald Welte3ae27582010-03-26 21:24:24 +0800731void log_reset_context(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800732{
Harald Welte3ae27582010-03-26 21:24:24 +0800733 memset(&log_context, 0, sizeof(log_context));
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800734}
735
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200736/*! Set the logging context
Harald Welte18fc4652011-08-17 14:14:17 +0200737 * \param[in] ctx_nr logging context number
738 * \param[in] value value to which the context is to be set
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200739 * \returns 0 in case of success; negative otherwise
Harald Welte18fc4652011-08-17 14:14:17 +0200740 *
741 * A logging context is something like the subscriber identity to which
742 * the currently processed message relates, or the BTS through which it
743 * was received. As soon as this data is known, it can be set using
744 * this function. The main use of context information is for logging
745 * filters.
746 */
Harald Welte3ae27582010-03-26 21:24:24 +0800747int log_set_context(uint8_t ctx_nr, void *value)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800748{
Harald Welte3ae27582010-03-26 21:24:24 +0800749 if (ctx_nr > LOG_MAX_CTX)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800750 return -EINVAL;
751
Harald Welte3ae27582010-03-26 21:24:24 +0800752 log_context.ctx[ctx_nr] = value;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800753
754 return 0;
755}
756
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200757/*! Enable the \ref LOG_FLT_ALL log filter
Harald Welte18fc4652011-08-17 14:14:17 +0200758 * \param[in] target Log target to be affected
759 * \param[in] all enable (1) or disable (0) the ALL filter
760 *
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100761 * When the \ref LOG_FLT_ALL filter is enabled, all log messages will be
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +0100762 * printed. It acts as a wildcard. Setting it to \a 1 means there is no
763 * filtering.
Harald Welte18fc4652011-08-17 14:14:17 +0200764 */
Harald Welte3ae27582010-03-26 21:24:24 +0800765void log_set_all_filter(struct log_target *target, int all)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800766{
767 if (all)
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100768 target->filter_map |= (1 << LOG_FLT_ALL);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800769 else
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100770 target->filter_map &= ~(1 << LOG_FLT_ALL);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800771}
772
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200773/*! Enable or disable the use of colored output
Harald Welte18fc4652011-08-17 14:14:17 +0200774 * \param[in] target Log target to be affected
775 * \param[in] use_color Use color (1) or don't use color (0)
776 */
Harald Welte3ae27582010-03-26 21:24:24 +0800777void log_set_use_color(struct log_target *target, int use_color)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800778{
779 target->use_color = use_color;
780}
781
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200782/*! Enable or disable printing of timestamps while logging
Harald Welte18fc4652011-08-17 14:14:17 +0200783 * \param[in] target Log target to be affected
784 * \param[in] print_timestamp Enable (1) or disable (0) timestamps
785 */
Harald Welte3ae27582010-03-26 21:24:24 +0800786void log_set_print_timestamp(struct log_target *target, int print_timestamp)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800787{
788 target->print_timestamp = print_timestamp;
789}
790
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200791/*! Enable or disable printing of extended timestamps while logging
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100792 * \param[in] target Log target to be affected
793 * \param[in] print_timestamp Enable (1) or disable (0) timestamps
794 *
795 * When both timestamp and extended timestamp is enabled then only
796 * the extended timestamp will be used. The format of the timestamp
797 * is YYYYMMDDhhmmssnnn.
798 */
799void log_set_print_extended_timestamp(struct log_target *target, int print_timestamp)
800{
801 target->print_ext_timestamp = print_timestamp;
802}
803
Pau Espin Pedrol662d10d2021-02-18 18:19:23 +0100804/*! Enable or disable printing of timestamps while logging
805 * \param[in] target Log target to be affected
806 * \param[in] print_tid Enable (1) or disable (0) Thread ID logging
807 */
808void log_set_print_tid(struct log_target *target, int print_tid)
809{
810 target->print_tid = print_tid;
811}
812
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100813/*! Use log_set_print_filename2() instead.
814 * Call log_set_print_filename2() with LOG_FILENAME_PATH or LOG_FILENAME_NONE, *as well as* call
815 * log_set_print_category_hex() with the argument passed to this function. This is to mirror legacy
816 * behavior, which combined the category in hex with the filename. For example, if the category-hex
817 * output were no longer affected by log_set_print_filename(), many unit tests (in libosmocore as well as
818 * dependent projects) would fail since they expect the category to disappear along with the filename.
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200819 * \param[in] target Log target to be affected
820 * \param[in] print_filename Enable (1) or disable (0) filenames
821 */
822void log_set_print_filename(struct log_target *target, int print_filename)
823{
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100824 log_set_print_filename2(target, print_filename ? LOG_FILENAME_PATH : LOG_FILENAME_NONE);
825 log_set_print_category_hex(target, print_filename);
826}
827
828/*! Enable or disable printing of the filename while logging.
829 * \param[in] target Log target to be affected.
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700830 * \param[in] lft An LOG_FILENAME_* enum value.
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100831 * LOG_FILENAME_NONE omits the source file and line information from logs.
832 * LOG_FILENAME_PATH prints the entire source file path as passed to LOGP macros.
833 */
834void log_set_print_filename2(struct log_target *target, enum log_filename_type lft)
835{
836 target->print_filename2 = lft;
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200837}
838
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200839/*! Set the position where on a log line the source file info should be logged.
840 * \param[in] target Log target to be affected.
841 * \param[in] pos A LOG_FILENAME_POS_* enum value.
842 * LOG_FILENAME_POS_DEFAULT logs just before the caller supplied log message.
843 * LOG_FILENAME_POS_LAST logs only at the end of a log line, where the caller issued an '\n' to end the
844 */
845void log_set_print_filename_pos(struct log_target *target, enum log_filename_pos pos)
846{
847 target->print_filename_pos = pos;
848}
849
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200850/*! Enable or disable printing of the category name
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100851 * \param[in] target Log target to be affected
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700852 * \param[in] print_category Enable (1) or disable (0) filenames
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100853 *
854 * Print the category/subsys name in front of every log message.
855 */
856void log_set_print_category(struct log_target *target, int print_category)
857{
858 target->print_category = print_category;
859}
860
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100861/*! Enable or disable printing of the category number in hex ('<000b>').
862 * \param[in] target Log target to be affected.
863 * \param[in] print_category_hex Enable (1) or disable (0) hex category.
864 */
865void log_set_print_category_hex(struct log_target *target, int print_category_hex)
866{
867 target->print_category_hex = print_category_hex;
868}
869
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100870/*! Enable or disable printing of the log level name.
871 * \param[in] target Log target to be affected
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700872 * \param[in] print_level Enable (1) or disable (0) log level name
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100873 *
874 * Print the log level name in front of every log message.
875 */
876void log_set_print_level(struct log_target *target, int print_level)
877{
878 target->print_level = (bool)print_level;
879}
880
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200881/*! Set the global log level for a given log target
Harald Welte18fc4652011-08-17 14:14:17 +0200882 * \param[in] target Log target to be affected
883 * \param[in] log_level New global log level
884 */
Harald Welte3ae27582010-03-26 21:24:24 +0800885void log_set_log_level(struct log_target *target, int log_level)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800886{
887 target->loglevel = log_level;
888}
889
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200890/*! Set a category filter on a given log target
Harald Weltede6e4982012-12-06 21:25:27 +0100891 * \param[in] target Log target to be affected
892 * \param[in] category Log category to be affected
893 * \param[in] enable whether to enable or disable the filter
894 * \param[in] level Log level of the filter
895 */
Harald Welte3ae27582010-03-26 21:24:24 +0800896void log_set_category_filter(struct log_target *target, int category,
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800897 int enable, int level)
898{
Neels Hofmeyr886d6fd2016-12-12 13:49:03 +0100899 if (!target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800900 return;
Neels Hofmeyr886d6fd2016-12-12 13:49:03 +0100901 category = map_subsys(category);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800902 target->categories[category].enabled = !!enable;
903 target->categories[category].loglevel = level;
904}
905
Harald Welte44c0f632017-01-15 17:58:29 +0100906#if (!EMBEDDED)
Harald Welte76e72ab2011-02-17 15:52:39 +0100907static void _file_output(struct log_target *target, unsigned int level,
908 const char *log)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800909{
Harald Welte0083cd32010-08-25 14:55:44 +0200910 fprintf(target->tgt_file.out, "%s", log);
911 fflush(target->tgt_file.out);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800912}
Harald Welte44c0f632017-01-15 17:58:29 +0100913#endif
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800914
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200915/*! Create a new log target skeleton
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200916 * \returns dynamically-allocated log target
917 * This funcition allocates a \ref log_target and initializes it
918 * with some default values. The newly created target is not
919 * registered yet.
920 */
Harald Welte3ae27582010-03-26 21:24:24 +0800921struct log_target *log_target_create(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800922{
Harald Welte3ae27582010-03-26 21:24:24 +0800923 struct log_target *target;
Harald Weltecc6313c2010-03-26 22:04:03 +0800924 unsigned int i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800925
Max68bf16a2018-01-10 17:00:43 +0100926 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100927
Harald Welte3ae27582010-03-26 21:24:24 +0800928 target = talloc_zero(tall_log_ctx, struct log_target);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800929 if (!target)
930 return NULL;
931
Pau Espin Pedrol9d4a36e2018-07-26 11:55:33 +0200932 target->categories = talloc_zero_array(target,
Harald Welteb43bc042011-06-27 10:29:17 +0200933 struct log_category,
934 osmo_log_info->num_cat);
935 if (!target->categories) {
936 talloc_free(target);
937 return NULL;
938 }
939
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800940 INIT_LLIST_HEAD(&target->entry);
Harald Weltecc6313c2010-03-26 22:04:03 +0800941
942 /* initialize the per-category enabled/loglevel from defaults */
Harald Welte4ebdf742010-05-19 19:54:00 +0200943 for (i = 0; i < osmo_log_info->num_cat; i++) {
Harald Weltecc6313c2010-03-26 22:04:03 +0800944 struct log_category *cat = &target->categories[i];
Harald Welte4ebdf742010-05-19 19:54:00 +0200945 cat->enabled = osmo_log_info->cat[i].enabled;
946 cat->loglevel = osmo_log_info->cat[i].loglevel;
Harald Weltecc6313c2010-03-26 22:04:03 +0800947 }
948
949 /* global settings */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800950 target->use_color = 1;
951 target->print_timestamp = 0;
Pau Espin Pedrol662d10d2021-02-18 18:19:23 +0100952 target->print_tid = 0;
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100953 target->print_filename2 = LOG_FILENAME_PATH;
954 target->print_category_hex = true;
Harald Weltecc6313c2010-03-26 22:04:03 +0800955
956 /* global log level */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800957 target->loglevel = 0;
958 return target;
959}
960
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200961/*! Create the STDERR log target
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200962 * \returns dynamically-allocated \ref log_target for STDERR */
Harald Welte3ae27582010-03-26 21:24:24 +0800963struct log_target *log_target_create_stderr(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800964{
Harald Weltea3b844c2010-03-27 00:04:40 +0800965/* since C89/C99 says stderr is a macro, we can safely do this! */
Harald Welteb93ce5a2017-05-15 10:58:15 +0200966#if !EMBEDDED && defined(stderr)
Harald Welte3ae27582010-03-26 21:24:24 +0800967 struct log_target *target;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800968
Harald Welte3ae27582010-03-26 21:24:24 +0800969 target = log_target_create();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800970 if (!target)
971 return NULL;
972
Harald Welte28222962011-02-18 20:37:04 +0100973 target->type = LOG_TGT_TYPE_STDERR;
Harald Welte0083cd32010-08-25 14:55:44 +0200974 target->tgt_file.out = stderr;
975 target->output = _file_output;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800976 return target;
Harald Weltea3b844c2010-03-27 00:04:40 +0800977#else
978 return NULL;
979#endif /* stderr */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800980}
981
Harald Welte44c0f632017-01-15 17:58:29 +0100982#if (!EMBEDDED)
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200983/*! Create a new file-based log target
Harald Welte18fc4652011-08-17 14:14:17 +0200984 * \param[in] fname File name of the new log file
985 * \returns Log target in case of success, NULL otherwise
986 */
Harald Welte3086c392010-08-25 19:10:50 +0200987struct log_target *log_target_create_file(const char *fname)
988{
989 struct log_target *target;
990
991 target = log_target_create();
992 if (!target)
993 return NULL;
994
Harald Welte28222962011-02-18 20:37:04 +0100995 target->type = LOG_TGT_TYPE_FILE;
Harald Welte3086c392010-08-25 19:10:50 +0200996 target->tgt_file.out = fopen(fname, "a");
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +0700997 if (!target->tgt_file.out) {
998 log_target_destroy(target);
Harald Welte3086c392010-08-25 19:10:50 +0200999 return NULL;
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +07001000 }
Harald Welte3086c392010-08-25 19:10:50 +02001001
1002 target->output = _file_output;
1003
1004 target->tgt_file.fname = talloc_strdup(target, fname);
1005
1006 return target;
1007}
Harald Welte44c0f632017-01-15 17:58:29 +01001008#endif
Harald Welte3086c392010-08-25 19:10:50 +02001009
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001010/*! Find a registered log target
Harald Welte18fc4652011-08-17 14:14:17 +02001011 * \param[in] type Log target type
1012 * \param[in] fname File name
1013 * \returns Log target (if found), NULL otherwise
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001014 * Must be called with mutex osmo_log_tgt_mutex held, see log_tgt_mutex_lock.
Harald Welte18fc4652011-08-17 14:14:17 +02001015 */
Harald Welte28222962011-02-18 20:37:04 +01001016struct log_target *log_target_find(int type, const char *fname)
1017{
1018 struct log_target *tgt;
1019
1020 llist_for_each_entry(tgt, &osmo_log_target_list, entry) {
1021 if (tgt->type != type)
1022 continue;
Maxc90f40a2018-01-11 10:52:28 +01001023 switch (tgt->type) {
1024 case LOG_TGT_TYPE_FILE:
Harald Welte28222962011-02-18 20:37:04 +01001025 if (!strcmp(fname, tgt->tgt_file.fname))
1026 return tgt;
Maxc90f40a2018-01-11 10:52:28 +01001027 break;
1028 case LOG_TGT_TYPE_GSMTAP:
1029 if (!strcmp(fname, tgt->tgt_gsmtap.hostname))
1030 return tgt;
1031 break;
1032 default:
Harald Welte28222962011-02-18 20:37:04 +01001033 return tgt;
Maxc90f40a2018-01-11 10:52:28 +01001034 }
Harald Welte28222962011-02-18 20:37:04 +01001035 }
1036 return NULL;
1037}
1038
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001039/*! Unregister, close and delete a log target
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +07001040 * \param[in] target log target to unregister, close and delete */
Harald Welte3086c392010-08-25 19:10:50 +02001041void log_target_destroy(struct log_target *target)
1042{
1043
1044 /* just in case, to make sure we don't have any references */
1045 log_del_target(target);
1046
Harald Welte44c0f632017-01-15 17:58:29 +01001047#if (!EMBEDDED)
Vadim Yanitskiy744236b2020-09-09 04:42:22 +07001048 switch (target->type) {
1049 case LOG_TGT_TYPE_FILE:
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +07001050 if (target->tgt_file.out == NULL)
1051 break;
Vadim Yanitskiy744236b2020-09-09 04:42:22 +07001052 fclose(target->tgt_file.out);
1053 target->tgt_file.out = NULL;
1054 break;
Vadim Yanitskiy04f42712020-09-09 04:47:25 +07001055#ifdef HAVE_SYSLOG_H
1056 case LOG_TGT_TYPE_SYSLOG:
1057 closelog();
1058 break;
1059#endif /* HAVE_SYSLOG_H */
Vadim Yanitskiy744236b2020-09-09 04:42:22 +07001060 default:
1061 /* make GCC happy */
1062 break;
Harald Welte3086c392010-08-25 19:10:50 +02001063 }
Harald Welte44c0f632017-01-15 17:58:29 +01001064#endif
Harald Welte3086c392010-08-25 19:10:50 +02001065
1066 talloc_free(target);
1067}
1068
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001069/*! close and re-open a log file (for log file rotation)
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001070 * \param[in] target log target to re-open
1071 * \returns 0 in case of success; negative otherwise */
Harald Welte3086c392010-08-25 19:10:50 +02001072int log_target_file_reopen(struct log_target *target)
1073{
1074 fclose(target->tgt_file.out);
1075
1076 target->tgt_file.out = fopen(target->tgt_file.fname, "a");
1077 if (!target->tgt_file.out)
1078 return -errno;
1079
1080 /* we assume target->output already to be set */
1081
1082 return 0;
1083}
1084
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001085/*! close and re-open all log files (for log file rotation)
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001086 * \returns 0 in case of success; negative otherwise */
Harald Welte4de854d2013-03-18 19:01:40 +01001087int log_targets_reopen(void)
1088{
1089 struct log_target *tar;
1090 int rc = 0;
1091
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001092 log_tgt_mutex_lock();
1093
Harald Welte4de854d2013-03-18 19:01:40 +01001094 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
1095 switch (tar->type) {
1096 case LOG_TGT_TYPE_FILE:
1097 if (log_target_file_reopen(tar) < 0)
1098 rc = -1;
1099 break;
1100 default:
1101 break;
1102 }
1103 }
1104
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001105 log_tgt_mutex_unlock();
1106
Harald Welte4de854d2013-03-18 19:01:40 +01001107 return rc;
1108}
1109
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001110/*! Initialize the Osmocom logging core
Max72dfd432018-12-04 11:24:18 +01001111 * \param[in] inf Information regarding logging categories, could be NULL
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +07001112 * \param[in] ctx talloc context for logging allocations
Harald Welte18fc4652011-08-17 14:14:17 +02001113 * \returns 0 in case of success, negative in case of error
Max72dfd432018-12-04 11:24:18 +01001114 *
1115 * If inf is NULL then only library-internal categories are initialized.
Harald Welte18fc4652011-08-17 14:14:17 +02001116 */
Harald Welteb43bc042011-06-27 10:29:17 +02001117int log_init(const struct log_info *inf, void *ctx)
Harald Welte4a2bb9e2010-03-26 09:33:40 +08001118{
Harald Welteb43bc042011-06-27 10:29:17 +02001119 int i;
Philipp Maierdcad1c52020-03-25 11:25:59 +01001120 struct log_info_cat *cat_ptr;
Harald Welteb43bc042011-06-27 10:29:17 +02001121
Philipp Maierdc02c062020-05-12 17:51:25 +02001122 /* Ensure that log_init is not called multiple times */
1123 OSMO_ASSERT(tall_log_ctx == NULL)
1124
Harald Welteb43bc042011-06-27 10:29:17 +02001125 tall_log_ctx = talloc_named_const(ctx, 1, "logging");
1126 if (!tall_log_ctx)
1127 return -ENOMEM;
1128
1129 osmo_log_info = talloc_zero(tall_log_ctx, struct log_info);
1130 if (!osmo_log_info)
1131 return -ENOMEM;
1132
Max72dfd432018-12-04 11:24:18 +01001133 osmo_log_info->num_cat = ARRAY_SIZE(internal_cat);
1134
1135 if (inf) {
1136 osmo_log_info->filter_fn = inf->filter_fn;
1137 osmo_log_info->num_cat_user = inf->num_cat;
1138 osmo_log_info->num_cat += inf->num_cat;
1139 }
Harald Welteb43bc042011-06-27 10:29:17 +02001140
Philipp Maierdcad1c52020-03-25 11:25:59 +01001141 cat_ptr = talloc_zero_array(osmo_log_info, struct log_info_cat,
1142 osmo_log_info->num_cat);
1143 if (!cat_ptr) {
Harald Welteb43bc042011-06-27 10:29:17 +02001144 talloc_free(osmo_log_info);
1145 osmo_log_info = NULL;
1146 return -ENOMEM;
1147 }
1148
Philipp Maierdcad1c52020-03-25 11:25:59 +01001149 /* copy over the user part and sanitize loglevel */
1150 if (inf) {
Max72dfd432018-12-04 11:24:18 +01001151 for (i = 0; i < inf->num_cat; i++) {
Philipp Maierdcad1c52020-03-25 11:25:59 +01001152 memcpy(&cat_ptr[i], &inf->cat[i],
1153 sizeof(struct log_info_cat));
1154
1155 /* Make sure that the loglevel is set to NOTICE in case
1156 * no loglevel has been preset. */
1157 if (!cat_ptr[i].loglevel) {
1158 cat_ptr[i].loglevel = LOGL_NOTICE;
1159 }
Max72dfd432018-12-04 11:24:18 +01001160 }
Harald Welteb43bc042011-06-27 10:29:17 +02001161 }
1162
1163 /* copy over the library part */
Harald Welte9fe16522011-06-27 14:00:03 +02001164 for (i = 0; i < ARRAY_SIZE(internal_cat); i++) {
Harald Weltece9fec32011-06-27 14:19:16 +02001165 unsigned int cn = osmo_log_info->num_cat_user + i;
Philipp Maierdcad1c52020-03-25 11:25:59 +01001166 memcpy(&cat_ptr[cn], &internal_cat[i], sizeof(struct log_info_cat));
Harald Welte9fe16522011-06-27 14:00:03 +02001167 }
1168
Philipp Maierdcad1c52020-03-25 11:25:59 +01001169 osmo_log_info->cat = cat_ptr;
1170
Harald Welte9fe16522011-06-27 14:00:03 +02001171 return 0;
Harald Welte4a2bb9e2010-03-26 09:33:40 +08001172}
Harald Welte18fc4652011-08-17 14:14:17 +02001173
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001174/* De-initialize the Osmocom logging core
Harald Welte69e6c3c2016-04-20 10:41:27 +02001175 * This function destroys all targets and releases associated memory */
1176void log_fini(void)
1177{
1178 struct log_target *tar, *tar2;
1179
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001180 log_tgt_mutex_lock();
1181
Harald Welte69e6c3c2016-04-20 10:41:27 +02001182 llist_for_each_entry_safe(tar, tar2, &osmo_log_target_list, entry)
1183 log_target_destroy(tar);
1184
1185 talloc_free(osmo_log_info);
1186 osmo_log_info = NULL;
1187 talloc_free(tall_log_ctx);
1188 tall_log_ctx = NULL;
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001189
1190 log_tgt_mutex_unlock();
Harald Welte69e6c3c2016-04-20 10:41:27 +02001191}
1192
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001193/*! Check whether a log entry will be generated.
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001194 * \returns != 0 if a log entry might get generated by at least one target */
1195int log_check_level(int subsys, unsigned int level)
1196{
1197 struct log_target *tar;
1198
Max68bf16a2018-01-10 17:00:43 +01001199 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +01001200
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +01001201 subsys = map_subsys(subsys);
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001202
1203 /* TODO: The following could/should be cached (update on config) */
1204
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001205 log_tgt_mutex_lock();
1206
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001207 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
Maxc65c5b42017-03-15 13:20:23 +01001208 if (!should_log_to_target(tar, subsys, level))
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001209 continue;
1210
1211 /* This might get logged (ignoring filters) */
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001212 log_tgt_mutex_unlock();
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001213 return 1;
1214 }
1215
1216 /* We are sure, that this will not be logged. */
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001217 log_tgt_mutex_unlock();
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001218 return 0;
1219}
1220
Sylvain Munautdca7d2c2012-04-18 21:53:23 +02001221/*! @} */