1998-05-03 16:42:08 +00:00
|
|
|
/*
|
|
|
|
* BIRD Library -- Logging Functions
|
|
|
|
*
|
2000-06-05 12:49:04 +00:00
|
|
|
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
1998-05-03 16:42:08 +00:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
2000-06-05 12:49:04 +00:00
|
|
|
/**
|
|
|
|
* DOC: Logging
|
|
|
|
*
|
|
|
|
* The Logging module offers a simple set of functions for writing
|
2000-06-08 12:37:21 +00:00
|
|
|
* messages to system logs and to the debug output. Message classes
|
|
|
|
* used by this module are described in |birdlib.h| and also in the
|
|
|
|
* user's manual.
|
2000-06-05 12:49:04 +00:00
|
|
|
*/
|
|
|
|
|
2021-02-08 08:51:59 +00:00
|
|
|
#include <stdatomic.h>
|
1998-05-03 16:42:08 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
2001-03-06 13:40:39 +00:00
|
|
|
#include <time.h>
|
2010-02-21 13:34:53 +00:00
|
|
|
#include <unistd.h>
|
2016-07-11 18:22:55 +00:00
|
|
|
#include <errno.h>
|
1998-05-03 16:42:08 +00:00
|
|
|
|
|
|
|
#include "nest/bird.h"
|
1999-12-06 12:34:45 +00:00
|
|
|
#include "nest/cli.h"
|
2018-11-20 16:38:19 +00:00
|
|
|
#include "conf/conf.h"
|
1998-06-17 14:33:29 +00:00
|
|
|
#include "lib/string.h"
|
1999-12-06 13:45:56 +00:00
|
|
|
#include "lib/lists.h"
|
2016-04-12 09:14:54 +00:00
|
|
|
#include "sysdep/unix/unix.h"
|
2023-08-21 16:44:10 +00:00
|
|
|
#include "sysdep/unix/io-loop.h"
|
|
|
|
|
|
|
|
static pool *log_pool;
|
1998-05-03 16:42:08 +00:00
|
|
|
|
2023-08-16 13:05:36 +00:00
|
|
|
static struct rfile *dbg_rf;
|
2023-08-21 16:44:10 +00:00
|
|
|
static char *current_syslog_name = NULL; /* NULL -> syslog closed */
|
1998-05-03 16:42:08 +00:00
|
|
|
|
2023-05-05 07:39:13 +00:00
|
|
|
_Atomic uint max_thread_id = ATOMIC_VAR_INIT(1);
|
2023-05-03 17:01:19 +00:00
|
|
|
_Thread_local uint this_thread_id;
|
2021-02-08 08:51:59 +00:00
|
|
|
|
2013-10-05 18:12:28 +00:00
|
|
|
#include <pthread.h>
|
2014-02-07 12:09:55 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
DEFINE_DOMAIN(logging);
|
|
|
|
static DOMAIN(logging) log_domain;
|
|
|
|
#define log_lock() LOCK_DOMAIN(logging, log_domain);
|
|
|
|
#define log_unlock() UNLOCK_DOMAIN(logging, log_domain);
|
|
|
|
|
|
|
|
static struct log_channel * _Atomic global_logs;
|
2013-10-05 18:12:28 +00:00
|
|
|
|
2023-08-16 13:05:36 +00:00
|
|
|
/* Logging flags to validly prepare logging messages */
|
|
|
|
#define LOGGING_TO_TERMINAL 0x1
|
|
|
|
#define LOGGING_TO_FILE 0x2
|
|
|
|
|
|
|
|
static _Atomic uint logging_flags;
|
2023-08-21 16:44:10 +00:00
|
|
|
static _Atomic uint logging_mask;
|
2023-08-16 13:05:36 +00:00
|
|
|
|
2017-05-09 11:44:02 +00:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
1998-05-03 16:42:08 +00:00
|
|
|
#include <sys/syslog.h>
|
|
|
|
|
|
|
|
static int syslog_priorities[] = {
|
1999-12-06 13:45:56 +00:00
|
|
|
LOG_DEBUG,
|
|
|
|
LOG_DEBUG,
|
1998-05-03 16:42:08 +00:00
|
|
|
LOG_DEBUG,
|
|
|
|
LOG_INFO,
|
1999-12-06 13:45:56 +00:00
|
|
|
LOG_ERR,
|
1998-05-03 16:42:08 +00:00
|
|
|
LOG_WARNING,
|
|
|
|
LOG_ERR,
|
1999-12-06 13:45:56 +00:00
|
|
|
LOG_ERR,
|
|
|
|
LOG_CRIT,
|
1998-05-03 16:42:08 +00:00
|
|
|
LOG_CRIT
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static char *class_names[] = {
|
|
|
|
"???",
|
|
|
|
"DBG",
|
1999-12-06 13:45:56 +00:00
|
|
|
"TRACE",
|
1998-05-03 16:42:08 +00:00
|
|
|
"INFO",
|
1999-12-06 13:45:56 +00:00
|
|
|
"RMT",
|
1998-05-03 16:42:08 +00:00
|
|
|
"WARN",
|
|
|
|
"ERR",
|
|
|
|
"AUTH",
|
1999-12-06 13:45:56 +00:00
|
|
|
"FATAL",
|
|
|
|
"BUG"
|
1998-05-03 16:42:08 +00:00
|
|
|
};
|
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
struct log_channel {
|
|
|
|
struct log_channel * _Atomic next;
|
|
|
|
const char *filename; /* Log filename */
|
|
|
|
const char *backup; /* Secondary filename (for log rotation) */
|
|
|
|
struct rfile * _Atomic rf; /* File handle */
|
|
|
|
off_t limit; /* Log size limit */
|
|
|
|
_Atomic uint mask; /* Classes to log */
|
|
|
|
uint new_mask; /* Pending new mask */
|
|
|
|
uint terminal:1; /* Is terminal */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct log_thread_syncer {
|
|
|
|
struct bird_thread_syncer sync;
|
|
|
|
struct log_channel *lc_close;
|
|
|
|
struct rfile *rf_close;
|
|
|
|
const char *name;
|
|
|
|
event lts_event;
|
|
|
|
};
|
2018-11-14 16:16:05 +00:00
|
|
|
|
|
|
|
static void
|
2023-08-21 16:44:10 +00:00
|
|
|
lts_done(struct bird_thread_syncer *sync)
|
2018-11-14 16:16:05 +00:00
|
|
|
{
|
2023-08-21 16:44:10 +00:00
|
|
|
struct log_thread_syncer *lts = SKIP_BACK(struct log_thread_syncer, sync, sync);
|
2018-11-14 16:16:05 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
log_lock();
|
|
|
|
if (lts->lc_close)
|
2018-11-14 16:16:05 +00:00
|
|
|
{
|
2023-08-21 16:44:10 +00:00
|
|
|
lts->rf_close = atomic_load_explicit(<s->lc_close->rf, memory_order_relaxed);
|
|
|
|
mb_free(lts->lc_close);
|
2018-11-14 16:16:05 +00:00
|
|
|
}
|
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
if (lts->rf_close && lts->rf_close != &rf_stderr)
|
|
|
|
rfree(lts->rf_close);
|
2018-11-14 16:16:05 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
mb_free(lts);
|
|
|
|
log_unlock();
|
2018-11-14 16:16:05 +00:00
|
|
|
}
|
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
static void
|
|
|
|
lts_event(void *_lts)
|
2018-11-14 16:16:05 +00:00
|
|
|
{
|
2023-08-21 16:44:10 +00:00
|
|
|
struct log_thread_syncer *lts = _lts;
|
|
|
|
bird_thread_sync_all(<s->sync, NULL, lts_done, lts->name);
|
|
|
|
}
|
2018-11-14 16:16:05 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
static void
|
|
|
|
lts_request(struct log_channel *lc_close, struct rfile *rf_close, const char *name)
|
|
|
|
{
|
|
|
|
struct log_thread_syncer *lts = mb_allocz(log_pool, sizeof *lts);
|
|
|
|
lts->lc_close = lc_close;
|
|
|
|
lts->rf_close = rf_close;
|
|
|
|
lts->name = name;
|
|
|
|
lts->lts_event = (event) { .hook = lts_event, .data = lts, };
|
|
|
|
ev_send_loop(&main_birdloop, <s->lts_event);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
log_rotate(struct log_channel *lc)
|
|
|
|
{
|
|
|
|
struct log_thread_syncer *lts = mb_allocz(log_pool, sizeof *lts);
|
|
|
|
|
|
|
|
if ((rename(lc->filename, lc->backup) < 0) && (unlink(lc->filename) < 0))
|
|
|
|
return lts_request(lc, NULL, "Log Rotate Failed");
|
2018-11-14 16:16:05 +00:00
|
|
|
|
2023-08-24 13:38:44 +00:00
|
|
|
struct rfile *rf = rf_open(log_pool, lc->filename, RF_APPEND, lc->limit);
|
2023-08-21 16:44:10 +00:00
|
|
|
if (!rf)
|
|
|
|
return lts_request(lc, NULL, "Log Rotate Failed");
|
|
|
|
|
|
|
|
lts_request(NULL, atomic_load_explicit(&lc->rf, memory_order_relaxed), "Log Rotate Close Old File");
|
|
|
|
atomic_store_explicit(&lc->rf, rf, memory_order_release);
|
2018-11-14 16:16:05 +00:00
|
|
|
}
|
1998-06-17 14:33:29 +00:00
|
|
|
|
2023-08-16 13:05:36 +00:00
|
|
|
#define LOG_MSG_OFFSET (TM_DATETIME_BUFFER_SIZE + 64)
|
|
|
|
|
2010-09-20 11:01:01 +00:00
|
|
|
/**
|
|
|
|
* log_commit - commit a log message
|
|
|
|
* @class: message class information (%L_DEBUG to %L_BUG, see |lib/birdlib.h|)
|
2016-05-12 13:49:44 +00:00
|
|
|
* @buf: message to write
|
2010-09-20 11:01:01 +00:00
|
|
|
*
|
|
|
|
* This function writes a message prepared in the log buffer to the
|
|
|
|
* log file (as specified in the configuration). The log buffer is
|
|
|
|
* reset after that. The log message is a full line, log_commit()
|
|
|
|
* terminates it.
|
|
|
|
*
|
|
|
|
* The message class is an integer, not a first char of a string like
|
|
|
|
* in log(), so it should be written like *L_INFO.
|
|
|
|
*/
|
|
|
|
void
|
2023-08-16 13:05:36 +00:00
|
|
|
log_commit(log_buffer *buf)
|
2010-09-20 11:01:01 +00:00
|
|
|
{
|
2023-08-16 13:05:36 +00:00
|
|
|
if (buf->buf.pos == buf->buf.end)
|
|
|
|
#define TOO_LONG " ... <too long>"
|
|
|
|
memcpy(buf->buf.end - sizeof TOO_LONG, TOO_LONG, sizeof TOO_LONG);
|
|
|
|
#undef TOO_LONG
|
2013-10-05 18:12:28 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
for (
|
|
|
|
struct log_channel *l = atomic_load_explicit(&global_logs, memory_order_acquire);
|
|
|
|
l;
|
|
|
|
l = atomic_load_explicit(&l->next, memory_order_acquire)
|
|
|
|
)
|
1998-05-03 16:42:08 +00:00
|
|
|
{
|
2023-08-21 16:44:10 +00:00
|
|
|
uint mask = atomic_load_explicit(&l->mask, memory_order_acquire);
|
|
|
|
if (!(mask & (1 << buf->class)))
|
1999-12-06 13:45:56 +00:00
|
|
|
continue;
|
2023-08-21 16:44:10 +00:00
|
|
|
|
|
|
|
struct rfile *rf = atomic_load_explicit(&l->rf, memory_order_acquire);
|
|
|
|
if (rf && buf->tm_pos)
|
1999-12-06 13:45:56 +00:00
|
|
|
{
|
2023-08-16 13:05:36 +00:00
|
|
|
*buf->buf.pos = '\n';
|
2023-08-21 16:44:10 +00:00
|
|
|
byte *begin = l->terminal ? buf->buf.start : buf->tm_pos;
|
2023-08-16 13:05:36 +00:00
|
|
|
off_t msg_len = buf->buf.pos - begin + 1;
|
2023-08-24 13:38:44 +00:00
|
|
|
do {
|
2023-10-28 21:42:21 +00:00
|
|
|
if (rf_write(rf, begin, msg_len))
|
2023-08-24 13:38:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
log_lock();
|
|
|
|
rf = atomic_load_explicit(&l->rf, memory_order_acquire);
|
2023-10-28 21:42:21 +00:00
|
|
|
if (rf_write(rf, begin, msg_len))
|
2023-08-21 16:44:10 +00:00
|
|
|
{
|
|
|
|
log_unlock();
|
2023-08-24 13:38:44 +00:00
|
|
|
break;
|
2023-08-21 16:44:10 +00:00
|
|
|
}
|
|
|
|
|
2023-08-24 13:38:44 +00:00
|
|
|
log_rotate(l);
|
|
|
|
log_unlock();
|
|
|
|
|
|
|
|
rf = atomic_load_explicit(&l->rf, memory_order_relaxed);
|
2023-10-28 21:42:21 +00:00
|
|
|
} while (!rf_write(rf, begin, msg_len));
|
1999-12-06 13:45:56 +00:00
|
|
|
}
|
2017-05-09 11:44:02 +00:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
1999-12-06 13:45:56 +00:00
|
|
|
else
|
2023-08-16 13:05:36 +00:00
|
|
|
{
|
|
|
|
*buf->buf.pos = '\0';
|
|
|
|
syslog(syslog_priorities[buf->class], "%s", buf->msg_pos);
|
|
|
|
}
|
1998-05-03 16:42:08 +00:00
|
|
|
#endif
|
|
|
|
}
|
2010-09-20 11:01:01 +00:00
|
|
|
|
2023-08-16 13:05:36 +00:00
|
|
|
buf->msg_pos = buf->tm_pos = NULL;
|
2010-09-20 11:01:01 +00:00
|
|
|
}
|
|
|
|
|
2013-10-05 18:12:28 +00:00
|
|
|
int buffer_vprint(buffer *buf, const char *fmt, va_list args);
|
2010-09-20 11:01:01 +00:00
|
|
|
|
2023-08-16 13:05:36 +00:00
|
|
|
void
|
|
|
|
log_prepare(log_buffer *buf, int class)
|
|
|
|
{
|
|
|
|
buf->buf.start = buf->buf.pos = buf->block;
|
|
|
|
buf->buf.end = buf->block + sizeof buf->block;
|
|
|
|
|
|
|
|
int lf = atomic_load_explicit(&logging_flags, memory_order_acquire);
|
|
|
|
if (lf & LOGGING_TO_TERMINAL)
|
|
|
|
buffer_puts(&buf->buf, "bird: ");
|
|
|
|
|
|
|
|
if (lf & LOGGING_TO_FILE)
|
|
|
|
{
|
|
|
|
const char *fmt = config ? config->tf_log.fmt1 : "%F %T.%3f";
|
|
|
|
|
|
|
|
buf->tm_pos = buf->buf.pos;
|
|
|
|
int t = tm_format_real_time(buf->buf.pos, buf->buf.end - buf->buf.pos, fmt, current_real_time());
|
|
|
|
if (t)
|
|
|
|
buf->buf.pos += t;
|
|
|
|
else
|
|
|
|
buffer_puts(&buf->buf, "<time format error>");
|
|
|
|
|
|
|
|
buffer_print(&buf->buf, " [%04x] <%s> ", THIS_THREAD_ID, class_names[class]);
|
|
|
|
}
|
2023-10-28 21:42:21 +00:00
|
|
|
else
|
|
|
|
buf->tm_pos = NULL;
|
2023-08-16 13:05:36 +00:00
|
|
|
|
|
|
|
buf->msg_pos = buf->buf.pos;
|
|
|
|
buf->class = class;
|
|
|
|
}
|
|
|
|
|
2010-09-20 11:01:01 +00:00
|
|
|
static void
|
|
|
|
vlog(int class, const char *msg, va_list args)
|
|
|
|
{
|
2023-08-16 13:05:36 +00:00
|
|
|
static _Thread_local log_buffer buf;
|
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
/* No logging at all if nobody would receive the message either */
|
|
|
|
if (!(atomic_load_explicit(&logging_mask, memory_order_acquire) & (1 << class)))
|
|
|
|
return;
|
|
|
|
|
2023-08-16 13:05:36 +00:00
|
|
|
log_prepare(&buf, class);
|
|
|
|
buffer_vprint(&buf.buf, msg, args);
|
|
|
|
log_commit(&buf);
|
2010-09-20 11:01:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-05 12:49:04 +00:00
|
|
|
/**
|
|
|
|
* log - log a message
|
|
|
|
* @msg: printf-like formatting string with message class information
|
|
|
|
* prepended (%L_DEBUG to %L_BUG, see |lib/birdlib.h|)
|
|
|
|
*
|
|
|
|
* This function formats a message according to the format string @msg
|
2000-06-07 12:29:08 +00:00
|
|
|
* and writes it to the corresponding log file (as specified in the
|
2000-06-05 12:49:04 +00:00
|
|
|
* configuration). Please note that the message is automatically
|
|
|
|
* formatted as a full line, no need to include |\n| inside.
|
2010-09-20 11:01:01 +00:00
|
|
|
* It is essentially a sequence of log_reset(), logn() and log_commit().
|
2000-06-05 12:49:04 +00:00
|
|
|
*/
|
1998-05-03 16:42:08 +00:00
|
|
|
void
|
2014-12-03 09:57:31 +00:00
|
|
|
log_msg(const char *msg, ...)
|
1998-05-03 16:42:08 +00:00
|
|
|
{
|
|
|
|
int class = 1;
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, msg);
|
1998-12-20 14:24:35 +00:00
|
|
|
if (*msg >= 1 && *msg <= 8)
|
1998-05-03 16:42:08 +00:00
|
|
|
class = *msg++;
|
|
|
|
vlog(class, msg, args);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2009-02-26 13:23:54 +00:00
|
|
|
void
|
2014-12-03 09:57:31 +00:00
|
|
|
log_rl(struct tbf *f, const char *msg, ...)
|
2009-02-26 13:23:54 +00:00
|
|
|
{
|
|
|
|
int class = 1;
|
|
|
|
va_list args;
|
|
|
|
|
2014-10-02 09:41:34 +00:00
|
|
|
/* Rate limiting is a bit tricky here as it also logs '...' during the first hit */
|
2017-11-28 16:06:10 +00:00
|
|
|
if (tbf_limit(f) && (f->drop > 1))
|
2009-02-26 13:23:54 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (*msg >= 1 && *msg <= 8)
|
|
|
|
class = *msg++;
|
2014-10-02 09:41:34 +00:00
|
|
|
|
|
|
|
va_start(args, msg);
|
2017-11-28 16:06:10 +00:00
|
|
|
vlog(class, (f->drop ? "..." : msg), args);
|
2009-02-26 13:23:54 +00:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2000-06-05 12:49:04 +00:00
|
|
|
/**
|
|
|
|
* bug - report an internal error
|
|
|
|
* @msg: a printf-like error message
|
|
|
|
*
|
|
|
|
* This function logs an internal error and aborts execution
|
|
|
|
* of the program.
|
|
|
|
*/
|
1998-12-20 14:24:35 +00:00
|
|
|
void
|
2014-12-03 09:57:31 +00:00
|
|
|
bug(const char *msg, ...)
|
1998-12-20 14:24:35 +00:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, msg);
|
|
|
|
vlog(L_BUG[0], msg, args);
|
2016-03-29 08:37:31 +00:00
|
|
|
va_end(args);
|
2000-05-08 12:38:00 +00:00
|
|
|
abort();
|
1998-12-20 14:24:35 +00:00
|
|
|
}
|
|
|
|
|
2000-06-05 12:49:04 +00:00
|
|
|
/**
|
|
|
|
* bug - report a fatal error
|
|
|
|
* @msg: a printf-like error message
|
|
|
|
*
|
|
|
|
* This function logs a fatal error and aborts execution
|
|
|
|
* of the program.
|
|
|
|
*/
|
1998-05-03 16:42:08 +00:00
|
|
|
void
|
2014-12-03 09:57:31 +00:00
|
|
|
die(const char *msg, ...)
|
1998-05-03 16:42:08 +00:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, msg);
|
1998-12-20 14:24:35 +00:00
|
|
|
vlog(L_FATAL[0], msg, args);
|
2016-03-29 08:37:31 +00:00
|
|
|
va_end(args);
|
1998-05-03 16:42:08 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2021-02-08 08:51:59 +00:00
|
|
|
static struct timespec dbg_time_start;
|
|
|
|
|
2000-06-05 12:49:04 +00:00
|
|
|
/**
|
|
|
|
* debug - write to debug output
|
|
|
|
* @msg: a printf-like message
|
|
|
|
*
|
|
|
|
* This function formats the message @msg and prints it out
|
|
|
|
* to the debugging output. No newline character is appended.
|
|
|
|
*/
|
1998-05-03 16:42:08 +00:00
|
|
|
void
|
2014-12-03 09:57:31 +00:00
|
|
|
debug(const char *msg, ...)
|
1998-05-03 16:42:08 +00:00
|
|
|
{
|
2021-05-26 14:42:02 +00:00
|
|
|
#define MAX_DEBUG_BUFSIZE 16384
|
1998-05-03 16:42:08 +00:00
|
|
|
va_list args;
|
2021-02-08 08:51:59 +00:00
|
|
|
char buf[MAX_DEBUG_BUFSIZE], *pos = buf;
|
|
|
|
int max = MAX_DEBUG_BUFSIZE;
|
1998-05-03 16:42:08 +00:00
|
|
|
|
|
|
|
va_start(args, msg);
|
2023-08-16 13:05:36 +00:00
|
|
|
if (dbg_rf)
|
1999-12-06 13:45:56 +00:00
|
|
|
{
|
2023-08-16 13:05:36 +00:00
|
|
|
int s = bvsnprintf(pos, max, msg, args);
|
|
|
|
if (s < 0)
|
2021-05-26 14:42:02 +00:00
|
|
|
bug("Extremely long debug output, split it.");
|
2019-07-10 09:12:41 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
rf_write(dbg_rf, buf, s);
|
1999-12-06 13:45:56 +00:00
|
|
|
}
|
1998-05-03 16:42:08 +00:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2023-01-12 16:40:53 +00:00
|
|
|
/**
|
|
|
|
* debug_safe - async-safe write to debug output
|
|
|
|
* @msg: a string message
|
|
|
|
*
|
|
|
|
* This function prints the message @msg to the debugging output in a
|
|
|
|
* way that is async safe and can be used in signal handlers. No newline
|
|
|
|
* character is appended.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
debug_safe(const char *msg)
|
|
|
|
{
|
2023-08-16 13:05:36 +00:00
|
|
|
if (dbg_rf)
|
2023-08-21 16:44:10 +00:00
|
|
|
rf_write(dbg_rf, msg, strlen(msg));
|
2023-01-12 16:40:53 +00:00
|
|
|
}
|
|
|
|
|
2010-04-07 09:00:36 +00:00
|
|
|
static list *
|
2020-04-08 20:25:15 +00:00
|
|
|
default_log_list(int initial, const char **syslog_name)
|
1998-05-03 16:42:08 +00:00
|
|
|
{
|
2018-12-04 15:55:25 +00:00
|
|
|
static list log_list;
|
|
|
|
init_list(&log_list);
|
2010-04-07 09:00:36 +00:00
|
|
|
*syslog_name = NULL;
|
1998-05-03 16:42:08 +00:00
|
|
|
|
2017-05-09 11:44:02 +00:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
2023-08-16 13:05:36 +00:00
|
|
|
if (!dbg_rf)
|
1998-05-03 16:42:08 +00:00
|
|
|
{
|
2020-11-25 14:04:34 +00:00
|
|
|
static struct log_config lc_syslog;
|
|
|
|
lc_syslog = (struct log_config){
|
|
|
|
.mask = ~0
|
|
|
|
};
|
|
|
|
|
2018-12-04 15:55:25 +00:00
|
|
|
add_tail(&log_list, &lc_syslog.n);
|
2010-04-07 09:00:36 +00:00
|
|
|
*syslog_name = bird_name;
|
1998-05-03 16:42:08 +00:00
|
|
|
}
|
1999-12-06 13:45:56 +00:00
|
|
|
#endif
|
|
|
|
|
2023-08-16 13:05:36 +00:00
|
|
|
if (dbg_rf && (dbg_rf != &rf_stderr))
|
2018-12-04 15:55:25 +00:00
|
|
|
{
|
2020-11-25 14:04:34 +00:00
|
|
|
static struct log_config lc_debug;
|
|
|
|
lc_debug = (struct log_config){
|
|
|
|
.mask = ~0,
|
2023-08-16 13:05:36 +00:00
|
|
|
.rf = dbg_rf,
|
2020-11-25 14:04:34 +00:00
|
|
|
};
|
|
|
|
|
2018-12-04 15:55:25 +00:00
|
|
|
add_tail(&log_list, &lc_debug.n);
|
|
|
|
}
|
|
|
|
|
2023-08-16 13:05:36 +00:00
|
|
|
if (initial || (dbg_rf == &rf_stderr))
|
2018-12-04 15:55:25 +00:00
|
|
|
{
|
2020-11-25 14:04:34 +00:00
|
|
|
static struct log_config lc_stderr;
|
|
|
|
lc_stderr = (struct log_config){
|
|
|
|
.mask = ~0,
|
|
|
|
.terminal_flag = 1,
|
2023-08-16 13:05:36 +00:00
|
|
|
.rf = &rf_stderr,
|
2020-11-25 14:04:34 +00:00
|
|
|
};
|
|
|
|
|
2018-12-04 15:55:25 +00:00
|
|
|
add_tail(&log_list, &lc_stderr.n);
|
|
|
|
}
|
|
|
|
|
|
|
|
return &log_list;
|
1999-12-06 13:45:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-04-08 20:25:15 +00:00
|
|
|
log_switch(int initial, list *logs, const char *new_syslog_name)
|
1999-12-06 13:45:56 +00:00
|
|
|
{
|
2023-08-21 16:44:10 +00:00
|
|
|
if (initial)
|
|
|
|
{
|
|
|
|
log_domain = DOMAIN_NEW(logging);
|
|
|
|
log_lock();
|
|
|
|
log_pool = rp_new(&root_pool, log_domain.logging, "Log files");
|
2018-11-14 16:16:05 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
#if HAVE_SYSLOG_H
|
|
|
|
/* Create syslog channel */
|
|
|
|
struct log_channel *lc = mb_alloc(log_pool, sizeof *lc);
|
|
|
|
|
|
|
|
*lc = (struct log_channel) {};
|
|
|
|
ASSERT_DIE(NULL == atomic_exchange_explicit(&global_logs, lc, memory_order_release));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
log_unlock();
|
|
|
|
}
|
2020-11-25 14:15:13 +00:00
|
|
|
|
2018-11-14 16:16:05 +00:00
|
|
|
if (!logs || EMPTY_LIST(*logs))
|
2018-12-04 15:55:25 +00:00
|
|
|
logs = default_log_list(initial, &new_syslog_name);
|
2018-11-14 16:16:05 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
ASSERT_DIE(logs);
|
2018-11-14 16:16:05 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
/* Prepare the new log configuration */
|
|
|
|
struct log_config *l;
|
|
|
|
WALK_LIST(l, *logs)
|
|
|
|
{
|
|
|
|
int erf = 0;
|
|
|
|
log_lock();
|
|
|
|
if (l->rf && (l->rf != &rf_stderr))
|
|
|
|
rmove(l->rf, log_pool);
|
|
|
|
else if (l->filename)
|
2023-08-16 13:05:36 +00:00
|
|
|
{
|
2023-08-24 13:38:44 +00:00
|
|
|
l->rf = rf_open(log_pool, l->filename, RF_APPEND, l->limit);
|
2023-08-21 16:44:10 +00:00
|
|
|
erf = l->rf ? 0 : errno;
|
2023-08-16 13:05:36 +00:00
|
|
|
}
|
2023-08-21 16:44:10 +00:00
|
|
|
log_unlock();
|
|
|
|
if (erf)
|
|
|
|
log(L_ERR "Failed to open log file '%s': %M", l->filename, erf);
|
|
|
|
}
|
2023-08-16 13:05:36 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
uint total_mask = 0;
|
|
|
|
uint flags = 0;
|
2010-04-07 09:00:36 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
/* Update pre-existing log channels */
|
|
|
|
for (
|
|
|
|
struct log_channel * _Atomic *pprev = &global_logs, *ol;
|
|
|
|
ol = atomic_load_explicit(pprev, memory_order_acquire);
|
|
|
|
pprev = &ol->next)
|
|
|
|
{
|
|
|
|
ol->new_mask = 0;
|
|
|
|
if (ol->rf)
|
|
|
|
{
|
|
|
|
WALK_LIST(l, *logs)
|
|
|
|
if (l->rf && rf_same(l->rf, ol->rf))
|
|
|
|
{
|
|
|
|
/* Merge the mask */
|
|
|
|
ol->new_mask |= l->mask;
|
|
|
|
total_mask |= l->mask;
|
|
|
|
|
|
|
|
/* Merge flags */
|
|
|
|
flags |= LOGGING_TO_FILE;
|
|
|
|
if (l->terminal_flag)
|
|
|
|
{
|
|
|
|
flags |= LOGGING_TO_TERMINAL;
|
|
|
|
ol->terminal = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The filehandle is no longer needed */
|
|
|
|
if (l->rf != &rf_stderr)
|
|
|
|
{
|
|
|
|
log_lock();
|
|
|
|
rfree(l->rf);
|
|
|
|
log_unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
l->rf = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
WALK_LIST(l, *logs)
|
|
|
|
if (!l->filename && !l->rf)
|
|
|
|
{
|
|
|
|
ol->new_mask |= l->mask;
|
|
|
|
total_mask |= l->mask;
|
|
|
|
}
|
2010-04-07 09:00:36 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
/* First only extend masks */
|
|
|
|
atomic_fetch_or_explicit(&ol->mask, ol->new_mask, memory_order_acq_rel);
|
|
|
|
}
|
|
|
|
|
|
|
|
atomic_fetch_or_explicit(&logging_mask, total_mask, memory_order_acq_rel);
|
2010-04-07 09:00:36 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
/* Open new log channels */
|
|
|
|
WALK_LIST(l, *logs)
|
2016-11-01 10:37:49 +00:00
|
|
|
{
|
2023-08-21 16:44:10 +00:00
|
|
|
if (!l->rf)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Truly new log channel */
|
|
|
|
log_lock();
|
|
|
|
struct log_channel *lc = mb_alloc(log_pool, sizeof *lc);
|
|
|
|
log_unlock();
|
|
|
|
|
|
|
|
*lc = (struct log_channel) {
|
|
|
|
.filename = l->filename,
|
|
|
|
.backup = l->backup,
|
|
|
|
.rf = l->rf,
|
|
|
|
.limit = l->limit,
|
|
|
|
.new_mask = l->mask,
|
|
|
|
.terminal = l->terminal_flag,
|
|
|
|
};
|
|
|
|
|
|
|
|
total_mask |= l->mask;
|
|
|
|
|
|
|
|
/* Message preparation flags */
|
|
|
|
flags |= LOGGING_TO_FILE;
|
|
|
|
if (l->terminal_flag)
|
|
|
|
{
|
|
|
|
flags |= LOGGING_TO_TERMINAL;
|
|
|
|
lc->terminal = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now the file handle ownership is transferred to the log channel */
|
|
|
|
l->rf = NULL;
|
|
|
|
|
|
|
|
/* Find more */
|
|
|
|
for (struct log_config *ll = NODE_NEXT(l); NODE_VALID(ll); ll = NODE_NEXT(ll))
|
|
|
|
if (ll->filename && ll->rf && rf_same(lc->rf, ll->rf))
|
|
|
|
{
|
|
|
|
/* Merged with this channel */
|
|
|
|
lc->new_mask |= ll->mask;
|
|
|
|
total_mask |= ll->mask;
|
|
|
|
|
|
|
|
if (l->rf != &rf_stderr)
|
|
|
|
{
|
|
|
|
log_lock();
|
|
|
|
rfree(ll->rf);
|
|
|
|
log_unlock();
|
|
|
|
}
|
|
|
|
ll->rf = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
atomic_store_explicit(&lc->mask, lc->new_mask, memory_order_release);
|
|
|
|
|
|
|
|
/* Insert into the main log list */
|
|
|
|
struct log_channel *head = atomic_load_explicit(&global_logs, memory_order_acquire);
|
|
|
|
do atomic_store_explicit(&lc->next, head, memory_order_release);
|
|
|
|
while (!atomic_compare_exchange_strong_explicit(
|
|
|
|
&global_logs, &head, lc,
|
|
|
|
memory_order_acq_rel, memory_order_acquire));
|
2016-11-01 10:37:49 +00:00
|
|
|
}
|
2010-04-07 09:00:36 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
/* Merge overall flags */
|
|
|
|
atomic_fetch_or_explicit(&logging_flags, flags, memory_order_acq_rel);
|
|
|
|
atomic_fetch_or_explicit(&logging_mask, total_mask, memory_order_acq_rel);
|
|
|
|
|
|
|
|
/* Close end-of-life log channels */
|
|
|
|
for (struct log_channel * _Atomic *pprev = &global_logs,
|
|
|
|
*ol = atomic_load_explicit(pprev, memory_order_acquire);
|
|
|
|
ol; )
|
2016-11-01 10:37:49 +00:00
|
|
|
{
|
2023-08-21 16:44:10 +00:00
|
|
|
/* Store new mask after opening new files to minimize missing log message race conditions */
|
|
|
|
atomic_store_explicit(&ol->mask, ol->new_mask, memory_order_release);
|
|
|
|
|
|
|
|
/* Never close syslog channel */
|
|
|
|
if (ol->new_mask || !ol->rf)
|
|
|
|
{
|
|
|
|
pprev = &ol->next;
|
|
|
|
ol = atomic_load_explicit(pprev, memory_order_acquire);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* This file has no logging set up, remove from list */
|
|
|
|
struct log_channel *next = atomic_load_explicit(&ol->next, memory_order_acquire);
|
|
|
|
atomic_store_explicit(pprev, next, memory_order_release);
|
|
|
|
|
|
|
|
/* Free the channel after all worker threads leave the critical section */
|
|
|
|
log_lock();
|
|
|
|
lts_request(ol, NULL, "Log Reconfigure Close Old File");
|
|
|
|
log_unlock();
|
|
|
|
|
|
|
|
/* Continue to next */
|
|
|
|
ol = next;
|
|
|
|
}
|
2016-11-01 10:37:49 +00:00
|
|
|
}
|
2019-07-30 10:11:49 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
/* Set overall flags after files are closed */
|
|
|
|
atomic_store_explicit(&logging_flags, flags, memory_order_release);
|
|
|
|
atomic_store_explicit(&logging_mask, total_mask, memory_order_release);
|
2019-07-30 10:11:49 +00:00
|
|
|
|
2023-08-21 16:44:10 +00:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
|
|
|
if ((!current_syslog_name != !new_syslog_name)
|
|
|
|
|| bstrcmp(current_syslog_name, new_syslog_name))
|
|
|
|
{
|
|
|
|
char *old_syslog_name = current_syslog_name;
|
|
|
|
|
|
|
|
if (new_syslog_name)
|
|
|
|
{
|
|
|
|
current_syslog_name = xstrdup(new_syslog_name);
|
|
|
|
openlog(current_syslog_name, LOG_CONS | LOG_NDELAY, LOG_DAEMON);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
current_syslog_name = NULL;
|
|
|
|
closelog();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (old_syslog_name)
|
|
|
|
xfree(old_syslog_name);
|
|
|
|
}
|
|
|
|
#endif
|
1998-05-03 16:42:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
log_init_debug(char *f)
|
|
|
|
{
|
2021-06-28 13:43:45 +00:00
|
|
|
clock_gettime(CLOCK_MONOTONIC, &dbg_time_start);
|
|
|
|
|
2023-08-16 13:05:36 +00:00
|
|
|
if (dbg_rf && dbg_rf != &rf_stderr)
|
2023-08-21 16:44:10 +00:00
|
|
|
rfree(dbg_rf);
|
2023-01-12 16:40:53 +00:00
|
|
|
|
1998-05-03 16:42:08 +00:00
|
|
|
if (!f)
|
2023-08-16 13:05:36 +00:00
|
|
|
dbg_rf = NULL;
|
1999-12-06 13:45:56 +00:00
|
|
|
else if (!*f)
|
2023-08-16 13:05:36 +00:00
|
|
|
dbg_rf = &rf_stderr;
|
2023-08-24 13:38:44 +00:00
|
|
|
else if (!(dbg_rf = rf_open(&root_pool, f, RF_APPEND, 0)))
|
2016-07-11 18:22:55 +00:00
|
|
|
{
|
|
|
|
/* Cannot use die() nor log() here, logging is not yet initialized */
|
|
|
|
fprintf(stderr, "bird: Unable to open debug file %s: %s\n", f, strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
1998-05-03 16:42:08 +00:00
|
|
|
}
|