1 /* $OpenBSD: log.c,v 1.35 2006/07/22 20:48:23 stevesk Exp $ */
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
14 * Copyright (c) 2000 Markus Friedl. All rights reserved.
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 #if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
50 static LogLevel log_level
= SYSLOG_LEVEL_INFO
;
51 static int log_on_stderr
= 1;
52 static int log_facility
= LOG_AUTH
;
55 extern char *__progname
;
57 #define LOG_SYSLOG_VIS (VIS_CSTYLE|VIS_NL|VIS_TAB|VIS_OCTAL)
58 #define LOG_STDERR_VIS (VIS_SAFE|VIS_OCTAL)
60 /* textual representation of log-facilities/levels */
65 } log_facilities
[] = {
66 { "DAEMON", SYSLOG_FACILITY_DAEMON
},
67 { "USER", SYSLOG_FACILITY_USER
},
68 { "AUTH", SYSLOG_FACILITY_AUTH
},
70 { "AUTHPRIV", SYSLOG_FACILITY_AUTHPRIV
},
72 { "LOCAL0", SYSLOG_FACILITY_LOCAL0
},
73 { "LOCAL1", SYSLOG_FACILITY_LOCAL1
},
74 { "LOCAL2", SYSLOG_FACILITY_LOCAL2
},
75 { "LOCAL3", SYSLOG_FACILITY_LOCAL3
},
76 { "LOCAL4", SYSLOG_FACILITY_LOCAL4
},
77 { "LOCAL5", SYSLOG_FACILITY_LOCAL5
},
78 { "LOCAL6", SYSLOG_FACILITY_LOCAL6
},
79 { "LOCAL7", SYSLOG_FACILITY_LOCAL7
},
80 { NULL
, SYSLOG_FACILITY_NOT_SET
}
88 { "QUIET", SYSLOG_LEVEL_QUIET
},
89 { "FATAL", SYSLOG_LEVEL_FATAL
},
90 { "ERROR", SYSLOG_LEVEL_ERROR
},
91 { "INFO", SYSLOG_LEVEL_INFO
},
92 { "VERBOSE", SYSLOG_LEVEL_VERBOSE
},
93 { "DEBUG", SYSLOG_LEVEL_DEBUG1
},
94 { "DEBUG1", SYSLOG_LEVEL_DEBUG1
},
95 { "DEBUG2", SYSLOG_LEVEL_DEBUG2
},
96 { "DEBUG3", SYSLOG_LEVEL_DEBUG3
},
97 { NULL
, SYSLOG_LEVEL_NOT_SET
}
101 log_facility_number(char *name
)
106 for (i
= 0; log_facilities
[i
].name
; i
++)
107 if (strcasecmp(log_facilities
[i
].name
, name
) == 0)
108 return log_facilities
[i
].val
;
109 return SYSLOG_FACILITY_NOT_SET
;
113 log_level_number(char *name
)
118 for (i
= 0; log_levels
[i
].name
; i
++)
119 if (strcasecmp(log_levels
[i
].name
, name
) == 0)
120 return log_levels
[i
].val
;
121 return SYSLOG_LEVEL_NOT_SET
;
124 /* Error messages that should be logged. */
127 error(const char *fmt
,...)
132 do_log(SYSLOG_LEVEL_ERROR
, fmt
, args
);
136 /* Log this message (information that usually should go to the log). */
139 logit(const char *fmt
,...)
144 do_log(SYSLOG_LEVEL_INFO
, fmt
, args
);
148 /* More detailed messages (information that does not need to go to the log). */
151 verbose(const char *fmt
,...)
156 do_log(SYSLOG_LEVEL_VERBOSE
, fmt
, args
);
160 /* Debugging messages that should not be logged during normal operation. */
163 debug(const char *fmt
,...)
168 do_log(SYSLOG_LEVEL_DEBUG1
, fmt
, args
);
173 debug2(const char *fmt
,...)
178 do_log(SYSLOG_LEVEL_DEBUG2
, fmt
, args
);
183 debug3(const char *fmt
,...)
188 do_log(SYSLOG_LEVEL_DEBUG3
, fmt
, args
);
193 * Initialize the log.
197 log_init(char *av0
, LogLevel level
, SyslogFacility facility
, int on_stderr
)
199 #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
200 struct syslog_data sdata
= SYSLOG_DATA_INIT
;
206 case SYSLOG_LEVEL_QUIET
:
207 case SYSLOG_LEVEL_FATAL
:
208 case SYSLOG_LEVEL_ERROR
:
209 case SYSLOG_LEVEL_INFO
:
210 case SYSLOG_LEVEL_VERBOSE
:
211 case SYSLOG_LEVEL_DEBUG1
:
212 case SYSLOG_LEVEL_DEBUG2
:
213 case SYSLOG_LEVEL_DEBUG3
:
217 fprintf(stderr
, "Unrecognized internal syslog level code %d\n",
222 log_on_stderr
= on_stderr
;
227 case SYSLOG_FACILITY_DAEMON
:
228 log_facility
= LOG_DAEMON
;
230 case SYSLOG_FACILITY_USER
:
231 log_facility
= LOG_USER
;
233 case SYSLOG_FACILITY_AUTH
:
234 log_facility
= LOG_AUTH
;
237 case SYSLOG_FACILITY_AUTHPRIV
:
238 log_facility
= LOG_AUTHPRIV
;
241 case SYSLOG_FACILITY_LOCAL0
:
242 log_facility
= LOG_LOCAL0
;
244 case SYSLOG_FACILITY_LOCAL1
:
245 log_facility
= LOG_LOCAL1
;
247 case SYSLOG_FACILITY_LOCAL2
:
248 log_facility
= LOG_LOCAL2
;
250 case SYSLOG_FACILITY_LOCAL3
:
251 log_facility
= LOG_LOCAL3
;
253 case SYSLOG_FACILITY_LOCAL4
:
254 log_facility
= LOG_LOCAL4
;
256 case SYSLOG_FACILITY_LOCAL5
:
257 log_facility
= LOG_LOCAL5
;
259 case SYSLOG_FACILITY_LOCAL6
:
260 log_facility
= LOG_LOCAL6
;
262 case SYSLOG_FACILITY_LOCAL7
:
263 log_facility
= LOG_LOCAL7
;
267 "Unrecognized internal syslog facility code %d\n",
273 * If an external library (eg libwrap) attempts to use syslog
274 * immediately after reexec, syslog may be pointing to the wrong
275 * facility, so we force an open/close of syslog here.
277 #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
278 openlog_r(argv0
? argv0
: __progname
, LOG_PID
, log_facility
, &sdata
);
281 openlog(argv0
? argv0
: __progname
, LOG_PID
, log_facility
);
286 #define MSGBUFSIZ 1024
289 do_log(LogLevel level
, const char *fmt
, va_list args
)
291 #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
292 struct syslog_data sdata
= SYSLOG_DATA_INIT
;
294 char msgbuf
[MSGBUFSIZ
];
295 char fmtbuf
[MSGBUFSIZ
];
299 if (level
> log_level
)
303 case SYSLOG_LEVEL_FATAL
:
308 case SYSLOG_LEVEL_ERROR
:
313 case SYSLOG_LEVEL_INFO
:
316 case SYSLOG_LEVEL_VERBOSE
:
319 case SYSLOG_LEVEL_DEBUG1
:
323 case SYSLOG_LEVEL_DEBUG2
:
327 case SYSLOG_LEVEL_DEBUG3
:
332 txt
= "internal error";
337 snprintf(fmtbuf
, sizeof(fmtbuf
), "%s: %s", txt
, fmt
);
338 vsnprintf(msgbuf
, sizeof(msgbuf
), fmtbuf
, args
);
340 vsnprintf(msgbuf
, sizeof(msgbuf
), fmt
, args
);
342 strnvis(fmtbuf
, msgbuf
, sizeof(fmtbuf
),
343 log_on_stderr
? LOG_STDERR_VIS
: LOG_SYSLOG_VIS
);
345 snprintf(msgbuf
, sizeof msgbuf
, "%s\r\n", fmtbuf
);
346 write(STDERR_FILENO
, msgbuf
, strlen(msgbuf
));
348 #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
349 openlog_r(argv0
? argv0
: __progname
, LOG_PID
, log_facility
, &sdata
);
350 syslog_r(pri
, &sdata
, "%.500s", fmtbuf
);
353 openlog(argv0
? argv0
: __progname
, LOG_PID
, log_facility
);
354 syslog(pri
, "%.500s", fmtbuf
);