blob: 21b98f64a61762c74c6ebda16818cbad24309e85 [file] [log] [blame]
Sylvain Munaut12ba7782014-06-16 10:13:40 +02001#pragma once
Harald Welte3ae27582010-03-26 21:24:24 +08002
Harald Welte18fc4652011-08-17 14:14:17 +02003/*! \defgroup logging Osmocom logging framework
4 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02005 * \file logging.h */
Harald Welte18fc4652011-08-17 14:14:17 +02006
Harald Welte3ae27582010-03-26 21:24:24 +08007#include <stdio.h>
8#include <stdint.h>
Christoph Fritzab7c9c72011-09-01 16:22:17 +02009#include <stdarg.h>
Harald Welteaa00f992016-12-02 15:30:02 +010010#include <stdbool.h>
Maxaa1bc012017-01-13 11:01:12 +010011#include <osmocom/core/defs.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010012#include <osmocom/core/linuxlist.h>
Harald Welte3ae27582010-03-26 21:24:24 +080013
Philipp Maier4c44d462022-01-19 11:43:05 +010014extern struct log_info *osmo_log_info;
15
Kévin Redond1e220f2019-06-13 13:41:00 +020016#ifndef DEBUG
Harald Welte3ae27582010-03-26 21:24:24 +080017#define DEBUG
Kévin Redond1e220f2019-06-13 13:41:00 +020018#endif
Harald Welte3ae27582010-03-26 21:24:24 +080019
Ericd02090b2021-11-24 20:24:46 +010020#ifdef LIBOSMOCORE_NO_LOGGING
21#undef DEBUG
22#endif
23
Harald Welte3ae27582010-03-26 21:24:24 +080024#ifdef DEBUG
Neels Hofmeyr87e45502017-06-20 00:17:59 +020025/*! Log a debug message through the Osmocom logging framework
Harald Welte2d2e2cc2016-04-25 12:11:20 +020026 * \param[in] ss logging subsystem (e.g. \ref DLGLOBAL)
27 * \param[in] fmt format string
28 * \param[in] args variable argument list
29 */
Maxaa1bc012017-01-13 11:01:12 +010030#define DEBUGP(ss, fmt, args...) LOGP(ss, LOGL_DEBUG, fmt, ##args)
31#define DEBUGPC(ss, fmt, args...) LOGPC(ss, LOGL_DEBUG, fmt, ##args)
Harald Welte3ae27582010-03-26 21:24:24 +080032#else
33#define DEBUGP(xss, fmt, args...)
34#define DEBUGPC(ss, fmt, args...)
35#endif
36
Harald Welte3ae27582010-03-26 21:24:24 +080037
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +020038void osmo_vlogp(int subsys, int level, const char *file, int line,
Harald Welte36c5a3e2011-08-27 14:33:19 +020039 int cont, const char *format, va_list ap);
40
Maxaa1bc012017-01-13 11:01:12 +010041void logp(int subsys, const char *file, int line, int cont, const char *format, ...) OSMO_DEPRECATED("Use DEBUGP* macros instead");
Harald Welte3ae27582010-03-26 21:24:24 +080042
Neels Hofmeyr87e45502017-06-20 00:17:59 +020043/*! Log a new message through the Osmocom logging framework
Harald Weltebd598e32011-08-16 23:26:52 +020044 * \param[in] ss logging subsystem (e.g. \ref DLGLOBAL)
45 * \param[in] level logging level (e.g. \ref LOGL_NOTICE)
46 * \param[in] fmt format string
47 * \param[in] args variable argument list
48 */
Harald Welte3ae27582010-03-26 21:24:24 +080049#define LOGP(ss, level, fmt, args...) \
Neels Hofmeyr725698a2016-12-14 17:24:54 +010050 LOGPSRC(ss, level, NULL, 0, fmt, ## args)
Harald Weltebd598e32011-08-16 23:26:52 +020051
Neels Hofmeyr87e45502017-06-20 00:17:59 +020052/*! Continue a log message through the Osmocom logging framework
Harald Weltebd598e32011-08-16 23:26:52 +020053 * \param[in] ss logging subsystem (e.g. \ref DLGLOBAL)
54 * \param[in] level logging level (e.g. \ref LOGL_NOTICE)
55 * \param[in] fmt format string
56 * \param[in] args variable argument list
57 */
Eric Wild63e1b2b2021-11-26 21:09:01 +010058#ifndef LIBOSMOCORE_NO_LOGGING
Harald Welte3ae27582010-03-26 21:24:24 +080059#define LOGPC(ss, level, fmt, args...) \
Jacob Erlbecka89d22c2015-11-17 11:52:25 +010060 do { \
Philipp Maier4c44d462022-01-19 11:43:05 +010061 if (!osmo_log_info) { \
62 logp_stub(__FILE__, __LINE__, 1, fmt, ##args); \
63 break; \
64 } \
Jacob Erlbecka89d22c2015-11-17 11:52:25 +010065 if (log_check_level(ss, level)) \
Neels Hofmeyr983dcb92018-08-20 12:33:22 +020066 logp2(ss, level, __FILE__, __LINE__, 1, fmt, ##args); \
Jacob Erlbecka89d22c2015-11-17 11:52:25 +010067 } while(0)
Eric Wild63e1b2b2021-11-26 21:09:01 +010068#else
69#define LOGPC(ss, level, fmt, args...)
70#endif
Harald Welte3ae27582010-03-26 21:24:24 +080071
Neels Hofmeyr87e45502017-06-20 00:17:59 +020072/*! Log through the Osmocom logging framework with explicit source.
Neels Hofmeyr983dcb92018-08-20 12:33:22 +020073 * If caller_file is passed as NULL, __FILE__ and __LINE__ are used
Neels Hofmeyr725698a2016-12-14 17:24:54 +010074 * instead of caller_file and caller_line (so that this macro here defines
75 * both cases in the same place, and to catch cases where callers fail to pass
76 * a non-null filename string).
77 * \param[in] ss logging subsystem (e.g. \ref DLGLOBAL)
78 * \param[in] level logging level (e.g. \ref LOGL_NOTICE)
Neels Hofmeyr983dcb92018-08-20 12:33:22 +020079 * \param[in] caller_file caller's source file string (e.g. __FILE__)
Neels Hofmeyr725698a2016-12-14 17:24:54 +010080 * \param[in] caller_line caller's source line nr (e.g. __LINE__)
81 * \param[in] fmt format string
82 * \param[in] args variable argument list
83 */
84#define LOGPSRC(ss, level, caller_file, caller_line, fmt, args...) \
Holger Hans Peter Freyther37a83402017-11-29 11:46:39 +080085 LOGPSRCC(ss, level, caller_file, caller_line, 0, fmt, ##args)
86
87/*! Log through the Osmocom logging framework with explicit source.
Neels Hofmeyr983dcb92018-08-20 12:33:22 +020088 * If caller_file is passed as NULL, __FILE__ and __LINE__ are used
Holger Hans Peter Freyther37a83402017-11-29 11:46:39 +080089 * instead of caller_file and caller_line (so that this macro here defines
90 * both cases in the same place, and to catch cases where callers fail to pass
91 * a non-null filename string).
92 * \param[in] ss logging subsystem (e.g. \ref DLGLOBAL)
93 * \param[in] level logging level (e.g. \ref LOGL_NOTICE)
Neels Hofmeyr983dcb92018-08-20 12:33:22 +020094 * \param[in] caller_file caller's source file string (e.g. __FILE__)
Holger Hans Peter Freyther37a83402017-11-29 11:46:39 +080095 * \param[in] caller_line caller's source line nr (e.g. __LINE__)
96 * \param[in] cont continuation (1) or new line (0)
97 * \param[in] fmt format string
98 * \param[in] args variable argument list
99 */
Eric Wild63e1b2b2021-11-26 21:09:01 +0100100#ifndef LIBOSMOCORE_NO_LOGGING
Holger Hans Peter Freyther37a83402017-11-29 11:46:39 +0800101#define LOGPSRCC(ss, level, caller_file, caller_line, cont, fmt, args...) \
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100102 do { \
Philipp Maier4c44d462022-01-19 11:43:05 +0100103 if (!osmo_log_info) { \
104 if (caller_file) \
105 logp_stub(caller_file, caller_line, cont, fmt, ##args); \
106 else \
107 logp_stub(__FILE__, __LINE__, cont, fmt, ##args); \
108 break; \
109 } \
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100110 if (log_check_level(ss, level)) {\
111 if (caller_file) \
Holger Hans Peter Freyther37a83402017-11-29 11:46:39 +0800112 logp2(ss, level, caller_file, caller_line, cont, fmt, ##args); \
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100113 else \
Neels Hofmeyr983dcb92018-08-20 12:33:22 +0200114 logp2(ss, level, __FILE__, __LINE__, cont, fmt, ##args); \
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100115 }\
116 } while(0)
Eric Wild63e1b2b2021-11-26 21:09:01 +0100117#else
118#define LOGPSRCC(ss, level, caller_file, caller_line, cont, fmt, args...)
119#endif
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100120
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200121/*! different log levels */
122#define LOGL_DEBUG 1 /*!< debugging information */
123#define LOGL_INFO 3 /*!< general information */
124#define LOGL_NOTICE 5 /*!< abnormal/unexpected condition */
125#define LOGL_ERROR 7 /*!< error condition, requires user action */
126#define LOGL_FATAL 8 /*!< fatal, program aborted */
Harald Welte3ae27582010-03-26 21:24:24 +0800127
Neels Hofmeyre883de52019-11-20 04:28:52 +0100128/* logging subsystems defined by the library itself */
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200129#define DLGLOBAL -1 /*!< global logging */
130#define DLLAPD -2 /*!< LAPD implementation */
131#define DLINP -3 /*!< (A-bis) Input sub-system */
132#define DLMUX -4 /*!< Osmocom Multiplex (Osmux) */
133#define DLMI -5 /*!< ISDN-layer below input sub-system */
134#define DLMIB -6 /*!< ISDN layer B-channel */
135#define DLSMS -7 /*!< SMS sub-system */
136#define DLCTRL -8 /*!< Control Interface */
137#define DLGTP -9 /*!< GTP (GPRS Tunneling Protocol */
138#define DLSTATS -10 /*!< Statistics */
Neels Hofmeyr9795cf12016-12-10 17:01:06 +0100139#define DLGSUP -11 /*!< Generic Subscriber Update Protocol */
Harald Weltec0f00072016-04-27 18:32:35 +0200140#define DLOAP -12 /*!< Osmocom Authentication Protocol */
Harald Welte62d32962017-04-03 19:37:11 +0200141#define DLSS7 -13 /*!< Osmocom SS7 */
142#define DLSCCP -14 /*!< Osmocom SCCP */
143#define DLSUA -15 /*!< Osmocom SUA */
144#define DLM3UA -16 /*!< Osmocom M3UA */
Neels Hofmeyra7ccf612017-07-11 18:43:09 +0200145#define DLMGCP -17 /*!< Osmocom MGCP */
Pau Espin Pedrol8fd85572018-02-27 19:43:10 +0100146#define DLJIBUF -18 /*!< Osmocom Jitter Buffer */
Harald Welteb99ed7f2018-08-13 20:54:44 +0200147#define DLRSPRO -19 /*!< Osmocom Remote SIM Protocol */
Alexander Couzens6a161492020-07-12 13:45:50 +0200148#define DLNS -20 /*!< Osmocom NS layer */
Harald Weltefde19ed2020-12-07 21:43:51 +0100149#define DLBSSGP -21 /*!< Osmocom BSSGP layer */
Alexander Couzens6cf65d92021-01-18 17:55:35 +0100150#define DLNSDATA -22 /*!< Osmocom NS layer data pdus */
151#define DLNSSIGNAL -23 /*!< Osmocom NS layer signal pdus */
Harald Welte9fe1f9f2018-11-29 13:47:39 +0100152#define DLIUUP -24 /*!< Osmocom IuUP layer */
Neels Hofmeyr13fa00e2021-11-26 11:02:47 +0100153#define DLPFCP -25 /*!< Osmocom Packet Forwarding Control Protocol */
154#define OSMO_NUM_DLIB 25 /*!< Number of logging sub-systems in libraries */
Harald Welteb43bc042011-06-27 10:29:17 +0200155
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100156/* Colors that can be used in log_info_cat.color */
157#define OSMO_LOGCOLOR_NORMAL NULL
158#define OSMO_LOGCOLOR_RED "\033[1;31m"
159#define OSMO_LOGCOLOR_GREEN "\033[1;32m"
160#define OSMO_LOGCOLOR_YELLOW "\033[1;33m"
161#define OSMO_LOGCOLOR_BLUE "\033[1;34m"
162#define OSMO_LOGCOLOR_PURPLE "\033[1;35m"
163#define OSMO_LOGCOLOR_CYAN "\033[1;36m"
164#define OSMO_LOGCOLOR_DARKRED "\033[31m"
165#define OSMO_LOGCOLOR_DARKGREEN "\033[32m"
166#define OSMO_LOGCOLOR_DARKYELLOW "\033[33m"
167#define OSMO_LOGCOLOR_DARKBLUE "\033[34m"
168#define OSMO_LOGCOLOR_DARKPURPLE "\033[35m"
169#define OSMO_LOGCOLOR_DARKCYAN "\033[36m"
170#define OSMO_LOGCOLOR_DARKGREY "\033[1;30m"
171#define OSMO_LOGCOLOR_GREY "\033[37m"
172#define OSMO_LOGCOLOR_BRIGHTWHITE "\033[1;37m"
173#define OSMO_LOGCOLOR_END "\033[0;m"
174
Neels Hofmeyrfc47b032017-06-20 04:29:38 +0200175/*! Configuration of single log category / sub-system */
Harald Welte3ae27582010-03-26 21:24:24 +0800176struct log_category {
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200177 uint8_t loglevel; /*!< configured log-level */
178 uint8_t enabled; /*!< is logging enabled? */
Harald Welte3ae27582010-03-26 21:24:24 +0800179};
180
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200181/*! Information regarding one logging category */
Harald Welte3ae27582010-03-26 21:24:24 +0800182struct log_info_cat {
Harald Welte18fc4652011-08-17 14:14:17 +0200183 const char *name; /*!< name of category */
184 const char *color; /*!< color string for cateyory */
185 const char *description; /*!< description text */
186 uint8_t loglevel; /*!< currently selected log-level */
187 uint8_t enabled; /*!< is this category enabled or not */
Harald Welte3ae27582010-03-26 21:24:24 +0800188};
189
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200190/*! Indexes to indicate the object currently acted upon.
Neels Hofmeyr492e1802017-02-23 17:45:26 +0100191 * Array indexes for the global \a log_context array. */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100192enum log_ctx_index {
193 LOG_CTX_GB_NSVC,
194 LOG_CTX_GB_BVC,
195 LOG_CTX_BSC_SUBSCR,
196 LOG_CTX_VLR_SUBSCR,
Oliver Smith210acc62019-09-12 17:13:34 +0200197 LOG_CTX_L1_SAPI,
Daniel Willmann751977b2020-12-02 18:59:44 +0100198 LOG_CTX_GB_NSE,
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100199 _LOG_CTX_COUNT
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +0100200};
201
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200202/*! Indexes to indicate objects that should be logged.
Neels Hofmeyr492e1802017-02-23 17:45:26 +0100203 * Array indexes to log_target->filter_data and bit indexes for
204 * log_target->filter_map. */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100205enum log_filter_index {
206 LOG_FLT_ALL,
207 LOG_FLT_GB_NSVC,
208 LOG_FLT_GB_BVC,
209 LOG_FLT_BSC_SUBSCR,
210 LOG_FLT_VLR_SUBSCR,
Oliver Smith210acc62019-09-12 17:13:34 +0200211 LOG_FLT_L1_SAPI,
Daniel Willmann751977b2020-12-02 18:59:44 +0100212 LOG_FLT_GB_NSE,
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100213 _LOG_FLT_COUNT
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +0100214};
215
Daniel Willmannfd3478c2020-12-02 18:14:17 +0100216/*! Maximum number of logging contexts */
217#define LOG_MAX_CTX _LOG_CTX_COUNT
218/*! Maximum number of logging filters */
219#define LOG_MAX_FILTERS _LOG_FLT_COUNT
220
221/*! Log context information, passed to filter */
222struct log_context {
223 void *ctx[LOG_MAX_CTX+1];
224};
225
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200226/*! Compatibility with older libosmocore versions */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100227#define LOG_FILTER_ALL (1<<LOG_FLT_ALL)
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200228/*! Compatibility with older libosmocore versions */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100229#define GPRS_CTX_NSVC LOG_CTX_GB_NSVC
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200230/*! Compatibility with older libosmocore versions */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100231#define GPRS_CTX_BVC LOG_CTX_GB_BVC
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200232/*! Indexes to indicate the object currently acted upon.
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100233 * Array indexes for the global \a log_context array. */
Neels Hofmeyr0d6420b2017-02-23 17:34:35 +0100234
Harald Welte3ae27582010-03-26 21:24:24 +0800235struct log_target;
236
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200237/*! Log filter function */
Harald Welte3ae27582010-03-26 21:24:24 +0800238typedef int log_filter(const struct log_context *ctx,
239 struct log_target *target);
240
Harald Weltefb84f322013-06-06 07:33:54 +0200241struct log_info;
242struct vty;
Harald Welteaa00f992016-12-02 15:30:02 +0100243struct gsmtap_inst;
Harald Weltefb84f322013-06-06 07:33:54 +0200244
245typedef void log_print_filters(struct vty *vty,
246 const struct log_info *info,
247 const struct log_target *tgt);
248
249typedef void log_save_filters(struct vty *vty,
250 const struct log_info *info,
251 const struct log_target *tgt);
252
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200253/*! Logging configuration, passed to \ref log_init */
Harald Welte3ae27582010-03-26 21:24:24 +0800254struct log_info {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200255 /* filter callback function */
Harald Welte3ae27582010-03-26 21:24:24 +0800256 log_filter *filter_fn;
257
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200258 /*! per-category information */
Holger Hans Peter Freyther06f64552012-09-11 10:31:29 +0200259 const struct log_info_cat *cat;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200260 /*! total number of categories */
Harald Welte3ae27582010-03-26 21:24:24 +0800261 unsigned int num_cat;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200262 /*! total number of user categories (not library) */
Harald Welteb43bc042011-06-27 10:29:17 +0200263 unsigned int num_cat_user;
Harald Weltefb84f322013-06-06 07:33:54 +0200264
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200265 /*! filter saving function */
Harald Weltefb84f322013-06-06 07:33:54 +0200266 log_save_filters *save_fn;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200267 /*! filter saving function */
Harald Weltefb84f322013-06-06 07:33:54 +0200268 log_print_filters *print_fn;
Harald Welte3ae27582010-03-26 21:24:24 +0800269};
270
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200271/*! Type of logging target */
Harald Welte28222962011-02-18 20:37:04 +0100272enum log_target_type {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200273 LOG_TGT_TYPE_VTY, /*!< VTY logging */
274 LOG_TGT_TYPE_SYSLOG, /*!< syslog based logging */
275 LOG_TGT_TYPE_FILE, /*!< text file logging */
276 LOG_TGT_TYPE_STDERR, /*!< stderr logging */
277 LOG_TGT_TYPE_STRRB, /*!< osmo_strrb-backed logging */
278 LOG_TGT_TYPE_GSMTAP, /*!< GSMTAP network logging */
Vadim Yanitskiye7bf4352020-09-09 03:36:48 +0700279 LOG_TGT_TYPE_SYSTEMD, /*!< systemd journal logging */
Harald Welte28222962011-02-18 20:37:04 +0100280};
281
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100282/*! Whether/how to log the source filename (and line number). */
283enum log_filename_type {
284 LOG_FILENAME_NONE,
285 LOG_FILENAME_PATH,
Neels Hofmeyr0e2a9432018-01-16 02:49:48 +0100286 LOG_FILENAME_BASENAME,
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100287};
288
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200289/*! Where on a log line source file and line should be logged. */
290enum log_filename_pos {
291 LOG_FILENAME_POS_HEADER_END,
292 LOG_FILENAME_POS_LINE_END,
293};
294
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200295/*! structure representing a logging target */
Harald Welte3ae27582010-03-26 21:24:24 +0800296struct log_target {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200297 struct llist_head entry; /*!< linked list */
Harald Welte3ae27582010-03-26 21:24:24 +0800298
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200299 /*! Internal data for filtering */
Harald Welte3ae27582010-03-26 21:24:24 +0800300 int filter_map;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200301 /*! Internal data for filtering */
Harald Welte3ae27582010-03-26 21:24:24 +0800302 void *filter_data[LOG_MAX_FILTERS+1];
303
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200304 /*! logging categories */
Harald Welteb43bc042011-06-27 10:29:17 +0200305 struct log_category *categories;
306
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200307 /*! global log level */
Harald Welte3ae27582010-03-26 21:24:24 +0800308 uint8_t loglevel;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200309 /*! should color be used when printing log messages? */
Harald Welte87dbca12011-07-16 11:57:53 +0200310 unsigned int use_color:1;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200311 /*! should log messages be prefixed with a timestamp? */
Harald Welte87dbca12011-07-16 11:57:53 +0200312 unsigned int print_timestamp:1;
Pau Espin Pedrol662d10d2021-02-18 18:19:23 +0100313 /*! should log messages be prefixed with the logger Thread ID? */
314 unsigned int print_tid:1;
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100315 /*! DEPRECATED: use print_filename2 instead. */
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200316 unsigned int print_filename:1;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200317 /*! should log messages be prefixed with a category name? */
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100318 unsigned int print_category:1;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200319 /*! should log messages be prefixed with an extended timestamp? */
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100320 unsigned int print_ext_timestamp:1;
Harald Welte3ae27582010-03-26 21:24:24 +0800321
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200322 /*! the type of this log taget */
Harald Welte28222962011-02-18 20:37:04 +0100323 enum log_target_type type;
324
Harald Welte3ae27582010-03-26 21:24:24 +0800325 union {
326 struct {
Harald Welteb72867f2020-09-26 21:45:16 +0200327 /* direct, blocking output via stdio */
Harald Welte3ae27582010-03-26 21:24:24 +0800328 FILE *out;
Harald Welte72d0c532010-08-25 19:24:00 +0200329 const char *fname;
Harald Welteb72867f2020-09-26 21:45:16 +0200330 /* indirect output via write_queue and osmo_select_main() */
331 struct osmo_wqueue *wqueue;
Harald Welte0083cd32010-08-25 14:55:44 +0200332 } tgt_file;
Harald Welte3ae27582010-03-26 21:24:24 +0800333
334 struct {
335 int priority;
Harald Welte28222962011-02-18 20:37:04 +0100336 int facility;
Harald Welte3ae27582010-03-26 21:24:24 +0800337 } tgt_syslog;
338
339 struct {
340 void *vty;
341 } tgt_vty;
Katerina Barone-Adesi3309a432013-02-21 05:16:29 +0000342
343 struct {
344 void *rb;
345 } tgt_rb;
Harald Welteaa00f992016-12-02 15:30:02 +0100346
347 struct {
348 struct gsmtap_inst *gsmtap_inst;
349 const char *ident;
350 const char *hostname;
351 } tgt_gsmtap;
Vadim Yanitskiye7bf4352020-09-09 03:36:48 +0700352
353 struct {
354 bool raw;
355 } sd_journal;
Harald Welte3ae27582010-03-26 21:24:24 +0800356 };
357
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200358 /*! call-back function to be called when the logging framework
Harald Welted7c0a372016-12-02 13:52:59 +0100359 * wants to log a fully formatted string
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100360 * \param[in] target logging target
Harald Welte18fc4652011-08-17 14:14:17 +0200361 * \param[in] level log level of currnet message
362 * \param[in] string the string that is to be written to the log
363 */
Harald Welte76e72ab2011-02-17 15:52:39 +0100364 void (*output) (struct log_target *target, unsigned int level,
365 const char *string);
Harald Welted7c0a372016-12-02 13:52:59 +0100366
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200367 /*! alternative call-back function to which the logging
Harald Welted7c0a372016-12-02 13:52:59 +0100368 * framework passes the unfortmatted input arguments,
369 * i.e. bypassing the internal string formatter
370 * \param[in] target logging target
371 * \param[in] subsys logging sub-system
372 * \param[in] level logging level
373 * \param[in] file soure code file name
374 * \param[in] line source code file line number
375 * \param[in] cont continuation of previous statement?
376 * \param[in] format format string
377 * \param[in] ap vararg list of printf arguments
378 */
379 void (*raw_output)(struct log_target *target, int subsys,
380 unsigned int level, const char *file, int line,
381 int cont, const char *format, va_list ap);
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100382
383 /* Should the log level be printed? */
384 bool print_level;
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100385 /* Should we print the subsys in hex like '<000b>'? */
386 bool print_category_hex;
387 /* Should we print the source file and line, and in which way? */
388 enum log_filename_type print_filename2;
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200389 /* Where on a log line to put the source file info. */
390 enum log_filename_pos print_filename_pos;
Harald Welte3ae27582010-03-26 21:24:24 +0800391};
392
393/* use the above macros */
Andreas Eversberg2d6563b2012-07-10 13:10:15 +0200394void logp2(int subsys, unsigned int level, const char *file,
Harald Welte3ae27582010-03-26 21:24:24 +0800395 int line, int cont, const char *format, ...)
396 __attribute__ ((format (printf, 6, 7)));
Philipp Maier4c44d462022-01-19 11:43:05 +0100397void logp_stub(const char *file, int line, int cont, const char *format, ...);
Harald Welteb43bc042011-06-27 10:29:17 +0200398int log_init(const struct log_info *inf, void *talloc_ctx);
Philipp Maier4c44d462022-01-19 11:43:05 +0100399int log_initialized(void);
Harald Welte69e6c3c2016-04-20 10:41:27 +0200400void log_fini(void);
Jacob Erlbeckde6dd722015-11-17 11:52:24 +0100401int log_check_level(int subsys, unsigned int level);
Harald Welte3ae27582010-03-26 21:24:24 +0800402
403/* context management */
404void log_reset_context(void);
405int log_set_context(uint8_t ctx, void *value);
406
407/* filter on the targets */
408void log_set_all_filter(struct log_target *target, int);
409
410void log_set_use_color(struct log_target *target, int);
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100411void log_set_print_extended_timestamp(struct log_target *target, int);
Harald Welte3ae27582010-03-26 21:24:24 +0800412void log_set_print_timestamp(struct log_target *target, int);
Pau Espin Pedrol662d10d2021-02-18 18:19:23 +0100413void log_set_print_tid(struct log_target *target, int);
Pau Espin Pedrol6e9dd022021-02-18 19:27:38 +0100414void log_set_print_filename(struct log_target *target, int) OSMO_DEPRECATED("Use log_set_print_filename2() instead");
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100415void log_set_print_filename2(struct log_target *target, enum log_filename_type lft);
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200416void log_set_print_filename_pos(struct log_target *target, enum log_filename_pos pos);
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100417void log_set_print_category(struct log_target *target, int);
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100418void log_set_print_category_hex(struct log_target *target, int);
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100419void log_set_print_level(struct log_target *target, int);
Harald Welte3ae27582010-03-26 21:24:24 +0800420void log_set_log_level(struct log_target *target, int log_level);
421void log_parse_category_mask(struct log_target *target, const char* mask);
Harald Welteaa00f992016-12-02 15:30:02 +0100422const char* log_category_name(int subsys);
Max15b6d412017-07-06 16:57:15 +0200423int log_parse_level(const char *lvl) OSMO_DEPRECATED_OUTSIDE_LIBOSMOCORE;
424const char *log_level_str(unsigned int lvl) OSMO_DEPRECATED_OUTSIDE_LIBOSMOCORE;
Harald Welte3ae27582010-03-26 21:24:24 +0800425int log_parse_category(const char *category);
426void log_set_category_filter(struct log_target *target, int category,
427 int enable, int level);
428
429/* management of the targets */
430struct log_target *log_target_create(void);
Harald Welte72d0c532010-08-25 19:24:00 +0200431void log_target_destroy(struct log_target *target);
Harald Welte3ae27582010-03-26 21:24:24 +0800432struct log_target *log_target_create_stderr(void);
Harald Welte72d0c532010-08-25 19:24:00 +0200433struct log_target *log_target_create_file(const char *fname);
Harald Welte46cfd772011-02-17 15:56:56 +0100434struct log_target *log_target_create_syslog(const char *ident, int option,
435 int facility);
Harald Welteaa00f992016-12-02 15:30:02 +0100436struct log_target *log_target_create_gsmtap(const char *host, uint16_t port,
437 const char *ident,
438 bool ofd_wq_mode,
439 bool add_sink);
Vadim Yanitskiye7bf4352020-09-09 03:36:48 +0700440struct log_target *log_target_create_systemd(bool raw);
441void log_target_systemd_set_raw(struct log_target *target, bool raw);
Harald Welte72d0c532010-08-25 19:24:00 +0200442int log_target_file_reopen(struct log_target *tgt);
Harald Welteb72867f2020-09-26 21:45:16 +0200443int log_target_file_switch_to_stream(struct log_target *tgt);
444int log_target_file_switch_to_wqueue(struct log_target *tgt);
Harald Welte4de854d2013-03-18 19:01:40 +0100445int log_targets_reopen(void);
Harald Welte72d0c532010-08-25 19:24:00 +0200446
Harald Welte3ae27582010-03-26 21:24:24 +0800447void log_add_target(struct log_target *target);
448void log_del_target(struct log_target *target);
449
Harald Weltee6fb8902022-01-09 12:00:03 +0100450struct log_target *log_target_find(enum log_target_type type, const char *fname);
Harald Welte28222962011-02-18 20:37:04 +0100451
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200452void log_enable_multithread(void);
453
454void log_tgt_mutex_lock_impl(void);
455void log_tgt_mutex_unlock_impl(void);
456#define LOG_MTX_DEBUG 0
457#if LOG_MTX_DEBUG
458 #include <pthread.h>
459 #define log_tgt_mutex_lock() do { fprintf(stderr, "[%lu] %s:%d [%s] lock\n", pthread_self(), __FILE__, __LINE__, __func__); log_tgt_mutex_lock_impl(); } while (0)
460 #define log_tgt_mutex_unlock() do { fprintf(stderr, "[%lu] %s:%d [%s] unlock\n", pthread_self(), __FILE__, __LINE__, __func__); log_tgt_mutex_unlock_impl(); } while (0)
461#else
462 #define log_tgt_mutex_lock() log_tgt_mutex_lock_impl()
463 #define log_tgt_mutex_unlock() log_tgt_mutex_unlock_impl()
464#endif
465
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200466/*! @} */