-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathldapauthlog.c
227 lines (160 loc) · 3.48 KB
/
ldapauthlog.c
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/*++
IIS LDAP Authentication Module
Copyright 2006 Inflection Technology, LLC
For more information, visit http://www.inflectiontech.com.
Released under LGPL terms.
Some portions Copyright Salvador Salanova Fortmann.
Some portions Copyright Microsoft Corporation.
File Name: ldapauthlog.c
Abstract:
This module implements a file logging system. These routines
can only be used for the ISAPI module running in IIS5
single process mode.
Modification History:
2006-12-12 ramr
File created.
--*/
#include <stdio.h>
#include "ldapauthlog.h"
/*
Global Configuration Variables
*/
FILE *gpfsLogFile = 0;
CRITICAL_SECTION gsLogLock = {0};
UINT16 gliLevel = 0;
BOOL
Log_Initialize(
const CHAR * pszLogPath
)
/*++
Routine Description:
Initializes the logging system. When called, a header will
be written to the log.
Arguments:
pszLogPath Windows pathname to the log file
Return Value:
Returns TRUE is successful; otherwise FALSE is returned.
--*/
{
BOOL fResult = FALSE;
CHAR achDefaultPath[MAXSTRLEN] = "";
if ( gpfsLogFile != NULL ) goto exception;
InitializeCriticalSection( &gsLogLock );
EnterCriticalSection( &gsLogLock );
if ( pszLogPath != NULL )
{
gpfsLogFile = fopen( pszLogPath, "a+" );
}
else
{
if ( GetEnvironmentVariableA( "SystemDrive", achDefaultPath, MAXSTRLEN ) )
{
strlcat( achDefaultPath, LDAPLOG_DEFAULTFILE, MAXSTRLEN );
}
gpfsLogFile = fopen( achDefaultPath, "a+" );
}
if ( gpfsLogFile != NULL )
{
fprintf( gpfsLogFile, "%s", "\n----------------------------------" );
fprintf( gpfsLogFile, "%s", "\nIIS LDAP Authentication Filter 2.0" );
fprintf( gpfsLogFile, "%s", "\n[Log_Initialize]: Log_Initialize()." );
fflush( gpfsLogFile );
fResult = TRUE;
}
LeaveCriticalSection( &gsLogLock );
exception:
return ( fResult );
}
BOOL
Log_SetLevel(
const UINT16 liLevel
)
/*++
Routine Description:
Sets the logging event level.
Arguments:
liLevel Logging level constant
Return Value:
Returns TRUE is successful; otherwise FALSE is returned.
--*/
{
BOOL fResult = FALSE;
if ( gpfsLogFile == NULL ) goto exception;
if (liLevel == LDAPLOG_INFORMATIONAL ||
liLevel == LDAPLOG_WARNING ||
liLevel == LDAPLOG_CRITICAL ||
liLevel == LDAPLOG_DEBUG
)
{
gliLevel = liLevel;
fResult = TRUE;
}
exception:
return ( fResult );
}
BOOL
Log_Write(
CHAR * pszLogLine,
UINT16 liLevel
)
/*++
Routine Description:
Writes a line to the log file.
Arguments:
pszLogLine C string to write to the log file
Return Value:
Returns TRUE is successful; otherwise FALSE is returned.
--*/
{
BOOL fResult = FALSE;
if ( gpfsLogFile != NULL && pszLogLine != NULL && liLevel >= gliLevel )
{
fprintf( gpfsLogFile, "\n%s", pszLogLine );
fflush( gpfsLogFile );
fResult = TRUE;
}
return ( fResult );
}
BOOL
Log_Flush(
VOID
)
/*++
Routine Description:
Flushes data in the log line.
Arguments:
None
Return Value:
Returns TRUE is successful; otherwise FALSE is returned.
--*/
{
BOOL fResult = FALSE;
if ( gpfsLogFile != NULL )
{
fflush( gpfsLogFile );
fResult = TRUE;
}
return ( fResult );
}
VOID
Log_Terminate(
VOID
)
/*++
Routine Description:
Terminates the logging system. Closes the logging file.
Arguments:
None
Return Value:
None
--*/
{
if ( gpfsLogFile != NULL )
{
EnterCriticalSection( &gsLogLock );
fclose( gpfsLogFile );
gpfsLogFile = 0;
LeaveCriticalSection( &gsLogLock );
DeleteCriticalSection( &gsLogLock );
}
}