2004-02-24 00:41:20 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-02-24 00:41:20 +01:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "log.h"
|
|
|
|
#include "conf.h"
|
2008-10-08 10:49:29 +02:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <fcntl.h>
|
2008-10-29 21:02:22 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <glib.h>
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-12-20 17:26:49 +01:00
|
|
|
#define LOG_LEVEL_SECURE G_LOG_LEVEL_INFO
|
2008-11-05 18:38:30 +01:00
|
|
|
|
2007-08-28 07:01:16 +02:00
|
|
|
#define LOG_DATE_BUF_SIZE 16
|
|
|
|
#define LOG_DATE_LEN (LOG_DATE_BUF_SIZE - 1)
|
2008-11-05 18:38:23 +01:00
|
|
|
|
2008-12-28 19:48:53 +01:00
|
|
|
static GLogLevelFlags log_threshold = G_LOG_LEVEL_MESSAGE;
|
2008-11-05 18:38:23 +01:00
|
|
|
|
2008-11-05 18:39:13 +01:00
|
|
|
static const char *log_charset;
|
|
|
|
|
2008-11-05 18:39:10 +01:00
|
|
|
static bool stdout_mode = true;
|
2006-08-01 06:18:53 +02:00
|
|
|
static int out_fd = -1;
|
2007-01-14 04:07:53 +01:00
|
|
|
static const char *out_filename;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2006-08-01 06:18:53 +02:00
|
|
|
static void redirect_logs(void)
|
|
|
|
{
|
2008-03-26 11:37:06 +01:00
|
|
|
assert(out_fd >= 0);
|
2006-08-01 06:18:53 +02:00
|
|
|
if (dup2(out_fd, STDOUT_FILENO) < 0)
|
|
|
|
FATAL("problems dup2 stdout : %s\n", strerror(errno));
|
2008-12-28 19:48:52 +01:00
|
|
|
if (dup2(out_fd, STDERR_FILENO) < 0)
|
2006-08-01 06:18:53 +02:00
|
|
|
FATAL("problems dup2 stderr : %s\n", strerror(errno));
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2006-08-01 06:18:53 +02:00
|
|
|
static const char *log_date(void)
|
|
|
|
{
|
2007-08-28 07:01:16 +02:00
|
|
|
static char buf[LOG_DATE_BUF_SIZE];
|
2006-08-01 06:18:53 +02:00
|
|
|
time_t t = time(NULL);
|
2007-08-28 07:01:16 +02:00
|
|
|
strftime(buf, LOG_DATE_BUF_SIZE, "%b %d %H:%M : ", localtime(&t));
|
2006-08-01 06:18:53 +02:00
|
|
|
return buf;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2004-06-12 04:06:16 +02:00
|
|
|
|
2008-11-05 18:38:55 +01:00
|
|
|
static void
|
2008-12-28 19:48:53 +01:00
|
|
|
file_log_func(const gchar *log_domain,
|
|
|
|
G_GNUC_UNUSED GLogLevelFlags log_level,
|
|
|
|
const gchar *message, G_GNUC_UNUSED gpointer user_data)
|
2008-11-05 18:38:55 +01:00
|
|
|
{
|
2008-11-05 18:39:13 +01:00
|
|
|
char *converted;
|
|
|
|
|
2008-12-28 19:48:53 +01:00
|
|
|
if (log_level > log_threshold)
|
2008-11-14 18:27:11 +01:00
|
|
|
return;
|
|
|
|
|
2008-11-05 21:40:08 +01:00
|
|
|
if (log_charset != NULL) {
|
|
|
|
converted = g_convert_with_fallback(message, -1,
|
|
|
|
log_charset, "utf-8",
|
|
|
|
NULL, NULL, NULL, NULL);
|
|
|
|
if (converted != NULL)
|
|
|
|
message = converted;
|
|
|
|
} else
|
|
|
|
converted = NULL;
|
2008-11-05 18:38:55 +01:00
|
|
|
|
2008-11-21 20:13:00 +01:00
|
|
|
if (log_domain == NULL)
|
|
|
|
log_domain = "";
|
|
|
|
|
2008-12-28 19:48:52 +01:00
|
|
|
fprintf(stderr, "%s%s%s%s",
|
2008-11-05 18:38:55 +01:00
|
|
|
stdout_mode ? "" : log_date(),
|
2008-11-21 20:13:00 +01:00
|
|
|
log_domain, *log_domain == 0 ? "" : ": ",
|
2008-11-05 18:38:55 +01:00
|
|
|
message);
|
2008-11-05 18:39:13 +01:00
|
|
|
|
|
|
|
g_free(converted);
|
2008-11-05 18:38:55 +01:00
|
|
|
}
|
|
|
|
|
2008-12-28 19:48:53 +01:00
|
|
|
static void
|
|
|
|
log_init_stdout(void)
|
|
|
|
{
|
|
|
|
g_log_set_default_handler(file_log_func, NULL);
|
|
|
|
}
|
|
|
|
|
2008-12-28 19:48:52 +01:00
|
|
|
static int
|
|
|
|
open_log_file(void)
|
|
|
|
{
|
|
|
|
assert(out_filename != NULL);
|
|
|
|
|
2008-12-28 19:48:52 +01:00
|
|
|
return open(out_filename, O_CREAT | O_WRONLY | O_APPEND, 0666);
|
2008-12-28 19:48:52 +01:00
|
|
|
}
|
|
|
|
|
2008-12-28 19:48:53 +01:00
|
|
|
static void
|
|
|
|
log_init_file(const char *path, unsigned line)
|
|
|
|
{
|
|
|
|
out_filename = path;
|
|
|
|
out_fd = open_log_file();
|
|
|
|
if (out_fd < 0)
|
|
|
|
FATAL("problem opening log file \"%s\" (config line %u) for "
|
|
|
|
"writing\n", path, line);
|
|
|
|
|
|
|
|
g_log_set_default_handler(file_log_func, NULL);
|
|
|
|
}
|
|
|
|
|
2008-12-28 19:48:53 +01:00
|
|
|
static inline GLogLevelFlags
|
|
|
|
parse_log_level(const char *value, unsigned line)
|
|
|
|
{
|
|
|
|
if (0 == strcmp(value, "default"))
|
|
|
|
return G_LOG_LEVEL_MESSAGE;
|
|
|
|
if (0 == strcmp(value, "secure"))
|
|
|
|
return LOG_LEVEL_SECURE;
|
|
|
|
else if (0 == strcmp(value, "verbose"))
|
|
|
|
return G_LOG_LEVEL_DEBUG;
|
|
|
|
else
|
|
|
|
FATAL("unknown log level \"%s\" at line %u\n",
|
|
|
|
value, line);
|
|
|
|
}
|
|
|
|
|
2008-12-28 19:48:53 +01:00
|
|
|
void log_init(bool verbose, bool use_stdout)
|
2006-08-01 06:18:53 +02:00
|
|
|
{
|
|
|
|
ConfigParam *param;
|
|
|
|
|
2008-11-05 18:39:13 +01:00
|
|
|
g_get_charset(&log_charset);
|
|
|
|
|
2008-12-28 19:48:53 +01:00
|
|
|
if (verbose)
|
2008-11-05 18:38:30 +01:00
|
|
|
log_threshold = G_LOG_LEVEL_DEBUG;
|
2008-12-28 19:48:53 +01:00
|
|
|
else if ((param = getConfigParam(CONF_LOG_LEVEL)) != NULL)
|
|
|
|
log_threshold = parse_log_level(param->value, param->line);
|
2006-08-01 06:18:53 +02:00
|
|
|
|
2008-12-28 19:48:53 +01:00
|
|
|
if (use_stdout) {
|
|
|
|
log_init_stdout();
|
|
|
|
} else {
|
|
|
|
param = parseConfigFilePath(CONF_LOG_FILE, 1);
|
|
|
|
log_init_file(param->value, param->line);
|
|
|
|
}
|
2006-08-01 06:18:53 +02:00
|
|
|
}
|
|
|
|
|
2008-11-05 18:39:10 +01:00
|
|
|
void setup_log_output(bool use_stdout)
|
2006-08-01 06:18:53 +02:00
|
|
|
{
|
|
|
|
fflush(NULL);
|
|
|
|
if (!use_stdout) {
|
|
|
|
redirect_logs();
|
2008-11-05 18:39:10 +01:00
|
|
|
stdout_mode = false;
|
2008-11-05 18:39:13 +01:00
|
|
|
log_charset = NULL;
|
2006-08-01 06:18:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-05 18:38:30 +01:00
|
|
|
#define log_func(func,level) \
|
2008-12-02 03:00:02 +01:00
|
|
|
G_GNUC_PRINTF(1, 2) void func(const char *fmt, ...) \
|
2006-08-01 06:18:53 +02:00
|
|
|
{ \
|
2008-12-28 19:48:53 +01:00
|
|
|
if (level <= log_threshold) { \
|
2006-08-01 06:18:53 +02:00
|
|
|
va_list args; \
|
|
|
|
va_start(args, fmt); \
|
2008-11-05 18:38:30 +01:00
|
|
|
g_logv(NULL, level, fmt, args); \
|
2006-08-01 06:18:53 +02:00
|
|
|
va_end(args); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2008-11-05 18:38:30 +01:00
|
|
|
log_func(ERROR, G_LOG_LEVEL_WARNING)
|
|
|
|
log_func(WARNING, G_LOG_LEVEL_WARNING)
|
|
|
|
log_func(LOG, G_LOG_LEVEL_MESSAGE)
|
|
|
|
log_func(SECURE, LOG_LEVEL_SECURE)
|
|
|
|
log_func(DEBUG, G_LOG_LEVEL_DEBUG)
|
2006-08-01 06:18:53 +02:00
|
|
|
|
|
|
|
#undef log_func
|
|
|
|
|
2008-12-02 03:00:02 +01:00
|
|
|
G_GNUC_PRINTF(1, 2) G_GNUC_NORETURN void FATAL(const char *fmt, ...)
|
2006-08-01 06:18:53 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
2008-11-05 18:38:30 +01:00
|
|
|
g_logv(NULL, G_LOG_LEVEL_ERROR, fmt, args);
|
2006-08-01 06:18:53 +02:00
|
|
|
va_end(args);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
int cycle_log_files(void)
|
|
|
|
{
|
|
|
|
if (stdout_mode)
|
|
|
|
return 0;
|
|
|
|
assert(out_filename);
|
|
|
|
|
|
|
|
DEBUG("Cycling log files...\n");
|
|
|
|
close_log_files();
|
|
|
|
|
2008-12-28 19:48:52 +01:00
|
|
|
out_fd = open_log_file();
|
2006-08-01 06:18:53 +02:00
|
|
|
if (out_fd < 0) {
|
|
|
|
ERROR("error re-opening log file: %s\n", out_filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
redirect_logs();
|
|
|
|
DEBUG("Done cycling log files\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void close_log_files(void)
|
|
|
|
{
|
|
|
|
if (stdout_mode)
|
|
|
|
return;
|
2008-03-26 11:37:06 +01:00
|
|
|
assert(out_fd >= 0);
|
2008-10-29 21:02:22 +01:00
|
|
|
close(out_fd);
|
2006-08-01 06:18:53 +02:00
|
|
|
}
|
|
|
|
|