2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2006, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
21 * \brief Asterisk Logger
25 * \author Mark Spencer <markster@digium.com>
28 /*! \li \ref logger.c uses the configuration file \ref logger.conf
29 * \addtogroup configuration_file Configuration Files
33 * \page logger.conf logger.conf
34 * \verbinclude logger.conf.sample
38 <support_level>core</support_level>
43 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
45 /* When we include logger.h again it will trample on some stuff in syslog.h, but
46 * nothing we care about in here. */
49 #include "asterisk/_private.h"
50 #include "asterisk/paths.h" /* use ast_config_AST_LOG_DIR */
51 #include "asterisk/logger.h"
52 #include "asterisk/lock.h"
53 #include "asterisk/channel.h"
54 #include "asterisk/config.h"
55 #include "asterisk/term.h"
56 #include "asterisk/cli.h"
57 #include "asterisk/utils.h"
58 #include "asterisk/manager.h"
59 #include "asterisk/astobj2.h"
60 #include "asterisk/threadstorage.h"
61 #include "asterisk/strings.h"
62 #include "asterisk/pbx.h"
63 #include "asterisk/app.h"
64 #include "asterisk/syslog.h"
65 #include "asterisk/buildinfo.h"
66 #include "asterisk/ast_version.h"
74 #define MAX_BACKTRACE_FRAMES 20
75 # if defined(HAVE_DLADDR) && defined(HAVE_BFD) && defined(BETTER_BACKTRACES)
84 static char dateformat[256] = "%b %e %T"; /* Original Asterisk Format */
86 static char queue_log_name[256] = QUEUELOG;
87 static char exec_after_rotate[256] = "";
89 static int filesize_reload_needed;
90 static unsigned int global_logmask = 0xFFFF;
91 static int queuelog_init;
92 static int logger_initialized;
93 static volatile int next_unique_callid; /* Used to assign unique call_ids to calls */
94 static int display_callids;
95 static void unique_callid_cleanup(void *data);
98 int call_identifier; /* Numerical value of the call displayed in the logs */
101 AST_THREADSTORAGE_CUSTOM(unique_callid, NULL, unique_callid_cleanup);
103 static enum rotatestrategy {
104 NONE = 0, /* Do not rotate log files at all, instead rely on external mechanisms */
105 SEQUENTIAL = 1 << 0, /* Original method - create a new file, in order */
106 ROTATE = 1 << 1, /* Rotate all files, such that the oldest file has the highest suffix */
107 TIMESTAMP = 1 << 2, /* Append the epoch timestamp onto the end of the archived file */
108 } rotatestrategy = SEQUENTIAL;
111 unsigned int queue_log:1;
112 unsigned int queue_log_to_file:1;
113 unsigned int queue_adaptive_realtime:1;
116 static char hostname[MAXHOSTNAMELEN];
125 /*! What to log to this channel */
126 unsigned int logmask;
127 /*! If this channel is disabled or not */
129 /*! syslog facility */
131 /*! Verbosity level */
133 /*! Type of log channel */
135 /*! logfile logging file pointer */
138 char filename[PATH_MAX];
139 /*! field for linking to list */
140 AST_LIST_ENTRY(logchannel) list;
141 /*! Line number from configuration file */
143 /*! Components (levels) from last config load */
147 static AST_RWLIST_HEAD_STATIC(logchannels, logchannel);
155 enum logmsgtypes type;
159 struct ast_callid *callid;
160 AST_DECLARE_STRING_FIELDS(
161 AST_STRING_FIELD(date);
162 AST_STRING_FIELD(file);
163 AST_STRING_FIELD(function);
164 AST_STRING_FIELD(message);
165 AST_STRING_FIELD(level_name);
167 AST_LIST_ENTRY(logmsg) list;
170 static void logmsg_free(struct logmsg *msg)
173 ast_callid_unref(msg->callid);
178 static AST_LIST_HEAD_STATIC(logmsgs, logmsg);
179 static pthread_t logthread = AST_PTHREADT_NULL;
180 static ast_cond_t logcond;
181 static int close_logger_thread = 0;
185 /*! \brief Logging channels used in the Asterisk logging system
187 * The first 16 levels are reserved for system usage, and the remaining
188 * levels are reserved for usage by dynamic levels registered via
189 * ast_logger_register_level.
192 /* Modifications to this array are protected by the rwlock in the
196 static char *levels[NUMLOGLEVELS] = {
198 "---EVENT---", /* no longer used */
206 /*! \brief Colors used in the console for logging */
207 static const int colors[NUMLOGLEVELS] = {
209 COLOR_BRBLUE, /* no longer used */
242 AST_THREADSTORAGE(verbose_buf);
243 #define VERBOSE_BUF_INIT_SIZE 256
245 AST_THREADSTORAGE(log_buf);
246 #define LOG_BUF_INIT_SIZE 256
248 static void logger_queue_init(void);
250 static unsigned int make_components(const char *s, int lineno, int *verbosity)
253 unsigned int res = 0;
254 char *stringp = ast_strdupa(s);
259 while ((w = strsep(&stringp, ","))) {
260 w = ast_skip_blanks(w);
262 if (!strcmp(w, "*")) {
265 } else if (!strncasecmp(w, "verbose(", 8) && sscanf(w + 8, "%d)", verbosity) == 1) {
266 res |= (1 << __LOG_VERBOSE);
268 } else for (x = 0; x < ARRAY_LEN(levels); x++) {
269 if (levels[x] && !strcasecmp(w, levels[x])) {
279 static struct logchannel *make_logchannel(const char *channel, const char *components, int lineno)
281 struct logchannel *chan;
284 struct timeval now = ast_tvnow();
285 char datestring[256];
287 if (ast_strlen_zero(channel) || !(chan = ast_calloc(1, sizeof(*chan) + strlen(components) + 1)))
290 strcpy(chan->components, components);
291 chan->lineno = lineno;
293 if (!strcasecmp(channel, "console")) {
294 chan->type = LOGTYPE_CONSOLE;
295 } else if (!strncasecmp(channel, "syslog", 6)) {
298 * syslog.facility => level,level,level
300 facility = strchr(channel, '.');
301 if (!facility++ || !facility) {
305 chan->facility = ast_syslog_facility(facility);
307 if (chan->facility < 0) {
308 fprintf(stderr, "Logger Warning: bad syslog facility in logger.conf\n");
313 chan->type = LOGTYPE_SYSLOG;
314 ast_copy_string(chan->filename, channel, sizeof(chan->filename));
315 openlog("asterisk", LOG_PID, chan->facility);
317 if (!ast_strlen_zero(hostname)) {
318 snprintf(chan->filename, sizeof(chan->filename), "%s/%s.%s",
319 channel[0] != '/' ? ast_config_AST_LOG_DIR : "", channel, hostname);
321 snprintf(chan->filename, sizeof(chan->filename), "%s/%s",
322 channel[0] != '/' ? ast_config_AST_LOG_DIR : "", channel);
324 if (!(chan->fileptr = fopen(chan->filename, "a"))) {
325 /* Can't do real logging here since we're called with a lock
326 * so log to any attached consoles */
327 ast_console_puts_mutable("ERROR: Unable to open log file '", __LOG_ERROR);
328 ast_console_puts_mutable(chan->filename, __LOG_ERROR);
329 ast_console_puts_mutable("': ", __LOG_ERROR);
330 ast_console_puts_mutable(strerror(errno), __LOG_ERROR);
331 ast_console_puts_mutable("'\n", __LOG_ERROR);
335 /* Create our date/time */
336 ast_localtime(&now, &tm, NULL);
337 ast_strftime(datestring, sizeof(datestring), dateformat, &tm);
339 fprintf(chan->fileptr, "[%s] Asterisk %s built by %s @ %s on a %s running %s on %s\n",
340 datestring, ast_get_version(), ast_build_user, ast_build_hostname,
341 ast_build_machine, ast_build_os, ast_build_date);
342 fflush(chan->fileptr);
344 chan->type = LOGTYPE_FILE;
346 chan->logmask = make_components(chan->components, lineno, &chan->verbosity);
351 static void init_logger_chain(int locked, const char *altconf)
353 struct logchannel *chan;
354 struct ast_config *cfg;
355 struct ast_variable *var;
357 struct ast_flags config_flags = { 0 };
361 if (!(cfg = ast_config_load2(S_OR(altconf, "logger.conf"), "logger", config_flags)) || cfg == CONFIG_STATUS_FILEINVALID) {
365 /* delete our list of log channels */
367 AST_RWLIST_WRLOCK(&logchannels);
369 while ((chan = AST_RWLIST_REMOVE_HEAD(&logchannels, list))) {
374 AST_RWLIST_UNLOCK(&logchannels);
381 /* If no config file, we're fine, set default options. */
384 fprintf(stderr, "Unable to open logger.conf: %s; default settings will be used.\n", strerror(errno));
386 fprintf(stderr, "Errors detected in logger.conf: see above; default settings will be used.\n");
388 if (!(chan = ast_calloc(1, sizeof(*chan)))) {
391 chan->type = LOGTYPE_CONSOLE;
392 chan->logmask = __LOG_WARNING | __LOG_NOTICE | __LOG_ERROR;
394 AST_RWLIST_WRLOCK(&logchannels);
396 AST_RWLIST_INSERT_HEAD(&logchannels, chan, list);
397 global_logmask |= chan->logmask;
399 AST_RWLIST_UNLOCK(&logchannels);
404 if ((s = ast_variable_retrieve(cfg, "general", "appendhostname"))) {
406 if (gethostname(hostname, sizeof(hostname) - 1)) {
407 ast_copy_string(hostname, "unknown", sizeof(hostname));
408 fprintf(stderr, "What box has no hostname???\n");
414 if ((s = ast_variable_retrieve(cfg, "general", "display_callids"))) {
415 display_callids = ast_true(s);
417 if ((s = ast_variable_retrieve(cfg, "general", "dateformat")))
418 ast_copy_string(dateformat, s, sizeof(dateformat));
420 ast_copy_string(dateformat, "%b %e %T", sizeof(dateformat));
421 if ((s = ast_variable_retrieve(cfg, "general", "queue_log"))) {
422 logfiles.queue_log = ast_true(s);
424 if ((s = ast_variable_retrieve(cfg, "general", "queue_log_to_file"))) {
425 logfiles.queue_log_to_file = ast_true(s);
427 if ((s = ast_variable_retrieve(cfg, "general", "queue_log_name"))) {
428 ast_copy_string(queue_log_name, s, sizeof(queue_log_name));
430 if ((s = ast_variable_retrieve(cfg, "general", "exec_after_rotate"))) {
431 ast_copy_string(exec_after_rotate, s, sizeof(exec_after_rotate));
433 if ((s = ast_variable_retrieve(cfg, "general", "rotatestrategy"))) {
434 if (strcasecmp(s, "timestamp") == 0) {
435 rotatestrategy = TIMESTAMP;
436 } else if (strcasecmp(s, "rotate") == 0) {
437 rotatestrategy = ROTATE;
438 } else if (strcasecmp(s, "sequential") == 0) {
439 rotatestrategy = SEQUENTIAL;
440 } else if (strcasecmp(s, "none") == 0) {
441 rotatestrategy = NONE;
443 fprintf(stderr, "Unknown rotatestrategy: %s\n", s);
446 if ((s = ast_variable_retrieve(cfg, "general", "rotatetimestamp"))) {
447 rotatestrategy = ast_true(s) ? TIMESTAMP : SEQUENTIAL;
448 fprintf(stderr, "rotatetimestamp option has been deprecated. Please use rotatestrategy instead.\n");
453 AST_RWLIST_WRLOCK(&logchannels);
455 var = ast_variable_browse(cfg, "logfiles");
456 for (; var; var = var->next) {
457 if (!(chan = make_logchannel(var->name, var->value, var->lineno))) {
458 /* Print error message directly to the consoles since the lock is held
459 * and we don't want to unlock with the list partially built */
460 ast_console_puts_mutable("ERROR: Unable to create log channel '", __LOG_ERROR);
461 ast_console_puts_mutable(var->name, __LOG_ERROR);
462 ast_console_puts_mutable("'\n", __LOG_ERROR);
465 AST_RWLIST_INSERT_HEAD(&logchannels, chan, list);
466 global_logmask |= chan->logmask;
475 AST_RWLIST_UNLOCK(&logchannels);
478 ast_config_destroy(cfg);
481 void ast_child_verbose(int level, const char *fmt, ...)
483 char *msg = NULL, *emsg = NULL, *sptr, *eptr;
489 if ((size = vsnprintf(msg, 0, fmt, ap)) < 0) {
496 if (!(msg = ast_malloc(size + 1))) {
501 vsnprintf(msg, size + 1, fmt, aq);
504 if (!(emsg = ast_malloc(size * 2 + 1))) {
509 for (sptr = msg, eptr = emsg; ; sptr++) {
520 fprintf(stdout, "verbose \"%s\" %d\n", emsg, level);
525 void ast_queue_log(const char *queuename, const char *callid, const char *agent, const char *event, const char *fmt, ...)
534 if (!logger_initialized) {
535 /* You are too early. We are not open yet! */
538 if (!queuelog_init) {
539 AST_RWLIST_WRLOCK(&logchannels);
540 if (!queuelog_init) {
542 * We have delayed initializing the queue logging system so
543 * preloaded realtime modules can get up. We must initialize
544 * now since someone is trying to log something.
548 AST_RWLIST_UNLOCK(&logchannels);
549 ast_queue_log("NONE", "NONE", "NONE", "QUEUESTART", "%s", "");
551 AST_RWLIST_UNLOCK(&logchannels);
555 if (ast_check_realtime("queue_log")) {
557 ast_localtime(&tv, &tm, NULL);
558 ast_strftime(time_str, sizeof(time_str), "%F %T.%6q", &tm);
560 vsnprintf(qlog_msg, sizeof(qlog_msg), fmt, ap);
562 if (logfiles.queue_adaptive_realtime) {
563 AST_DECLARE_APP_ARGS(args,
564 AST_APP_ARG(data)[5];
566 AST_NONSTANDARD_APP_ARGS(args, qlog_msg, '|');
567 /* Ensure fields are large enough to receive data */
568 ast_realtime_require_field("queue_log",
569 "data1", RQ_CHAR, strlen(S_OR(args.data[0], "")),
570 "data2", RQ_CHAR, strlen(S_OR(args.data[1], "")),
571 "data3", RQ_CHAR, strlen(S_OR(args.data[2], "")),
572 "data4", RQ_CHAR, strlen(S_OR(args.data[3], "")),
573 "data5", RQ_CHAR, strlen(S_OR(args.data[4], "")),
577 ast_store_realtime("queue_log", "time", time_str,
579 "queuename", queuename,
582 "data1", S_OR(args.data[0], ""),
583 "data2", S_OR(args.data[1], ""),
584 "data3", S_OR(args.data[2], ""),
585 "data4", S_OR(args.data[3], ""),
586 "data5", S_OR(args.data[4], ""),
589 ast_store_realtime("queue_log", "time", time_str,
591 "queuename", queuename,
598 if (!logfiles.queue_log_to_file) {
605 qlog_len = snprintf(qlog_msg, sizeof(qlog_msg), "%ld|%s|%s|%s|%s|", (long)time(NULL), callid, queuename, agent, event);
606 vsnprintf(qlog_msg + qlog_len, sizeof(qlog_msg) - qlog_len, fmt, ap);
608 AST_RWLIST_RDLOCK(&logchannels);
610 fprintf(qlog, "%s\n", qlog_msg);
613 AST_RWLIST_UNLOCK(&logchannels);
617 static int rotate_file(const char *filename)
621 int x, y, which, found, res = 0, fd;
622 char *suffixes[4] = { "", ".gz", ".bz2", ".Z" };
624 switch (rotatestrategy) {
630 snprintf(new, sizeof(new), "%s.%d", filename, x);
631 fd = open(new, O_RDONLY);
637 if (rename(filename, new)) {
638 fprintf(stderr, "Unable to rename file '%s' to '%s'\n", filename, new);
645 snprintf(new, sizeof(new), "%s.%ld", filename, (long)time(NULL));
646 if (rename(filename, new)) {
647 fprintf(stderr, "Unable to rename file '%s' to '%s'\n", filename, new);
654 /* Find the next empty slot, including a possible suffix */
657 for (which = 0; which < ARRAY_LEN(suffixes); which++) {
658 snprintf(new, sizeof(new), "%s.%d%s", filename, x, suffixes[which]);
659 fd = open(new, O_RDONLY);
671 /* Found an empty slot */
672 for (y = x; y > 0; y--) {
673 for (which = 0; which < ARRAY_LEN(suffixes); which++) {
674 snprintf(old, sizeof(old), "%s.%d%s", filename, y - 1, suffixes[which]);
675 fd = open(old, O_RDONLY);
677 /* Found the right suffix */
679 snprintf(new, sizeof(new), "%s.%d%s", filename, y, suffixes[which]);
680 if (rename(old, new)) {
681 fprintf(stderr, "Unable to rename file '%s' to '%s'\n", old, new);
689 /* Finally, rename the current file */
690 snprintf(new, sizeof(new), "%s.0", filename);
691 if (rename(filename, new)) {
692 fprintf(stderr, "Unable to rename file '%s' to '%s'\n", filename, new);
699 if (!ast_strlen_zero(exec_after_rotate)) {
700 struct ast_channel *c = ast_dummy_channel_alloc();
703 pbx_builtin_setvar_helper(c, "filename", filename);
704 pbx_substitute_variables_helper(c, exec_after_rotate, buf, sizeof(buf));
706 c = ast_channel_unref(c);
708 if (ast_safe_system(buf) == -1) {
709 ast_log(LOG_WARNING, "error executing '%s'\n", buf);
717 * \brief Start the realtime queue logging if configured.
719 * \retval TRUE if not to open queue log file.
721 static int logger_queue_rt_start(void)
723 if (ast_check_realtime("queue_log")) {
724 if (!ast_realtime_require_field("queue_log",
725 "time", RQ_DATETIME, 26,
726 "data1", RQ_CHAR, 20,
727 "data2", RQ_CHAR, 20,
728 "data3", RQ_CHAR, 20,
729 "data4", RQ_CHAR, 20,
730 "data5", RQ_CHAR, 20,
732 logfiles.queue_adaptive_realtime = 1;
734 logfiles.queue_adaptive_realtime = 0;
737 if (!logfiles.queue_log_to_file) {
738 /* Don't open the log file. */
747 * \brief Rotate the queue log file and restart.
749 * \param queue_rotate Log queue rotation mode.
751 * \note Assumes logchannels is write locked on entry.
753 * \retval 0 on success.
754 * \retval -1 on error.
756 static int logger_queue_restart(int queue_rotate)
759 char qfname[PATH_MAX];
761 if (logger_queue_rt_start()) {
765 snprintf(qfname, sizeof(qfname), "%s/%s", ast_config_AST_LOG_DIR, queue_log_name);
767 /* Just in case it was still open. */
775 /* Open the log file. */
776 qlog = fopen(qfname, "a");
778 ast_log(LOG_ERROR, "Unable to create queue log: %s\n", strerror(errno));
784 static int reload_logger(int rotate, const char *altconf)
786 int queue_rotate = rotate;
787 struct logchannel *f;
790 AST_RWLIST_WRLOCK(&logchannels);
794 /* Check filesize - this one typically doesn't need an auto-rotate */
795 if (ftello(qlog) > 0x40000000) { /* Arbitrarily, 1 GB */
809 ast_mkdir(ast_config_AST_LOG_DIR, 0777);
811 AST_RWLIST_TRAVERSE(&logchannels, f, list) {
813 f->disabled = 0; /* Re-enable logging at reload */
815 <managerEventInstance>
816 <synopsis>Raised when a logging channel is re-enabled after a reload operation.</synopsis>
818 <parameter name="Channel">
819 <para>The name of the logging channel.</para>
822 </managerEventInstance>
824 manager_event(EVENT_FLAG_SYSTEM, "LogChannel", "Channel: %s\r\nEnabled: Yes\r\n", f->filename);
826 if (f->fileptr && (f->fileptr != stdout) && (f->fileptr != stderr)) {
828 if (rotatestrategy != NONE && ftello(f->fileptr) > 0x40000000) { /* Arbitrarily, 1 GB */
829 /* Be more proactive about rotating massive log files */
832 fclose(f->fileptr); /* Close file */
834 if (rotate || rotate_this) {
835 rotate_file(f->filename);
840 filesize_reload_needed = 0;
842 init_logger_chain(1 /* locked */, altconf);
844 ast_unload_realtime("queue_log");
845 if (logfiles.queue_log) {
846 res = logger_queue_restart(queue_rotate);
847 AST_RWLIST_UNLOCK(&logchannels);
848 ast_queue_log("NONE", "NONE", "NONE", "CONFIGRELOAD", "%s", "");
849 ast_verb(1, "Asterisk Queue Logger restarted\n");
851 AST_RWLIST_UNLOCK(&logchannels);
857 /*! \brief Reload the logger module without rotating log files (also used from loader.c during
858 a full Asterisk reload) */
859 int logger_reload(void)
861 if (reload_logger(0, NULL)) {
862 return RESULT_FAILURE;
864 return RESULT_SUCCESS;
867 static char *handle_logger_reload(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
871 e->command = "logger reload";
873 "Usage: logger reload [<alt-conf>]\n"
874 " Reloads the logger subsystem state. Use after restarting syslogd(8) if you are using syslog logging.\n";
879 if (reload_logger(0, a->argc == 3 ? a->argv[2] : NULL)) {
880 ast_cli(a->fd, "Failed to reload the logger\n");
886 static char *handle_logger_rotate(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
890 e->command = "logger rotate";
892 "Usage: logger rotate\n"
893 " Rotates and Reopens the log files.\n";
898 if (reload_logger(1, NULL)) {
899 ast_cli(a->fd, "Failed to reload the logger and rotate log files\n");
905 static char *handle_logger_set_level(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
913 e->command = "logger set level {DEBUG|NOTICE|WARNING|ERROR|VERBOSE|DTMF} {on|off}";
915 "Usage: logger set level {DEBUG|NOTICE|WARNING|ERROR|VERBOSE|DTMF} {on|off}\n"
916 " Set a specific log level to enabled/disabled for this console.\n";
923 return CLI_SHOWUSAGE;
925 AST_RWLIST_WRLOCK(&logchannels);
927 for (x = 0; x < ARRAY_LEN(levels); x++) {
928 if (levels[x] && !strcasecmp(a->argv[3], levels[x])) {
934 AST_RWLIST_UNLOCK(&logchannels);
936 state = ast_true(a->argv[4]) ? 1 : 0;
939 ast_console_toggle_loglevel(a->fd, level, state);
940 ast_cli(a->fd, "Logger status for '%s' has been set to '%s'.\n", levels[level], state ? "on" : "off");
942 return CLI_SHOWUSAGE;
947 /*! \brief CLI command to show logging system configuration */
948 static char *handle_logger_show_channels(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
950 #define FORMATL "%-35.35s %-8.8s %-9.9s "
951 struct logchannel *chan;
954 e->command = "logger show channels";
956 "Usage: logger show channels\n"
957 " List configured logger channels.\n";
962 ast_cli(a->fd, FORMATL, "Channel", "Type", "Status");
963 ast_cli(a->fd, "Configuration\n");
964 ast_cli(a->fd, FORMATL, "-------", "----", "------");
965 ast_cli(a->fd, "-------------\n");
966 AST_RWLIST_RDLOCK(&logchannels);
967 AST_RWLIST_TRAVERSE(&logchannels, chan, list) {
970 ast_cli(a->fd, FORMATL, chan->filename, chan->type == LOGTYPE_CONSOLE ? "Console" : (chan->type == LOGTYPE_SYSLOG ? "Syslog" : "File"),
971 chan->disabled ? "Disabled" : "Enabled");
972 ast_cli(a->fd, " - ");
973 for (level = 0; level < ARRAY_LEN(levels); level++) {
974 if ((chan->logmask & (1 << level)) && levels[level]) {
975 ast_cli(a->fd, "%s ", levels[level]);
978 ast_cli(a->fd, "\n");
980 AST_RWLIST_UNLOCK(&logchannels);
981 ast_cli(a->fd, "\n");
987 void (*verboser)(const char *string);
988 AST_LIST_ENTRY(verb) list;
991 static AST_RWLIST_HEAD_STATIC(verbosers, verb);
993 static struct ast_cli_entry cli_logger[] = {
994 AST_CLI_DEFINE(handle_logger_show_channels, "List configured log channels"),
995 AST_CLI_DEFINE(handle_logger_reload, "Reopens the log files"),
996 AST_CLI_DEFINE(handle_logger_rotate, "Rotates and reopens the log files"),
997 AST_CLI_DEFINE(handle_logger_set_level, "Enables/Disables a specific logging level for this console")
1000 static void _handle_SIGXFSZ(int sig)
1002 /* Indicate need to reload */
1003 filesize_reload_needed = 1;
1006 static struct sigaction handle_SIGXFSZ = {
1007 .sa_handler = _handle_SIGXFSZ,
1008 .sa_flags = SA_RESTART,
1011 static void ast_log_vsyslog(struct logmsg *msg)
1014 int syslog_level = ast_syslog_priority_from_loglevel(msg->level);
1016 if (syslog_level < 0) {
1017 /* we are locked here, so cannot ast_log() */
1018 fprintf(stderr, "ast_log_vsyslog called with bogus level: %d\n", msg->level);
1022 snprintf(buf, sizeof(buf), "%s[%d]: %s:%d in %s: %s",
1023 levels[msg->level], msg->lwp, msg->file, msg->line, msg->function, msg->message);
1025 term_strip(buf, buf, strlen(buf) + 1);
1026 syslog(syslog_level, "%s", buf);
1029 /* These gymnastics are due to platforms which designate char as unsigned by
1030 * default. Level is the negative character -- offset by 1, because \0 is the
1032 #define VERBOSE_MAGIC2LEVEL(x) (((char) -*(signed char *) (x)) - 1)
1033 #define VERBOSE_HASMAGIC(x) (*(signed char *) (x) < 0)
1035 /*! \brief Print a normal log message to the channels */
1036 static void logger_print_normal(struct logmsg *logmsg)
1038 struct logchannel *chan = NULL;
1040 struct verb *v = NULL;
1043 if (logmsg->level == __LOG_VERBOSE) {
1044 char *tmpmsg = ast_strdupa(logmsg->message + 1);
1045 level = VERBOSE_MAGIC2LEVEL(logmsg->message);
1046 /* Iterate through the list of verbosers and pass them the log message string */
1047 AST_RWLIST_RDLOCK(&verbosers);
1048 AST_RWLIST_TRAVERSE(&verbosers, v, list)
1049 v->verboser(logmsg->message);
1050 AST_RWLIST_UNLOCK(&verbosers);
1051 ast_string_field_set(logmsg, message, tmpmsg);
1054 AST_RWLIST_RDLOCK(&logchannels);
1056 if (!AST_RWLIST_EMPTY(&logchannels)) {
1057 AST_RWLIST_TRAVERSE(&logchannels, chan, list) {
1058 char call_identifier_str[13];
1060 if (logmsg->callid) {
1061 snprintf(call_identifier_str, sizeof(call_identifier_str), "[C-%08x]", logmsg->callid->call_identifier);
1063 call_identifier_str[0] = '\0';
1067 /* If the channel is disabled, then move on to the next one */
1068 if (chan->disabled) {
1071 if (logmsg->level == __LOG_VERBOSE && level > chan->verbosity) {
1075 /* Check syslog channels */
1076 if (chan->type == LOGTYPE_SYSLOG && (chan->logmask & (1 << logmsg->level))) {
1077 ast_log_vsyslog(logmsg);
1078 /* Console channels */
1079 } else if (chan->type == LOGTYPE_CONSOLE && (chan->logmask & (1 << logmsg->level))) {
1081 char tmp1[80], tmp2[80], tmp3[80], tmp4[80];
1083 /* If the level is verbose, then skip it */
1084 if (logmsg->level == __LOG_VERBOSE)
1087 /* Turn the numerical line number into a string */
1088 snprintf(linestr, sizeof(linestr), "%d", logmsg->line);
1089 /* Build string to print out */
1090 snprintf(buf, sizeof(buf), "[%s] %s[%d]%s: %s:%s %s: %s",
1092 term_color(tmp1, logmsg->level_name, colors[logmsg->level], 0, sizeof(tmp1)),
1094 call_identifier_str,
1095 term_color(tmp2, logmsg->file, COLOR_BRWHITE, 0, sizeof(tmp2)),
1096 term_color(tmp3, linestr, COLOR_BRWHITE, 0, sizeof(tmp3)),
1097 term_color(tmp4, logmsg->function, COLOR_BRWHITE, 0, sizeof(tmp4)),
1100 ast_console_puts_mutable(buf, logmsg->level);
1102 } else if (chan->type == LOGTYPE_FILE && (chan->logmask & (1 << logmsg->level))) {
1105 /* If no file pointer exists, skip it */
1106 if (!chan->fileptr) {
1110 /* Print out to the file */
1111 res = fprintf(chan->fileptr, "[%s] %s[%d]%s %s: %s",
1112 logmsg->date, logmsg->level_name, logmsg->lwp, call_identifier_str,
1113 logmsg->file, term_strip(buf, logmsg->message, BUFSIZ));
1114 if (res <= 0 && !ast_strlen_zero(logmsg->message)) {
1115 fprintf(stderr, "**** Asterisk Logging Error: ***********\n");
1116 if (errno == ENOMEM || errno == ENOSPC)
1117 fprintf(stderr, "Asterisk logging error: Out of disk space, can't log to log file %s\n", chan->filename);
1119 fprintf(stderr, "Logger Warning: Unable to write to log file '%s': %s (disabled)\n", chan->filename, strerror(errno));
1121 <managerEventInstance>
1122 <synopsis>Raised when a logging channel is disabled.</synopsis>
1124 <parameter name="Channel">
1125 <para>The name of the logging channel.</para>
1128 </managerEventInstance>
1130 manager_event(EVENT_FLAG_SYSTEM, "LogChannel", "Channel: %s\r\nEnabled: No\r\nReason: %d - %s\r\n", chan->filename, errno, strerror(errno));
1132 } else if (res > 0) {
1133 fflush(chan->fileptr);
1137 } else if (logmsg->level != __LOG_VERBOSE) {
1138 fputs(logmsg->message, stdout);
1141 AST_RWLIST_UNLOCK(&logchannels);
1143 /* If we need to reload because of the file size, then do so */
1144 if (filesize_reload_needed) {
1145 reload_logger(-1, NULL);
1146 ast_verb(1, "Rotated Logs Per SIGXFSZ (Exceeded file size limit)\n");
1152 /*! \brief Actual logging thread */
1153 static void *logger_thread(void *data)
1155 struct logmsg *next = NULL, *msg = NULL;
1158 /* We lock the message list, and see if any message exists... if not we wait on the condition to be signalled */
1159 AST_LIST_LOCK(&logmsgs);
1160 if (AST_LIST_EMPTY(&logmsgs)) {
1161 if (close_logger_thread) {
1162 AST_LIST_UNLOCK(&logmsgs);
1165 ast_cond_wait(&logcond, &logmsgs.lock);
1168 next = AST_LIST_FIRST(&logmsgs);
1169 AST_LIST_HEAD_INIT_NOLOCK(&logmsgs);
1170 AST_LIST_UNLOCK(&logmsgs);
1172 /* Otherwise go through and process each message in the order added */
1173 while ((msg = next)) {
1174 /* Get the next entry now so that we can free our current structure later */
1175 next = AST_LIST_NEXT(msg, list);
1177 /* Depending on the type, send it to the proper function */
1178 logger_print_normal(msg);
1180 /* Free the data since we are done */
1184 /* If we should stop, then stop */
1185 if (close_logger_thread)
1194 * \brief Initialize the logger queue.
1196 * \note Assumes logchannels is write locked on entry.
1200 static void logger_queue_init(void)
1202 ast_unload_realtime("queue_log");
1203 if (logfiles.queue_log) {
1204 char qfname[PATH_MAX];
1206 if (logger_queue_rt_start()) {
1210 /* Open the log file. */
1211 snprintf(qfname, sizeof(qfname), "%s/%s", ast_config_AST_LOG_DIR,
1214 /* Just in case it was already open. */
1217 qlog = fopen(qfname, "a");
1219 ast_log(LOG_ERROR, "Unable to create queue log: %s\n", strerror(errno));
1224 int init_logger(void)
1226 /* auto rotate if sig SIGXFSZ comes a-knockin */
1227 sigaction(SIGXFSZ, &handle_SIGXFSZ, NULL);
1229 /* Re-initialize the logmsgs mutex. The recursive mutex can be accessed prior
1230 * to Asterisk being forked into the background, which can cause the thread
1231 * ID tracked by the underlying pthread mutex to be different than the ID of
1232 * the thread that unlocks the mutex. Since init_logger is called after the
1233 * fork, it is safe to initialize the mutex here for future accesses.
1235 ast_mutex_destroy(&logmsgs.lock);
1236 ast_mutex_init(&logmsgs.lock);
1237 ast_cond_init(&logcond, NULL);
1239 /* start logger thread */
1240 if (ast_pthread_create(&logthread, NULL, logger_thread, NULL) < 0) {
1241 ast_cond_destroy(&logcond);
1245 /* register the logger cli commands */
1246 ast_cli_register_multiple(cli_logger, ARRAY_LEN(cli_logger));
1248 ast_mkdir(ast_config_AST_LOG_DIR, 0777);
1250 /* create log channels */
1251 init_logger_chain(0 /* locked */, NULL);
1252 logger_initialized = 1;
1257 void close_logger(void)
1259 struct logchannel *f = NULL;
1260 struct verb *cur = NULL;
1262 ast_cli_unregister_multiple(cli_logger, ARRAY_LEN(cli_logger));
1264 logger_initialized = 0;
1266 /* Stop logger thread */
1267 AST_LIST_LOCK(&logmsgs);
1268 close_logger_thread = 1;
1269 ast_cond_signal(&logcond);
1270 AST_LIST_UNLOCK(&logmsgs);
1272 if (logthread != AST_PTHREADT_NULL)
1273 pthread_join(logthread, NULL);
1275 AST_RWLIST_WRLOCK(&verbosers);
1276 while ((cur = AST_LIST_REMOVE_HEAD(&verbosers, list))) {
1279 AST_RWLIST_UNLOCK(&verbosers);
1281 AST_RWLIST_WRLOCK(&logchannels);
1288 while ((f = AST_LIST_REMOVE_HEAD(&logchannels, list))) {
1289 if (f->fileptr && (f->fileptr != stdout) && (f->fileptr != stderr)) {
1296 closelog(); /* syslog */
1298 AST_RWLIST_UNLOCK(&logchannels);
1301 void ast_callid_strnprint(char *buffer, size_t buffer_size, struct ast_callid *callid)
1303 snprintf(buffer, buffer_size, "[C-%08x]", callid->call_identifier);
1306 struct ast_callid *ast_create_callid(void)
1308 struct ast_callid *call;
1310 call = ao2_alloc_options(sizeof(struct ast_callid), NULL, AO2_ALLOC_OPT_LOCK_NOLOCK);
1312 ast_log(LOG_ERROR, "Could not allocate callid struct.\n");
1316 call->call_identifier = ast_atomic_fetchadd_int(&next_unique_callid, +1);
1317 ast_debug(3, "CALL_ID [C-%08x] created by thread.\n", call->call_identifier);
1321 struct ast_callid *ast_read_threadstorage_callid(void)
1323 struct ast_callid **callid;
1324 callid = ast_threadstorage_get(&unique_callid, sizeof(struct ast_callid **));
1325 if (callid && *callid) {
1326 ast_callid_ref(*callid);
1334 int ast_callid_threadassoc_add(struct ast_callid *callid)
1336 struct ast_callid **pointing;
1337 pointing = ast_threadstorage_get(&unique_callid, sizeof(struct ast_callid **));
1339 ast_log(LOG_ERROR, "Failed to allocate thread storage.\n");
1344 /* callid will be unreffed at thread destruction */
1345 ast_callid_ref(callid);
1347 ast_debug(3, "CALL_ID [C-%08x] bound to thread.\n", callid->call_identifier);
1349 ast_log(LOG_WARNING, "Attempted to ast_callid_threadassoc_add on thread already associated with a callid.\n");
1356 int ast_callid_threadassoc_remove(void)
1358 struct ast_callid **pointing;
1359 pointing = ast_threadstorage_get(&unique_callid, sizeof(struct ast_callid **));
1361 ast_log(LOG_ERROR, "Failed to allocate thread storage.\n");
1366 ast_log(LOG_ERROR, "Tried to clean callid thread storage with no callid in thread storage.\n");
1369 ast_debug(3, "CALL_ID [C-%08x] being removed from thread.\n", (*pointing)->call_identifier);
1370 *pointing = ast_callid_unref(*pointing);
1375 int ast_callid_threadstorage_auto(struct ast_callid **callid)
1377 struct ast_callid *tmp;
1379 /* Start by trying to see if a callid is available from thread storage */
1380 tmp = ast_read_threadstorage_callid();
1386 /* If that failed, try to create a new one and bind it. */
1387 tmp = ast_create_callid();
1389 ast_callid_threadassoc_add(tmp);
1394 /* If neither worked, then something must have gone wrong. */
1398 void ast_callid_threadstorage_auto_clean(struct ast_callid *callid, int callid_created)
1401 /* If the callid was created rather than simply grabbed from the thread storage, we need to unbind here. */
1402 if (callid_created == 1) {
1403 ast_callid_threadassoc_remove();
1405 callid = ast_callid_unref(callid);
1411 * \brief thread storage cleanup function for unique_callid
1413 static void unique_callid_cleanup(void *data)
1415 struct ast_callid **callid = data;
1418 ast_callid_unref(*callid);
1425 * \brief send log messages to syslog and/or the console
1427 static void __attribute__((format(printf, 6, 0))) ast_log_full(int level, const char *file, int line, const char *function, struct ast_callid *callid, const char *fmt, va_list ap)
1429 struct logmsg *logmsg = NULL;
1430 struct ast_str *buf = NULL;
1432 struct timeval now = ast_tvnow();
1434 char datestring[256];
1436 if (!(buf = ast_str_thread_get(&log_buf, LOG_BUF_INIT_SIZE)))
1439 if (level != __LOG_VERBOSE && AST_RWLIST_EMPTY(&logchannels)) {
1441 * we don't have the logger chain configured yet,
1442 * so just log to stdout
1445 result = ast_str_set_va(&buf, BUFSIZ, fmt, ap); /* XXX BUFSIZ ? */
1446 if (result != AST_DYNSTR_BUILD_FAILED) {
1447 term_filter_escapes(ast_str_buffer(buf));
1448 fputs(ast_str_buffer(buf), stdout);
1453 /* Ignore anything that never gets logged anywhere */
1454 if (level != __LOG_VERBOSE && !(global_logmask & (1 << level)))
1458 res = ast_str_set_va(&buf, BUFSIZ, fmt, ap);
1460 /* If the build failed, then abort and free this structure */
1461 if (res == AST_DYNSTR_BUILD_FAILED)
1464 /* Create a new logging message */
1465 if (!(logmsg = ast_calloc_with_stringfields(1, struct logmsg, res + 128)))
1468 /* Copy string over */
1469 ast_string_field_set(logmsg, message, ast_str_buffer(buf));
1472 if (level == __LOG_VERBOSE) {
1473 logmsg->type = LOGMSG_VERBOSE;
1475 logmsg->type = LOGMSG_NORMAL;
1478 if (display_callids && callid) {
1479 logmsg->callid = ast_callid_ref(callid);
1480 /* callid will be unreffed at logmsg destruction */
1483 /* Create our date/time */
1484 ast_localtime(&now, &tm, NULL);
1485 ast_strftime(datestring, sizeof(datestring), dateformat, &tm);
1486 ast_string_field_set(logmsg, date, datestring);
1488 /* Copy over data */
1489 logmsg->level = level;
1490 logmsg->line = line;
1491 ast_string_field_set(logmsg, level_name, levels[level]);
1492 ast_string_field_set(logmsg, file, file);
1493 ast_string_field_set(logmsg, function, function);
1494 logmsg->lwp = ast_get_tid();
1496 /* If the logger thread is active, append it to the tail end of the list - otherwise skip that step */
1497 if (logthread != AST_PTHREADT_NULL) {
1498 AST_LIST_LOCK(&logmsgs);
1499 if (close_logger_thread) {
1500 /* Logger is either closing or closed. We cannot log this message. */
1503 AST_LIST_INSERT_TAIL(&logmsgs, logmsg, list);
1504 ast_cond_signal(&logcond);
1506 AST_LIST_UNLOCK(&logmsgs);
1508 logger_print_normal(logmsg);
1509 logmsg_free(logmsg);
1513 void ast_log(int level, const char *file, int line, const char *function, const char *fmt, ...)
1515 struct ast_callid *callid;
1518 callid = ast_read_threadstorage_callid();
1521 ast_log_full(level, file, line, function, callid, fmt, ap);
1525 ast_callid_unref(callid);
1529 void ast_log_callid(int level, const char *file, int line, const char *function, struct ast_callid *callid, const char *fmt, ...)
1533 ast_log_full(level, file, line, function, callid, fmt, ap);
1539 struct ast_bt *ast_bt_create(void)
1541 struct ast_bt *bt = ast_calloc(1, sizeof(*bt));
1543 ast_log(LOG_ERROR, "Unable to allocate memory for backtrace structure!\n");
1549 ast_bt_get_addresses(bt);
1554 int ast_bt_get_addresses(struct ast_bt *bt)
1556 bt->num_frames = backtrace(bt->addresses, AST_MAX_BT_FRAMES);
1561 void *ast_bt_destroy(struct ast_bt *bt)
1570 char **ast_bt_get_symbols(void **addresses, size_t num_frames)
1572 char **strings = NULL;
1573 #if defined(BETTER_BACKTRACES)
1575 bfd *bfdobj; /* bfd.h */
1576 Dl_info dli; /* dlfcn.h */
1578 asymbol **syms = NULL; /* bfd.h */
1579 bfd_vma offset; /* bfd.h */
1580 const char *lastslash;
1582 const char *file, *func;
1584 char address_str[128];
1586 size_t strings_size;
1590 #if defined(BETTER_BACKTRACES)
1591 strings_size = num_frames * sizeof(*strings);
1592 eachlen = ast_calloc(num_frames, sizeof(*eachlen));
1594 if (!(strings = ast_calloc(num_frames, sizeof(*strings)))) {
1598 for (stackfr = 0; stackfr < num_frames; stackfr++) {
1599 int found = 0, symbolcount;
1603 if (!dladdr(addresses[stackfr], &dli)) {
1607 if (strcmp(dli.dli_fname, "asterisk") == 0) {
1608 char asteriskpath[256];
1609 if (!(dli.dli_fname = ast_utils_which("asterisk", asteriskpath, sizeof(asteriskpath)))) {
1610 /* This will fail to find symbols */
1611 ast_debug(1, "Failed to find asterisk binary for debug symbols.\n");
1612 dli.dli_fname = "asterisk";
1616 lastslash = strrchr(dli.dli_fname, '/');
1617 if ( (bfdobj = bfd_openr(dli.dli_fname, NULL)) &&
1618 bfd_check_format(bfdobj, bfd_object) &&
1619 (allocsize = bfd_get_symtab_upper_bound(bfdobj)) > 0 &&
1620 (syms = ast_malloc(allocsize)) &&
1621 (symbolcount = bfd_canonicalize_symtab(bfdobj, syms))) {
1623 if (bfdobj->flags & DYNAMIC) {
1624 offset = addresses[stackfr] - dli.dli_fbase;
1626 offset = addresses[stackfr] - (void *) 0;
1629 for (section = bfdobj->sections; section; section = section->next) {
1630 if ( !bfd_get_section_flags(bfdobj, section) & SEC_ALLOC ||
1631 section->vma > offset ||
1632 section->size + section->vma < offset) {
1636 if (!bfd_find_nearest_line(bfdobj, section, syms, offset - section->vma, &file, &func, &line)) {
1640 /* file can possibly be null even with a success result from bfd_find_nearest_line */
1641 file = file ? file : "";
1643 /* Stack trace output */
1645 if ((lastslash = strrchr(file, '/'))) {
1646 const char *prevslash;
1647 for (prevslash = lastslash - 1; *prevslash != '/' && prevslash >= file; prevslash--);
1648 if (prevslash >= file) {
1649 lastslash = prevslash;
1652 if (dli.dli_saddr == NULL) {
1653 address_str[0] = '\0';
1655 snprintf(address_str, sizeof(address_str), " (%p+%lX)",
1657 (unsigned long) (addresses[stackfr] - dli.dli_saddr));
1659 snprintf(msg, sizeof(msg), "%s:%u %s()%s",
1660 lastslash ? lastslash + 1 : file, line,
1664 break; /* out of section iteration */
1674 /* Default output, if we cannot find the information within BFD */
1676 if (dli.dli_saddr == NULL) {
1677 address_str[0] = '\0';
1679 snprintf(address_str, sizeof(address_str), " (%p+%lX)",
1681 (unsigned long) (addresses[stackfr] - dli.dli_saddr));
1683 snprintf(msg, sizeof(msg), "%s %s()%s",
1684 lastslash ? lastslash + 1 : dli.dli_fname,
1685 S_OR(dli.dli_sname, "<unknown>"),
1689 if (!ast_strlen_zero(msg)) {
1691 eachlen[stackfr] = strlen(msg);
1692 if (!(tmp = ast_realloc(strings, strings_size + eachlen[stackfr] + 1))) {
1695 break; /* out of stack frame iteration */
1698 strings[stackfr] = (char *) strings + strings_size;
1699 ast_copy_string(strings[stackfr], msg, eachlen[stackfr] + 1);
1700 strings_size += eachlen[stackfr] + 1;
1705 /* Recalculate the offset pointers */
1706 strings[0] = (char *) strings + num_frames * sizeof(*strings);
1707 for (stackfr = 1; stackfr < num_frames; stackfr++) {
1708 strings[stackfr] = strings[stackfr - 1] + eachlen[stackfr - 1] + 1;
1711 #else /* !defined(BETTER_BACKTRACES) */
1712 strings = backtrace_symbols(addresses, num_frames);
1713 #endif /* defined(BETTER_BACKTRACES) */
1717 #endif /* HAVE_BKTR */
1719 void ast_backtrace(void)
1726 if (!(bt = ast_bt_create())) {
1727 ast_log(LOG_WARNING, "Unable to allocate space for backtrace structure\n");
1731 if ((strings = ast_bt_get_symbols(bt->addresses, bt->num_frames))) {
1732 ast_debug(1, "Got %d backtrace record%c\n", bt->num_frames, bt->num_frames != 1 ? 's' : ' ');
1733 for (i = 3; i < bt->num_frames - 2; i++) {
1734 ast_debug(1, "#%d: [%p] %s\n", i - 3, bt->addresses[i], strings[i]);
1737 /* MALLOC_DEBUG will erroneously report an error here, unless we undef the macro. */
1741 ast_debug(1, "Could not allocate memory for backtrace\n");
1745 ast_log(LOG_WARNING, "Must run configure with '--with-execinfo' for stack backtraces.\n");
1746 #endif /* defined(HAVE_BKTR) */
1749 void __ast_verbose_ap(const char *file, int line, const char *func, int level, struct ast_callid *callid, const char *fmt, va_list ap)
1751 struct ast_str *buf = NULL;
1753 const char *prefix = level >= 4 ? VERBOSE_PREFIX_4 : level == 3 ? VERBOSE_PREFIX_3 : level == 2 ? VERBOSE_PREFIX_2 : level == 1 ? VERBOSE_PREFIX_1 : "";
1754 signed char magic = level > 127 ? -128 : -level - 1; /* 0 => -1, 1 => -2, etc. Can't pass NUL, as it is EOS-delimiter */
1756 /* For compatibility with modules still calling ast_verbose() directly instead of using ast_verb() */
1758 if (!strncmp(fmt, VERBOSE_PREFIX_4, strlen(VERBOSE_PREFIX_4))) {
1760 } else if (!strncmp(fmt, VERBOSE_PREFIX_3, strlen(VERBOSE_PREFIX_3))) {
1762 } else if (!strncmp(fmt, VERBOSE_PREFIX_2, strlen(VERBOSE_PREFIX_2))) {
1764 } else if (!strncmp(fmt, VERBOSE_PREFIX_1, strlen(VERBOSE_PREFIX_1))) {
1771 if (!(buf = ast_str_thread_get(&verbose_buf, VERBOSE_BUF_INIT_SIZE))) {
1775 if (ast_opt_timestamp) {
1782 ast_localtime(&now, &tm, NULL);
1783 ast_strftime(date, sizeof(date), dateformat, &tm);
1784 datefmt = ast_alloca(strlen(date) + 3 + strlen(prefix) + strlen(fmt) + 1);
1785 sprintf(datefmt, "%c[%s] %s%s", (char) magic, date, prefix, fmt);
1788 char *tmp = ast_alloca(strlen(prefix) + strlen(fmt) + 2);
1789 sprintf(tmp, "%c%s%s", (char) magic, prefix, fmt);
1794 res = ast_str_set_va(&buf, 0, fmt, ap);
1796 /* If the build failed then we can drop this allocated message */
1797 if (res == AST_DYNSTR_BUILD_FAILED) {
1801 ast_log_callid(__LOG_VERBOSE, file, line, func, callid, "%s", ast_str_buffer(buf));
1804 void __ast_verbose(const char *file, int line, const char *func, int level, const char *fmt, ...)
1806 struct ast_callid *callid;
1809 callid = ast_read_threadstorage_callid();
1812 __ast_verbose_ap(file, line, func, level, callid, fmt, ap);
1816 ast_callid_unref(callid);
1820 void __ast_verbose_callid(const char *file, int line, const char *func, int level, struct ast_callid *callid, const char *fmt, ...)
1824 __ast_verbose_ap(file, line, func, level, callid, fmt, ap);
1828 /* No new code should use this directly, but we have the ABI for backwards compat */
1830 void __attribute__((format(printf, 1,2))) ast_verbose(const char *fmt, ...);
1831 void ast_verbose(const char *fmt, ...)
1833 struct ast_callid *callid;
1836 callid = ast_read_threadstorage_callid();
1839 __ast_verbose_ap("", 0, "", 0, callid, fmt, ap);
1843 ast_callid_unref(callid);
1847 int ast_register_verbose(void (*v)(const char *string))
1851 if (!(verb = ast_malloc(sizeof(*verb))))
1856 AST_RWLIST_WRLOCK(&verbosers);
1857 AST_RWLIST_INSERT_HEAD(&verbosers, verb, list);
1858 AST_RWLIST_UNLOCK(&verbosers);
1863 int ast_unregister_verbose(void (*v)(const char *string))
1867 AST_RWLIST_WRLOCK(&verbosers);
1868 AST_RWLIST_TRAVERSE_SAFE_BEGIN(&verbosers, cur, list) {
1869 if (cur->verboser == v) {
1870 AST_RWLIST_REMOVE_CURRENT(list);
1875 AST_RWLIST_TRAVERSE_SAFE_END;
1876 AST_RWLIST_UNLOCK(&verbosers);
1878 return cur ? 0 : -1;
1881 static void update_logchannels(void)
1883 struct logchannel *cur;
1885 AST_RWLIST_WRLOCK(&logchannels);
1889 AST_RWLIST_TRAVERSE(&logchannels, cur, list) {
1890 cur->logmask = make_components(cur->components, cur->lineno, &cur->verbosity);
1891 global_logmask |= cur->logmask;
1894 AST_RWLIST_UNLOCK(&logchannels);
1897 int ast_logger_register_level(const char *name)
1900 unsigned int available = 0;
1902 AST_RWLIST_WRLOCK(&logchannels);
1904 for (level = 0; level < ARRAY_LEN(levels); level++) {
1905 if ((level >= 16) && !available && !levels[level]) {
1910 if (levels[level] && !strcasecmp(levels[level], name)) {
1911 ast_log(LOG_WARNING,
1912 "Unable to register dynamic logger level '%s': a standard logger level uses that name.\n",
1914 AST_RWLIST_UNLOCK(&logchannels);
1921 ast_log(LOG_WARNING,
1922 "Unable to register dynamic logger level '%s'; maximum number of levels registered.\n",
1924 AST_RWLIST_UNLOCK(&logchannels);
1929 levels[available] = ast_strdup(name);
1931 AST_RWLIST_UNLOCK(&logchannels);
1933 ast_debug(1, "Registered dynamic logger level '%s' with index %d.\n", name, available);
1935 update_logchannels();
1940 void ast_logger_unregister_level(const char *name)
1942 unsigned int found = 0;
1945 AST_RWLIST_WRLOCK(&logchannels);
1947 for (x = 16; x < ARRAY_LEN(levels); x++) {
1952 if (strcasecmp(levels[x], name)) {
1961 /* take this level out of the global_logmask, to ensure that no new log messages
1962 * will be queued for it
1965 global_logmask &= ~(1 << x);
1967 ast_free(levels[x]);
1969 AST_RWLIST_UNLOCK(&logchannels);
1971 ast_debug(1, "Unregistered dynamic logger level '%s' with index %d.\n", name, x);
1973 update_logchannels();
1975 AST_RWLIST_UNLOCK(&logchannels);