blob: 212b0b992ca1d08521037986727d22fecb0e4d74 [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
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010059osmo_static_assert(_LOG_CTX_COUNT <= ARRAY_SIZE(((struct log_context*)NULL)->ctx),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010060 enum_logging_ctx_items_fit_in_struct_log_context);
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010061osmo_static_assert(_LOG_FLT_COUNT <= ARRAY_SIZE(((struct log_target*)NULL)->filter_data),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010062 enum_logging_filters_fit_in_log_target_filter_data);
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010063osmo_static_assert(_LOG_FLT_COUNT <= 8*sizeof(((struct log_target*)NULL)->filter_map),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010064 enum_logging_filters_fit_in_log_target_filter_map);
65
Harald Welteb43bc042011-06-27 10:29:17 +020066struct log_info *osmo_log_info;
Harald Welte4a2bb9e2010-03-26 09:33:40 +080067
Harald Welte3ae27582010-03-26 21:24:24 +080068static struct log_context log_context;
Neels Hofmeyrba0762d2018-09-10 13:56:03 +020069void *tall_log_ctx = NULL;
Harald Welte28222962011-02-18 20:37:04 +010070LLIST_HEAD(osmo_log_target_list);
Harald Welte4a2bb9e2010-03-26 09:33:40 +080071
Pau Espin Pedrold12f6982019-09-17 18:38:58 +020072#if (!EMBEDDED)
73/*! This mutex must be held while using osmo_log_target_list or any of its
74 log_targets in a multithread program. Prevents race conditions between threads
75 like producing unordered timestamps or VTY deleting a target while another
76 thread is writing to it */
77static pthread_mutex_t osmo_log_tgt_mutex;
78static bool osmo_log_tgt_mutex_on = false;
79
80/*! Enable multithread support (mutex) in libosmocore logging system.
81 * Must be called by processes willing to use logging subsystem from several
82 * threads. Once enabled, it's not possible to disable it again.
83 */
84void log_enable_multithread(void) {
85 if (osmo_log_tgt_mutex_on)
86 return;
87 pthread_mutex_init(&osmo_log_tgt_mutex, NULL);
88 osmo_log_tgt_mutex_on = true;
89}
90
91/*! Acquire the osmo_log_tgt_mutex. Don't use this function directly, always use
92 * macro log_tgt_mutex_lock() instead.
93 */
94void log_tgt_mutex_lock_impl(void) {
95 /* These lines are useful to debug scenarios where there's only 1 thread
96 and a double lock appears, for instance during startup and some
97 unlock() missing somewhere:
98 if (osmo_log_tgt_mutex_on && pthread_mutex_trylock(&osmo_log_tgt_mutex) != 0)
99 osmo_panic("acquiring already locked mutex!\n");
100 return;
101 */
102
103 if (osmo_log_tgt_mutex_on)
104 pthread_mutex_lock(&osmo_log_tgt_mutex);
105}
106
107/*! Release the osmo_log_tgt_mutex. Don't use this function directly, always use
108 * macro log_tgt_mutex_unlock() instead.
109 */
110void log_tgt_mutex_unlock_impl(void) {
111 if (osmo_log_tgt_mutex_on)
112 pthread_mutex_unlock(&osmo_log_tgt_mutex);
113}
114
115#else /* if (!EMBEDDED) */
116#pragma message ("logging multithread support disabled in embedded build")
117void log_enable_multithread(void) {}
118void log_tgt_mutex_lock_impl(void) {}
119void log_tgt_mutex_unlock_impl(void) {}
120#endif /* if (!EMBEDDED) */
121
Neels Hofmeyr098038a2018-09-11 23:49:13 +0200122const struct value_string loglevel_strs[] = {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800123 { LOGL_DEBUG, "DEBUG" },
124 { LOGL_INFO, "INFO" },
125 { LOGL_NOTICE, "NOTICE" },
126 { LOGL_ERROR, "ERROR" },
127 { LOGL_FATAL, "FATAL" },
128 { 0, NULL },
129};
130
Harald Welteb43bc042011-06-27 10:29:17 +0200131#define INT2IDX(x) (-1*(x)-1)
132static const struct log_info_cat internal_cat[OSMO_NUM_DLIB] = {
133 [INT2IDX(DLGLOBAL)] = { /* -1 becomes 0 */
134 .name = "DLGLOBAL",
135 .description = "Library-internal global log family",
136 .loglevel = LOGL_NOTICE,
137 .enabled = 1,
138 },
root8a996b42011-09-26 11:22:21 +0200139 [INT2IDX(DLLAPD)] = { /* -2 becomes 1 */
140 .name = "DLLAPD",
141 .description = "LAPD in libosmogsm",
Harald Welte1f0b8c22011-06-27 10:51:37 +0200142 .loglevel = LOGL_NOTICE,
143 .enabled = 1,
144 },
Harald Welte892e6212011-07-19 14:31:44 +0200145 [INT2IDX(DLINP)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200146 .name = "DLINP",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200147 .description = "A-bis Intput Subsystem",
148 .loglevel = LOGL_NOTICE,
149 .enabled = 1,
150 },
Harald Welte892e6212011-07-19 14:31:44 +0200151 [INT2IDX(DLMUX)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200152 .name = "DLMUX",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200153 .description = "A-bis B-Subchannel TRAU Frame Multiplex",
154 .loglevel = LOGL_NOTICE,
155 .enabled = 1,
156 },
Harald Welte892e6212011-07-19 14:31:44 +0200157 [INT2IDX(DLMI)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200158 .name = "DLMI",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200159 .description = "A-bis Input Driver for Signalling",
160 .enabled = 0, .loglevel = LOGL_NOTICE,
161 },
Harald Welte892e6212011-07-19 14:31:44 +0200162 [INT2IDX(DLMIB)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200163 .name = "DLMIB",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200164 .description = "A-bis Input Driver for B-Channels (voice)",
165 .enabled = 0, .loglevel = LOGL_NOTICE,
166 },
Andreas Eversbergc626da92011-10-28 03:53:50 +0200167 [INT2IDX(DLSMS)] = {
168 .name = "DLSMS",
169 .description = "Layer3 Short Message Service (SMS)",
170 .enabled = 1, .loglevel = LOGL_NOTICE,
Neels Hofmeyrc5b71752019-11-20 04:50:52 +0100171 .color = OSMO_LOGCOLOR_BRIGHTWHITE,
Andreas Eversbergc626da92011-10-28 03:53:50 +0200172 },
Harald Welte7fd0c832014-08-20 19:58:13 +0200173 [INT2IDX(DLCTRL)] = {
174 .name = "DLCTRL",
175 .description = "Control Interface",
176 .enabled = 1, .loglevel = LOGL_NOTICE,
177 },
Holger Hans Peter Freythera5dc19d2014-12-04 14:35:21 +0100178 [INT2IDX(DLGTP)] = {
179 .name = "DLGTP",
180 .description = "GPRS GTP library",
181 .enabled = 1, .loglevel = LOGL_NOTICE,
182 },
Jacob Erlbeck79125ec2015-11-02 15:17:50 +0100183 [INT2IDX(DLSTATS)] = {
184 .name = "DLSTATS",
185 .description = "Statistics messages and logging",
186 .enabled = 1, .loglevel = LOGL_NOTICE,
187 },
Neels Hofmeyr9795cf12016-12-10 17:01:06 +0100188 [INT2IDX(DLGSUP)] = {
189 .name = "DLGSUP",
190 .description = "Generic Subscriber Update Protocol",
191 .enabled = 1, .loglevel = LOGL_NOTICE,
192 },
Harald Weltec0f00072016-04-27 18:32:35 +0200193 [INT2IDX(DLOAP)] = {
194 .name = "DLOAP",
195 .description = "Osmocom Authentication Protocol",
196 .enabled = 1, .loglevel = LOGL_NOTICE,
197 },
Harald Welte059c4042017-04-03 22:20:49 +0200198 [INT2IDX(DLSS7)] = {
199 .name = "DLSS7",
200 .description = "libosmo-sigtran Signalling System 7",
201 .enabled = 1, .loglevel = LOGL_NOTICE,
202 },
203 [INT2IDX(DLSCCP)] = {
204 .name = "DLSCCP",
205 .description = "libosmo-sigtran SCCP Implementation",
206 .enabled = 1, .loglevel = LOGL_NOTICE,
207 },
208 [INT2IDX(DLSUA)] = {
209 .name = "DLSUA",
210 .description = "libosmo-sigtran SCCP User Adaptation",
211 .enabled = 1, .loglevel = LOGL_NOTICE,
212 },
213 [INT2IDX(DLM3UA)] = {
214 .name = "DLM3UA",
215 .description = "libosmo-sigtran MTP3 User Adaptation",
216 .enabled = 1, .loglevel = LOGL_NOTICE,
217 },
Neels Hofmeyra7ccf612017-07-11 18:43:09 +0200218 [INT2IDX(DLMGCP)] = {
219 .name = "DLMGCP",
220 .description = "libosmo-mgcp Media Gateway Control Protocol",
221 .enabled = 1, .loglevel = LOGL_NOTICE,
222 },
Pau Espin Pedrol8fd85572018-02-27 19:43:10 +0100223 [INT2IDX(DLJIBUF)] = {
224 .name = "DLJIBUF",
225 .description = "libosmo-netif Jitter Buffer",
226 .enabled = 1, .loglevel = LOGL_NOTICE,
227 },
Max450f5ac2019-02-14 19:12:03 +0100228 [INT2IDX(DLRSPRO)] = {
229 .name = "DLRSPRO",
230 .description = "Remote SIM protocol",
231 .enabled = 1, .loglevel = LOGL_NOTICE,
232 },
Alexander Couzens6a161492020-07-12 13:45:50 +0200233 [INT2IDX(DLNS)] = {
234 .name = "DLNS",
235 .description = "GPRS NS layer",
236 .enabled = 1, .loglevel = LOGL_NOTICE,
237 },
Harald Welteb43bc042011-06-27 10:29:17 +0200238};
239
Neels Hofmeyrba0762d2018-09-10 13:56:03 +0200240void assert_loginfo(const char *src)
Harald Welte18a7d812017-03-16 23:54:55 +0100241{
242 if (!osmo_log_info) {
243 fprintf(stderr, "ERROR: osmo_log_info == NULL! "
Max68bf16a2018-01-10 17:00:43 +0100244 "You must call log_init() before using logging in %s()!\n", src);
Harald Welte18a7d812017-03-16 23:54:55 +0100245 OSMO_ASSERT(osmo_log_info);
246 }
247}
248
Harald Welteb43bc042011-06-27 10:29:17 +0200249/* special magic for negative (library-internal) log subsystem numbers */
250static int subsys_lib2index(int subsys)
251{
252 return (subsys * -1) + (osmo_log_info->num_cat_user-1);
253}
254
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200255/*! Parse a human-readable log level into a numeric value
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700256 * \param[in] lvl zero-terminated string containing log level name
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200257 * \returns numeric log level
258 */
Harald Welte3ae27582010-03-26 21:24:24 +0800259int log_parse_level(const char *lvl)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800260{
261 return get_string_value(loglevel_strs, lvl);
262}
263
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200264/*! convert a numeric log level into human-readable string
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700265 * \param[in] lvl numeric log level
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200266 * \returns zero-terminated string (log level name)
267 */
Harald Welte9ac22252010-05-11 11:19:40 +0200268const char *log_level_str(unsigned int lvl)
269{
270 return get_value_string(loglevel_strs, lvl);
271}
272
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200273/*! parse a human-readable log category into numeric form
Harald Welte18fc4652011-08-17 14:14:17 +0200274 * \param[in] category human-readable log category name
275 * \returns numeric category value, or -EINVAL otherwise
276 */
Harald Welte3ae27582010-03-26 21:24:24 +0800277int log_parse_category(const char *category)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800278{
279 int i;
280
Max68bf16a2018-01-10 17:00:43 +0100281 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100282
Harald Welte4ebdf742010-05-19 19:54:00 +0200283 for (i = 0; i < osmo_log_info->num_cat; ++i) {
Harald Welteb43bc042011-06-27 10:29:17 +0200284 if (osmo_log_info->cat[i].name == NULL)
285 continue;
Harald Welte4ebdf742010-05-19 19:54:00 +0200286 if (!strcasecmp(osmo_log_info->cat[i].name+1, category))
Harald Weltefaadfe22010-03-26 21:05:43 +0800287 return i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800288 }
289
290 return -EINVAL;
291}
292
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200293/*! parse the log category mask
Harald Welte18fc4652011-08-17 14:14:17 +0200294 * \param[in] target log target to be configured
295 * \param[in] _mask log category mask string
296 *
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800297 * The format can be this: category1:category2:category3
298 * or category1,2:category2,3:...
299 */
Harald Welte3ae27582010-03-26 21:24:24 +0800300void log_parse_category_mask(struct log_target* target, const char *_mask)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800301{
302 int i = 0;
303 char *mask = strdup(_mask);
304 char *category_token = NULL;
305
Max68bf16a2018-01-10 17:00:43 +0100306 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100307
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800308 /* Disable everything to enable it afterwards */
Harald Welteb43bc042011-06-27 10:29:17 +0200309 for (i = 0; i < osmo_log_info->num_cat; ++i)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800310 target->categories[i].enabled = 0;
311
312 category_token = strtok(mask, ":");
Neels Hofmeyrda1b20c2016-04-14 15:12:16 +0200313 OSMO_ASSERT(category_token);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800314 do {
Harald Welte4ebdf742010-05-19 19:54:00 +0200315 for (i = 0; i < osmo_log_info->num_cat; ++i) {
Nico Golde0262d3f2012-09-21 17:44:58 +0200316 size_t length, cat_length;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800317 char* colon = strstr(category_token, ",");
Nico Golde0262d3f2012-09-21 17:44:58 +0200318
319 if (!osmo_log_info->cat[i].name)
320 continue;
321
322 length = strlen(category_token);
323 cat_length = strlen(osmo_log_info->cat[i].name);
Pablo Neira Ayuso300e78d2011-08-11 13:24:18 +0200324
325 /* Use longest length not to match subocurrences. */
326 if (cat_length > length)
327 length = cat_length;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800328
329 if (colon)
330 length = colon - category_token;
331
Harald Welte4ebdf742010-05-19 19:54:00 +0200332 if (strncasecmp(osmo_log_info->cat[i].name,
333 category_token, length) == 0) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800334 int level = 0;
335
336 if (colon)
337 level = atoi(colon+1);
338
Harald Weltefaadfe22010-03-26 21:05:43 +0800339 target->categories[i].enabled = 1;
340 target->categories[i].loglevel = level;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800341 }
342 }
343 } while ((category_token = strtok(NULL, ":")));
344
345 free(mask);
346}
347
348static const char* color(int subsys)
349{
Harald Welte4ebdf742010-05-19 19:54:00 +0200350 if (subsys < osmo_log_info->num_cat)
351 return osmo_log_info->cat[subsys].color;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800352
Harald Welted788f662010-03-26 09:45:03 +0800353 return NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800354}
355
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100356static const struct value_string level_colors[] = {
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100357 { LOGL_DEBUG, OSMO_LOGCOLOR_BLUE },
358 { LOGL_INFO, OSMO_LOGCOLOR_GREEN },
359 { LOGL_NOTICE, OSMO_LOGCOLOR_YELLOW },
360 { LOGL_ERROR, OSMO_LOGCOLOR_RED },
361 { LOGL_FATAL, OSMO_LOGCOLOR_RED },
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100362 { 0, NULL }
363};
364
365static const char *level_color(int level)
366{
367 const char *c = get_value_string_or_null(level_colors, level);
368 if (!c)
369 return get_value_string(level_colors, LOGL_FATAL);
370 return c;
371}
372
Harald Welteaa00f992016-12-02 15:30:02 +0100373const char* log_category_name(int subsys)
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100374{
375 if (subsys < osmo_log_info->num_cat)
376 return osmo_log_info->cat[subsys].name;
377
378 return NULL;
379}
380
Neels Hofmeyr0e2a9432018-01-16 02:49:48 +0100381static const char *const_basename(const char *path)
382{
383 const char *bn = strrchr(path, '/');
384 if (!bn || !bn[1])
385 return path;
386 return bn + 1;
387}
388
Harald Welte3ae27582010-03-26 21:24:24 +0800389static void _output(struct log_target *target, unsigned int subsys,
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200390 unsigned int level, const char *file, int line, int cont,
Harald Welte76e72ab2011-02-17 15:52:39 +0100391 const char *format, va_list ap)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800392{
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800393 char buf[4096];
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200394 int ret, len = 0, offset = 0, rem = sizeof(buf);
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100395 const char *c_subsys = NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800396
397 /* are we using color */
398 if (target->use_color) {
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100399 c_subsys = color(subsys);
400 if (c_subsys) {
Neels Hofmeyr5e518b52018-01-17 13:20:02 +0100401 ret = snprintf(buf + offset, rem, "%s", c_subsys);
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200402 if (ret < 0)
403 goto err;
404 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welted788f662010-03-26 09:45:03 +0800405 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800406 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800407 if (!cont) {
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100408 if (target->print_ext_timestamp) {
Harald Welte14c4c492018-06-28 08:28:52 +0200409#ifdef HAVE_LOCALTIME_R
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100410 struct tm tm;
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100411 struct timeval tv;
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200412 osmo_gettimeofday(&tv, NULL);
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100413 localtime_r(&tv.tv_sec, &tm);
414 ret = snprintf(buf + offset, rem, "%04d%02d%02d%02d%02d%02d%03d ",
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100415 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100416 tm.tm_hour, tm.tm_min, tm.tm_sec,
417 (int)(tv.tv_usec / 1000));
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100418 if (ret < 0)
419 goto err;
420 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte14c4c492018-06-28 08:28:52 +0200421#endif
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100422 } else if (target->print_timestamp) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800423 time_t tm;
Pau Espin Pedrol3aef2382019-06-12 18:50:29 +0200424 if ((tm = time(NULL)) == (time_t) -1)
425 goto err;
Pau Espin Pedrolcc794e92019-06-12 16:22:53 +0200426 /* Get human-readable representation of time.
427 man ctime: we need at least 26 bytes in buf */
428 if (rem < 26 || !ctime_r(&tm, buf + offset))
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200429 goto err;
Pau Espin Pedrolcc794e92019-06-12 16:22:53 +0200430 ret = strlen(buf + offset);
431 if (ret <= 0)
432 goto err;
433 /* Get rid of useless final '\n' added by ctime_r. We want a space instead. */
434 buf[offset + ret - 1] = ' ';
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200435 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800436 }
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100437 if (target->print_category) {
Neels Hofmeyre6534722018-01-16 03:02:06 +0100438 ret = snprintf(buf + offset, rem, "%s%s%s%s ",
439 target->use_color ? level_color(level) : "",
440 log_category_name(subsys),
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100441 target->use_color ? OSMO_LOGCOLOR_END : "",
Neels Hofmeyre6534722018-01-16 03:02:06 +0100442 c_subsys ? c_subsys : "");
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100443 if (ret < 0)
444 goto err;
445 OSMO_SNPRINTF_RET(ret, rem, offset, len);
446 }
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100447 if (target->print_level) {
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100448 ret = snprintf(buf + offset, rem, "%s%s%s%s ",
449 target->use_color ? level_color(level) : "",
450 log_level_str(level),
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100451 target->use_color ? OSMO_LOGCOLOR_END : "",
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100452 c_subsys ? c_subsys : "");
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100453 if (ret < 0)
454 goto err;
455 OSMO_SNPRINTF_RET(ret, rem, offset, len);
456 }
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100457 if (target->print_category_hex) {
458 ret = snprintf(buf + offset, rem, "<%4.4x> ", subsys);
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200459 if (ret < 0)
460 goto err;
461 OSMO_SNPRINTF_RET(ret, rem, offset, len);
462 }
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200463
464 if (target->print_filename_pos == LOG_FILENAME_POS_HEADER_END) {
465 switch (target->print_filename2) {
466 case LOG_FILENAME_NONE:
467 break;
468 case LOG_FILENAME_PATH:
469 ret = snprintf(buf + offset, rem, "%s:%d ", file, line);
470 if (ret < 0)
471 goto err;
472 OSMO_SNPRINTF_RET(ret, rem, offset, len);
473 break;
474 case LOG_FILENAME_BASENAME:
475 ret = snprintf(buf + offset, rem, "%s:%d ", const_basename(file), line);
476 if (ret < 0)
477 goto err;
478 OSMO_SNPRINTF_RET(ret, rem, offset, len);
479 break;
480 }
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100481 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800482 }
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200483 ret = vsnprintf(buf + offset, rem, format, ap);
484 if (ret < 0)
485 goto err;
486 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800487
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200488 /* For LOG_FILENAME_POS_LAST, print the source file info only when the caller ended the log
489 * message in '\n'. If so, nip the last '\n' away, insert the source file info and re-append an
490 * '\n'. All this to allow LOGP("start..."); LOGPC("...end\n") constructs. */
491 if (target->print_filename_pos == LOG_FILENAME_POS_LINE_END
492 && offset > 0 && buf[offset-1] == '\n') {
493 switch (target->print_filename2) {
494 case LOG_FILENAME_NONE:
495 break;
496 case LOG_FILENAME_PATH:
497 offset --;
498 ret = snprintf(buf + offset, rem, " (%s:%d)\n", 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 offset --;
505 ret = snprintf(buf + offset, rem, " (%s:%d)\n", const_basename(file), line);
506 if (ret < 0)
507 goto err;
508 OSMO_SNPRINTF_RET(ret, rem, offset, len);
509 break;
510 }
511 }
512
Pau Espin Pedrol6407c822020-07-20 16:41:44 +0200513 if (target->use_color && c_subsys) {
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100514 ret = snprintf(buf + offset, rem, OSMO_LOGCOLOR_END);
Neels Hofmeyrc4759882018-01-16 02:10:48 +0100515 if (ret < 0)
516 goto err;
517 OSMO_SNPRINTF_RET(ret, rem, offset, len);
518 }
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200519err:
520 buf[sizeof(buf)-1] = '\0';
521 target->output(target, level, buf);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800522}
523
Neels Hofmeyr42240de2016-12-12 15:13:56 +0100524/* Catch internal logging category indexes as well as out-of-bounds indexes.
525 * For internal categories, the ID is negative starting with -1; and internal
526 * logging categories are added behind the user categories. For out-of-bounds
527 * indexes, return the index of DLGLOBAL. The returned category index is
528 * guaranteed to exist in osmo_log_info, otherwise the program would abort,
529 * which should never happen unless even the DLGLOBAL category is missing. */
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100530static inline int map_subsys(int subsys)
531{
Neels Hofmeyr74802262016-12-12 16:00:24 +0100532 /* Note: comparing signed and unsigned integers */
533
534 if (subsys > 0 && ((unsigned int)subsys) >= osmo_log_info->num_cat_user)
535 subsys = DLGLOBAL;
536
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100537 if (subsys < 0)
538 subsys = subsys_lib2index(subsys);
539
Neels Hofmeyrca135742016-12-12 14:18:54 +0100540 if (subsys < 0 || subsys >= osmo_log_info->num_cat)
Neels Hofmeyr42240de2016-12-12 15:13:56 +0100541 subsys = subsys_lib2index(DLGLOBAL);
542
Neels Hofmeyrca135742016-12-12 14:18:54 +0100543 OSMO_ASSERT(!(subsys < 0 || subsys >= osmo_log_info->num_cat));
544
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100545 return subsys;
546}
547
Maxc65c5b42017-03-15 13:20:23 +0100548static inline bool should_log_to_target(struct log_target *tar, int subsys,
549 int level)
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100550{
551 struct log_category *category;
552
553 category = &tar->categories[subsys];
554
555 /* subsystem is not supposed to be logged */
556 if (!category->enabled)
Maxc65c5b42017-03-15 13:20:23 +0100557 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100558
559 /* Check the global log level */
560 if (tar->loglevel != 0 && level < tar->loglevel)
Maxc65c5b42017-03-15 13:20:23 +0100561 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100562
563 /* Check the category log level */
564 if (tar->loglevel == 0 && category->loglevel != 0 &&
565 level < category->loglevel)
Maxc65c5b42017-03-15 13:20:23 +0100566 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100567
Holger Hans Peter Freyther79599ac2016-01-15 16:49:06 +0100568 /* Apply filters here... if that becomes messy we will
569 * need to put filters in a list and each filter will
570 * say stop, continue, output */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100571 if ((tar->filter_map & (1 << LOG_FLT_ALL)) != 0)
Maxc65c5b42017-03-15 13:20:23 +0100572 return true;
Holger Hans Peter Freyther79599ac2016-01-15 16:49:06 +0100573
574 if (osmo_log_info->filter_fn)
575 return osmo_log_info->filter_fn(&log_context, tar);
576
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100577 /* TODO: Check the filter/selector too? */
Maxc65c5b42017-03-15 13:20:23 +0100578 return true;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100579}
580
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200581/*! vararg version of logging function
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200582 * \param[in] subsys Logging sub-system
583 * \param[in] level Log level
584 * \param[in] file name of source code file
585 * \param[in] cont continuation (1) or new line (0)
586 * \param[in] format format string
587 * \param[in] ap vararg-list containing format string arguments
588 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200589void osmo_vlogp(int subsys, int level, const char *file, int line,
Harald Welte36c5a3e2011-08-27 14:33:19 +0200590 int cont, const char *format, va_list ap)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800591{
Harald Welte3ae27582010-03-26 21:24:24 +0800592 struct log_target *tar;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800593
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100594 subsys = map_subsys(subsys);
Harald Welteb43bc042011-06-27 10:29:17 +0200595
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200596 log_tgt_mutex_lock();
597
Harald Welte28222962011-02-18 20:37:04 +0100598 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200599 va_list bp;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800600
Maxc65c5b42017-03-15 13:20:23 +0100601 if (!should_log_to_target(tar, subsys, level))
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800602 continue;
603
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200604 /* According to the manpage, vsnprintf leaves the value of ap
605 * in undefined state. Since _output uses vsnprintf and it may
606 * be called several times, we have to pass a copy of ap. */
607 va_copy(bp, ap);
Harald Welted7c0a372016-12-02 13:52:59 +0100608 if (tar->raw_output)
609 tar->raw_output(tar, subsys, level, file, line, cont, format, bp);
610 else
611 _output(tar, subsys, level, file, line, cont, format, bp);
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200612 va_end(bp);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800613 }
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200614
615 log_tgt_mutex_unlock();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800616}
617
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200618/*! logging function used by DEBUGP() macro
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200619 * \param[in] subsys Logging sub-system
620 * \param[in] file name of source code file
621 * \param[in] cont continuation (1) or new line (0)
622 * \param[in] format format string
623 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200624void logp(int subsys, const char *file, int line, int cont,
Harald Welte3ae27582010-03-26 21:24:24 +0800625 const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800626{
627 va_list ap;
628
629 va_start(ap, format);
Harald Welte36c5a3e2011-08-27 14:33:19 +0200630 osmo_vlogp(subsys, LOGL_DEBUG, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800631 va_end(ap);
632}
633
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200634/*! logging function used by LOGP() macro
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200635 * \param[in] subsys Logging sub-system
636 * \param[in] level Log level
637 * \param[in] file name of source code file
638 * \param[in] cont continuation (1) or new line (0)
639 * \param[in] format format string
640 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200641void logp2(int subsys, unsigned int level, const char *file, int line, int cont, const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800642{
643 va_list ap;
644
645 va_start(ap, format);
Harald Welte36c5a3e2011-08-27 14:33:19 +0200646 osmo_vlogp(subsys, level, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800647 va_end(ap);
648}
649
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200650/*! Register a new log target with the logging core
Harald Welte18fc4652011-08-17 14:14:17 +0200651 * \param[in] target Log target to be registered
652 */
Harald Welte3ae27582010-03-26 21:24:24 +0800653void log_add_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800654{
Harald Welte28222962011-02-18 20:37:04 +0100655 llist_add_tail(&target->entry, &osmo_log_target_list);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800656}
657
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200658/*! Unregister a log target from the logging core
Harald Welte18fc4652011-08-17 14:14:17 +0200659 * \param[in] target Log target to be unregistered
660 */
Harald Welte3ae27582010-03-26 21:24:24 +0800661void log_del_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800662{
663 llist_del(&target->entry);
664}
665
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200666/*! Reset (clear) the logging context */
Harald Welte3ae27582010-03-26 21:24:24 +0800667void log_reset_context(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800668{
Harald Welte3ae27582010-03-26 21:24:24 +0800669 memset(&log_context, 0, sizeof(log_context));
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800670}
671
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200672/*! Set the logging context
Harald Welte18fc4652011-08-17 14:14:17 +0200673 * \param[in] ctx_nr logging context number
674 * \param[in] value value to which the context is to be set
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200675 * \returns 0 in case of success; negative otherwise
Harald Welte18fc4652011-08-17 14:14:17 +0200676 *
677 * A logging context is something like the subscriber identity to which
678 * the currently processed message relates, or the BTS through which it
679 * was received. As soon as this data is known, it can be set using
680 * this function. The main use of context information is for logging
681 * filters.
682 */
Harald Welte3ae27582010-03-26 21:24:24 +0800683int log_set_context(uint8_t ctx_nr, void *value)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800684{
Harald Welte3ae27582010-03-26 21:24:24 +0800685 if (ctx_nr > LOG_MAX_CTX)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800686 return -EINVAL;
687
Harald Welte3ae27582010-03-26 21:24:24 +0800688 log_context.ctx[ctx_nr] = value;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800689
690 return 0;
691}
692
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200693/*! Enable the \ref LOG_FLT_ALL log filter
Harald Welte18fc4652011-08-17 14:14:17 +0200694 * \param[in] target Log target to be affected
695 * \param[in] all enable (1) or disable (0) the ALL filter
696 *
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100697 * When the \ref LOG_FLT_ALL filter is enabled, all log messages will be
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +0100698 * printed. It acts as a wildcard. Setting it to \a 1 means there is no
699 * filtering.
Harald Welte18fc4652011-08-17 14:14:17 +0200700 */
Harald Welte3ae27582010-03-26 21:24:24 +0800701void log_set_all_filter(struct log_target *target, int all)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800702{
703 if (all)
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100704 target->filter_map |= (1 << LOG_FLT_ALL);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800705 else
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100706 target->filter_map &= ~(1 << LOG_FLT_ALL);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800707}
708
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200709/*! Enable or disable the use of colored output
Harald Welte18fc4652011-08-17 14:14:17 +0200710 * \param[in] target Log target to be affected
711 * \param[in] use_color Use color (1) or don't use color (0)
712 */
Harald Welte3ae27582010-03-26 21:24:24 +0800713void log_set_use_color(struct log_target *target, int use_color)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800714{
715 target->use_color = use_color;
716}
717
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200718/*! Enable or disable printing of timestamps while logging
Harald Welte18fc4652011-08-17 14:14:17 +0200719 * \param[in] target Log target to be affected
720 * \param[in] print_timestamp Enable (1) or disable (0) timestamps
721 */
Harald Welte3ae27582010-03-26 21:24:24 +0800722void log_set_print_timestamp(struct log_target *target, int print_timestamp)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800723{
724 target->print_timestamp = print_timestamp;
725}
726
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200727/*! Enable or disable printing of extended timestamps while logging
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100728 * \param[in] target Log target to be affected
729 * \param[in] print_timestamp Enable (1) or disable (0) timestamps
730 *
731 * When both timestamp and extended timestamp is enabled then only
732 * the extended timestamp will be used. The format of the timestamp
733 * is YYYYMMDDhhmmssnnn.
734 */
735void log_set_print_extended_timestamp(struct log_target *target, int print_timestamp)
736{
737 target->print_ext_timestamp = print_timestamp;
738}
739
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100740/*! Use log_set_print_filename2() instead.
741 * Call log_set_print_filename2() with LOG_FILENAME_PATH or LOG_FILENAME_NONE, *as well as* call
742 * log_set_print_category_hex() with the argument passed to this function. This is to mirror legacy
743 * behavior, which combined the category in hex with the filename. For example, if the category-hex
744 * output were no longer affected by log_set_print_filename(), many unit tests (in libosmocore as well as
745 * dependent projects) would fail since they expect the category to disappear along with the filename.
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200746 * \param[in] target Log target to be affected
747 * \param[in] print_filename Enable (1) or disable (0) filenames
748 */
749void log_set_print_filename(struct log_target *target, int print_filename)
750{
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100751 log_set_print_filename2(target, print_filename ? LOG_FILENAME_PATH : LOG_FILENAME_NONE);
752 log_set_print_category_hex(target, print_filename);
753}
754
755/*! Enable or disable printing of the filename while logging.
756 * \param[in] target Log target to be affected.
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700757 * \param[in] lft An LOG_FILENAME_* enum value.
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100758 * LOG_FILENAME_NONE omits the source file and line information from logs.
759 * LOG_FILENAME_PATH prints the entire source file path as passed to LOGP macros.
760 */
761void log_set_print_filename2(struct log_target *target, enum log_filename_type lft)
762{
763 target->print_filename2 = lft;
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200764}
765
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200766/*! Set the position where on a log line the source file info should be logged.
767 * \param[in] target Log target to be affected.
768 * \param[in] pos A LOG_FILENAME_POS_* enum value.
769 * LOG_FILENAME_POS_DEFAULT logs just before the caller supplied log message.
770 * LOG_FILENAME_POS_LAST logs only at the end of a log line, where the caller issued an '\n' to end the
771 */
772void log_set_print_filename_pos(struct log_target *target, enum log_filename_pos pos)
773{
774 target->print_filename_pos = pos;
775}
776
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200777/*! Enable or disable printing of the category name
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100778 * \param[in] target Log target to be affected
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700779 * \param[in] print_category Enable (1) or disable (0) filenames
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100780 *
781 * Print the category/subsys name in front of every log message.
782 */
783void log_set_print_category(struct log_target *target, int print_category)
784{
785 target->print_category = print_category;
786}
787
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100788/*! Enable or disable printing of the category number in hex ('<000b>').
789 * \param[in] target Log target to be affected.
790 * \param[in] print_category_hex Enable (1) or disable (0) hex category.
791 */
792void log_set_print_category_hex(struct log_target *target, int print_category_hex)
793{
794 target->print_category_hex = print_category_hex;
795}
796
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100797/*! Enable or disable printing of the log level name.
798 * \param[in] target Log target to be affected
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700799 * \param[in] print_level Enable (1) or disable (0) log level name
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100800 *
801 * Print the log level name in front of every log message.
802 */
803void log_set_print_level(struct log_target *target, int print_level)
804{
805 target->print_level = (bool)print_level;
806}
807
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200808/*! Set the global log level for a given log target
Harald Welte18fc4652011-08-17 14:14:17 +0200809 * \param[in] target Log target to be affected
810 * \param[in] log_level New global log level
811 */
Harald Welte3ae27582010-03-26 21:24:24 +0800812void log_set_log_level(struct log_target *target, int log_level)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800813{
814 target->loglevel = log_level;
815}
816
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200817/*! Set a category filter on a given log target
Harald Weltede6e4982012-12-06 21:25:27 +0100818 * \param[in] target Log target to be affected
819 * \param[in] category Log category to be affected
820 * \param[in] enable whether to enable or disable the filter
821 * \param[in] level Log level of the filter
822 */
Harald Welte3ae27582010-03-26 21:24:24 +0800823void log_set_category_filter(struct log_target *target, int category,
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800824 int enable, int level)
825{
Neels Hofmeyr886d6fd2016-12-12 13:49:03 +0100826 if (!target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800827 return;
Neels Hofmeyr886d6fd2016-12-12 13:49:03 +0100828 category = map_subsys(category);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800829 target->categories[category].enabled = !!enable;
830 target->categories[category].loglevel = level;
831}
832
Harald Welte44c0f632017-01-15 17:58:29 +0100833#if (!EMBEDDED)
Harald Welte76e72ab2011-02-17 15:52:39 +0100834static void _file_output(struct log_target *target, unsigned int level,
835 const char *log)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800836{
Harald Welte0083cd32010-08-25 14:55:44 +0200837 fprintf(target->tgt_file.out, "%s", log);
838 fflush(target->tgt_file.out);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800839}
Harald Welte44c0f632017-01-15 17:58:29 +0100840#endif
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800841
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200842/*! Create a new log target skeleton
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200843 * \returns dynamically-allocated log target
844 * This funcition allocates a \ref log_target and initializes it
845 * with some default values. The newly created target is not
846 * registered yet.
847 */
Harald Welte3ae27582010-03-26 21:24:24 +0800848struct log_target *log_target_create(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800849{
Harald Welte3ae27582010-03-26 21:24:24 +0800850 struct log_target *target;
Harald Weltecc6313c2010-03-26 22:04:03 +0800851 unsigned int i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800852
Max68bf16a2018-01-10 17:00:43 +0100853 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100854
Harald Welte3ae27582010-03-26 21:24:24 +0800855 target = talloc_zero(tall_log_ctx, struct log_target);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800856 if (!target)
857 return NULL;
858
Pau Espin Pedrol9d4a36e2018-07-26 11:55:33 +0200859 target->categories = talloc_zero_array(target,
Harald Welteb43bc042011-06-27 10:29:17 +0200860 struct log_category,
861 osmo_log_info->num_cat);
862 if (!target->categories) {
863 talloc_free(target);
864 return NULL;
865 }
866
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800867 INIT_LLIST_HEAD(&target->entry);
Harald Weltecc6313c2010-03-26 22:04:03 +0800868
869 /* initialize the per-category enabled/loglevel from defaults */
Harald Welte4ebdf742010-05-19 19:54:00 +0200870 for (i = 0; i < osmo_log_info->num_cat; i++) {
Harald Weltecc6313c2010-03-26 22:04:03 +0800871 struct log_category *cat = &target->categories[i];
Harald Welte4ebdf742010-05-19 19:54:00 +0200872 cat->enabled = osmo_log_info->cat[i].enabled;
873 cat->loglevel = osmo_log_info->cat[i].loglevel;
Harald Weltecc6313c2010-03-26 22:04:03 +0800874 }
875
876 /* global settings */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800877 target->use_color = 1;
878 target->print_timestamp = 0;
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100879 target->print_filename2 = LOG_FILENAME_PATH;
880 target->print_category_hex = true;
Harald Weltecc6313c2010-03-26 22:04:03 +0800881
882 /* global log level */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800883 target->loglevel = 0;
884 return target;
885}
886
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200887/*! Create the STDERR log target
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200888 * \returns dynamically-allocated \ref log_target for STDERR */
Harald Welte3ae27582010-03-26 21:24:24 +0800889struct log_target *log_target_create_stderr(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800890{
Harald Weltea3b844c2010-03-27 00:04:40 +0800891/* since C89/C99 says stderr is a macro, we can safely do this! */
Harald Welteb93ce5a2017-05-15 10:58:15 +0200892#if !EMBEDDED && defined(stderr)
Harald Welte3ae27582010-03-26 21:24:24 +0800893 struct log_target *target;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800894
Harald Welte3ae27582010-03-26 21:24:24 +0800895 target = log_target_create();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800896 if (!target)
897 return NULL;
898
Harald Welte28222962011-02-18 20:37:04 +0100899 target->type = LOG_TGT_TYPE_STDERR;
Harald Welte0083cd32010-08-25 14:55:44 +0200900 target->tgt_file.out = stderr;
901 target->output = _file_output;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800902 return target;
Harald Weltea3b844c2010-03-27 00:04:40 +0800903#else
904 return NULL;
905#endif /* stderr */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800906}
907
Harald Welte44c0f632017-01-15 17:58:29 +0100908#if (!EMBEDDED)
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200909/*! Create a new file-based log target
Harald Welte18fc4652011-08-17 14:14:17 +0200910 * \param[in] fname File name of the new log file
911 * \returns Log target in case of success, NULL otherwise
912 */
Harald Welte3086c392010-08-25 19:10:50 +0200913struct log_target *log_target_create_file(const char *fname)
914{
915 struct log_target *target;
916
917 target = log_target_create();
918 if (!target)
919 return NULL;
920
Harald Welte28222962011-02-18 20:37:04 +0100921 target->type = LOG_TGT_TYPE_FILE;
Harald Welte3086c392010-08-25 19:10:50 +0200922 target->tgt_file.out = fopen(fname, "a");
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +0700923 if (!target->tgt_file.out) {
924 log_target_destroy(target);
Harald Welte3086c392010-08-25 19:10:50 +0200925 return NULL;
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +0700926 }
Harald Welte3086c392010-08-25 19:10:50 +0200927
928 target->output = _file_output;
929
930 target->tgt_file.fname = talloc_strdup(target, fname);
931
932 return target;
933}
Harald Welte44c0f632017-01-15 17:58:29 +0100934#endif
Harald Welte3086c392010-08-25 19:10:50 +0200935
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200936/*! Find a registered log target
Harald Welte18fc4652011-08-17 14:14:17 +0200937 * \param[in] type Log target type
938 * \param[in] fname File name
939 * \returns Log target (if found), NULL otherwise
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200940 * Must be called with mutex osmo_log_tgt_mutex held, see log_tgt_mutex_lock.
Harald Welte18fc4652011-08-17 14:14:17 +0200941 */
Harald Welte28222962011-02-18 20:37:04 +0100942struct log_target *log_target_find(int type, const char *fname)
943{
944 struct log_target *tgt;
945
946 llist_for_each_entry(tgt, &osmo_log_target_list, entry) {
947 if (tgt->type != type)
948 continue;
Maxc90f40a2018-01-11 10:52:28 +0100949 switch (tgt->type) {
950 case LOG_TGT_TYPE_FILE:
Harald Welte28222962011-02-18 20:37:04 +0100951 if (!strcmp(fname, tgt->tgt_file.fname))
952 return tgt;
Maxc90f40a2018-01-11 10:52:28 +0100953 break;
954 case LOG_TGT_TYPE_GSMTAP:
955 if (!strcmp(fname, tgt->tgt_gsmtap.hostname))
956 return tgt;
957 break;
958 default:
Harald Welte28222962011-02-18 20:37:04 +0100959 return tgt;
Maxc90f40a2018-01-11 10:52:28 +0100960 }
Harald Welte28222962011-02-18 20:37:04 +0100961 }
962 return NULL;
963}
964
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200965/*! Unregister, close and delete a log target
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700966 * \param[in] target log target to unregister, close and delete */
Harald Welte3086c392010-08-25 19:10:50 +0200967void log_target_destroy(struct log_target *target)
968{
969
970 /* just in case, to make sure we don't have any references */
971 log_del_target(target);
972
Harald Welte44c0f632017-01-15 17:58:29 +0100973#if (!EMBEDDED)
Vadim Yanitskiy744236b2020-09-09 04:42:22 +0700974 switch (target->type) {
975 case LOG_TGT_TYPE_FILE:
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +0700976 if (target->tgt_file.out == NULL)
977 break;
Vadim Yanitskiy744236b2020-09-09 04:42:22 +0700978 fclose(target->tgt_file.out);
979 target->tgt_file.out = NULL;
980 break;
Vadim Yanitskiy04f42712020-09-09 04:47:25 +0700981#ifdef HAVE_SYSLOG_H
982 case LOG_TGT_TYPE_SYSLOG:
983 closelog();
984 break;
985#endif /* HAVE_SYSLOG_H */
Vadim Yanitskiy744236b2020-09-09 04:42:22 +0700986 default:
987 /* make GCC happy */
988 break;
Harald Welte3086c392010-08-25 19:10:50 +0200989 }
Harald Welte44c0f632017-01-15 17:58:29 +0100990#endif
Harald Welte3086c392010-08-25 19:10:50 +0200991
992 talloc_free(target);
993}
994
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200995/*! close and re-open a log file (for log file rotation)
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200996 * \param[in] target log target to re-open
997 * \returns 0 in case of success; negative otherwise */
Harald Welte3086c392010-08-25 19:10:50 +0200998int log_target_file_reopen(struct log_target *target)
999{
1000 fclose(target->tgt_file.out);
1001
1002 target->tgt_file.out = fopen(target->tgt_file.fname, "a");
1003 if (!target->tgt_file.out)
1004 return -errno;
1005
1006 /* we assume target->output already to be set */
1007
1008 return 0;
1009}
1010
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001011/*! close and re-open all log files (for log file rotation)
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001012 * \returns 0 in case of success; negative otherwise */
Harald Welte4de854d2013-03-18 19:01:40 +01001013int log_targets_reopen(void)
1014{
1015 struct log_target *tar;
1016 int rc = 0;
1017
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001018 log_tgt_mutex_lock();
1019
Harald Welte4de854d2013-03-18 19:01:40 +01001020 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
1021 switch (tar->type) {
1022 case LOG_TGT_TYPE_FILE:
1023 if (log_target_file_reopen(tar) < 0)
1024 rc = -1;
1025 break;
1026 default:
1027 break;
1028 }
1029 }
1030
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001031 log_tgt_mutex_unlock();
1032
Harald Welte4de854d2013-03-18 19:01:40 +01001033 return rc;
1034}
1035
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001036/*! Initialize the Osmocom logging core
Max72dfd432018-12-04 11:24:18 +01001037 * \param[in] inf Information regarding logging categories, could be NULL
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +07001038 * \param[in] ctx talloc context for logging allocations
Harald Welte18fc4652011-08-17 14:14:17 +02001039 * \returns 0 in case of success, negative in case of error
Max72dfd432018-12-04 11:24:18 +01001040 *
1041 * If inf is NULL then only library-internal categories are initialized.
Harald Welte18fc4652011-08-17 14:14:17 +02001042 */
Harald Welteb43bc042011-06-27 10:29:17 +02001043int log_init(const struct log_info *inf, void *ctx)
Harald Welte4a2bb9e2010-03-26 09:33:40 +08001044{
Harald Welteb43bc042011-06-27 10:29:17 +02001045 int i;
Philipp Maierdcad1c52020-03-25 11:25:59 +01001046 struct log_info_cat *cat_ptr;
Harald Welteb43bc042011-06-27 10:29:17 +02001047
Philipp Maierdc02c062020-05-12 17:51:25 +02001048 /* Ensure that log_init is not called multiple times */
1049 OSMO_ASSERT(tall_log_ctx == NULL)
1050
Harald Welteb43bc042011-06-27 10:29:17 +02001051 tall_log_ctx = talloc_named_const(ctx, 1, "logging");
1052 if (!tall_log_ctx)
1053 return -ENOMEM;
1054
1055 osmo_log_info = talloc_zero(tall_log_ctx, struct log_info);
1056 if (!osmo_log_info)
1057 return -ENOMEM;
1058
Max72dfd432018-12-04 11:24:18 +01001059 osmo_log_info->num_cat = ARRAY_SIZE(internal_cat);
1060
1061 if (inf) {
1062 osmo_log_info->filter_fn = inf->filter_fn;
1063 osmo_log_info->num_cat_user = inf->num_cat;
1064 osmo_log_info->num_cat += inf->num_cat;
1065 }
Harald Welteb43bc042011-06-27 10:29:17 +02001066
Philipp Maierdcad1c52020-03-25 11:25:59 +01001067 cat_ptr = talloc_zero_array(osmo_log_info, struct log_info_cat,
1068 osmo_log_info->num_cat);
1069 if (!cat_ptr) {
Harald Welteb43bc042011-06-27 10:29:17 +02001070 talloc_free(osmo_log_info);
1071 osmo_log_info = NULL;
1072 return -ENOMEM;
1073 }
1074
Philipp Maierdcad1c52020-03-25 11:25:59 +01001075 /* copy over the user part and sanitize loglevel */
1076 if (inf) {
Max72dfd432018-12-04 11:24:18 +01001077 for (i = 0; i < inf->num_cat; i++) {
Philipp Maierdcad1c52020-03-25 11:25:59 +01001078 memcpy(&cat_ptr[i], &inf->cat[i],
1079 sizeof(struct log_info_cat));
1080
1081 /* Make sure that the loglevel is set to NOTICE in case
1082 * no loglevel has been preset. */
1083 if (!cat_ptr[i].loglevel) {
1084 cat_ptr[i].loglevel = LOGL_NOTICE;
1085 }
Max72dfd432018-12-04 11:24:18 +01001086 }
Harald Welteb43bc042011-06-27 10:29:17 +02001087 }
1088
1089 /* copy over the library part */
Harald Welte9fe16522011-06-27 14:00:03 +02001090 for (i = 0; i < ARRAY_SIZE(internal_cat); i++) {
Harald Weltece9fec32011-06-27 14:19:16 +02001091 unsigned int cn = osmo_log_info->num_cat_user + i;
Philipp Maierdcad1c52020-03-25 11:25:59 +01001092 memcpy(&cat_ptr[cn], &internal_cat[i], sizeof(struct log_info_cat));
Harald Welte9fe16522011-06-27 14:00:03 +02001093 }
1094
Philipp Maierdcad1c52020-03-25 11:25:59 +01001095 osmo_log_info->cat = cat_ptr;
1096
Harald Welte9fe16522011-06-27 14:00:03 +02001097 return 0;
Harald Welte4a2bb9e2010-03-26 09:33:40 +08001098}
Harald Welte18fc4652011-08-17 14:14:17 +02001099
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001100/* De-initialize the Osmocom logging core
Harald Welte69e6c3c2016-04-20 10:41:27 +02001101 * This function destroys all targets and releases associated memory */
1102void log_fini(void)
1103{
1104 struct log_target *tar, *tar2;
1105
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001106 log_tgt_mutex_lock();
1107
Harald Welte69e6c3c2016-04-20 10:41:27 +02001108 llist_for_each_entry_safe(tar, tar2, &osmo_log_target_list, entry)
1109 log_target_destroy(tar);
1110
1111 talloc_free(osmo_log_info);
1112 osmo_log_info = NULL;
1113 talloc_free(tall_log_ctx);
1114 tall_log_ctx = NULL;
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001115
1116 log_tgt_mutex_unlock();
Harald Welte69e6c3c2016-04-20 10:41:27 +02001117}
1118
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001119/*! Check whether a log entry will be generated.
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001120 * \returns != 0 if a log entry might get generated by at least one target */
1121int log_check_level(int subsys, unsigned int level)
1122{
1123 struct log_target *tar;
1124
Max68bf16a2018-01-10 17:00:43 +01001125 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +01001126
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +01001127 subsys = map_subsys(subsys);
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001128
1129 /* TODO: The following could/should be cached (update on config) */
1130
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001131 log_tgt_mutex_lock();
1132
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001133 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
Maxc65c5b42017-03-15 13:20:23 +01001134 if (!should_log_to_target(tar, subsys, level))
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001135 continue;
1136
1137 /* This might get logged (ignoring filters) */
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001138 log_tgt_mutex_unlock();
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001139 return 1;
1140 }
1141
1142 /* We are sure, that this will not be logged. */
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001143 log_tgt_mutex_unlock();
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001144 return 0;
1145}
1146
Sylvain Munautdca7d2c2012-04-18 21:53:23 +02001147/*! @} */