blob: d60d6e4f7d5b6b710a3611ca5ddb92a0297f3192 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file logging.c
2 * Debugging/Logging support code. */
3/*
4 * (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte4a2bb9e2010-03-26 09:33:40 +08005 * (C) 2008 by Holger Hans Peter Freyther <zecke@selfish.org>
6 * All Rights Reserved
7 *
Harald Weltee08da972017-11-13 01:00:26 +09008 * SPDX-License-Identifier: GPL-2.0+
9 *
Harald Welte4a2bb9e2010-03-26 09:33:40 +080010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 *
24 */
25
Harald Weltef01b2382017-10-16 13:55:34 +020026/*! \addtogroup logging
Harald Welte18fc4652011-08-17 14:14:17 +020027 * @{
Neels Hofmeyr87e45502017-06-20 00:17:59 +020028 * libosmocore Logging sub-system
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020029 *
30 * \file logging.c */
Harald Welte18fc4652011-08-17 14:14:17 +020031
Harald Welte01fd5cb2010-03-26 23:51:31 +080032#include "../config.h"
33
Harald Welte4a2bb9e2010-03-26 09:33:40 +080034#include <stdarg.h>
35#include <stdlib.h>
36#include <stdio.h>
37#include <string.h>
Harald Welte01fd5cb2010-03-26 23:51:31 +080038
39#ifdef HAVE_STRINGS_H
Harald Welte4a2bb9e2010-03-26 09:33:40 +080040#include <strings.h>
Harald Welte01fd5cb2010-03-26 23:51:31 +080041#endif
Vadim Yanitskiy04f42712020-09-09 04:47:25 +070042
43#ifdef HAVE_SYSLOG_H
44#include <syslog.h>
45#endif
46
Harald Welte4a2bb9e2010-03-26 09:33:40 +080047#include <time.h>
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +010048#include <sys/time.h>
Harald Welte4a2bb9e2010-03-26 09:33:40 +080049#include <errno.h>
Pau Espin Pedrold12f6982019-09-17 18:38:58 +020050#include <pthread.h>
Harald Welte4a2bb9e2010-03-26 09:33:40 +080051
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010052#include <osmocom/core/talloc.h>
53#include <osmocom/core/utils.h>
54#include <osmocom/core/logging.h>
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +020055#include <osmocom/core/timer.h>
Harald Welte4a2bb9e2010-03-26 09:33:40 +080056
Pablo Neira Ayuso04139f12011-03-09 13:05:08 +010057#include <osmocom/vty/logging.h> /* for LOGGING_STR. */
58
Harald Weltea8b1b212020-09-27 17:21:07 +020059/* maximum length of the log string of a single log event (typically line) */
60#define MAX_LOG_SIZE 4096
61
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010062osmo_static_assert(_LOG_CTX_COUNT <= ARRAY_SIZE(((struct log_context*)NULL)->ctx),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010063 enum_logging_ctx_items_fit_in_struct_log_context);
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010064osmo_static_assert(_LOG_FLT_COUNT <= ARRAY_SIZE(((struct log_target*)NULL)->filter_data),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010065 enum_logging_filters_fit_in_log_target_filter_data);
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010066osmo_static_assert(_LOG_FLT_COUNT <= 8*sizeof(((struct log_target*)NULL)->filter_map),
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +010067 enum_logging_filters_fit_in_log_target_filter_map);
68
Harald Welteb43bc042011-06-27 10:29:17 +020069struct log_info *osmo_log_info;
Harald Welte4a2bb9e2010-03-26 09:33:40 +080070
Harald Welte3ae27582010-03-26 21:24:24 +080071static struct log_context log_context;
Neels Hofmeyrba0762d2018-09-10 13:56:03 +020072void *tall_log_ctx = NULL;
Harald Welte28222962011-02-18 20:37:04 +010073LLIST_HEAD(osmo_log_target_list);
Harald Welte4a2bb9e2010-03-26 09:33:40 +080074
Pau Espin Pedrold12f6982019-09-17 18:38:58 +020075#if (!EMBEDDED)
76/*! This mutex must be held while using osmo_log_target_list or any of its
77 log_targets in a multithread program. Prevents race conditions between threads
78 like producing unordered timestamps or VTY deleting a target while another
79 thread is writing to it */
80static pthread_mutex_t osmo_log_tgt_mutex;
81static bool osmo_log_tgt_mutex_on = false;
82
83/*! Enable multithread support (mutex) in libosmocore logging system.
84 * Must be called by processes willing to use logging subsystem from several
85 * threads. Once enabled, it's not possible to disable it again.
86 */
87void log_enable_multithread(void) {
88 if (osmo_log_tgt_mutex_on)
89 return;
90 pthread_mutex_init(&osmo_log_tgt_mutex, NULL);
91 osmo_log_tgt_mutex_on = true;
92}
93
94/*! Acquire the osmo_log_tgt_mutex. Don't use this function directly, always use
95 * macro log_tgt_mutex_lock() instead.
96 */
97void log_tgt_mutex_lock_impl(void) {
98 /* These lines are useful to debug scenarios where there's only 1 thread
99 and a double lock appears, for instance during startup and some
100 unlock() missing somewhere:
101 if (osmo_log_tgt_mutex_on && pthread_mutex_trylock(&osmo_log_tgt_mutex) != 0)
102 osmo_panic("acquiring already locked mutex!\n");
103 return;
104 */
105
106 if (osmo_log_tgt_mutex_on)
107 pthread_mutex_lock(&osmo_log_tgt_mutex);
108}
109
110/*! Release the osmo_log_tgt_mutex. Don't use this function directly, always use
111 * macro log_tgt_mutex_unlock() instead.
112 */
113void log_tgt_mutex_unlock_impl(void) {
114 if (osmo_log_tgt_mutex_on)
115 pthread_mutex_unlock(&osmo_log_tgt_mutex);
116}
117
118#else /* if (!EMBEDDED) */
119#pragma message ("logging multithread support disabled in embedded build")
120void log_enable_multithread(void) {}
121void log_tgt_mutex_lock_impl(void) {}
122void log_tgt_mutex_unlock_impl(void) {}
123#endif /* if (!EMBEDDED) */
124
Neels Hofmeyr098038a2018-09-11 23:49:13 +0200125const struct value_string loglevel_strs[] = {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800126 { LOGL_DEBUG, "DEBUG" },
127 { LOGL_INFO, "INFO" },
128 { LOGL_NOTICE, "NOTICE" },
129 { LOGL_ERROR, "ERROR" },
130 { LOGL_FATAL, "FATAL" },
131 { 0, NULL },
132};
133
Harald Welteb43bc042011-06-27 10:29:17 +0200134#define INT2IDX(x) (-1*(x)-1)
135static const struct log_info_cat internal_cat[OSMO_NUM_DLIB] = {
136 [INT2IDX(DLGLOBAL)] = { /* -1 becomes 0 */
137 .name = "DLGLOBAL",
138 .description = "Library-internal global log family",
139 .loglevel = LOGL_NOTICE,
140 .enabled = 1,
141 },
root8a996b42011-09-26 11:22:21 +0200142 [INT2IDX(DLLAPD)] = { /* -2 becomes 1 */
143 .name = "DLLAPD",
144 .description = "LAPD in libosmogsm",
Harald Welte1f0b8c22011-06-27 10:51:37 +0200145 .loglevel = LOGL_NOTICE,
146 .enabled = 1,
147 },
Harald Welte892e6212011-07-19 14:31:44 +0200148 [INT2IDX(DLINP)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200149 .name = "DLINP",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200150 .description = "A-bis Intput Subsystem",
151 .loglevel = LOGL_NOTICE,
152 .enabled = 1,
153 },
Harald Welte892e6212011-07-19 14:31:44 +0200154 [INT2IDX(DLMUX)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200155 .name = "DLMUX",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200156 .description = "A-bis B-Subchannel TRAU Frame Multiplex",
157 .loglevel = LOGL_NOTICE,
158 .enabled = 1,
159 },
Harald Welte892e6212011-07-19 14:31:44 +0200160 [INT2IDX(DLMI)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200161 .name = "DLMI",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200162 .description = "A-bis Input Driver for Signalling",
163 .enabled = 0, .loglevel = LOGL_NOTICE,
164 },
Harald Welte892e6212011-07-19 14:31:44 +0200165 [INT2IDX(DLMIB)] = {
Harald Welte087e1132011-07-29 11:43:39 +0200166 .name = "DLMIB",
Pablo Neira Ayuso199f3772011-07-07 19:46:38 +0200167 .description = "A-bis Input Driver for B-Channels (voice)",
168 .enabled = 0, .loglevel = LOGL_NOTICE,
169 },
Andreas Eversbergc626da92011-10-28 03:53:50 +0200170 [INT2IDX(DLSMS)] = {
171 .name = "DLSMS",
172 .description = "Layer3 Short Message Service (SMS)",
173 .enabled = 1, .loglevel = LOGL_NOTICE,
Neels Hofmeyrc5b71752019-11-20 04:50:52 +0100174 .color = OSMO_LOGCOLOR_BRIGHTWHITE,
Andreas Eversbergc626da92011-10-28 03:53:50 +0200175 },
Harald Welte7fd0c832014-08-20 19:58:13 +0200176 [INT2IDX(DLCTRL)] = {
177 .name = "DLCTRL",
178 .description = "Control Interface",
179 .enabled = 1, .loglevel = LOGL_NOTICE,
180 },
Holger Hans Peter Freythera5dc19d2014-12-04 14:35:21 +0100181 [INT2IDX(DLGTP)] = {
182 .name = "DLGTP",
183 .description = "GPRS GTP library",
184 .enabled = 1, .loglevel = LOGL_NOTICE,
185 },
Jacob Erlbeck79125ec2015-11-02 15:17:50 +0100186 [INT2IDX(DLSTATS)] = {
187 .name = "DLSTATS",
188 .description = "Statistics messages and logging",
189 .enabled = 1, .loglevel = LOGL_NOTICE,
190 },
Neels Hofmeyr9795cf12016-12-10 17:01:06 +0100191 [INT2IDX(DLGSUP)] = {
192 .name = "DLGSUP",
193 .description = "Generic Subscriber Update Protocol",
194 .enabled = 1, .loglevel = LOGL_NOTICE,
195 },
Harald Weltec0f00072016-04-27 18:32:35 +0200196 [INT2IDX(DLOAP)] = {
197 .name = "DLOAP",
198 .description = "Osmocom Authentication Protocol",
199 .enabled = 1, .loglevel = LOGL_NOTICE,
200 },
Harald Welte059c4042017-04-03 22:20:49 +0200201 [INT2IDX(DLSS7)] = {
202 .name = "DLSS7",
203 .description = "libosmo-sigtran Signalling System 7",
204 .enabled = 1, .loglevel = LOGL_NOTICE,
205 },
206 [INT2IDX(DLSCCP)] = {
207 .name = "DLSCCP",
208 .description = "libosmo-sigtran SCCP Implementation",
209 .enabled = 1, .loglevel = LOGL_NOTICE,
210 },
211 [INT2IDX(DLSUA)] = {
212 .name = "DLSUA",
213 .description = "libosmo-sigtran SCCP User Adaptation",
214 .enabled = 1, .loglevel = LOGL_NOTICE,
215 },
216 [INT2IDX(DLM3UA)] = {
217 .name = "DLM3UA",
218 .description = "libosmo-sigtran MTP3 User Adaptation",
219 .enabled = 1, .loglevel = LOGL_NOTICE,
220 },
Neels Hofmeyra7ccf612017-07-11 18:43:09 +0200221 [INT2IDX(DLMGCP)] = {
222 .name = "DLMGCP",
223 .description = "libosmo-mgcp Media Gateway Control Protocol",
224 .enabled = 1, .loglevel = LOGL_NOTICE,
225 },
Pau Espin Pedrol8fd85572018-02-27 19:43:10 +0100226 [INT2IDX(DLJIBUF)] = {
227 .name = "DLJIBUF",
228 .description = "libosmo-netif Jitter Buffer",
229 .enabled = 1, .loglevel = LOGL_NOTICE,
230 },
Max450f5ac2019-02-14 19:12:03 +0100231 [INT2IDX(DLRSPRO)] = {
232 .name = "DLRSPRO",
233 .description = "Remote SIM protocol",
234 .enabled = 1, .loglevel = LOGL_NOTICE,
235 },
Alexander Couzens6a161492020-07-12 13:45:50 +0200236 [INT2IDX(DLNS)] = {
237 .name = "DLNS",
238 .description = "GPRS NS layer",
239 .enabled = 1, .loglevel = LOGL_NOTICE,
240 },
Harald Welteb43bc042011-06-27 10:29:17 +0200241};
242
Neels Hofmeyrba0762d2018-09-10 13:56:03 +0200243void assert_loginfo(const char *src)
Harald Welte18a7d812017-03-16 23:54:55 +0100244{
245 if (!osmo_log_info) {
246 fprintf(stderr, "ERROR: osmo_log_info == NULL! "
Max68bf16a2018-01-10 17:00:43 +0100247 "You must call log_init() before using logging in %s()!\n", src);
Harald Welte18a7d812017-03-16 23:54:55 +0100248 OSMO_ASSERT(osmo_log_info);
249 }
250}
251
Harald Welteb43bc042011-06-27 10:29:17 +0200252/* special magic for negative (library-internal) log subsystem numbers */
253static int subsys_lib2index(int subsys)
254{
255 return (subsys * -1) + (osmo_log_info->num_cat_user-1);
256}
257
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200258/*! Parse a human-readable log level into a numeric value
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700259 * \param[in] lvl zero-terminated string containing log level name
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200260 * \returns numeric log level
261 */
Harald Welte3ae27582010-03-26 21:24:24 +0800262int log_parse_level(const char *lvl)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800263{
264 return get_string_value(loglevel_strs, lvl);
265}
266
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200267/*! convert a numeric log level into human-readable string
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700268 * \param[in] lvl numeric log level
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200269 * \returns zero-terminated string (log level name)
270 */
Harald Welte9ac22252010-05-11 11:19:40 +0200271const char *log_level_str(unsigned int lvl)
272{
273 return get_value_string(loglevel_strs, lvl);
274}
275
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200276/*! parse a human-readable log category into numeric form
Harald Welte18fc4652011-08-17 14:14:17 +0200277 * \param[in] category human-readable log category name
278 * \returns numeric category value, or -EINVAL otherwise
279 */
Harald Welte3ae27582010-03-26 21:24:24 +0800280int log_parse_category(const char *category)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800281{
282 int i;
283
Max68bf16a2018-01-10 17:00:43 +0100284 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100285
Harald Welte4ebdf742010-05-19 19:54:00 +0200286 for (i = 0; i < osmo_log_info->num_cat; ++i) {
Harald Welteb43bc042011-06-27 10:29:17 +0200287 if (osmo_log_info->cat[i].name == NULL)
288 continue;
Harald Welte4ebdf742010-05-19 19:54:00 +0200289 if (!strcasecmp(osmo_log_info->cat[i].name+1, category))
Harald Weltefaadfe22010-03-26 21:05:43 +0800290 return i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800291 }
292
293 return -EINVAL;
294}
295
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200296/*! parse the log category mask
Harald Welte18fc4652011-08-17 14:14:17 +0200297 * \param[in] target log target to be configured
298 * \param[in] _mask log category mask string
299 *
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800300 * The format can be this: category1:category2:category3
301 * or category1,2:category2,3:...
302 */
Harald Welte3ae27582010-03-26 21:24:24 +0800303void log_parse_category_mask(struct log_target* target, const char *_mask)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800304{
305 int i = 0;
306 char *mask = strdup(_mask);
307 char *category_token = NULL;
308
Max68bf16a2018-01-10 17:00:43 +0100309 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100310
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800311 /* Disable everything to enable it afterwards */
Harald Welteb43bc042011-06-27 10:29:17 +0200312 for (i = 0; i < osmo_log_info->num_cat; ++i)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800313 target->categories[i].enabled = 0;
314
315 category_token = strtok(mask, ":");
Neels Hofmeyrda1b20c2016-04-14 15:12:16 +0200316 OSMO_ASSERT(category_token);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800317 do {
Harald Welte4ebdf742010-05-19 19:54:00 +0200318 for (i = 0; i < osmo_log_info->num_cat; ++i) {
Nico Golde0262d3f2012-09-21 17:44:58 +0200319 size_t length, cat_length;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800320 char* colon = strstr(category_token, ",");
Nico Golde0262d3f2012-09-21 17:44:58 +0200321
322 if (!osmo_log_info->cat[i].name)
323 continue;
324
325 length = strlen(category_token);
326 cat_length = strlen(osmo_log_info->cat[i].name);
Pablo Neira Ayuso300e78d2011-08-11 13:24:18 +0200327
328 /* Use longest length not to match subocurrences. */
329 if (cat_length > length)
330 length = cat_length;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800331
332 if (colon)
333 length = colon - category_token;
334
Harald Welte4ebdf742010-05-19 19:54:00 +0200335 if (strncasecmp(osmo_log_info->cat[i].name,
336 category_token, length) == 0) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800337 int level = 0;
338
339 if (colon)
340 level = atoi(colon+1);
341
Harald Weltefaadfe22010-03-26 21:05:43 +0800342 target->categories[i].enabled = 1;
343 target->categories[i].loglevel = level;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800344 }
345 }
346 } while ((category_token = strtok(NULL, ":")));
347
348 free(mask);
349}
350
351static const char* color(int subsys)
352{
Harald Welte4ebdf742010-05-19 19:54:00 +0200353 if (subsys < osmo_log_info->num_cat)
354 return osmo_log_info->cat[subsys].color;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800355
Harald Welted788f662010-03-26 09:45:03 +0800356 return NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800357}
358
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100359static const struct value_string level_colors[] = {
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100360 { LOGL_DEBUG, OSMO_LOGCOLOR_BLUE },
361 { LOGL_INFO, OSMO_LOGCOLOR_GREEN },
362 { LOGL_NOTICE, OSMO_LOGCOLOR_YELLOW },
363 { LOGL_ERROR, OSMO_LOGCOLOR_RED },
364 { LOGL_FATAL, OSMO_LOGCOLOR_RED },
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100365 { 0, NULL }
366};
367
368static const char *level_color(int level)
369{
370 const char *c = get_value_string_or_null(level_colors, level);
371 if (!c)
372 return get_value_string(level_colors, LOGL_FATAL);
373 return c;
374}
375
Harald Welteaa00f992016-12-02 15:30:02 +0100376const char* log_category_name(int subsys)
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100377{
378 if (subsys < osmo_log_info->num_cat)
379 return osmo_log_info->cat[subsys].name;
380
381 return NULL;
382}
383
Neels Hofmeyr0e2a9432018-01-16 02:49:48 +0100384static const char *const_basename(const char *path)
385{
386 const char *bn = strrchr(path, '/');
387 if (!bn || !bn[1])
388 return path;
389 return bn + 1;
390}
391
Harald Welte3ae27582010-03-26 21:24:24 +0800392static void _output(struct log_target *target, unsigned int subsys,
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200393 unsigned int level, const char *file, int line, int cont,
Harald Welte76e72ab2011-02-17 15:52:39 +0100394 const char *format, va_list ap)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800395{
Harald Weltea8b1b212020-09-27 17:21:07 +0200396 char buf[MAX_LOG_SIZE];
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200397 int ret, len = 0, offset = 0, rem = sizeof(buf);
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100398 const char *c_subsys = NULL;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800399
400 /* are we using color */
401 if (target->use_color) {
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100402 c_subsys = color(subsys);
403 if (c_subsys) {
Neels Hofmeyr5e518b52018-01-17 13:20:02 +0100404 ret = snprintf(buf + offset, rem, "%s", c_subsys);
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200405 if (ret < 0)
406 goto err;
407 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welted788f662010-03-26 09:45:03 +0800408 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800409 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800410 if (!cont) {
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100411 if (target->print_ext_timestamp) {
Harald Welte14c4c492018-06-28 08:28:52 +0200412#ifdef HAVE_LOCALTIME_R
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100413 struct tm tm;
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100414 struct timeval tv;
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200415 osmo_gettimeofday(&tv, NULL);
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100416 localtime_r(&tv.tv_sec, &tm);
417 ret = snprintf(buf + offset, rem, "%04d%02d%02d%02d%02d%02d%03d ",
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100418 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
Jacob Erlbeckb61b2ca2015-03-17 10:21:15 +0100419 tm.tm_hour, tm.tm_min, tm.tm_sec,
420 (int)(tv.tv_usec / 1000));
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100421 if (ret < 0)
422 goto err;
423 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte14c4c492018-06-28 08:28:52 +0200424#endif
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100425 } else if (target->print_timestamp) {
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800426 time_t tm;
Pau Espin Pedrol3aef2382019-06-12 18:50:29 +0200427 if ((tm = time(NULL)) == (time_t) -1)
428 goto err;
Pau Espin Pedrolcc794e92019-06-12 16:22:53 +0200429 /* Get human-readable representation of time.
430 man ctime: we need at least 26 bytes in buf */
431 if (rem < 26 || !ctime_r(&tm, buf + offset))
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200432 goto err;
Pau Espin Pedrolcc794e92019-06-12 16:22:53 +0200433 ret = strlen(buf + offset);
434 if (ret <= 0)
435 goto err;
436 /* Get rid of useless final '\n' added by ctime_r. We want a space instead. */
437 buf[offset + ret - 1] = ' ';
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200438 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800439 }
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100440 if (target->print_category) {
Neels Hofmeyre6534722018-01-16 03:02:06 +0100441 ret = snprintf(buf + offset, rem, "%s%s%s%s ",
442 target->use_color ? level_color(level) : "",
443 log_category_name(subsys),
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100444 target->use_color ? OSMO_LOGCOLOR_END : "",
Neels Hofmeyre6534722018-01-16 03:02:06 +0100445 c_subsys ? c_subsys : "");
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100446 if (ret < 0)
447 goto err;
448 OSMO_SNPRINTF_RET(ret, rem, offset, len);
449 }
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100450 if (target->print_level) {
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100451 ret = snprintf(buf + offset, rem, "%s%s%s%s ",
452 target->use_color ? level_color(level) : "",
453 log_level_str(level),
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100454 target->use_color ? OSMO_LOGCOLOR_END : "",
Neels Hofmeyrf3fa3692018-01-16 02:56:01 +0100455 c_subsys ? c_subsys : "");
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100456 if (ret < 0)
457 goto err;
458 OSMO_SNPRINTF_RET(ret, rem, offset, len);
459 }
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100460 if (target->print_category_hex) {
461 ret = snprintf(buf + offset, rem, "<%4.4x> ", subsys);
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200462 if (ret < 0)
463 goto err;
464 OSMO_SNPRINTF_RET(ret, rem, offset, len);
465 }
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200466
467 if (target->print_filename_pos == LOG_FILENAME_POS_HEADER_END) {
468 switch (target->print_filename2) {
469 case LOG_FILENAME_NONE:
470 break;
471 case LOG_FILENAME_PATH:
472 ret = snprintf(buf + offset, rem, "%s:%d ", file, line);
473 if (ret < 0)
474 goto err;
475 OSMO_SNPRINTF_RET(ret, rem, offset, len);
476 break;
477 case LOG_FILENAME_BASENAME:
478 ret = snprintf(buf + offset, rem, "%s:%d ", const_basename(file), line);
479 if (ret < 0)
480 goto err;
481 OSMO_SNPRINTF_RET(ret, rem, offset, len);
482 break;
483 }
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100484 }
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800485 }
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200486 ret = vsnprintf(buf + offset, rem, format, ap);
487 if (ret < 0)
488 goto err;
489 OSMO_SNPRINTF_RET(ret, rem, offset, len);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800490
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200491 /* For LOG_FILENAME_POS_LAST, print the source file info only when the caller ended the log
492 * message in '\n'. If so, nip the last '\n' away, insert the source file info and re-append an
493 * '\n'. All this to allow LOGP("start..."); LOGPC("...end\n") constructs. */
494 if (target->print_filename_pos == LOG_FILENAME_POS_LINE_END
495 && offset > 0 && buf[offset-1] == '\n') {
496 switch (target->print_filename2) {
497 case LOG_FILENAME_NONE:
498 break;
499 case LOG_FILENAME_PATH:
500 offset --;
501 ret = snprintf(buf + offset, rem, " (%s:%d)\n", file, line);
502 if (ret < 0)
503 goto err;
504 OSMO_SNPRINTF_RET(ret, rem, offset, len);
505 break;
506 case LOG_FILENAME_BASENAME:
507 offset --;
508 ret = snprintf(buf + offset, rem, " (%s:%d)\n", const_basename(file), line);
509 if (ret < 0)
510 goto err;
511 OSMO_SNPRINTF_RET(ret, rem, offset, len);
512 break;
513 }
514 }
515
Pau Espin Pedrol6407c822020-07-20 16:41:44 +0200516 if (target->use_color && c_subsys) {
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100517 ret = snprintf(buf + offset, rem, OSMO_LOGCOLOR_END);
Neels Hofmeyrc4759882018-01-16 02:10:48 +0100518 if (ret < 0)
519 goto err;
520 OSMO_SNPRINTF_RET(ret, rem, offset, len);
521 }
Pablo Neira Ayuso7503fb82011-05-03 22:32:43 +0200522err:
523 buf[sizeof(buf)-1] = '\0';
524 target->output(target, level, buf);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800525}
526
Neels Hofmeyr42240de2016-12-12 15:13:56 +0100527/* Catch internal logging category indexes as well as out-of-bounds indexes.
528 * For internal categories, the ID is negative starting with -1; and internal
529 * logging categories are added behind the user categories. For out-of-bounds
530 * indexes, return the index of DLGLOBAL. The returned category index is
531 * guaranteed to exist in osmo_log_info, otherwise the program would abort,
532 * which should never happen unless even the DLGLOBAL category is missing. */
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100533static inline int map_subsys(int subsys)
534{
Neels Hofmeyr74802262016-12-12 16:00:24 +0100535 /* Note: comparing signed and unsigned integers */
536
537 if (subsys > 0 && ((unsigned int)subsys) >= osmo_log_info->num_cat_user)
538 subsys = DLGLOBAL;
539
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100540 if (subsys < 0)
541 subsys = subsys_lib2index(subsys);
542
Neels Hofmeyrca135742016-12-12 14:18:54 +0100543 if (subsys < 0 || subsys >= osmo_log_info->num_cat)
Neels Hofmeyr42240de2016-12-12 15:13:56 +0100544 subsys = subsys_lib2index(DLGLOBAL);
545
Neels Hofmeyrca135742016-12-12 14:18:54 +0100546 OSMO_ASSERT(!(subsys < 0 || subsys >= osmo_log_info->num_cat));
547
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100548 return subsys;
549}
550
Maxc65c5b42017-03-15 13:20:23 +0100551static inline bool should_log_to_target(struct log_target *tar, int subsys,
552 int level)
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100553{
554 struct log_category *category;
555
556 category = &tar->categories[subsys];
557
558 /* subsystem is not supposed to be logged */
559 if (!category->enabled)
Maxc65c5b42017-03-15 13:20:23 +0100560 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100561
562 /* Check the global log level */
563 if (tar->loglevel != 0 && level < tar->loglevel)
Maxc65c5b42017-03-15 13:20:23 +0100564 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100565
566 /* Check the category log level */
567 if (tar->loglevel == 0 && category->loglevel != 0 &&
568 level < category->loglevel)
Maxc65c5b42017-03-15 13:20:23 +0100569 return false;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100570
Holger Hans Peter Freyther79599ac2016-01-15 16:49:06 +0100571 /* Apply filters here... if that becomes messy we will
572 * need to put filters in a list and each filter will
573 * say stop, continue, output */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100574 if ((tar->filter_map & (1 << LOG_FLT_ALL)) != 0)
Maxc65c5b42017-03-15 13:20:23 +0100575 return true;
Holger Hans Peter Freyther79599ac2016-01-15 16:49:06 +0100576
577 if (osmo_log_info->filter_fn)
578 return osmo_log_info->filter_fn(&log_context, tar);
579
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100580 /* TODO: Check the filter/selector too? */
Maxc65c5b42017-03-15 13:20:23 +0100581 return true;
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100582}
583
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200584/*! vararg version of logging function
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200585 * \param[in] subsys Logging sub-system
586 * \param[in] level Log level
587 * \param[in] file name of source code file
588 * \param[in] cont continuation (1) or new line (0)
589 * \param[in] format format string
590 * \param[in] ap vararg-list containing format string arguments
591 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200592void osmo_vlogp(int subsys, int level, const char *file, int line,
Harald Welte36c5a3e2011-08-27 14:33:19 +0200593 int cont, const char *format, va_list ap)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800594{
Harald Welte3ae27582010-03-26 21:24:24 +0800595 struct log_target *tar;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800596
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +0100597 subsys = map_subsys(subsys);
Harald Welteb43bc042011-06-27 10:29:17 +0200598
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200599 log_tgt_mutex_lock();
600
Harald Welte28222962011-02-18 20:37:04 +0100601 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200602 va_list bp;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800603
Maxc65c5b42017-03-15 13:20:23 +0100604 if (!should_log_to_target(tar, subsys, level))
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800605 continue;
606
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200607 /* According to the manpage, vsnprintf leaves the value of ap
608 * in undefined state. Since _output uses vsnprintf and it may
609 * be called several times, we have to pass a copy of ap. */
610 va_copy(bp, ap);
Harald Welted7c0a372016-12-02 13:52:59 +0100611 if (tar->raw_output)
612 tar->raw_output(tar, subsys, level, file, line, cont, format, bp);
613 else
614 _output(tar, subsys, level, file, line, cont, format, bp);
Pablo Neira Ayusodd93bf42011-05-19 01:40:43 +0200615 va_end(bp);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800616 }
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200617
618 log_tgt_mutex_unlock();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800619}
620
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200621/*! logging function used by DEBUGP() macro
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200622 * \param[in] subsys Logging sub-system
623 * \param[in] file name of source code file
624 * \param[in] cont continuation (1) or new line (0)
625 * \param[in] format format string
626 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200627void logp(int subsys, const char *file, int line, int cont,
Harald Welte3ae27582010-03-26 21:24:24 +0800628 const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800629{
630 va_list ap;
631
632 va_start(ap, format);
Harald Welte36c5a3e2011-08-27 14:33:19 +0200633 osmo_vlogp(subsys, LOGL_DEBUG, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800634 va_end(ap);
635}
636
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200637/*! logging function used by LOGP() macro
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200638 * \param[in] subsys Logging sub-system
639 * \param[in] level Log level
640 * \param[in] file name of source code file
641 * \param[in] cont continuation (1) or new line (0)
642 * \param[in] format format string
643 */
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +0200644void logp2(int subsys, unsigned int level, const char *file, int line, int cont, const char *format, ...)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800645{
646 va_list ap;
647
648 va_start(ap, format);
Harald Welte36c5a3e2011-08-27 14:33:19 +0200649 osmo_vlogp(subsys, level, file, line, cont, format, ap);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800650 va_end(ap);
651}
652
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200653/*! Register a new log target with the logging core
Harald Welte18fc4652011-08-17 14:14:17 +0200654 * \param[in] target Log target to be registered
655 */
Harald Welte3ae27582010-03-26 21:24:24 +0800656void log_add_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800657{
Harald Welte28222962011-02-18 20:37:04 +0100658 llist_add_tail(&target->entry, &osmo_log_target_list);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800659}
660
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200661/*! Unregister a log target from the logging core
Harald Welte18fc4652011-08-17 14:14:17 +0200662 * \param[in] target Log target to be unregistered
663 */
Harald Welte3ae27582010-03-26 21:24:24 +0800664void log_del_target(struct log_target *target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800665{
666 llist_del(&target->entry);
667}
668
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200669/*! Reset (clear) the logging context */
Harald Welte3ae27582010-03-26 21:24:24 +0800670void log_reset_context(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800671{
Harald Welte3ae27582010-03-26 21:24:24 +0800672 memset(&log_context, 0, sizeof(log_context));
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800673}
674
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200675/*! Set the logging context
Harald Welte18fc4652011-08-17 14:14:17 +0200676 * \param[in] ctx_nr logging context number
677 * \param[in] value value to which the context is to be set
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200678 * \returns 0 in case of success; negative otherwise
Harald Welte18fc4652011-08-17 14:14:17 +0200679 *
680 * A logging context is something like the subscriber identity to which
681 * the currently processed message relates, or the BTS through which it
682 * was received. As soon as this data is known, it can be set using
683 * this function. The main use of context information is for logging
684 * filters.
685 */
Harald Welte3ae27582010-03-26 21:24:24 +0800686int log_set_context(uint8_t ctx_nr, void *value)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800687{
Harald Welte3ae27582010-03-26 21:24:24 +0800688 if (ctx_nr > LOG_MAX_CTX)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800689 return -EINVAL;
690
Harald Welte3ae27582010-03-26 21:24:24 +0800691 log_context.ctx[ctx_nr] = value;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800692
693 return 0;
694}
695
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200696/*! Enable the \ref LOG_FLT_ALL log filter
Harald Welte18fc4652011-08-17 14:14:17 +0200697 * \param[in] target Log target to be affected
698 * \param[in] all enable (1) or disable (0) the ALL filter
699 *
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100700 * When the \ref LOG_FLT_ALL filter is enabled, all log messages will be
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +0100701 * printed. It acts as a wildcard. Setting it to \a 1 means there is no
702 * filtering.
Harald Welte18fc4652011-08-17 14:14:17 +0200703 */
Harald Welte3ae27582010-03-26 21:24:24 +0800704void log_set_all_filter(struct log_target *target, int all)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800705{
706 if (all)
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100707 target->filter_map |= (1 << LOG_FLT_ALL);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800708 else
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100709 target->filter_map &= ~(1 << LOG_FLT_ALL);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800710}
711
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200712/*! Enable or disable the use of colored output
Harald Welte18fc4652011-08-17 14:14:17 +0200713 * \param[in] target Log target to be affected
714 * \param[in] use_color Use color (1) or don't use color (0)
715 */
Harald Welte3ae27582010-03-26 21:24:24 +0800716void log_set_use_color(struct log_target *target, int use_color)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800717{
718 target->use_color = use_color;
719}
720
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200721/*! Enable or disable printing of timestamps while logging
Harald Welte18fc4652011-08-17 14:14:17 +0200722 * \param[in] target Log target to be affected
723 * \param[in] print_timestamp Enable (1) or disable (0) timestamps
724 */
Harald Welte3ae27582010-03-26 21:24:24 +0800725void log_set_print_timestamp(struct log_target *target, int print_timestamp)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800726{
727 target->print_timestamp = print_timestamp;
728}
729
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200730/*! Enable or disable printing of extended timestamps while logging
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100731 * \param[in] target Log target to be affected
732 * \param[in] print_timestamp Enable (1) or disable (0) timestamps
733 *
734 * When both timestamp and extended timestamp is enabled then only
735 * the extended timestamp will be used. The format of the timestamp
736 * is YYYYMMDDhhmmssnnn.
737 */
738void log_set_print_extended_timestamp(struct log_target *target, int print_timestamp)
739{
740 target->print_ext_timestamp = print_timestamp;
741}
742
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100743/*! Use log_set_print_filename2() instead.
744 * Call log_set_print_filename2() with LOG_FILENAME_PATH or LOG_FILENAME_NONE, *as well as* call
745 * log_set_print_category_hex() with the argument passed to this function. This is to mirror legacy
746 * behavior, which combined the category in hex with the filename. For example, if the category-hex
747 * output were no longer affected by log_set_print_filename(), many unit tests (in libosmocore as well as
748 * dependent projects) would fail since they expect the category to disappear along with the filename.
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200749 * \param[in] target Log target to be affected
750 * \param[in] print_filename Enable (1) or disable (0) filenames
751 */
752void log_set_print_filename(struct log_target *target, int print_filename)
753{
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100754 log_set_print_filename2(target, print_filename ? LOG_FILENAME_PATH : LOG_FILENAME_NONE);
755 log_set_print_category_hex(target, print_filename);
756}
757
758/*! Enable or disable printing of the filename while logging.
759 * \param[in] target Log target to be affected.
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700760 * \param[in] lft An LOG_FILENAME_* enum value.
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100761 * LOG_FILENAME_NONE omits the source file and line information from logs.
762 * LOG_FILENAME_PATH prints the entire source file path as passed to LOGP macros.
763 */
764void log_set_print_filename2(struct log_target *target, enum log_filename_type lft)
765{
766 target->print_filename2 = lft;
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200767}
768
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200769/*! Set the position where on a log line the source file info should be logged.
770 * \param[in] target Log target to be affected.
771 * \param[in] pos A LOG_FILENAME_POS_* enum value.
772 * LOG_FILENAME_POS_DEFAULT logs just before the caller supplied log message.
773 * LOG_FILENAME_POS_LAST logs only at the end of a log line, where the caller issued an '\n' to end the
774 */
775void log_set_print_filename_pos(struct log_target *target, enum log_filename_pos pos)
776{
777 target->print_filename_pos = pos;
778}
779
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200780/*! Enable or disable printing of the category name
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100781 * \param[in] target Log target to be affected
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700782 * \param[in] print_category Enable (1) or disable (0) filenames
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100783 *
784 * Print the category/subsys name in front of every log message.
785 */
786void log_set_print_category(struct log_target *target, int print_category)
787{
788 target->print_category = print_category;
789}
790
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100791/*! Enable or disable printing of the category number in hex ('<000b>').
792 * \param[in] target Log target to be affected.
793 * \param[in] print_category_hex Enable (1) or disable (0) hex category.
794 */
795void log_set_print_category_hex(struct log_target *target, int print_category_hex)
796{
797 target->print_category_hex = print_category_hex;
798}
799
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100800/*! Enable or disable printing of the log level name.
801 * \param[in] target Log target to be affected
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700802 * \param[in] print_level Enable (1) or disable (0) log level name
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100803 *
804 * Print the log level name in front of every log message.
805 */
806void log_set_print_level(struct log_target *target, int print_level)
807{
808 target->print_level = (bool)print_level;
809}
810
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200811/*! Set the global log level for a given log target
Harald Welte18fc4652011-08-17 14:14:17 +0200812 * \param[in] target Log target to be affected
813 * \param[in] log_level New global log level
814 */
Harald Welte3ae27582010-03-26 21:24:24 +0800815void log_set_log_level(struct log_target *target, int log_level)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800816{
817 target->loglevel = log_level;
818}
819
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200820/*! Set a category filter on a given log target
Harald Weltede6e4982012-12-06 21:25:27 +0100821 * \param[in] target Log target to be affected
822 * \param[in] category Log category to be affected
823 * \param[in] enable whether to enable or disable the filter
824 * \param[in] level Log level of the filter
825 */
Harald Welte3ae27582010-03-26 21:24:24 +0800826void log_set_category_filter(struct log_target *target, int category,
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800827 int enable, int level)
828{
Neels Hofmeyr886d6fd2016-12-12 13:49:03 +0100829 if (!target)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800830 return;
Neels Hofmeyr886d6fd2016-12-12 13:49:03 +0100831 category = map_subsys(category);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800832 target->categories[category].enabled = !!enable;
833 target->categories[category].loglevel = level;
834}
835
Harald Welte44c0f632017-01-15 17:58:29 +0100836#if (!EMBEDDED)
Harald Welte76e72ab2011-02-17 15:52:39 +0100837static void _file_output(struct log_target *target, unsigned int level,
838 const char *log)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800839{
Harald Welte0083cd32010-08-25 14:55:44 +0200840 fprintf(target->tgt_file.out, "%s", log);
841 fflush(target->tgt_file.out);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800842}
Harald Welte44c0f632017-01-15 17:58:29 +0100843#endif
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800844
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200845/*! Create a new log target skeleton
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200846 * \returns dynamically-allocated log target
847 * This funcition allocates a \ref log_target and initializes it
848 * with some default values. The newly created target is not
849 * registered yet.
850 */
Harald Welte3ae27582010-03-26 21:24:24 +0800851struct log_target *log_target_create(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800852{
Harald Welte3ae27582010-03-26 21:24:24 +0800853 struct log_target *target;
Harald Weltecc6313c2010-03-26 22:04:03 +0800854 unsigned int i;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800855
Max68bf16a2018-01-10 17:00:43 +0100856 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +0100857
Harald Welte3ae27582010-03-26 21:24:24 +0800858 target = talloc_zero(tall_log_ctx, struct log_target);
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800859 if (!target)
860 return NULL;
861
Pau Espin Pedrol9d4a36e2018-07-26 11:55:33 +0200862 target->categories = talloc_zero_array(target,
Harald Welteb43bc042011-06-27 10:29:17 +0200863 struct log_category,
864 osmo_log_info->num_cat);
865 if (!target->categories) {
866 talloc_free(target);
867 return NULL;
868 }
869
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800870 INIT_LLIST_HEAD(&target->entry);
Harald Weltecc6313c2010-03-26 22:04:03 +0800871
872 /* initialize the per-category enabled/loglevel from defaults */
Harald Welte4ebdf742010-05-19 19:54:00 +0200873 for (i = 0; i < osmo_log_info->num_cat; i++) {
Harald Weltecc6313c2010-03-26 22:04:03 +0800874 struct log_category *cat = &target->categories[i];
Harald Welte4ebdf742010-05-19 19:54:00 +0200875 cat->enabled = osmo_log_info->cat[i].enabled;
876 cat->loglevel = osmo_log_info->cat[i].loglevel;
Harald Weltecc6313c2010-03-26 22:04:03 +0800877 }
878
879 /* global settings */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800880 target->use_color = 1;
881 target->print_timestamp = 0;
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100882 target->print_filename2 = LOG_FILENAME_PATH;
883 target->print_category_hex = true;
Harald Weltecc6313c2010-03-26 22:04:03 +0800884
885 /* global log level */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800886 target->loglevel = 0;
887 return target;
888}
889
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200890/*! Create the STDERR log target
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200891 * \returns dynamically-allocated \ref log_target for STDERR */
Harald Welte3ae27582010-03-26 21:24:24 +0800892struct log_target *log_target_create_stderr(void)
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800893{
Harald Weltea3b844c2010-03-27 00:04:40 +0800894/* since C89/C99 says stderr is a macro, we can safely do this! */
Harald Welteb93ce5a2017-05-15 10:58:15 +0200895#if !EMBEDDED && defined(stderr)
Harald Welte3ae27582010-03-26 21:24:24 +0800896 struct log_target *target;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800897
Harald Welte3ae27582010-03-26 21:24:24 +0800898 target = log_target_create();
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800899 if (!target)
900 return NULL;
901
Harald Welte28222962011-02-18 20:37:04 +0100902 target->type = LOG_TGT_TYPE_STDERR;
Harald Welte0083cd32010-08-25 14:55:44 +0200903 target->tgt_file.out = stderr;
904 target->output = _file_output;
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800905 return target;
Harald Weltea3b844c2010-03-27 00:04:40 +0800906#else
907 return NULL;
908#endif /* stderr */
Harald Welte4a2bb9e2010-03-26 09:33:40 +0800909}
910
Harald Welte44c0f632017-01-15 17:58:29 +0100911#if (!EMBEDDED)
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200912/*! Create a new file-based log target
Harald Welte18fc4652011-08-17 14:14:17 +0200913 * \param[in] fname File name of the new log file
914 * \returns Log target in case of success, NULL otherwise
915 */
Harald Welte3086c392010-08-25 19:10:50 +0200916struct log_target *log_target_create_file(const char *fname)
917{
918 struct log_target *target;
919
920 target = log_target_create();
921 if (!target)
922 return NULL;
923
Harald Welte28222962011-02-18 20:37:04 +0100924 target->type = LOG_TGT_TYPE_FILE;
Harald Welte3086c392010-08-25 19:10:50 +0200925 target->tgt_file.out = fopen(fname, "a");
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +0700926 if (!target->tgt_file.out) {
927 log_target_destroy(target);
Harald Welte3086c392010-08-25 19:10:50 +0200928 return NULL;
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +0700929 }
Harald Welte3086c392010-08-25 19:10:50 +0200930
931 target->output = _file_output;
932
933 target->tgt_file.fname = talloc_strdup(target, fname);
934
935 return target;
936}
Harald Welte44c0f632017-01-15 17:58:29 +0100937#endif
Harald Welte3086c392010-08-25 19:10:50 +0200938
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200939/*! Find a registered log target
Harald Welte18fc4652011-08-17 14:14:17 +0200940 * \param[in] type Log target type
941 * \param[in] fname File name
942 * \returns Log target (if found), NULL otherwise
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200943 * Must be called with mutex osmo_log_tgt_mutex held, see log_tgt_mutex_lock.
Harald Welte18fc4652011-08-17 14:14:17 +0200944 */
Harald Welte28222962011-02-18 20:37:04 +0100945struct log_target *log_target_find(int type, const char *fname)
946{
947 struct log_target *tgt;
948
949 llist_for_each_entry(tgt, &osmo_log_target_list, entry) {
950 if (tgt->type != type)
951 continue;
Maxc90f40a2018-01-11 10:52:28 +0100952 switch (tgt->type) {
953 case LOG_TGT_TYPE_FILE:
Harald Welte28222962011-02-18 20:37:04 +0100954 if (!strcmp(fname, tgt->tgt_file.fname))
955 return tgt;
Maxc90f40a2018-01-11 10:52:28 +0100956 break;
957 case LOG_TGT_TYPE_GSMTAP:
958 if (!strcmp(fname, tgt->tgt_gsmtap.hostname))
959 return tgt;
960 break;
961 default:
Harald Welte28222962011-02-18 20:37:04 +0100962 return tgt;
Maxc90f40a2018-01-11 10:52:28 +0100963 }
Harald Welte28222962011-02-18 20:37:04 +0100964 }
965 return NULL;
966}
967
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200968/*! Unregister, close and delete a log target
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +0700969 * \param[in] target log target to unregister, close and delete */
Harald Welte3086c392010-08-25 19:10:50 +0200970void log_target_destroy(struct log_target *target)
971{
972
973 /* just in case, to make sure we don't have any references */
974 log_del_target(target);
975
Harald Welte44c0f632017-01-15 17:58:29 +0100976#if (!EMBEDDED)
Vadim Yanitskiy744236b2020-09-09 04:42:22 +0700977 switch (target->type) {
978 case LOG_TGT_TYPE_FILE:
Vadim Yanitskiyb89114b2020-09-09 04:51:04 +0700979 if (target->tgt_file.out == NULL)
980 break;
Vadim Yanitskiy744236b2020-09-09 04:42:22 +0700981 fclose(target->tgt_file.out);
982 target->tgt_file.out = NULL;
983 break;
Vadim Yanitskiy04f42712020-09-09 04:47:25 +0700984#ifdef HAVE_SYSLOG_H
985 case LOG_TGT_TYPE_SYSLOG:
986 closelog();
987 break;
988#endif /* HAVE_SYSLOG_H */
Vadim Yanitskiy744236b2020-09-09 04:42:22 +0700989 default:
990 /* make GCC happy */
991 break;
Harald Welte3086c392010-08-25 19:10:50 +0200992 }
Harald Welte44c0f632017-01-15 17:58:29 +0100993#endif
Harald Welte3086c392010-08-25 19:10:50 +0200994
995 talloc_free(target);
996}
997
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200998/*! close and re-open a log file (for log file rotation)
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200999 * \param[in] target log target to re-open
1000 * \returns 0 in case of success; negative otherwise */
Harald Welte3086c392010-08-25 19:10:50 +02001001int log_target_file_reopen(struct log_target *target)
1002{
1003 fclose(target->tgt_file.out);
1004
1005 target->tgt_file.out = fopen(target->tgt_file.fname, "a");
1006 if (!target->tgt_file.out)
1007 return -errno;
1008
1009 /* we assume target->output already to be set */
1010
1011 return 0;
1012}
1013
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001014/*! close and re-open all log files (for log file rotation)
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001015 * \returns 0 in case of success; negative otherwise */
Harald Welte4de854d2013-03-18 19:01:40 +01001016int log_targets_reopen(void)
1017{
1018 struct log_target *tar;
1019 int rc = 0;
1020
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001021 log_tgt_mutex_lock();
1022
Harald Welte4de854d2013-03-18 19:01:40 +01001023 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
1024 switch (tar->type) {
1025 case LOG_TGT_TYPE_FILE:
1026 if (log_target_file_reopen(tar) < 0)
1027 rc = -1;
1028 break;
1029 default:
1030 break;
1031 }
1032 }
1033
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001034 log_tgt_mutex_unlock();
1035
Harald Welte4de854d2013-03-18 19:01:40 +01001036 return rc;
1037}
1038
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001039/*! Initialize the Osmocom logging core
Max72dfd432018-12-04 11:24:18 +01001040 * \param[in] inf Information regarding logging categories, could be NULL
Vadim Yanitskiy73e66b32019-03-25 21:24:20 +07001041 * \param[in] ctx talloc context for logging allocations
Harald Welte18fc4652011-08-17 14:14:17 +02001042 * \returns 0 in case of success, negative in case of error
Max72dfd432018-12-04 11:24:18 +01001043 *
1044 * If inf is NULL then only library-internal categories are initialized.
Harald Welte18fc4652011-08-17 14:14:17 +02001045 */
Harald Welteb43bc042011-06-27 10:29:17 +02001046int log_init(const struct log_info *inf, void *ctx)
Harald Welte4a2bb9e2010-03-26 09:33:40 +08001047{
Harald Welteb43bc042011-06-27 10:29:17 +02001048 int i;
Philipp Maierdcad1c52020-03-25 11:25:59 +01001049 struct log_info_cat *cat_ptr;
Harald Welteb43bc042011-06-27 10:29:17 +02001050
Philipp Maierdc02c062020-05-12 17:51:25 +02001051 /* Ensure that log_init is not called multiple times */
1052 OSMO_ASSERT(tall_log_ctx == NULL)
1053
Harald Welteb43bc042011-06-27 10:29:17 +02001054 tall_log_ctx = talloc_named_const(ctx, 1, "logging");
1055 if (!tall_log_ctx)
1056 return -ENOMEM;
1057
1058 osmo_log_info = talloc_zero(tall_log_ctx, struct log_info);
1059 if (!osmo_log_info)
1060 return -ENOMEM;
1061
Max72dfd432018-12-04 11:24:18 +01001062 osmo_log_info->num_cat = ARRAY_SIZE(internal_cat);
1063
1064 if (inf) {
1065 osmo_log_info->filter_fn = inf->filter_fn;
1066 osmo_log_info->num_cat_user = inf->num_cat;
1067 osmo_log_info->num_cat += inf->num_cat;
1068 }
Harald Welteb43bc042011-06-27 10:29:17 +02001069
Philipp Maierdcad1c52020-03-25 11:25:59 +01001070 cat_ptr = talloc_zero_array(osmo_log_info, struct log_info_cat,
1071 osmo_log_info->num_cat);
1072 if (!cat_ptr) {
Harald Welteb43bc042011-06-27 10:29:17 +02001073 talloc_free(osmo_log_info);
1074 osmo_log_info = NULL;
1075 return -ENOMEM;
1076 }
1077
Philipp Maierdcad1c52020-03-25 11:25:59 +01001078 /* copy over the user part and sanitize loglevel */
1079 if (inf) {
Max72dfd432018-12-04 11:24:18 +01001080 for (i = 0; i < inf->num_cat; i++) {
Philipp Maierdcad1c52020-03-25 11:25:59 +01001081 memcpy(&cat_ptr[i], &inf->cat[i],
1082 sizeof(struct log_info_cat));
1083
1084 /* Make sure that the loglevel is set to NOTICE in case
1085 * no loglevel has been preset. */
1086 if (!cat_ptr[i].loglevel) {
1087 cat_ptr[i].loglevel = LOGL_NOTICE;
1088 }
Max72dfd432018-12-04 11:24:18 +01001089 }
Harald Welteb43bc042011-06-27 10:29:17 +02001090 }
1091
1092 /* copy over the library part */
Harald Welte9fe16522011-06-27 14:00:03 +02001093 for (i = 0; i < ARRAY_SIZE(internal_cat); i++) {
Harald Weltece9fec32011-06-27 14:19:16 +02001094 unsigned int cn = osmo_log_info->num_cat_user + i;
Philipp Maierdcad1c52020-03-25 11:25:59 +01001095 memcpy(&cat_ptr[cn], &internal_cat[i], sizeof(struct log_info_cat));
Harald Welte9fe16522011-06-27 14:00:03 +02001096 }
1097
Philipp Maierdcad1c52020-03-25 11:25:59 +01001098 osmo_log_info->cat = cat_ptr;
1099
Harald Welte9fe16522011-06-27 14:00:03 +02001100 return 0;
Harald Welte4a2bb9e2010-03-26 09:33:40 +08001101}
Harald Welte18fc4652011-08-17 14:14:17 +02001102
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001103/* De-initialize the Osmocom logging core
Harald Welte69e6c3c2016-04-20 10:41:27 +02001104 * This function destroys all targets and releases associated memory */
1105void log_fini(void)
1106{
1107 struct log_target *tar, *tar2;
1108
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001109 log_tgt_mutex_lock();
1110
Harald Welte69e6c3c2016-04-20 10:41:27 +02001111 llist_for_each_entry_safe(tar, tar2, &osmo_log_target_list, entry)
1112 log_target_destroy(tar);
1113
1114 talloc_free(osmo_log_info);
1115 osmo_log_info = NULL;
1116 talloc_free(tall_log_ctx);
1117 tall_log_ctx = NULL;
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001118
1119 log_tgt_mutex_unlock();
Harald Welte69e6c3c2016-04-20 10:41:27 +02001120}
1121
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001122/*! Check whether a log entry will be generated.
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001123 * \returns != 0 if a log entry might get generated by at least one target */
1124int log_check_level(int subsys, unsigned int level)
1125{
1126 struct log_target *tar;
1127
Max68bf16a2018-01-10 17:00:43 +01001128 assert_loginfo(__func__);
Harald Welte18a7d812017-03-16 23:54:55 +01001129
Holger Hans Peter Freythere0dc6a12015-12-21 14:45:16 +01001130 subsys = map_subsys(subsys);
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001131
1132 /* TODO: The following could/should be cached (update on config) */
1133
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001134 log_tgt_mutex_lock();
1135
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001136 llist_for_each_entry(tar, &osmo_log_target_list, entry) {
Maxc65c5b42017-03-15 13:20:23 +01001137 if (!should_log_to_target(tar, subsys, level))
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001138 continue;
1139
1140 /* This might get logged (ignoring filters) */
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001141 log_tgt_mutex_unlock();
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001142 return 1;
1143 }
1144
1145 /* We are sure, that this will not be logged. */
Pau Espin Pedrold12f6982019-09-17 18:38:58 +02001146 log_tgt_mutex_unlock();
Jacob Erlbeckde6dd722015-11-17 11:52:24 +01001147 return 0;
1148}
1149
Sylvain Munautdca7d2c2012-04-18 21:53:23 +02001150/*! @} */