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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
/* $OpenBSD: log.c,v 1.16 2001/01/27 12:03:33 niklas Exp $ */
/* $EOM: log.c,v 1.30 2000/09/29 08:19:23 niklas Exp $ */
/*
* Copyright (c) 1998, 1999, 2001 Niklas Hallqvist. All rights reserved.
* Copyright (c) 1999, 2000 Håkan Olsson. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Ericsson Radio Systems.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* This code was written under funding by Ericsson Radio Systems.
*/
#include <sys/time.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <syslog.h>
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include "log.h"
static void _log_print (int, int, const char *, va_list, int, int);
static FILE *log_output;
#ifdef USE_DEBUG
static int log_level[LOG_ENDCLASS];
#endif
void
log_init (void)
{
log_output = stderr;
}
void
log_to (FILE *f)
{
if (!log_output && f)
closelog ();
log_output = f;
if (!f)
openlog ("isakmpd", LOG_PID | LOG_CONS, LOG_DAEMON);
}
FILE *
log_current (void)
{
return log_output;
}
static char *
_log_get_class (int error_class)
{
/* XXX For test purposes. To be removed later on? */
static char *class_text[] = LOG_CLASSES_TEXT;
if (error_class < 0)
return "Dflt";
else if (error_class >= LOG_ENDCLASS)
return "Unkn";
else
return class_text[error_class];
}
static void
_log_print (int error, int syslog_level, const char *fmt, va_list ap,
int class, int level)
{
char buffer[LOG_SIZE], nbuf[LOG_SIZE + 32];
static const char fallback_msg[] =
"write to log file failed (errno %d), redirecting output to syslog";
int len;
struct tm *tm;
struct timeval now;
time_t t;
len = vsnprintf (buffer, LOG_SIZE, fmt, ap);
if (len < LOG_SIZE - 1 && error)
snprintf (buffer + len, LOG_SIZE - len, ": %s", strerror (errno));
if (log_output)
{
gettimeofday (&now, 0);
t = now.tv_sec;
tm = localtime (&t);
if (class >= 0)
sprintf (nbuf, "%02d%02d%02d.%06ld %s %02d ", tm->tm_hour,
tm->tm_min, tm->tm_sec, now.tv_usec, _log_get_class (class),
level);
else /* LOG_PRINT (-1) or LOG_REPORT (-2) */
sprintf (nbuf, "%02d%02d%02d.%06ld %s ", tm->tm_hour,
tm->tm_min, tm->tm_sec, now.tv_usec,
class == LOG_PRINT ? "Default" : "Report>");
strcat (nbuf, buffer);
strcat (nbuf, "\n");
if (fwrite (nbuf, strlen (nbuf), 1, log_output) == 0)
{
/* Report fallback. */
syslog (LOG_ALERT, fallback_msg, errno);
fprintf (log_output, fallback_msg, errno);
/*
* Close log_output to prevent isakmpd from locking the file.
* We may need to explicitly close stdout to do this properly.
* XXX - Figure out how to match two FILE *'s and rewrite.
*/
if (fileno (log_output) != -1
&& fileno (stdout) == fileno (log_output))
fclose (stdout);
fclose (log_output);
/* Fallback to syslog. */
log_to (0);
/* (Re)send current message to syslog(). */
syslog (class == LOG_REPORT ? LOG_ALERT
: syslog_level, "%s", buffer);
}
}
else
syslog (class == LOG_REPORT ? LOG_ALERT : syslog_level, "%s", buffer);
}
#ifdef USE_DEBUG
void
#ifdef __STDC__
log_debug (int cls, int level, const char *fmt, ...)
#else
log_debug (cls, level, fmt, va_alist)
int cls;
int level;
const char *fmt;
va_dcl
#endif
{
va_list ap;
/*
* If we are not debugging this class, or the level is too low, just return.
*/
if (cls >= 0 && (log_level[cls] == 0 || level > log_level[cls]))
return;
#ifdef __STDC__
va_start (ap, fmt);
#else
va_start (ap);
fmt = va_arg (ap, const char *);
#endif
_log_print (0, LOG_DEBUG, fmt, ap, cls, level);
va_end (ap);
}
void
log_debug_buf (int cls, int level, const char *header, const u_int8_t *buf,
size_t sz)
{
char s[73];
int i, j;
/*
* If we are not debugging this class, or the level is too low, just return.
*/
if (cls >= 0 && (log_level[cls] == 0 || level > log_level[cls]))
return;
log_debug (cls, level, "%s:", header);
for (i = j = 0; i < sz;)
{
sprintf (s + j, "%02x", buf[i++]);
j += 2;
if (i % 4 == 0)
{
if (i % 32 == 0)
{
s[j] = '\0';
log_debug (cls, level, "%s", s);
j = 0;
}
else
s[j++] = ' ';
}
}
if (j)
{
s[j] = '\0';
log_debug (cls, level, "%s", s);
}
}
void
log_debug_cmd (int cls, int level)
{
if (cls < 0 || cls >= LOG_ENDCLASS)
{
log_print ("log_debug_cmd: invalid debugging class %d", cls);
return;
}
if (level < 0)
{
log_print ("log_debug_cmd: invalid debugging level %d for class %d",
level, cls);
return;
}
if (level == log_level[cls])
log_print ("log_debug_cmd: log level unchanged for class %d", cls);
else
{
log_print ("log_debug_cmd: log level changed from %d to %d for class %d",
log_level[cls], level, cls);
log_level[cls] = level;
}
}
#endif /* USE_DEBUG */
void
#ifdef __STDC__
log_print (const char *fmt, ...)
#else
log_print (fmt, va_alist)
const char *fmt;
va_dcl
#endif
{
va_list ap;
#ifdef __STDC__
va_start (ap, fmt);
#else
va_start (ap);
fmt = va_arg (ap, const char *);
#endif
_log_print (0, LOG_NOTICE, fmt, ap, LOG_PRINT, 0);
va_end (ap);
}
void
#ifdef __STDC__
log_error (const char *fmt, ...)
#else
log_error (fmt, va_alist)
const char *fmt;
va_dcl
#endif
{
va_list ap;
#ifdef __STDC__
va_start (ap, fmt);
#else
va_start (ap);
fmt = va_arg (ap, const char *);
#endif
_log_print (1, LOG_ERR, fmt, ap, LOG_PRINT, 0);
va_end (ap);
}
void
#ifdef __STDC__
log_fatal (const char *fmt, ...)
#else
log_fatal (fmt, va_alist)
const char *fmt;
va_dcl
#endif
{
va_list ap;
#ifdef __STDC__
va_start (ap, fmt);
#else
va_start (ap);
fmt = va_arg (ap, const char *);
#endif
_log_print (1, LOG_CRIT, fmt, ap, LOG_PRINT, 0);
va_end (ap);
exit (1);
}
|