-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathlogging.c
317 lines (267 loc) · 6.16 KB
/
logging.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
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
309
310
311
312
313
314
315
316
317
/* $Id$ */
/*
* Copyright (c) 2016--2018, 2020 Kristaps Dzonsons <[email protected]>
*
* 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 THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR 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.
*/
#include "config.h"
#include <ctype.h>
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "kcgi.h"
enum llevel {
LLEVEL_INFO,
LLEVEL_WARN,
LLEVEL_ERROR,
LLEVEL__MAX
};
static const char *llevels[LLEVEL__MAX] = {
"INFO", /* LLEVEL_INFO */
"WARN", /* LLEVEL_WARN */
"ERROR", /* LLEVEL_ERROR */
};
/*
* Actual logging function.
* Only the optional error string is trusted to have "good" characters;
* all others may contain anything and are filtered.
*/
static void
logmsg(const struct kreq *r, const char *err, const char *lvl,
const char *ident, const char *fmt, va_list ap)
{
int i, cmpsz, sz;
char date[64];
char *msg, *var = NULL, *cmp, *p;
/*
* Convert to GMT.
* We can't use localtime because we're probably going to be
* chrooted, and maybe sandboxed, and touching our timezone
* files will crash us (or at least not be applicable).
*/
khttp_epoch2str(time(NULL), date, sizeof(date));
/*
* Format the variable args, then compose with the log prefix
* to form the basic message.
*/
if (fmt != NULL) {
kvasprintf(&var, fmt, ap);
cmpsz = kasprintf
(&cmp, "%s %s [%s] %s %s",
r == NULL ? "-" : r->remote,
ident == NULL ? "-" : ident, date,
lvl == NULL ? "-" : lvl, var);
free(var);
} else
cmpsz = kasprintf
(&cmp, "%s %s [%s] %s -",
r == NULL ? "-" : r->remote,
ident == NULL ? "-" : ident, date,
lvl == NULL ? "-" : lvl);
/*
* Allocate the required memory for the message, leaving room
* for whitespace character expansion and optional error message.
* Start by buffering for \n\0.
*/
sz = cmpsz + 2;
for (i = 0; i < cmpsz; i++)
switch (cmp[i]) {
case '\n':
case '\r':
case '\t':
sz++;
break;
default:
break;
}
/* Next, buffer for ": ". */
if (err != NULL)
sz += 2 + strlen(err);
p = msg = kmalloc(sz);
/*
* Copy message into final buffer, filtering unprintables
* and whitespace.
* This draws from strvis(3).
*/
for (i = 0; i < cmpsz; i++)
switch (cmp[i]) {
case '\a':
*p++ = '\\';
*p++ = 'a';
break;
case '\b':
*p++ = '\\';
*p++ = 'b';
break;
case '\f':
*p++ = '\\';
*p++ = 'f';
break;
case '\n':
*p++ = '\\';
*p++ = 'n';
break;
case '\r':
*p++ = '\\';
*p++ = 'r';
break;
case '\t':
*p++ = '\\';
*p++ = 't';
break;
case '\v':
*p++ = '\\';
*p++ = 'v';
break;
case '\0':
*p++ = '\\';
*p++ = '0';
break;
default:
if (isprint((unsigned char)cmp[i]))
*p++ = cmp[i];
else
*p++ = '?';
break;
}
*p = '\0';
free(cmp);
/* Append optional error message, and newline */
if (err != NULL) {
(void)strlcat(msg, ": ", sz);
(void)strlcat(msg, err, sz);
}
(void)strlcat(msg, "\n", sz);
fputs(msg, stderr);
free(msg);
}
int
kutil_openlog(const char *file)
{
if (file != NULL && freopen(file, "a", stderr) == NULL)
return 0;
return setvbuf(stderr, NULL, _IOLBF, 0) != EOF;
}
void
kutil_vlog(const struct kreq *r, const char *lvl,
const char *ident, const char *fmt, va_list ap)
{
logmsg(r, strerror(errno), lvl, ident, fmt, ap);
}
void
kutil_vlogx(const struct kreq *r, const char *lvl,
const char *ident, const char *fmt, va_list ap)
{
logmsg(r, NULL, lvl, ident, fmt, ap);
}
void
kutil_warnx(const struct kreq *r,
const char *ident, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
kutil_vlogx(r, llevels[LLEVEL_WARN], ident, fmt, ap);
va_end(ap);
}
void
kutil_errx(const struct kreq *r,
const char *ident, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
kutil_vlogx(r, llevels[LLEVEL_ERROR], ident, fmt, ap);
va_end(ap);
exit(EXIT_FAILURE);
}
void
kutil_verrx(const struct kreq *r,
const char *ident, const char *fmt, va_list ap)
{
kutil_vlogx(r, llevels[LLEVEL_ERROR], ident, fmt, ap);
exit(EXIT_FAILURE);
}
void
kutil_vwarnx(const struct kreq *r,
const char *ident, const char *fmt, va_list ap)
{
kutil_vlogx(r, llevels[LLEVEL_WARN], ident, fmt, ap);
}
void
kutil_err(const struct kreq *r,
const char *ident, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
kutil_vlog(r, llevels[LLEVEL_ERROR], ident, fmt, ap);
va_end(ap);
exit(EXIT_FAILURE);
}
void
kutil_warn(const struct kreq *r,
const char *ident, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
kutil_vlog(r, llevels[LLEVEL_WARN], ident, fmt, ap);
va_end(ap);
}
void
kutil_verr(const struct kreq *r,
const char *ident, const char *fmt, va_list ap)
{
kutil_vlog(r, llevels[LLEVEL_ERROR], ident, fmt, ap);
exit(EXIT_FAILURE);
}
void
kutil_vwarn(const struct kreq *r,
const char *ident, const char *fmt, va_list ap)
{
kutil_vlog(r, llevels[LLEVEL_WARN], ident, fmt, ap);
}
void
kutil_info(const struct kreq *r,
const char *ident, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
kutil_vlogx(r, llevels[LLEVEL_INFO], ident, fmt, ap);
va_end(ap);
}
void
kutil_vinfo(const struct kreq *r,
const char *ident, const char *fmt, va_list ap)
{
kutil_vlogx(r, llevels[LLEVEL_INFO], ident, fmt, ap);
}
void
kutil_logx(const struct kreq *r, const char *lvl,
const char *ident, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
kutil_vlogx(r, lvl, ident, fmt, ap);
va_end(ap);
}
void
kutil_log(const struct kreq *r, const char *lvl,
const char *ident, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
kutil_vlog(r, lvl, ident, fmt, ap);
va_end(ap);
}