2000-02-17 20:38:33 +01:00
|
|
|
/* syslog.cc
|
|
|
|
|
2001-09-11 22:01:02 +02:00
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001 Red Hat, Inc.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-08-02 18:28:18 +02:00
|
|
|
#include "winsup.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <unistd.h>
|
2001-07-26 21:22:24 +02:00
|
|
|
#include "security.h"
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "fhandler.h"
|
2001-10-01 06:10:07 +02:00
|
|
|
#include "path.h"
|
2000-08-12 07:35:42 +02:00
|
|
|
#include "dtable.h"
|
2000-08-22 05:58:47 +02:00
|
|
|
#include "cygerrno.h"
|
2000-11-17 12:30:14 +01:00
|
|
|
#include "cygheap.h"
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "thread.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* FIXME: These should probably be in the registry. */
|
|
|
|
/* FIXME: The Win95 path should be whatever slash is */
|
|
|
|
|
|
|
|
#define WIN95_EVENT_LOG_PATH "C:\\CYGWIN_SYSLOG.TXT"
|
|
|
|
#define CYGWIN_LOG_NAME "Cygwin"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Utility function to help enable moving
|
|
|
|
* WIN95_EVENT_LOG_PATH into registry later.
|
|
|
|
*/
|
|
|
|
static const char *
|
|
|
|
get_win95_event_log_path ()
|
|
|
|
{
|
|
|
|
return WIN95_EVENT_LOG_PATH;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: For MT safe code these will need to be replaced */
|
|
|
|
|
|
|
|
#ifdef _MT_SAFE
|
2002-09-22 05:38:57 +02:00
|
|
|
#define process_ident _reent_winsup ()->_process_ident
|
|
|
|
#define process_logopt _reent_winsup ()->_process_logopt
|
|
|
|
#define process_facility _reent_winsup ()->_process_facility
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Default priority logmask */
|
2002-09-22 05:38:57 +02:00
|
|
|
#define process_logmask _reent_winsup ()->_process_logmask
|
2000-02-17 20:38:33 +01:00
|
|
|
#else
|
|
|
|
static char *process_ident = 0;
|
|
|
|
static int process_logopt = 0;
|
|
|
|
static int process_facility = 0;
|
|
|
|
|
|
|
|
/* Default priority logmask */
|
|
|
|
static int process_logmask = LOG_UPTO (LOG_DEBUG);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* openlog: save the passed args. Don't open the
|
|
|
|
* system log (NT) or log file (95) yet.
|
|
|
|
*/
|
2003-03-09 21:10:25 +01:00
|
|
|
extern "C" void
|
2000-02-17 20:38:33 +01:00
|
|
|
openlog (const char *ident, int logopt, int facility)
|
|
|
|
{
|
|
|
|
debug_printf ("openlog called with (%s, %d, %d)",
|
|
|
|
ident ? ident : "<NULL>", logopt, facility);
|
|
|
|
|
2000-08-11 03:56:05 +02:00
|
|
|
if (process_ident != NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
free (process_ident);
|
|
|
|
process_ident = 0;
|
|
|
|
}
|
|
|
|
if (ident)
|
|
|
|
{
|
|
|
|
process_ident = (char *) malloc (strlen (ident) + 1);
|
2000-08-24 23:19:14 +02:00
|
|
|
if (process_ident == NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
debug_printf ("failed to allocate memory for process_ident");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
strcpy (process_ident, ident);
|
|
|
|
}
|
|
|
|
process_logopt = logopt;
|
|
|
|
process_facility = facility;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* setlogmask: set the log priority mask and return previous mask.
|
|
|
|
If maskpri is zero, just return previous. */
|
|
|
|
int
|
|
|
|
setlogmask (int maskpri)
|
|
|
|
{
|
|
|
|
if (maskpri == 0)
|
|
|
|
return process_logmask;
|
|
|
|
|
|
|
|
int old_mask = process_logmask;
|
|
|
|
process_logmask = maskpri & LOG_PRIMASK;
|
|
|
|
|
|
|
|
return old_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Private class used to handle formatting of syslog message */
|
|
|
|
/* It is named pass_handler because it does a two-pass handling of log
|
|
|
|
strings. The first pass counts the length of the string, and the second
|
|
|
|
one builds the string. */
|
|
|
|
|
|
|
|
class pass_handler
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
FILE *fp_;
|
|
|
|
char *message_;
|
|
|
|
int total_len_;
|
|
|
|
|
|
|
|
void shutdown ();
|
|
|
|
|
|
|
|
/* Explicitly disallow copies */
|
|
|
|
pass_handler (const pass_handler &);
|
|
|
|
pass_handler & operator = (const pass_handler &);
|
|
|
|
|
|
|
|
public:
|
|
|
|
pass_handler ();
|
|
|
|
~pass_handler ();
|
|
|
|
|
|
|
|
int initialize (int);
|
|
|
|
|
|
|
|
int print (const char *,...);
|
|
|
|
int print_va (const char *, va_list);
|
|
|
|
char *get_message () const { return message_; }
|
2000-08-24 23:19:14 +02:00
|
|
|
void set_message (char *s) { message_ = s; *message_ = '\0'; }
|
2000-02-17 20:38:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
pass_handler::pass_handler () : fp_ (0), message_ (0), total_len_ (0)
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
pass_handler::~pass_handler ()
|
|
|
|
{
|
|
|
|
shutdown ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pass_handler::shutdown ()
|
|
|
|
{
|
2000-08-11 03:56:05 +02:00
|
|
|
if (fp_ != NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
fclose (fp_);
|
|
|
|
fp_ = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pass_handler::initialize (int pass_number)
|
|
|
|
{
|
|
|
|
shutdown ();
|
2000-08-11 03:56:05 +02:00
|
|
|
if (pass_number)
|
|
|
|
return total_len_ + 1;
|
|
|
|
|
|
|
|
fp_ = fopen ("/dev/null", "wb");
|
|
|
|
if (fp_ == NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-08-11 03:56:05 +02:00
|
|
|
debug_printf ("failed to open /dev/null");
|
|
|
|
return -1;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
2000-08-11 03:56:05 +02:00
|
|
|
total_len_ = 0;
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pass_handler::print (const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start (ap, fmt);
|
|
|
|
int ret = print_va (fmt, ap);
|
|
|
|
va_end (ap);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pass_handler::print_va (const char *fmt, va_list list)
|
|
|
|
{
|
2000-08-24 23:19:14 +02:00
|
|
|
if (fp_ != NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
int len = vfprintf (fp_, fmt, list);
|
|
|
|
if (len < 0)
|
2000-08-11 03:56:05 +02:00
|
|
|
return -1;
|
|
|
|
total_len_ += len;
|
|
|
|
return 0;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
2000-08-24 23:19:14 +02:00
|
|
|
else if (message_ != NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
char *printpos = &message_[strlen (message_)];
|
|
|
|
vsprintf (printpos, fmt, list);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
debug_printf ("FAILURE ! fp_ and message_ both 0!! ");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* syslog: creates the log message and writes to system
|
|
|
|
* log (NT) or log file (95). FIXME. WinNT log error messages
|
|
|
|
* don't look pretty, but in order to fix this we have to
|
|
|
|
* embed resources in the code and tell the NT registry
|
|
|
|
* where we are, blech (what happens if we move ?).
|
|
|
|
* We could, however, add the resources in Cygwin and
|
|
|
|
* always point to that.
|
|
|
|
*/
|
|
|
|
|
2003-03-09 21:10:25 +01:00
|
|
|
extern "C" void
|
2003-06-06 10:11:19 +02:00
|
|
|
vsyslog (int priority, const char *message, va_list ap)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
debug_printf ("%x %s", priority, message);
|
|
|
|
/* If the priority fails the current mask, reject */
|
|
|
|
if (((priority & LOG_PRIMASK) & process_logmask) == 0)
|
|
|
|
{
|
|
|
|
debug_printf ("failing message %x due to priority mask %x",
|
|
|
|
priority, process_logmask);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Translate %m in the message to error text */
|
|
|
|
char *errtext = strerror (get_errno ());
|
|
|
|
int errlen = strlen (errtext);
|
|
|
|
int numfound = 0;
|
|
|
|
|
|
|
|
for (const char *cp = message; *cp; cp++)
|
|
|
|
if (*cp == '%' && cp[1] == 'm')
|
|
|
|
numfound++;
|
|
|
|
|
2000-08-11 03:56:05 +02:00
|
|
|
char *newmessage = (char *) alloca (strlen (message) +
|
|
|
|
(errlen * numfound) + 1);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-08-11 03:56:05 +02:00
|
|
|
if (newmessage == NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
debug_printf ("failed to allocate newmessage");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *dst = newmessage;
|
|
|
|
for (const char *cp2 = message; *cp2; cp2++)
|
|
|
|
if (*cp2 == '%' && cp2[1] == 'm')
|
|
|
|
{
|
|
|
|
cp2++;
|
|
|
|
strcpy (dst, errtext);
|
|
|
|
while (*dst)
|
|
|
|
dst++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*dst++ = *cp2;
|
|
|
|
|
|
|
|
*dst = '\0';
|
|
|
|
message = newmessage;
|
|
|
|
|
|
|
|
/* Work out the priority type - we ignore the facility for now.. */
|
|
|
|
WORD eventType;
|
|
|
|
switch (LOG_PRI (priority))
|
|
|
|
{
|
2001-10-05 02:17:57 +02:00
|
|
|
case LOG_EMERG:
|
|
|
|
case LOG_ALERT:
|
|
|
|
case LOG_CRIT:
|
2000-02-17 20:38:33 +01:00
|
|
|
case LOG_ERR:
|
|
|
|
eventType = EVENTLOG_ERROR_TYPE;
|
|
|
|
break;
|
|
|
|
case LOG_WARNING:
|
|
|
|
eventType = EVENTLOG_WARNING_TYPE;
|
|
|
|
break;
|
2001-10-05 02:17:57 +02:00
|
|
|
case LOG_NOTICE:
|
2000-02-17 20:38:33 +01:00
|
|
|
case LOG_INFO:
|
2001-10-05 02:17:57 +02:00
|
|
|
case LOG_DEBUG:
|
2000-02-17 20:38:33 +01:00
|
|
|
eventType = EVENTLOG_INFORMATION_TYPE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
eventType = EVENTLOG_ERROR_TYPE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We need to know how long the buffer needs to be.
|
|
|
|
The only legal way I can see of doing this is to
|
|
|
|
do a vfprintf to /dev/null, and count the bytes
|
|
|
|
output, then do it again to a malloc'ed string. This
|
|
|
|
is ugly, slow, but prevents core dumps :-).
|
|
|
|
*/
|
|
|
|
pass_handler pass;
|
2000-08-11 03:56:05 +02:00
|
|
|
for (int pass_number = 0; pass_number < 2; ++pass_number)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-08-11 03:56:05 +02:00
|
|
|
int n = pass.initialize (pass_number);
|
|
|
|
if (n == -1)
|
2000-02-17 20:38:33 +01:00
|
|
|
return;
|
2000-08-11 03:56:05 +02:00
|
|
|
else if (n > 0)
|
|
|
|
pass.set_message ((char *) alloca (n));
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* Deal with ident_string */
|
2000-08-24 23:19:14 +02:00
|
|
|
if (process_ident != NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
if (pass.print ("%s : ", process_ident) == -1)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (process_logopt & LOG_PID)
|
|
|
|
{
|
2003-02-22 20:35:03 +01:00
|
|
|
if (pass.print ("PID %u : ", getpid ()) == -1)
|
2000-02-17 20:38:33 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
if (!wincap.has_eventlog ())
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
/* Add a priority string - not needed for systems with
|
|
|
|
eventlog capability. */
|
2000-02-17 20:38:33 +01:00
|
|
|
switch (LOG_PRI (priority))
|
|
|
|
{
|
2001-10-05 02:17:57 +02:00
|
|
|
case LOG_EMERG:
|
|
|
|
pass.print ("%s : ", "LOG_EMERG");
|
|
|
|
break;
|
|
|
|
case LOG_ALERT:
|
|
|
|
pass.print ("%s : ", "LOG_ALERT");
|
|
|
|
break;
|
|
|
|
case LOG_CRIT:
|
|
|
|
pass.print ("%s : ", "LOG_CRIT");
|
|
|
|
break;
|
2000-02-17 20:38:33 +01:00
|
|
|
case LOG_ERR:
|
|
|
|
pass.print ("%s : ", "LOG_ERR");
|
|
|
|
break;
|
|
|
|
case LOG_WARNING:
|
|
|
|
pass.print ("%s : ", "LOG_WARNING");
|
|
|
|
break;
|
2001-10-05 02:17:57 +02:00
|
|
|
case LOG_NOTICE:
|
|
|
|
pass.print ("%s : ", "LOG_NOTICE");
|
|
|
|
break;
|
2000-02-17 20:38:33 +01:00
|
|
|
case LOG_INFO:
|
|
|
|
pass.print ("%s : ", "LOG_INFO");
|
2001-10-05 02:17:57 +02:00
|
|
|
break;
|
|
|
|
case LOG_DEBUG:
|
|
|
|
pass.print ("%s : ", "LOG_DEBUG");
|
2000-02-17 20:38:33 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pass.print ("%s : ", "LOG_ERR");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print out the variable part */
|
|
|
|
if (pass.print_va (message, ap) == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
const char *msg_strings[1];
|
|
|
|
char *total_msg = pass.get_message ();
|
|
|
|
int len = strlen (total_msg);
|
|
|
|
if (len != 0 && (total_msg[len - 1] == '\n'))
|
|
|
|
total_msg[len - 1] = '\0';
|
|
|
|
|
|
|
|
msg_strings[0] = total_msg;
|
|
|
|
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
if (wincap.has_eventlog ())
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
/* For NT, open the event log and send the message */
|
2000-08-24 23:19:14 +02:00
|
|
|
HANDLE hEventSrc = RegisterEventSourceA (NULL, (process_ident != NULL) ?
|
2000-02-17 20:38:33 +01:00
|
|
|
process_ident : CYGWIN_LOG_NAME);
|
2000-08-24 23:19:14 +02:00
|
|
|
if (hEventSrc == NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
debug_printf ("RegisterEventSourceA failed with %E");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ReportEventA (hEventSrc, eventType, 0, 0,
|
2000-11-17 12:30:14 +01:00
|
|
|
cygheap->user.sid (), 1, 0, msg_strings, NULL);
|
2000-02-17 20:38:33 +01:00
|
|
|
DeregisterEventSource (hEventSrc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Under Windows 95, append the message to the log file */
|
2003-02-22 20:35:03 +01:00
|
|
|
char timestamp[24];
|
|
|
|
time_t ctime;
|
2000-02-17 20:38:33 +01:00
|
|
|
FILE *fp = fopen (get_win95_event_log_path (), "a");
|
2000-08-24 23:19:14 +02:00
|
|
|
if (fp == NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
debug_printf ("failed to open file %s",
|
|
|
|
get_win95_event_log_path ());
|
|
|
|
return;
|
|
|
|
}
|
2003-02-22 20:35:03 +01:00
|
|
|
strftime (timestamp, sizeof timestamp, "%Y-%m-%d %H:%M:%S : ",
|
|
|
|
localtime (&(ctime = time (NULL))));
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Now to prevent several syslog messages from being
|
|
|
|
interleaved, we must lock the first byte of the file
|
|
|
|
This works on Win32 even if we created the file above.
|
|
|
|
*/
|
2001-04-18 23:10:15 +02:00
|
|
|
HANDLE fHandle = cygheap->fdtab[fileno (fp)]->get_handle ();
|
2003-02-22 20:35:03 +01:00
|
|
|
for (int i = 0;; i++)
|
|
|
|
if (LockFile (fHandle, 0, 0, 1, 0) == FALSE)
|
|
|
|
if (i == 3)
|
|
|
|
{
|
|
|
|
debug_printf ("failed to lock file %s", get_win95_event_log_path ());
|
|
|
|
fclose (fp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
usleep (1000);
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
fputs (timestamp, fp);
|
2000-02-17 20:38:33 +01:00
|
|
|
fputs (msg_strings[0], fp);
|
|
|
|
fputc ('\n', fp);
|
|
|
|
fclose (fp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-06-06 10:11:19 +02:00
|
|
|
extern "C" void
|
|
|
|
syslog (int priority, const char *message, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start (ap, message);
|
|
|
|
vsyslog (priority, message, ap);
|
|
|
|
va_end (ap);
|
|
|
|
}
|
|
|
|
|
2003-03-09 21:10:25 +01:00
|
|
|
extern "C" void
|
2000-02-17 20:38:33 +01:00
|
|
|
closelog (void)
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|