2015-01-02 17:28:19 +01:00
|
|
|
/* Copyright (c) 1998-2015 Free Software Foundation, Inc.
|
1998-01-31 09:39:55 +01:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1998.
|
|
|
|
|
2005-12-07 06:49:17 +01:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
2007-07-16 02:56:07 +02:00
|
|
|
it under the terms of the GNU General Public License as published
|
|
|
|
by the Free Software Foundation; version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
1998-01-31 09:39:55 +01:00
|
|
|
|
2005-12-07 06:49:17 +01:00
|
|
|
This program is distributed in the hope that it will be useful,
|
1998-01-31 09:39:55 +01:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2005-12-07 06:49:17 +01:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1998-01-31 09:39:55 +01:00
|
|
|
|
2005-12-07 06:49:17 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
2012-02-10 00:18:22 +01:00
|
|
|
along with this program; if not, see <http://www.gnu.org/licenses/>. */
|
1998-01-31 09:39:55 +01:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
2004-02-17 06:16:49 +01:00
|
|
|
#include <string.h>
|
1998-01-31 09:39:55 +01:00
|
|
|
#include <syslog.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "dbg_log.h"
|
|
|
|
#include "nscd.h"
|
|
|
|
|
|
|
|
/* if in debug mode and we have a debug file, we write the messages to it,
|
|
|
|
if in debug mode and no debug file, we write the messages to stderr,
|
|
|
|
else to syslog. */
|
|
|
|
|
2004-02-17 06:16:49 +01:00
|
|
|
static char *logfilename;
|
1998-10-18 17:16:22 +02:00
|
|
|
FILE *dbgout;
|
|
|
|
int debug_level;
|
1998-01-31 09:39:55 +01:00
|
|
|
|
2004-02-17 06:16:49 +01:00
|
|
|
void
|
1998-01-31 09:39:55 +01:00
|
|
|
set_logfile (const char *logfile)
|
|
|
|
{
|
2004-02-17 06:16:49 +01:00
|
|
|
logfilename = strdup (logfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
init_logfile (void)
|
|
|
|
{
|
|
|
|
if (logfilename)
|
|
|
|
{
|
2005-09-20 22:15:15 +02:00
|
|
|
dbgout = fopen64 (logfilename, "a");
|
2004-02-17 06:16:49 +01:00
|
|
|
return dbgout == NULL ? 0 : 1;
|
|
|
|
}
|
|
|
|
return 1;
|
1998-01-31 09:39:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dbg_log (const char *fmt,...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
2009-10-29 21:45:10 +01:00
|
|
|
char msg2[512];
|
1998-01-31 09:39:55 +01:00
|
|
|
|
|
|
|
va_start (ap, fmt);
|
2009-10-29 21:45:10 +01:00
|
|
|
vsnprintf (msg2, sizeof (msg2), fmt, ap);
|
1998-01-31 09:39:55 +01:00
|
|
|
|
1998-10-18 17:16:22 +02:00
|
|
|
if (debug_level > 0)
|
1998-01-31 09:39:55 +01:00
|
|
|
{
|
2009-10-29 21:45:10 +01:00
|
|
|
time_t t = time (NULL);
|
|
|
|
|
|
|
|
struct tm now;
|
|
|
|
localtime_r (&t, &now);
|
|
|
|
|
|
|
|
char buf[256];
|
|
|
|
strftime (buf, sizeof (buf), "%c", &now);
|
|
|
|
|
|
|
|
char msg[512];
|
|
|
|
snprintf (msg, sizeof (msg), "%s - %d: %s%s", buf, getpid (), msg2,
|
2004-10-03 03:21:47 +02:00
|
|
|
msg2[strlen (msg2) - 1] == '\n' ? "" : "\n");
|
1998-01-31 09:39:55 +01:00
|
|
|
if (dbgout)
|
1998-07-24 14:58:36 +02:00
|
|
|
{
|
|
|
|
fputs (msg, dbgout);
|
|
|
|
fflush (dbgout);
|
|
|
|
}
|
1998-01-31 09:39:55 +01:00
|
|
|
else
|
|
|
|
fputs (msg, stderr);
|
|
|
|
}
|
|
|
|
else
|
2004-10-03 03:21:47 +02:00
|
|
|
syslog (LOG_NOTICE, "%d %s", getpid (), msg2);
|
|
|
|
|
1998-01-31 09:39:55 +01:00
|
|
|
va_end (ap);
|
|
|
|
}
|