1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#include <config.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#ifdef _WIN32
static HANDLE hEventLog = NULL;
/*
* Close the Handle to the application Event Log
*/
void
closelog() {
DeregisterEventSource(hEventLog);
}
/*
* Initialize event logging
*/
void
openlog(const char *ident, int logopt, int facility) {
/* Get a handle to the Application event log */
hEventLog = RegisterEventSourceA(NULL, ident);
}
/*
* Log to the NT Event Log
*/
void
syslog(int priority, const char *message, ...) {
va_list ap;
char buf[1024];
LPCSTR str[1];
str[0] = buf;
va_start(ap, message);
vsprintf(buf, message, ap);
va_end(ap);
/* Make sure that the channel is open to write the event */
if (hEventLog == NULL) {
openlog("SoftHSM", 0, 0);
}
if (hEventLog != NULL) {
switch (priority) {
case LOG_INFO:
case LOG_NOTICE:
case LOG_DEBUG:
ReportEventA(hEventLog, EVENTLOG_INFORMATION_TYPE, 0,
0x40000003, NULL, 1, 0, str, NULL);
break;
case LOG_WARNING:
ReportEventA(hEventLog, EVENTLOG_WARNING_TYPE, 0,
0x80000002, NULL, 1, 0, str, NULL);
break;
default:
ReportEventA(hEventLog, EVENTLOG_ERROR_TYPE, 0,
0xc0000001, NULL, 1, 0, str, NULL);
break;
}
}
}
#endif
|