Fix some typos.
[heimdal.git] / lib / krb5 / log.c
blobbf7dd79deb26e5c89754d90d34f360bd2b721df7
1 /*
2 * Copyright (c) 1997-2006 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Portions Copyright (c) 2009 Apple Inc. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
36 #include "krb5_locl.h"
37 #include <vis.h>
39 struct facility {
40 int min;
41 int max;
42 krb5_log_log_func_t log_func;
43 krb5_log_close_func_t close_func;
44 void *data;
47 static struct facility*
48 log_realloc(krb5_log_facility *f)
50 struct facility *fp;
51 fp = realloc(f->val, (f->len + 1) * sizeof(*f->val));
52 if(fp == NULL)
53 return NULL;
54 f->len++;
55 f->val = fp;
56 fp += f->len - 1;
57 return fp;
60 struct s2i {
61 const char *s;
62 int val;
65 #define L(X) { #X, LOG_ ## X }
67 static struct s2i syslogvals[] = {
68 L(EMERG),
69 L(ALERT),
70 L(CRIT),
71 L(ERR),
72 L(WARNING),
73 L(NOTICE),
74 L(INFO),
75 L(DEBUG),
77 L(AUTH),
78 #ifdef LOG_AUTHPRIV
79 L(AUTHPRIV),
80 #endif
81 #ifdef LOG_CRON
82 L(CRON),
83 #endif
84 L(DAEMON),
85 #ifdef LOG_FTP
86 L(FTP),
87 #endif
88 L(KERN),
89 L(LPR),
90 L(MAIL),
91 #ifdef LOG_NEWS
92 L(NEWS),
93 #endif
94 L(SYSLOG),
95 L(USER),
96 #ifdef LOG_UUCP
97 L(UUCP),
98 #endif
99 L(LOCAL0),
100 L(LOCAL1),
101 L(LOCAL2),
102 L(LOCAL3),
103 L(LOCAL4),
104 L(LOCAL5),
105 L(LOCAL6),
106 L(LOCAL7),
107 { NULL, -1 }
110 static int
111 find_value(const char *s, struct s2i *table)
113 while(table->s && strcasecmp(table->s, s))
114 table++;
115 return table->val;
118 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
119 krb5_initlog(krb5_context context,
120 const char *program,
121 krb5_log_facility **fac)
123 krb5_log_facility *f = calloc(1, sizeof(*f));
124 if (f == NULL)
125 return krb5_enomem(context);
126 f->program = strdup(program);
127 if(f->program == NULL){
128 free(f);
129 return krb5_enomem(context);
131 *fac = f;
132 return 0;
135 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
136 krb5_addlog_func(krb5_context context,
137 krb5_log_facility *fac,
138 int min,
139 int max,
140 krb5_log_log_func_t log_func,
141 krb5_log_close_func_t close_func,
142 void *data)
144 struct facility *fp = log_realloc(fac);
145 if (fp == NULL)
146 return krb5_enomem(context);
147 fp->min = min;
148 fp->max = max;
149 fp->log_func = log_func;
150 fp->close_func = close_func;
151 fp->data = data;
152 return 0;
156 struct _heimdal_syslog_data{
157 int priority;
160 static void KRB5_CALLCONV
161 log_syslog(const char *timestr,
162 const char *msg,
163 void *data)
166 struct _heimdal_syslog_data *s = data;
167 syslog(s->priority, "%s", msg);
170 static void KRB5_CALLCONV
171 close_syslog(void *data)
173 free(data);
174 closelog();
177 static krb5_error_code
178 open_syslog(krb5_context context,
179 krb5_log_facility *facility, int min, int max,
180 const char *sev, const char *fac)
182 struct _heimdal_syslog_data *sd = malloc(sizeof(*sd));
183 int i;
185 if (sd == NULL)
186 return krb5_enomem(context);
187 i = find_value(sev, syslogvals);
188 if(i == -1)
189 i = LOG_ERR;
190 sd->priority = i;
191 i = find_value(fac, syslogvals);
192 if(i == -1)
193 i = LOG_AUTH;
194 sd->priority |= i;
195 roken_openlog(facility->program, LOG_PID | LOG_NDELAY, i);
196 return krb5_addlog_func(context, facility, min, max,
197 log_syslog, close_syslog, sd);
200 struct file_data{
201 const char *filename;
202 const char *mode;
203 FILE *fd;
204 int keep_open;
205 int freefilename;
208 static void KRB5_CALLCONV
209 log_file(const char *timestr,
210 const char *msg,
211 void *data)
213 struct file_data *f = data;
214 char *msgclean;
215 size_t len = strlen(msg);
216 if(f->keep_open == 0)
217 f->fd = fopen(f->filename, f->mode);
218 if(f->fd == NULL)
219 return;
220 /* make sure the log doesn't contain special chars */
221 msgclean = malloc((len + 1) * 4);
222 if (msgclean == NULL)
223 goto out;
224 strvisx(msgclean, rk_UNCONST(msg), len, VIS_OCTAL);
225 fprintf(f->fd, "%s %s\n", timestr, msgclean);
226 free(msgclean);
227 out:
228 if(f->keep_open == 0) {
229 fclose(f->fd);
230 f->fd = NULL;
234 static void KRB5_CALLCONV
235 close_file(void *data)
237 struct file_data *f = data;
238 if(f->keep_open && f->filename)
239 fclose(f->fd);
240 if (f->filename && f->freefilename)
241 free((char *)f->filename);
242 free(data);
245 static krb5_error_code
246 open_file(krb5_context context, krb5_log_facility *fac, int min, int max,
247 const char *filename, const char *mode, FILE *f, int keep_open,
248 int freefilename)
250 struct file_data *fd = malloc(sizeof(*fd));
251 if (fd == NULL) {
252 if (freefilename && filename)
253 free((char *)filename);
254 return krb5_enomem(context);
256 fd->filename = filename;
257 fd->mode = mode;
258 fd->fd = f;
259 fd->keep_open = keep_open;
260 fd->freefilename = freefilename;
262 return krb5_addlog_func(context, fac, min, max, log_file, close_file, fd);
267 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
268 krb5_addlog_dest(krb5_context context, krb5_log_facility *f, const char *orig)
270 krb5_error_code ret = 0;
271 int min = 0, max = -1, n;
272 char c;
273 const char *p = orig;
274 #ifdef _WIN32
275 const char *q;
276 #endif
278 n = sscanf(p, "%d%c%d/", &min, &c, &max);
279 if(n == 2){
280 if(ISPATHSEP(c)) {
281 if(min < 0){
282 max = -min;
283 min = 0;
284 }else{
285 max = min;
289 if(n){
290 #ifdef _WIN32
291 q = strrchr(p, '\\');
292 if (q != NULL)
293 p = q;
294 else
295 #endif
296 p = strchr(p, '/');
297 if(p == NULL) {
298 krb5_set_error_message(context, HEIM_ERR_LOG_PARSE,
299 N_("failed to parse \"%s\"", ""), orig);
300 return HEIM_ERR_LOG_PARSE;
302 p++;
304 if(strcmp(p, "STDERR") == 0){
305 ret = open_file(context, f, min, max, NULL, NULL, stderr, 1, 0);
306 }else if(strcmp(p, "CONSOLE") == 0){
307 ret = open_file(context, f, min, max, "/dev/console", "w", NULL, 0, 0);
308 }else if(strncmp(p, "FILE", 4) == 0 && (p[4] == ':' || p[4] == '=')){
309 char *fn;
310 FILE *file = NULL;
311 int keep_open = 0;
312 fn = strdup(p + 5);
313 if (fn == NULL)
314 return krb5_enomem(context);
315 if(p[4] == '='){
316 int i = open(fn, O_WRONLY | O_CREAT |
317 O_TRUNC | O_APPEND, 0666);
318 if(i < 0) {
319 ret = errno;
320 krb5_set_error_message(context, ret,
321 N_("open(%s) logfile: %s", ""), fn,
322 strerror(ret));
323 free(fn);
324 return ret;
326 rk_cloexec(i);
327 file = fdopen(i, "a");
328 if(file == NULL){
329 ret = errno;
330 close(i);
331 krb5_set_error_message(context, ret,
332 N_("fdopen(%s) logfile: %s", ""),
333 fn, strerror(ret));
334 free(fn);
335 return ret;
337 keep_open = 1;
339 ret = open_file(context, f, min, max, fn, "a", file, keep_open, 1);
340 }else if(strncmp(p, "DEVICE", 6) == 0 && (p[6] == ':' || p[6] == '=')){
341 ret = open_file(context, f, min, max, strdup(p + 7), "w", NULL, 0, 1);
342 }else if(strncmp(p, "SYSLOG", 6) == 0 && (p[6] == '\0' || p[6] == ':')){
343 char severity[128] = "";
344 char facility[128] = "";
345 p += 6;
346 if(*p != '\0')
347 p++;
348 if(strsep_copy(&p, ":", severity, sizeof(severity)) != -1)
349 strsep_copy(&p, ":", facility, sizeof(facility));
350 if(*severity == '\0')
351 strlcpy(severity, "ERR", sizeof(severity));
352 if(*facility == '\0')
353 strlcpy(facility, "AUTH", sizeof(facility));
354 ret = open_syslog(context, f, min, max, severity, facility);
355 }else{
356 ret = HEIM_ERR_LOG_PARSE; /* XXX */
357 krb5_set_error_message (context, ret,
358 N_("unknown log type: %s", ""), p);
360 return ret;
364 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
365 krb5_openlog(krb5_context context,
366 const char *program,
367 krb5_log_facility **fac)
369 krb5_error_code ret;
370 char **p, **q;
372 ret = krb5_initlog(context, program, fac);
373 if(ret)
374 return ret;
376 p = krb5_config_get_strings(context, NULL, "logging", program, NULL);
377 if(p == NULL)
378 p = krb5_config_get_strings(context, NULL, "logging", "default", NULL);
379 if(p){
380 for(q = p; *q && ret == 0; q++)
381 ret = krb5_addlog_dest(context, *fac, *q);
382 krb5_config_free_strings(p);
383 }else
384 ret = krb5_addlog_dest(context, *fac, "SYSLOG");
385 return ret;
388 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
389 krb5_closelog(krb5_context context,
390 krb5_log_facility *fac)
392 int i;
393 for(i = 0; i < fac->len; i++)
394 (*fac->val[i].close_func)(fac->val[i].data);
395 free(fac->val);
396 free(fac->program);
397 fac->val = NULL;
398 fac->len = 0;
399 fac->program = NULL;
400 free(fac);
401 return 0;
404 #undef __attribute__
405 #define __attribute__(X)
407 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
408 krb5_vlog_msg(krb5_context context,
409 krb5_log_facility *fac,
410 char **reply,
411 int level,
412 const char *fmt,
413 va_list ap)
414 __attribute__((format (printf, 5, 0)))
417 char *msg = NULL;
418 const char *actual = NULL;
419 char buf[64];
420 time_t t = 0;
421 int i;
423 for(i = 0; fac && i < fac->len; i++)
424 if(fac->val[i].min <= level &&
425 (fac->val[i].max < 0 || fac->val[i].max >= level)) {
426 if(t == 0) {
427 t = time(NULL);
428 krb5_format_time(context, t, buf, sizeof(buf), TRUE);
430 if(actual == NULL) {
431 int ret = vasprintf(&msg, fmt, ap);
432 if(ret < 0 || msg == NULL)
433 actual = fmt;
434 else
435 actual = msg;
437 (*fac->val[i].log_func)(buf, actual, fac->val[i].data);
439 if(reply == NULL)
440 free(msg);
441 else
442 *reply = msg;
443 return 0;
446 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
447 krb5_vlog(krb5_context context,
448 krb5_log_facility *fac,
449 int level,
450 const char *fmt,
451 va_list ap)
452 __attribute__((format (printf, 4, 0)))
454 return krb5_vlog_msg(context, fac, NULL, level, fmt, ap);
457 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
458 krb5_log_msg(krb5_context context,
459 krb5_log_facility *fac,
460 int level,
461 char **reply,
462 const char *fmt,
463 ...)
464 __attribute__((format (printf, 5, 6)))
466 va_list ap;
467 krb5_error_code ret;
469 va_start(ap, fmt);
470 ret = krb5_vlog_msg(context, fac, reply, level, fmt, ap);
471 va_end(ap);
472 return ret;
476 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
477 krb5_log(krb5_context context,
478 krb5_log_facility *fac,
479 int level,
480 const char *fmt,
481 ...)
482 __attribute__((format (printf, 4, 5)))
484 va_list ap;
485 krb5_error_code ret;
487 va_start(ap, fmt);
488 ret = krb5_vlog(context, fac, level, fmt, ap);
489 va_end(ap);
490 return ret;
493 void KRB5_LIB_FUNCTION
494 _krb5_debug(krb5_context context,
495 int level,
496 const char *fmt,
497 ...)
498 __attribute__((format (printf, 3, 4)))
500 va_list ap;
502 if (context == NULL || context->debug_dest == NULL)
503 return;
505 va_start(ap, fmt);
506 krb5_vlog(context, context->debug_dest, level, fmt, ap);
507 va_end(ap);
510 KRB5_LIB_FUNCTION krb5_boolean KRB5_LIB_CALL
511 _krb5_have_debug(krb5_context context, int level)
513 if (context == NULL || context->debug_dest == NULL)
514 return 0 ;
515 return 1;