blob: a554adc374f1a00b6271d0b0f2b3a2c4c1ed41f9 [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
Kévin Redond1e220f2019-06-13 13:41:00 +020014#ifndef DEBUG
Harald Welte3ae27582010-03-26 21:24:24 +080015#define DEBUG
Kévin Redond1e220f2019-06-13 13:41:00 +020016#endif
Harald Welte3ae27582010-03-26 21:24:24 +080017
18#ifdef DEBUG
Neels Hofmeyr87e45502017-06-20 00:17:59 +020019/*! Log a debug message through the Osmocom logging framework
Harald Welte2d2e2cc2016-04-25 12:11:20 +020020 * \param[in] ss logging subsystem (e.g. \ref DLGLOBAL)
21 * \param[in] fmt format string
22 * \param[in] args variable argument list
23 */
Maxaa1bc012017-01-13 11:01:12 +010024#define DEBUGP(ss, fmt, args...) LOGP(ss, LOGL_DEBUG, fmt, ##args)
25#define DEBUGPC(ss, fmt, args...) LOGPC(ss, LOGL_DEBUG, fmt, ##args)
Harald Welte3ae27582010-03-26 21:24:24 +080026#else
27#define DEBUGP(xss, fmt, args...)
28#define DEBUGPC(ss, fmt, args...)
29#endif
30
Harald Welte3ae27582010-03-26 21:24:24 +080031
Holger Hans Peter Freytherfb4bfc22012-07-12 09:26:25 +020032void osmo_vlogp(int subsys, int level, const char *file, int line,
Harald Welte36c5a3e2011-08-27 14:33:19 +020033 int cont, const char *format, va_list ap);
34
Maxaa1bc012017-01-13 11:01:12 +010035void 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 +080036
Neels Hofmeyr87e45502017-06-20 00:17:59 +020037/*! Log a new message through the Osmocom logging framework
Harald Weltebd598e32011-08-16 23:26:52 +020038 * \param[in] ss logging subsystem (e.g. \ref DLGLOBAL)
39 * \param[in] level logging level (e.g. \ref LOGL_NOTICE)
40 * \param[in] fmt format string
41 * \param[in] args variable argument list
42 */
Harald Welte3ae27582010-03-26 21:24:24 +080043#define LOGP(ss, level, fmt, args...) \
Neels Hofmeyr725698a2016-12-14 17:24:54 +010044 LOGPSRC(ss, level, NULL, 0, fmt, ## args)
Harald Weltebd598e32011-08-16 23:26:52 +020045
Neels Hofmeyr87e45502017-06-20 00:17:59 +020046/*! Continue a log message through the Osmocom logging framework
Harald Weltebd598e32011-08-16 23:26:52 +020047 * \param[in] ss logging subsystem (e.g. \ref DLGLOBAL)
48 * \param[in] level logging level (e.g. \ref LOGL_NOTICE)
49 * \param[in] fmt format string
50 * \param[in] args variable argument list
51 */
Harald Welte3ae27582010-03-26 21:24:24 +080052#define LOGPC(ss, level, fmt, args...) \
Jacob Erlbecka89d22c2015-11-17 11:52:25 +010053 do { \
54 if (log_check_level(ss, level)) \
Neels Hofmeyr983dcb92018-08-20 12:33:22 +020055 logp2(ss, level, __FILE__, __LINE__, 1, fmt, ##args); \
Jacob Erlbecka89d22c2015-11-17 11:52:25 +010056 } while(0)
Harald Welte3ae27582010-03-26 21:24:24 +080057
Neels Hofmeyr87e45502017-06-20 00:17:59 +020058/*! Log through the Osmocom logging framework with explicit source.
Neels Hofmeyr983dcb92018-08-20 12:33:22 +020059 * If caller_file is passed as NULL, __FILE__ and __LINE__ are used
Neels Hofmeyr725698a2016-12-14 17:24:54 +010060 * instead of caller_file and caller_line (so that this macro here defines
61 * both cases in the same place, and to catch cases where callers fail to pass
62 * a non-null filename string).
63 * \param[in] ss logging subsystem (e.g. \ref DLGLOBAL)
64 * \param[in] level logging level (e.g. \ref LOGL_NOTICE)
Neels Hofmeyr983dcb92018-08-20 12:33:22 +020065 * \param[in] caller_file caller's source file string (e.g. __FILE__)
Neels Hofmeyr725698a2016-12-14 17:24:54 +010066 * \param[in] caller_line caller's source line nr (e.g. __LINE__)
67 * \param[in] fmt format string
68 * \param[in] args variable argument list
69 */
70#define LOGPSRC(ss, level, caller_file, caller_line, fmt, args...) \
Holger Hans Peter Freyther37a83402017-11-29 11:46:39 +080071 LOGPSRCC(ss, level, caller_file, caller_line, 0, fmt, ##args)
72
73/*! Log through the Osmocom logging framework with explicit source.
Neels Hofmeyr983dcb92018-08-20 12:33:22 +020074 * If caller_file is passed as NULL, __FILE__ and __LINE__ are used
Holger Hans Peter Freyther37a83402017-11-29 11:46:39 +080075 * instead of caller_file and caller_line (so that this macro here defines
76 * both cases in the same place, and to catch cases where callers fail to pass
77 * a non-null filename string).
78 * \param[in] ss logging subsystem (e.g. \ref DLGLOBAL)
79 * \param[in] level logging level (e.g. \ref LOGL_NOTICE)
Neels Hofmeyr983dcb92018-08-20 12:33:22 +020080 * \param[in] caller_file caller's source file string (e.g. __FILE__)
Holger Hans Peter Freyther37a83402017-11-29 11:46:39 +080081 * \param[in] caller_line caller's source line nr (e.g. __LINE__)
82 * \param[in] cont continuation (1) or new line (0)
83 * \param[in] fmt format string
84 * \param[in] args variable argument list
85 */
86#define LOGPSRCC(ss, level, caller_file, caller_line, cont, fmt, args...) \
Neels Hofmeyr725698a2016-12-14 17:24:54 +010087 do { \
88 if (log_check_level(ss, level)) {\
89 if (caller_file) \
Holger Hans Peter Freyther37a83402017-11-29 11:46:39 +080090 logp2(ss, level, caller_file, caller_line, cont, fmt, ##args); \
Neels Hofmeyr725698a2016-12-14 17:24:54 +010091 else \
Neels Hofmeyr983dcb92018-08-20 12:33:22 +020092 logp2(ss, level, __FILE__, __LINE__, cont, fmt, ##args); \
Neels Hofmeyr725698a2016-12-14 17:24:54 +010093 }\
94 } while(0)
95
Neels Hofmeyr87e45502017-06-20 00:17:59 +020096/*! different log levels */
97#define LOGL_DEBUG 1 /*!< debugging information */
98#define LOGL_INFO 3 /*!< general information */
99#define LOGL_NOTICE 5 /*!< abnormal/unexpected condition */
100#define LOGL_ERROR 7 /*!< error condition, requires user action */
101#define LOGL_FATAL 8 /*!< fatal, program aborted */
Harald Welte3ae27582010-03-26 21:24:24 +0800102
Neels Hofmeyre883de52019-11-20 04:28:52 +0100103/* logging subsystems defined by the library itself */
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200104#define DLGLOBAL -1 /*!< global logging */
105#define DLLAPD -2 /*!< LAPD implementation */
106#define DLINP -3 /*!< (A-bis) Input sub-system */
107#define DLMUX -4 /*!< Osmocom Multiplex (Osmux) */
108#define DLMI -5 /*!< ISDN-layer below input sub-system */
109#define DLMIB -6 /*!< ISDN layer B-channel */
110#define DLSMS -7 /*!< SMS sub-system */
111#define DLCTRL -8 /*!< Control Interface */
112#define DLGTP -9 /*!< GTP (GPRS Tunneling Protocol */
113#define DLSTATS -10 /*!< Statistics */
Neels Hofmeyr9795cf12016-12-10 17:01:06 +0100114#define DLGSUP -11 /*!< Generic Subscriber Update Protocol */
Harald Weltec0f00072016-04-27 18:32:35 +0200115#define DLOAP -12 /*!< Osmocom Authentication Protocol */
Harald Welte62d32962017-04-03 19:37:11 +0200116#define DLSS7 -13 /*!< Osmocom SS7 */
117#define DLSCCP -14 /*!< Osmocom SCCP */
118#define DLSUA -15 /*!< Osmocom SUA */
119#define DLM3UA -16 /*!< Osmocom M3UA */
Neels Hofmeyra7ccf612017-07-11 18:43:09 +0200120#define DLMGCP -17 /*!< Osmocom MGCP */
Pau Espin Pedrol8fd85572018-02-27 19:43:10 +0100121#define DLJIBUF -18 /*!< Osmocom Jitter Buffer */
Harald Welteb99ed7f2018-08-13 20:54:44 +0200122#define DLRSPRO -19 /*!< Osmocom Remote SIM Protocol */
Alexander Couzens6a161492020-07-12 13:45:50 +0200123#define DLNS -20 /*!< Osmocom NS layer */
Harald Weltefde19ed2020-12-07 21:43:51 +0100124#define DLBSSGP -21 /*!< Osmocom BSSGP layer */
Alexander Couzens6cf65d92021-01-18 17:55:35 +0100125#define DLNSDATA -22 /*!< Osmocom NS layer data pdus */
126#define DLNSSIGNAL -23 /*!< Osmocom NS layer signal pdus */
127#define OSMO_NUM_DLIB 23 /*!< Number of logging sub-systems in libraries */
Harald Welteb43bc042011-06-27 10:29:17 +0200128
Neels Hofmeyrf2644ae2019-11-20 04:00:29 +0100129/* Colors that can be used in log_info_cat.color */
130#define OSMO_LOGCOLOR_NORMAL NULL
131#define OSMO_LOGCOLOR_RED "\033[1;31m"
132#define OSMO_LOGCOLOR_GREEN "\033[1;32m"
133#define OSMO_LOGCOLOR_YELLOW "\033[1;33m"
134#define OSMO_LOGCOLOR_BLUE "\033[1;34m"
135#define OSMO_LOGCOLOR_PURPLE "\033[1;35m"
136#define OSMO_LOGCOLOR_CYAN "\033[1;36m"
137#define OSMO_LOGCOLOR_DARKRED "\033[31m"
138#define OSMO_LOGCOLOR_DARKGREEN "\033[32m"
139#define OSMO_LOGCOLOR_DARKYELLOW "\033[33m"
140#define OSMO_LOGCOLOR_DARKBLUE "\033[34m"
141#define OSMO_LOGCOLOR_DARKPURPLE "\033[35m"
142#define OSMO_LOGCOLOR_DARKCYAN "\033[36m"
143#define OSMO_LOGCOLOR_DARKGREY "\033[1;30m"
144#define OSMO_LOGCOLOR_GREY "\033[37m"
145#define OSMO_LOGCOLOR_BRIGHTWHITE "\033[1;37m"
146#define OSMO_LOGCOLOR_END "\033[0;m"
147
Neels Hofmeyrfc47b032017-06-20 04:29:38 +0200148/*! Configuration of single log category / sub-system */
Harald Welte3ae27582010-03-26 21:24:24 +0800149struct log_category {
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200150 uint8_t loglevel; /*!< configured log-level */
151 uint8_t enabled; /*!< is logging enabled? */
Harald Welte3ae27582010-03-26 21:24:24 +0800152};
153
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200154/*! Information regarding one logging category */
Harald Welte3ae27582010-03-26 21:24:24 +0800155struct log_info_cat {
Harald Welte18fc4652011-08-17 14:14:17 +0200156 const char *name; /*!< name of category */
157 const char *color; /*!< color string for cateyory */
158 const char *description; /*!< description text */
159 uint8_t loglevel; /*!< currently selected log-level */
160 uint8_t enabled; /*!< is this category enabled or not */
Harald Welte3ae27582010-03-26 21:24:24 +0800161};
162
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200163/*! Indexes to indicate the object currently acted upon.
Neels Hofmeyr492e1802017-02-23 17:45:26 +0100164 * Array indexes for the global \a log_context array. */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100165enum log_ctx_index {
166 LOG_CTX_GB_NSVC,
167 LOG_CTX_GB_BVC,
168 LOG_CTX_BSC_SUBSCR,
169 LOG_CTX_VLR_SUBSCR,
Oliver Smith210acc62019-09-12 17:13:34 +0200170 LOG_CTX_L1_SAPI,
Daniel Willmann751977b2020-12-02 18:59:44 +0100171 LOG_CTX_GB_NSE,
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100172 _LOG_CTX_COUNT
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +0100173};
174
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200175/*! Indexes to indicate objects that should be logged.
Neels Hofmeyr492e1802017-02-23 17:45:26 +0100176 * Array indexes to log_target->filter_data and bit indexes for
177 * log_target->filter_map. */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100178enum log_filter_index {
179 LOG_FLT_ALL,
180 LOG_FLT_GB_NSVC,
181 LOG_FLT_GB_BVC,
182 LOG_FLT_BSC_SUBSCR,
183 LOG_FLT_VLR_SUBSCR,
Oliver Smith210acc62019-09-12 17:13:34 +0200184 LOG_FLT_L1_SAPI,
Daniel Willmann751977b2020-12-02 18:59:44 +0100185 LOG_FLT_GB_NSE,
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100186 _LOG_FLT_COUNT
Neels Hofmeyr812ba6d2017-02-17 16:35:27 +0100187};
188
Daniel Willmannfd3478c2020-12-02 18:14:17 +0100189/*! Maximum number of logging contexts */
190#define LOG_MAX_CTX _LOG_CTX_COUNT
191/*! Maximum number of logging filters */
192#define LOG_MAX_FILTERS _LOG_FLT_COUNT
193
194/*! Log context information, passed to filter */
195struct log_context {
196 void *ctx[LOG_MAX_CTX+1];
197};
198
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200199/*! Compatibility with older libosmocore versions */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100200#define LOG_FILTER_ALL (1<<LOG_FLT_ALL)
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200201/*! Compatibility with older libosmocore versions */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100202#define GPRS_CTX_NSVC LOG_CTX_GB_NSVC
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200203/*! Compatibility with older libosmocore versions */
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100204#define GPRS_CTX_BVC LOG_CTX_GB_BVC
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200205/*! Indexes to indicate the object currently acted upon.
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +0100206 * Array indexes for the global \a log_context array. */
Neels Hofmeyr0d6420b2017-02-23 17:34:35 +0100207
Harald Welte3ae27582010-03-26 21:24:24 +0800208struct log_target;
209
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200210/*! Log filter function */
Harald Welte3ae27582010-03-26 21:24:24 +0800211typedef int log_filter(const struct log_context *ctx,
212 struct log_target *target);
213
Harald Weltefb84f322013-06-06 07:33:54 +0200214struct log_info;
215struct vty;
Harald Welteaa00f992016-12-02 15:30:02 +0100216struct gsmtap_inst;
Harald Weltefb84f322013-06-06 07:33:54 +0200217
218typedef void log_print_filters(struct vty *vty,
219 const struct log_info *info,
220 const struct log_target *tgt);
221
222typedef void log_save_filters(struct vty *vty,
223 const struct log_info *info,
224 const struct log_target *tgt);
225
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200226/*! Logging configuration, passed to \ref log_init */
Harald Welte3ae27582010-03-26 21:24:24 +0800227struct log_info {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200228 /* filter callback function */
Harald Welte3ae27582010-03-26 21:24:24 +0800229 log_filter *filter_fn;
230
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200231 /*! per-category information */
Holger Hans Peter Freyther06f64552012-09-11 10:31:29 +0200232 const struct log_info_cat *cat;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200233 /*! total number of categories */
Harald Welte3ae27582010-03-26 21:24:24 +0800234 unsigned int num_cat;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200235 /*! total number of user categories (not library) */
Harald Welteb43bc042011-06-27 10:29:17 +0200236 unsigned int num_cat_user;
Harald Weltefb84f322013-06-06 07:33:54 +0200237
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200238 /*! filter saving function */
Harald Weltefb84f322013-06-06 07:33:54 +0200239 log_save_filters *save_fn;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200240 /*! filter saving function */
Harald Weltefb84f322013-06-06 07:33:54 +0200241 log_print_filters *print_fn;
Harald Welte3ae27582010-03-26 21:24:24 +0800242};
243
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200244/*! Type of logging target */
Harald Welte28222962011-02-18 20:37:04 +0100245enum log_target_type {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200246 LOG_TGT_TYPE_VTY, /*!< VTY logging */
247 LOG_TGT_TYPE_SYSLOG, /*!< syslog based logging */
248 LOG_TGT_TYPE_FILE, /*!< text file logging */
249 LOG_TGT_TYPE_STDERR, /*!< stderr logging */
250 LOG_TGT_TYPE_STRRB, /*!< osmo_strrb-backed logging */
251 LOG_TGT_TYPE_GSMTAP, /*!< GSMTAP network logging */
Vadim Yanitskiye7bf4352020-09-09 03:36:48 +0700252 LOG_TGT_TYPE_SYSTEMD, /*!< systemd journal logging */
Harald Welte28222962011-02-18 20:37:04 +0100253};
254
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100255/*! Whether/how to log the source filename (and line number). */
256enum log_filename_type {
257 LOG_FILENAME_NONE,
258 LOG_FILENAME_PATH,
Neels Hofmeyr0e2a9432018-01-16 02:49:48 +0100259 LOG_FILENAME_BASENAME,
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100260};
261
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200262/*! Where on a log line source file and line should be logged. */
263enum log_filename_pos {
264 LOG_FILENAME_POS_HEADER_END,
265 LOG_FILENAME_POS_LINE_END,
266};
267
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200268/*! structure representing a logging target */
Harald Welte3ae27582010-03-26 21:24:24 +0800269struct log_target {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200270 struct llist_head entry; /*!< linked list */
Harald Welte3ae27582010-03-26 21:24:24 +0800271
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200272 /*! Internal data for filtering */
Harald Welte3ae27582010-03-26 21:24:24 +0800273 int filter_map;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200274 /*! Internal data for filtering */
Harald Welte3ae27582010-03-26 21:24:24 +0800275 void *filter_data[LOG_MAX_FILTERS+1];
276
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200277 /*! logging categories */
Harald Welteb43bc042011-06-27 10:29:17 +0200278 struct log_category *categories;
279
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200280 /*! global log level */
Harald Welte3ae27582010-03-26 21:24:24 +0800281 uint8_t loglevel;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200282 /*! should color be used when printing log messages? */
Harald Welte87dbca12011-07-16 11:57:53 +0200283 unsigned int use_color:1;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200284 /*! should log messages be prefixed with a timestamp? */
Harald Welte87dbca12011-07-16 11:57:53 +0200285 unsigned int print_timestamp:1;
Pau Espin Pedrol662d10d2021-02-18 18:19:23 +0100286 /*! should log messages be prefixed with the logger Thread ID? */
287 unsigned int print_tid:1;
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100288 /*! DEPRECATED: use print_filename2 instead. */
Holger Hans Peter Freytherdb153362012-09-11 11:24:51 +0200289 unsigned int print_filename:1;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200290 /*! should log messages be prefixed with a category name? */
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100291 unsigned int print_category:1;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200292 /*! should log messages be prefixed with an extended timestamp? */
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100293 unsigned int print_ext_timestamp:1;
Harald Welte3ae27582010-03-26 21:24:24 +0800294
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200295 /*! the type of this log taget */
Harald Welte28222962011-02-18 20:37:04 +0100296 enum log_target_type type;
297
Harald Welte3ae27582010-03-26 21:24:24 +0800298 union {
299 struct {
Harald Welteb72867f2020-09-26 21:45:16 +0200300 /* direct, blocking output via stdio */
Harald Welte3ae27582010-03-26 21:24:24 +0800301 FILE *out;
Harald Welte72d0c532010-08-25 19:24:00 +0200302 const char *fname;
Harald Welteb72867f2020-09-26 21:45:16 +0200303 /* indirect output via write_queue and osmo_select_main() */
304 struct osmo_wqueue *wqueue;
Harald Welte0083cd32010-08-25 14:55:44 +0200305 } tgt_file;
Harald Welte3ae27582010-03-26 21:24:24 +0800306
307 struct {
308 int priority;
Harald Welte28222962011-02-18 20:37:04 +0100309 int facility;
Harald Welte3ae27582010-03-26 21:24:24 +0800310 } tgt_syslog;
311
312 struct {
313 void *vty;
314 } tgt_vty;
Katerina Barone-Adesi3309a432013-02-21 05:16:29 +0000315
316 struct {
317 void *rb;
318 } tgt_rb;
Harald Welteaa00f992016-12-02 15:30:02 +0100319
320 struct {
321 struct gsmtap_inst *gsmtap_inst;
322 const char *ident;
323 const char *hostname;
324 } tgt_gsmtap;
Vadim Yanitskiye7bf4352020-09-09 03:36:48 +0700325
326 struct {
327 bool raw;
328 } sd_journal;
Harald Welte3ae27582010-03-26 21:24:24 +0800329 };
330
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200331 /*! call-back function to be called when the logging framework
Harald Welted7c0a372016-12-02 13:52:59 +0100332 * wants to log a fully formatted string
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100333 * \param[in] target logging target
Harald Welte18fc4652011-08-17 14:14:17 +0200334 * \param[in] level log level of currnet message
335 * \param[in] string the string that is to be written to the log
336 */
Harald Welte76e72ab2011-02-17 15:52:39 +0100337 void (*output) (struct log_target *target, unsigned int level,
338 const char *string);
Harald Welted7c0a372016-12-02 13:52:59 +0100339
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200340 /*! alternative call-back function to which the logging
Harald Welted7c0a372016-12-02 13:52:59 +0100341 * framework passes the unfortmatted input arguments,
342 * i.e. bypassing the internal string formatter
343 * \param[in] target logging target
344 * \param[in] subsys logging sub-system
345 * \param[in] level logging level
346 * \param[in] file soure code file name
347 * \param[in] line source code file line number
348 * \param[in] cont continuation of previous statement?
349 * \param[in] format format string
350 * \param[in] ap vararg list of printf arguments
351 */
352 void (*raw_output)(struct log_target *target, int subsys,
353 unsigned int level, const char *file, int line,
354 int cont, const char *format, va_list ap);
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100355
356 /* Should the log level be printed? */
357 bool print_level;
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100358 /* Should we print the subsys in hex like '<000b>'? */
359 bool print_category_hex;
360 /* Should we print the source file and line, and in which way? */
361 enum log_filename_type print_filename2;
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200362 /* Where on a log line to put the source file info. */
363 enum log_filename_pos print_filename_pos;
Harald Welte3ae27582010-03-26 21:24:24 +0800364};
365
366/* use the above macros */
Andreas Eversberg2d6563b2012-07-10 13:10:15 +0200367void logp2(int subsys, unsigned int level, const char *file,
Harald Welte3ae27582010-03-26 21:24:24 +0800368 int line, int cont, const char *format, ...)
369 __attribute__ ((format (printf, 6, 7)));
Harald Welteb43bc042011-06-27 10:29:17 +0200370int log_init(const struct log_info *inf, void *talloc_ctx);
Harald Welte69e6c3c2016-04-20 10:41:27 +0200371void log_fini(void);
Jacob Erlbeckde6dd722015-11-17 11:52:24 +0100372int log_check_level(int subsys, unsigned int level);
Harald Welte3ae27582010-03-26 21:24:24 +0800373
374/* context management */
375void log_reset_context(void);
376int log_set_context(uint8_t ctx, void *value);
377
378/* filter on the targets */
379void log_set_all_filter(struct log_target *target, int);
380
381void log_set_use_color(struct log_target *target, int);
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100382void log_set_print_extended_timestamp(struct log_target *target, int);
Harald Welte3ae27582010-03-26 21:24:24 +0800383void log_set_print_timestamp(struct log_target *target, int);
Pau Espin Pedrol662d10d2021-02-18 18:19:23 +0100384void log_set_print_tid(struct log_target *target, int);
Pau Espin Pedrol6e9dd022021-02-18 19:27:38 +0100385void log_set_print_filename(struct log_target *target, int) OSMO_DEPRECATED("Use log_set_print_filename2() instead");
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100386void log_set_print_filename2(struct log_target *target, enum log_filename_type lft);
Neels Hofmeyr77ae45d2018-08-27 20:32:36 +0200387void log_set_print_filename_pos(struct log_target *target, enum log_filename_pos pos);
Holger Hans Peter Freyther2d6ad132014-12-05 09:35:30 +0100388void log_set_print_category(struct log_target *target, int);
Neels Hofmeyrbd7bd392018-01-16 01:52:29 +0100389void log_set_print_category_hex(struct log_target *target, int);
Neels Hofmeyr886e5482018-01-16 01:49:37 +0100390void log_set_print_level(struct log_target *target, int);
Harald Welte3ae27582010-03-26 21:24:24 +0800391void log_set_log_level(struct log_target *target, int log_level);
392void log_parse_category_mask(struct log_target *target, const char* mask);
Harald Welteaa00f992016-12-02 15:30:02 +0100393const char* log_category_name(int subsys);
Max15b6d412017-07-06 16:57:15 +0200394int log_parse_level(const char *lvl) OSMO_DEPRECATED_OUTSIDE_LIBOSMOCORE;
395const char *log_level_str(unsigned int lvl) OSMO_DEPRECATED_OUTSIDE_LIBOSMOCORE;
Harald Welte3ae27582010-03-26 21:24:24 +0800396int log_parse_category(const char *category);
397void log_set_category_filter(struct log_target *target, int category,
398 int enable, int level);
399
400/* management of the targets */
401struct log_target *log_target_create(void);
Harald Welte72d0c532010-08-25 19:24:00 +0200402void log_target_destroy(struct log_target *target);
Harald Welte3ae27582010-03-26 21:24:24 +0800403struct log_target *log_target_create_stderr(void);
Harald Welte72d0c532010-08-25 19:24:00 +0200404struct log_target *log_target_create_file(const char *fname);
Harald Welte46cfd772011-02-17 15:56:56 +0100405struct log_target *log_target_create_syslog(const char *ident, int option,
406 int facility);
Harald Welteaa00f992016-12-02 15:30:02 +0100407struct log_target *log_target_create_gsmtap(const char *host, uint16_t port,
408 const char *ident,
409 bool ofd_wq_mode,
410 bool add_sink);
Vadim Yanitskiye7bf4352020-09-09 03:36:48 +0700411struct log_target *log_target_create_systemd(bool raw);
412void log_target_systemd_set_raw(struct log_target *target, bool raw);
Harald Welte72d0c532010-08-25 19:24:00 +0200413int log_target_file_reopen(struct log_target *tgt);
Harald Welteb72867f2020-09-26 21:45:16 +0200414int log_target_file_switch_to_stream(struct log_target *tgt);
415int log_target_file_switch_to_wqueue(struct log_target *tgt);
Harald Welte4de854d2013-03-18 19:01:40 +0100416int log_targets_reopen(void);
Harald Welte72d0c532010-08-25 19:24:00 +0200417
Harald Welte3ae27582010-03-26 21:24:24 +0800418void log_add_target(struct log_target *target);
419void log_del_target(struct log_target *target);
420
Harald Welte28222962011-02-18 20:37:04 +0100421struct log_target *log_target_find(int type, const char *fname);
Harald Welte28222962011-02-18 20:37:04 +0100422
Pau Espin Pedrold12f6982019-09-17 18:38:58 +0200423void log_enable_multithread(void);
424
425void log_tgt_mutex_lock_impl(void);
426void log_tgt_mutex_unlock_impl(void);
427#define LOG_MTX_DEBUG 0
428#if LOG_MTX_DEBUG
429 #include <pthread.h>
430 #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)
431 #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)
432#else
433 #define log_tgt_mutex_lock() log_tgt_mutex_lock_impl()
434 #define log_tgt_mutex_unlock() log_tgt_mutex_unlock_impl()
435#endif
436
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200437/*! @} */