blob: 4ad7cfff7d27c0a3e9f32d5a677fd7aba0ac8274 [file] [log] [blame]
Damien Millere6b3b612006-07-24 14:01:23 +10001/* $OpenBSD: log.c,v 1.34 2006/07/17 01:31:09 stevesk Exp $ */
Damien Miller5ce662a1999-11-11 17:57:39 +11002/*
Damien Millere4340be2000-09-16 13:29:08 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 *
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".
12 */
13/*
Damien Millere4340be2000-09-16 13:29:08 +110014 * Copyright (c) 2000 Markus Friedl. All rights reserved.
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
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.
24 *
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.
Damien Miller5428f641999-11-25 11:54:57 +110035 */
Damien Miller5ce662a1999-11-11 17:57:39 +110036
37#include "includes.h"
Damien Miller5ce662a1999-11-11 17:57:39 +110038
Darren Tucker5d196262006-07-12 22:15:16 +100039#include <stdarg.h>
Ben Lindstrom8a432f52001-03-05 07:24:46 +000040#include <syslog.h>
Damien Millere6b3b612006-07-24 14:01:23 +100041#include <unistd.h>
Damien Miller5c3a5582003-09-23 22:12:38 +100042#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
43# include <vis.h>
44#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +000045
Damien Miller194a1cb2006-07-10 21:09:22 +100046#include "log.h"
47#include "xmalloc.h"
48
Ben Lindstrom8a432f52001-03-05 07:24:46 +000049static LogLevel log_level = SYSLOG_LEVEL_INFO;
50static int log_on_stderr = 1;
51static int log_facility = LOG_AUTH;
52static char *argv0;
53
54extern char *__progname;
55
Damien Miller23a70272004-07-21 10:52:13 +100056#define LOG_SYSLOG_VIS (VIS_CSTYLE|VIS_NL|VIS_TAB|VIS_OCTAL)
57#define LOG_STDERR_VIS (VIS_SAFE|VIS_OCTAL)
58
Ben Lindstrom8a432f52001-03-05 07:24:46 +000059/* textual representation of log-facilities/levels */
60
61static struct {
62 const char *name;
63 SyslogFacility val;
64} log_facilities[] = {
65 { "DAEMON", SYSLOG_FACILITY_DAEMON },
66 { "USER", SYSLOG_FACILITY_USER },
67 { "AUTH", SYSLOG_FACILITY_AUTH },
Damien Miller30246a82001-03-05 21:23:31 +110068#ifdef LOG_AUTHPRIV
69 { "AUTHPRIV", SYSLOG_FACILITY_AUTHPRIV },
70#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +000071 { "LOCAL0", SYSLOG_FACILITY_LOCAL0 },
72 { "LOCAL1", SYSLOG_FACILITY_LOCAL1 },
73 { "LOCAL2", SYSLOG_FACILITY_LOCAL2 },
74 { "LOCAL3", SYSLOG_FACILITY_LOCAL3 },
75 { "LOCAL4", SYSLOG_FACILITY_LOCAL4 },
76 { "LOCAL5", SYSLOG_FACILITY_LOCAL5 },
77 { "LOCAL6", SYSLOG_FACILITY_LOCAL6 },
78 { "LOCAL7", SYSLOG_FACILITY_LOCAL7 },
Damien Millerfcd93202002-02-05 12:26:34 +110079 { NULL, SYSLOG_FACILITY_NOT_SET }
Ben Lindstrom8a432f52001-03-05 07:24:46 +000080};
81
82static struct {
83 const char *name;
84 LogLevel val;
85} log_levels[] =
86{
87 { "QUIET", SYSLOG_LEVEL_QUIET },
88 { "FATAL", SYSLOG_LEVEL_FATAL },
89 { "ERROR", SYSLOG_LEVEL_ERROR },
90 { "INFO", SYSLOG_LEVEL_INFO },
91 { "VERBOSE", SYSLOG_LEVEL_VERBOSE },
92 { "DEBUG", SYSLOG_LEVEL_DEBUG1 },
93 { "DEBUG1", SYSLOG_LEVEL_DEBUG1 },
94 { "DEBUG2", SYSLOG_LEVEL_DEBUG2 },
95 { "DEBUG3", SYSLOG_LEVEL_DEBUG3 },
Damien Millerfcd93202002-02-05 12:26:34 +110096 { NULL, SYSLOG_LEVEL_NOT_SET }
Ben Lindstrom8a432f52001-03-05 07:24:46 +000097};
98
99SyslogFacility
100log_facility_number(char *name)
101{
102 int i;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000103
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000104 if (name != NULL)
105 for (i = 0; log_facilities[i].name; i++)
106 if (strcasecmp(log_facilities[i].name, name) == 0)
107 return log_facilities[i].val;
Damien Millerfcd93202002-02-05 12:26:34 +1100108 return SYSLOG_FACILITY_NOT_SET;
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000109}
110
111LogLevel
112log_level_number(char *name)
113{
114 int i;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000115
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000116 if (name != NULL)
117 for (i = 0; log_levels[i].name; i++)
118 if (strcasecmp(log_levels[i].name, name) == 0)
119 return log_levels[i].val;
Damien Millerfcd93202002-02-05 12:26:34 +1100120 return SYSLOG_LEVEL_NOT_SET;
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000121}
Damien Miller5ce662a1999-11-11 17:57:39 +1100122
123/* Error messages that should be logged. */
124
125void
Damien Miller95def091999-11-25 00:26:21 +1100126error(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100127{
Damien Miller95def091999-11-25 00:26:21 +1100128 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000129
Damien Miller95def091999-11-25 00:26:21 +1100130 va_start(args, fmt);
131 do_log(SYSLOG_LEVEL_ERROR, fmt, args);
132 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100133}
134
135/* Log this message (information that usually should go to the log). */
136
137void
Damien Miller996acd22003-04-09 20:59:48 +1000138logit(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100139{
Damien Miller95def091999-11-25 00:26:21 +1100140 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000141
Damien Miller95def091999-11-25 00:26:21 +1100142 va_start(args, fmt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000143 do_log(SYSLOG_LEVEL_INFO, fmt, args);
Damien Miller95def091999-11-25 00:26:21 +1100144 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100145}
146
147/* More detailed messages (information that does not need to go to the log). */
148
149void
Damien Miller95def091999-11-25 00:26:21 +1100150verbose(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100151{
Damien Miller95def091999-11-25 00:26:21 +1100152 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000153
Damien Miller95def091999-11-25 00:26:21 +1100154 va_start(args, fmt);
155 do_log(SYSLOG_LEVEL_VERBOSE, fmt, args);
156 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100157}
158
159/* Debugging messages that should not be logged during normal operation. */
160
161void
Damien Miller95def091999-11-25 00:26:21 +1100162debug(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100163{
Damien Miller95def091999-11-25 00:26:21 +1100164 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000165
Damien Miller95def091999-11-25 00:26:21 +1100166 va_start(args, fmt);
Damien Millere4340be2000-09-16 13:29:08 +1100167 do_log(SYSLOG_LEVEL_DEBUG1, fmt, args);
168 va_end(args);
169}
170
171void
172debug2(const char *fmt,...)
173{
174 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000175
Damien Millere4340be2000-09-16 13:29:08 +1100176 va_start(args, fmt);
177 do_log(SYSLOG_LEVEL_DEBUG2, fmt, args);
178 va_end(args);
179}
180
181void
182debug3(const char *fmt,...)
183{
184 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000185
Damien Millere4340be2000-09-16 13:29:08 +1100186 va_start(args, fmt);
187 do_log(SYSLOG_LEVEL_DEBUG3, fmt, args);
Damien Miller95def091999-11-25 00:26:21 +1100188 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100189}
190
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000191/*
192 * Initialize the log.
193 */
194
195void
196log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr)
197{
Darren Tucker9b5495d2005-02-01 17:35:09 +1100198#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
199 struct syslog_data sdata = SYSLOG_DATA_INIT;
200#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000201
Darren Tucker835903d2005-03-09 20:12:47 +1100202 argv0 = av0;
203
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000204 switch (level) {
205 case SYSLOG_LEVEL_QUIET:
206 case SYSLOG_LEVEL_FATAL:
207 case SYSLOG_LEVEL_ERROR:
208 case SYSLOG_LEVEL_INFO:
209 case SYSLOG_LEVEL_VERBOSE:
210 case SYSLOG_LEVEL_DEBUG1:
211 case SYSLOG_LEVEL_DEBUG2:
212 case SYSLOG_LEVEL_DEBUG3:
213 log_level = level;
214 break;
215 default:
Kevin Stevesedcd5762001-04-02 13:45:00 +0000216 fprintf(stderr, "Unrecognized internal syslog level code %d\n",
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000217 (int) level);
218 exit(1);
219 }
220
221 log_on_stderr = on_stderr;
222 if (on_stderr)
223 return;
224
225 switch (facility) {
226 case SYSLOG_FACILITY_DAEMON:
227 log_facility = LOG_DAEMON;
228 break;
229 case SYSLOG_FACILITY_USER:
230 log_facility = LOG_USER;
231 break;
232 case SYSLOG_FACILITY_AUTH:
233 log_facility = LOG_AUTH;
234 break;
Damien Miller30246a82001-03-05 21:23:31 +1100235#ifdef LOG_AUTHPRIV
236 case SYSLOG_FACILITY_AUTHPRIV:
237 log_facility = LOG_AUTHPRIV;
238 break;
Ben Lindstrom53f11c62001-03-05 08:18:17 +0000239#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000240 case SYSLOG_FACILITY_LOCAL0:
241 log_facility = LOG_LOCAL0;
242 break;
243 case SYSLOG_FACILITY_LOCAL1:
244 log_facility = LOG_LOCAL1;
245 break;
246 case SYSLOG_FACILITY_LOCAL2:
247 log_facility = LOG_LOCAL2;
248 break;
249 case SYSLOG_FACILITY_LOCAL3:
250 log_facility = LOG_LOCAL3;
251 break;
252 case SYSLOG_FACILITY_LOCAL4:
253 log_facility = LOG_LOCAL4;
254 break;
255 case SYSLOG_FACILITY_LOCAL5:
256 log_facility = LOG_LOCAL5;
257 break;
258 case SYSLOG_FACILITY_LOCAL6:
259 log_facility = LOG_LOCAL6;
260 break;
261 case SYSLOG_FACILITY_LOCAL7:
262 log_facility = LOG_LOCAL7;
263 break;
264 default:
265 fprintf(stderr,
Kevin Stevesedcd5762001-04-02 13:45:00 +0000266 "Unrecognized internal syslog facility code %d\n",
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000267 (int) facility);
268 exit(1);
269 }
Darren Tucker9b5495d2005-02-01 17:35:09 +1100270
271 /*
272 * If an external library (eg libwrap) attempts to use syslog
273 * immediately after reexec, syslog may be pointing to the wrong
274 * facility, so we force an open/close of syslog here.
275 */
276#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
277 openlog_r(argv0 ? argv0 : __progname, LOG_PID, log_facility, &sdata);
278 closelog_r(&sdata);
279#else
280 openlog(argv0 ? argv0 : __progname, LOG_PID, log_facility);
281 closelog();
282#endif
Damien Miller6162d121999-11-21 13:23:52 +1100283}
284
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000285#define MSGBUFSIZ 1024
286
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000287void
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000288do_log(LogLevel level, const char *fmt, va_list args)
Damien Miller6162d121999-11-21 13:23:52 +1100289{
Damien Miller051b0ac2004-02-18 22:59:43 +1100290#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
Damien Miller74a34422003-05-20 09:24:17 +1000291 struct syslog_data sdata = SYSLOG_DATA_INIT;
292#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000293 char msgbuf[MSGBUFSIZ];
294 char fmtbuf[MSGBUFSIZ];
295 char *txt = NULL;
296 int pri = LOG_INFO;
297
298 if (level > log_level)
299 return;
300
301 switch (level) {
302 case SYSLOG_LEVEL_FATAL:
303 if (!log_on_stderr)
304 txt = "fatal";
305 pri = LOG_CRIT;
306 break;
307 case SYSLOG_LEVEL_ERROR:
308 if (!log_on_stderr)
309 txt = "error";
310 pri = LOG_ERR;
311 break;
312 case SYSLOG_LEVEL_INFO:
313 pri = LOG_INFO;
314 break;
315 case SYSLOG_LEVEL_VERBOSE:
316 pri = LOG_INFO;
317 break;
318 case SYSLOG_LEVEL_DEBUG1:
319 txt = "debug1";
320 pri = LOG_DEBUG;
321 break;
322 case SYSLOG_LEVEL_DEBUG2:
323 txt = "debug2";
324 pri = LOG_DEBUG;
325 break;
326 case SYSLOG_LEVEL_DEBUG3:
327 txt = "debug3";
328 pri = LOG_DEBUG;
329 break;
330 default:
331 txt = "internal error";
332 pri = LOG_ERR;
333 break;
334 }
335 if (txt != NULL) {
336 snprintf(fmtbuf, sizeof(fmtbuf), "%s: %s", txt, fmt);
337 vsnprintf(msgbuf, sizeof(msgbuf), fmtbuf, args);
338 } else {
339 vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
340 }
Damien Miller23a70272004-07-21 10:52:13 +1000341 strnvis(fmtbuf, msgbuf, sizeof(fmtbuf),
342 log_on_stderr ? LOG_STDERR_VIS : LOG_SYSLOG_VIS);
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000343 if (log_on_stderr) {
Damien Millerc11fe252003-05-25 14:38:02 +1000344 snprintf(msgbuf, sizeof msgbuf, "%s\r\n", fmtbuf);
345 write(STDERR_FILENO, msgbuf, strlen(msgbuf));
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000346 } else {
Damien Miller051b0ac2004-02-18 22:59:43 +1100347#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
Damien Miller74a34422003-05-20 09:24:17 +1000348 openlog_r(argv0 ? argv0 : __progname, LOG_PID, log_facility, &sdata);
Damien Millerc11fe252003-05-25 14:38:02 +1000349 syslog_r(pri, &sdata, "%.500s", fmtbuf);
Damien Miller74a34422003-05-20 09:24:17 +1000350 closelog_r(&sdata);
351#else
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000352 openlog(argv0 ? argv0 : __progname, LOG_PID, log_facility);
Damien Millerb93addb2003-01-07 17:04:18 +1100353 syslog(pri, "%.500s", fmtbuf);
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000354 closelog();
Damien Miller74a34422003-05-20 09:24:17 +1000355#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000356 }
Damien Miller6162d121999-11-21 13:23:52 +1100357}