2 * Copyright (c) 1997-2006 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include "krb5_locl.h"
36 __RCSID("$Heimdal: log.c 19088 2006-11-21 08:08:46Z lha $"
42 krb5_log_log_func_t log_func
;
43 krb5_log_close_func_t close_func
;
47 static struct facility
*
48 log_realloc(krb5_log_facility
*f
)
51 fp
= realloc(f
->val
, (f
->len
+ 1) * sizeof(*f
->val
));
65 #define L(X) { #X, LOG_ ## X }
67 static struct s2i syslogvals
[] = {
111 find_value(const char *s
, struct s2i
*table
)
113 while(table
->s
&& strcasecmp(table
->s
, s
))
118 krb5_error_code KRB5_LIB_FUNCTION
119 krb5_initlog(krb5_context context
,
121 krb5_log_facility
**fac
)
123 krb5_log_facility
*f
= calloc(1, sizeof(*f
));
125 krb5_set_error_string (context
, "malloc: out of memory");
128 f
->program
= strdup(program
);
129 if(f
->program
== NULL
){
131 krb5_set_error_string (context
, "malloc: out of memory");
138 krb5_error_code KRB5_LIB_FUNCTION
139 krb5_addlog_func(krb5_context context
,
140 krb5_log_facility
*fac
,
143 krb5_log_log_func_t log_func
,
144 krb5_log_close_func_t close_func
,
147 struct facility
*fp
= log_realloc(fac
);
149 krb5_set_error_string (context
, "malloc: out of memory");
154 fp
->log_func
= log_func
;
155 fp
->close_func
= close_func
;
161 struct _heimdal_syslog_data
{
166 log_syslog(const char *timestr
,
171 struct _heimdal_syslog_data
*s
= data
;
172 syslog(s
->priority
, "%s", msg
);
176 close_syslog(void *data
)
182 static krb5_error_code
183 open_syslog(krb5_context context
,
184 krb5_log_facility
*facility
, int min
, int max
,
185 const char *sev
, const char *fac
)
187 struct _heimdal_syslog_data
*sd
= malloc(sizeof(*sd
));
191 krb5_set_error_string (context
, "malloc: out of memory");
194 i
= find_value(sev
, syslogvals
);
198 i
= find_value(fac
, syslogvals
);
202 roken_openlog(facility
->program
, LOG_PID
| LOG_NDELAY
, i
);
203 return krb5_addlog_func(context
, facility
, min
, max
,
204 log_syslog
, close_syslog
, sd
);
208 const char *filename
;
215 log_file(const char *timestr
,
219 struct file_data
*f
= data
;
220 if(f
->keep_open
== 0)
221 f
->fd
= fopen(f
->filename
, f
->mode
);
224 fprintf(f
->fd
, "%s %s\n", timestr
, msg
);
225 if(f
->keep_open
== 0) {
232 close_file(void *data
)
234 struct file_data
*f
= data
;
235 if(f
->keep_open
&& f
->filename
)
240 static krb5_error_code
241 open_file(krb5_context context
, krb5_log_facility
*fac
, int min
, int max
,
242 const char *filename
, const char *mode
, FILE *f
, int keep_open
)
244 struct file_data
*fd
= malloc(sizeof(*fd
));
246 krb5_set_error_string (context
, "malloc: out of memory");
249 fd
->filename
= filename
;
252 fd
->keep_open
= keep_open
;
254 return krb5_addlog_func(context
, fac
, min
, max
, log_file
, close_file
, fd
);
259 krb5_error_code KRB5_LIB_FUNCTION
260 krb5_addlog_dest(krb5_context context
, krb5_log_facility
*f
, const char *orig
)
262 krb5_error_code ret
= 0;
263 int min
= 0, max
= -1, n
;
265 const char *p
= orig
;
267 n
= sscanf(p
, "%d%c%d/", &min
, &c
, &max
);
281 krb5_set_error_string (context
, "failed to parse \"%s\"", orig
);
282 return HEIM_ERR_LOG_PARSE
;
286 if(strcmp(p
, "STDERR") == 0){
287 ret
= open_file(context
, f
, min
, max
, NULL
, NULL
, stderr
, 1);
288 }else if(strcmp(p
, "CONSOLE") == 0){
289 ret
= open_file(context
, f
, min
, max
, "/dev/console", "w", NULL
, 0);
290 }else if(strncmp(p
, "FILE", 4) == 0 && (p
[4] == ':' || p
[4] == '=')){
296 krb5_set_error_string (context
, "malloc: out of memory");
300 int i
= open(fn
, O_WRONLY
| O_CREAT
|
301 O_TRUNC
| O_APPEND
, 0666);
304 krb5_set_error_string (context
, "open(%s): %s", fn
,
309 file
= fdopen(i
, "a");
313 krb5_set_error_string (context
, "fdopen(%s): %s", fn
,
320 ret
= open_file(context
, f
, min
, max
, fn
, "a", file
, keep_open
);
321 }else if(strncmp(p
, "DEVICE", 6) == 0 && (p
[6] == ':' || p
[6] == '=')){
322 ret
= open_file(context
, f
, min
, max
, strdup(p
+ 7), "w", NULL
, 0);
323 }else if(strncmp(p
, "SYSLOG", 6) == 0 && (p
[6] == '\0' || p
[6] == ':')){
324 char severity
[128] = "";
325 char facility
[128] = "";
329 if(strsep_copy(&p
, ":", severity
, sizeof(severity
)) != -1)
330 strsep_copy(&p
, ":", facility
, sizeof(facility
));
331 if(*severity
== '\0')
332 strlcpy(severity
, "ERR", sizeof(severity
));
333 if(*facility
== '\0')
334 strlcpy(facility
, "AUTH", sizeof(facility
));
335 ret
= open_syslog(context
, f
, min
, max
, severity
, facility
);
337 krb5_set_error_string (context
, "unknown log type: %s", p
);
338 ret
= HEIM_ERR_LOG_PARSE
; /* XXX */
344 krb5_error_code KRB5_LIB_FUNCTION
345 krb5_openlog(krb5_context context
,
347 krb5_log_facility
**fac
)
352 ret
= krb5_initlog(context
, program
, fac
);
356 p
= krb5_config_get_strings(context
, NULL
, "logging", program
, NULL
);
358 p
= krb5_config_get_strings(context
, NULL
, "logging", "default", NULL
);
361 ret
= krb5_addlog_dest(context
, *fac
, *q
);
362 krb5_config_free_strings(p
);
364 ret
= krb5_addlog_dest(context
, *fac
, "SYSLOG");
368 krb5_error_code KRB5_LIB_FUNCTION
369 krb5_closelog(krb5_context context
,
370 krb5_log_facility
*fac
)
373 for(i
= 0; i
< fac
->len
; i
++)
374 (*fac
->val
[i
].close_func
)(fac
->val
[i
].data
);
385 #define __attribute__(X)
387 krb5_error_code KRB5_LIB_FUNCTION
388 krb5_vlog_msg(krb5_context context
,
389 krb5_log_facility
*fac
,
394 __attribute__((format (printf
, 5, 0)))
398 const char *actual
= NULL
;
403 for(i
= 0; fac
&& i
< fac
->len
; i
++)
404 if(fac
->val
[i
].min
<= level
&&
405 (fac
->val
[i
].max
< 0 || fac
->val
[i
].max
>= level
)) {
408 krb5_format_time(context
, t
, buf
, sizeof(buf
), TRUE
);
411 vasprintf(&msg
, fmt
, ap
);
417 (*fac
->val
[i
].log_func
)(buf
, actual
, fac
->val
[i
].data
);
426 krb5_error_code KRB5_LIB_FUNCTION
427 krb5_vlog(krb5_context context
,
428 krb5_log_facility
*fac
,
432 __attribute__((format (printf
, 4, 0)))
434 return krb5_vlog_msg(context
, fac
, NULL
, level
, fmt
, ap
);
437 krb5_error_code KRB5_LIB_FUNCTION
438 krb5_log_msg(krb5_context context
,
439 krb5_log_facility
*fac
,
444 __attribute__((format (printf
, 5, 6)))
450 ret
= krb5_vlog_msg(context
, fac
, reply
, level
, fmt
, ap
);
456 krb5_error_code KRB5_LIB_FUNCTION
457 krb5_log(krb5_context context
,
458 krb5_log_facility
*fac
,
462 __attribute__((format (printf
, 4, 5)))
468 ret
= krb5_vlog(context
, fac
, level
, fmt
, ap
);