2001-07-06 05:39:57 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 Internet Software Consortium.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
|
|
|
|
* DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
|
|
* INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
|
|
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2003-10-03 06:12:34 +00:00
|
|
|
/* $Id: syslog.c,v 1.7 2003/10/03 06:12:34 marka Exp $ */
|
2001-07-06 05:39:57 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
|
|
|
|
#include <isc/bindevt.h>
|
|
|
|
#include <isc/result.h>
|
|
|
|
#include <isc/syslog.h>
|
|
|
|
#include <isc/util.h>
|
|
|
|
|
|
|
|
static HANDLE hAppLog = NULL;
|
|
|
|
static FILE *log_stream;
|
|
|
|
static int debug_level = 0;
|
|
|
|
|
|
|
|
static struct dsn_c_pvt_sfnt {
|
|
|
|
int val;
|
|
|
|
const char *strval;
|
|
|
|
} facilities[] = {
|
2001-07-08 05:09:35 +00:00
|
|
|
{ LOG_KERN, "kern" },
|
|
|
|
{ LOG_USER, "user" },
|
|
|
|
{ LOG_MAIL, "mail" },
|
2001-07-06 05:39:57 +00:00
|
|
|
{ LOG_DAEMON, "daemon" },
|
2001-07-08 05:09:35 +00:00
|
|
|
{ LOG_AUTH, "auth" },
|
2001-07-06 05:39:57 +00:00
|
|
|
{ LOG_SYSLOG, "syslog" },
|
2001-07-08 05:09:35 +00:00
|
|
|
{ LOG_LPR, "lpr" },
|
2001-07-06 05:39:57 +00:00
|
|
|
#ifdef LOG_NEWS
|
2001-07-08 05:09:35 +00:00
|
|
|
{ LOG_NEWS, "news" },
|
2001-07-06 05:39:57 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LOG_UUCP
|
2001-07-08 05:09:35 +00:00
|
|
|
{ LOG_UUCP, "uucp" },
|
2001-07-06 05:39:57 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LOG_CRON
|
2001-07-08 05:09:35 +00:00
|
|
|
{ LOG_CRON, "cron" },
|
2001-07-06 05:39:57 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LOG_AUTHPRIV
|
|
|
|
{ LOG_AUTHPRIV, "authpriv" },
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_FTP
|
2001-07-08 05:09:35 +00:00
|
|
|
{ LOG_FTP, "ftp" },
|
2001-07-06 05:39:57 +00:00
|
|
|
#endif
|
|
|
|
{ LOG_LOCAL0, "local0"},
|
|
|
|
{ LOG_LOCAL1, "local1"},
|
|
|
|
{ LOG_LOCAL2, "local2"},
|
|
|
|
{ LOG_LOCAL3, "local3"},
|
|
|
|
{ LOG_LOCAL4, "local4"},
|
|
|
|
{ LOG_LOCAL5, "local5"},
|
|
|
|
{ LOG_LOCAL6, "local6"},
|
|
|
|
{ LOG_LOCAL7, "local7"},
|
2001-07-08 05:09:35 +00:00
|
|
|
{ 0, NULL }
|
2001-07-06 05:39:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc_syslog_facilityfromstring(const char *str, int *facilityp) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
REQUIRE(str != NULL);
|
|
|
|
REQUIRE(facilityp != NULL);
|
|
|
|
|
2003-10-03 06:12:34 +00:00
|
|
|
for (i = 0; facilities[i].strval != NULL; i++) {
|
2001-07-06 05:39:57 +00:00
|
|
|
if (strcasecmp(facilities[i].strval, str) == 0) {
|
|
|
|
*facilityp = facilities[i].val;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (ISC_R_NOTFOUND);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Log to the NT Event Log
|
|
|
|
*/
|
|
|
|
void
|
2001-07-08 05:09:35 +00:00
|
|
|
syslog(int level, const char *fmt, ...) {
|
2001-07-06 05:39:57 +00:00
|
|
|
va_list ap;
|
|
|
|
char buf[1024];
|
|
|
|
char *str[1];
|
|
|
|
|
|
|
|
str[0] = buf;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vsprintf(buf, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
/* Make sure that the channel is open to write the event */
|
2001-07-08 05:09:35 +00:00
|
|
|
if (hAppLog != NULL) {
|
|
|
|
switch (level) {
|
|
|
|
case LOG_INFO:
|
|
|
|
case LOG_NOTICE:
|
|
|
|
case LOG_DEBUG:
|
|
|
|
ReportEvent(hAppLog, EVENTLOG_INFORMATION_TYPE, 0,
|
|
|
|
BIND_INFO_MSG, NULL, 1, 0, str, NULL);
|
|
|
|
break;
|
|
|
|
case LOG_WARNING:
|
|
|
|
ReportEvent(hAppLog, EVENTLOG_WARNING_TYPE, 0,
|
|
|
|
BIND_WARN_MSG, NULL, 1, 0, str, NULL);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ReportEvent(hAppLog, EVENTLOG_ERROR_TYPE, 0,
|
|
|
|
BIND_ERR_MSG, NULL, 1, 0, str, NULL);
|
|
|
|
break;
|
2001-07-06 05:39:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize event logging
|
|
|
|
*/
|
|
|
|
void
|
2001-07-08 05:09:35 +00:00
|
|
|
openlog(const char *name, int flags, ...) {
|
|
|
|
/* Get a handle to the Application event log */
|
|
|
|
hAppLog = RegisterEventSource(NULL, name);
|
2001-07-06 05:39:57 +00:00
|
|
|
}
|
|
|
|
|
2001-07-08 05:09:35 +00:00
|
|
|
/*
|
|
|
|
* Close the Handle to the application Event Log
|
|
|
|
* We don't care whether or not we succeeded so ignore return values
|
|
|
|
* In fact if we failed then we would have nowhere to put the message
|
|
|
|
*/
|
2001-07-06 05:39:57 +00:00
|
|
|
void
|
2001-07-08 05:09:35 +00:00
|
|
|
closelog() {
|
|
|
|
DeregisterEventSource(hAppLog);
|
2001-07-06 05:39:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Keep event logging synced with the current debug level
|
|
|
|
*/
|
|
|
|
void
|
2001-07-08 05:09:35 +00:00
|
|
|
ModifyLogLevel(int level) {
|
2001-07-06 05:39:57 +00:00
|
|
|
debug_level = level;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize logging for the port section of libbind.
|
|
|
|
* Piggyback onto stream given.
|
|
|
|
*/
|
|
|
|
void
|
2001-07-08 05:09:35 +00:00
|
|
|
InitNTLogging(FILE *stream, int debug) {
|
2001-07-06 05:39:57 +00:00
|
|
|
log_stream = stream;
|
|
|
|
ModifyLogLevel(debug);
|
|
|
|
}
|
2002-08-01 03:43:31 +00:00
|
|
|
/*
|
|
|
|
* This function is for reporting errors to the application
|
|
|
|
* event log in case the regular syslog is not available
|
|
|
|
* mainly during startup. It should not be used under normal
|
|
|
|
* circumstances.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
NTReportError(const char *name, const char *str) {
|
|
|
|
HANDLE hNTAppLog = NULL;
|
2002-08-03 01:34:14 +00:00
|
|
|
const char *buf[1];
|
|
|
|
|
|
|
|
buf[0] = str;
|
2002-08-01 03:43:31 +00:00
|
|
|
|
|
|
|
hNTAppLog = RegisterEventSource(NULL, name);
|
|
|
|
|
|
|
|
ReportEvent(hNTAppLog, EVENTLOG_ERROR_TYPE, 0,
|
2002-08-03 01:34:14 +00:00
|
|
|
BIND_ERR_MSG, NULL, 1, 0, buf, NULL);
|
2001-07-08 05:09:35 +00:00
|
|
|
|
2002-08-01 03:43:31 +00:00
|
|
|
DeregisterEventSource(hNTAppLog);
|
2003-10-03 06:12:34 +00:00
|
|
|
}
|